Skip to content

Commit

Permalink
feat(api): api update (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] committed Jan 21, 2025
1 parent 834b2fb commit 30ead8a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 19
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/nirvana-labs%2Fnirvana-ff3f68b23bed786cd82e6b0fce83c602e76c1da16aa8d925770e3ebd56909dfd.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/nirvana-labs%2Fnirvana-78dacb6faebeaf3e5cbd36aae89474fb1ba31185f6042fa4790d387c12ba43fa.yml
8 changes: 4 additions & 4 deletions firewall_rules/firewallrule.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ type FirewallRule struct {
ID string `json:"id,required"`
CreatedAt string `json:"created_at,required"`
// Firewall rule endpoint.
Dest FirewallRuleEndpoint `json:"dest,required"`
Name string `json:"name,required"`
Protocol string `json:"protocol,required"`
Destination FirewallRuleEndpoint `json:"destination,required"`
Name string `json:"name,required"`
Protocol string `json:"protocol,required"`
// Firewall rule endpoint.
Source FirewallRuleEndpoint `json:"source,required"`
Status shared.ResourceStatus `json:"status,required"`
Expand All @@ -128,7 +128,7 @@ type FirewallRule struct {
type firewallRuleJSON struct {
ID apijson.Field
CreatedAt apijson.Field
Dest apijson.Field
Destination apijson.Field
Name apijson.Field
Protocol apijson.Field
Source apijson.Field
Expand Down

0 comments on commit 30ead8a

Please sign in to comment.