Skip to content

Commit 63cea90

Browse files
feat: Automated regeneration of deploymentmanager v2 client (#25083)
Auto-created at 2025-11-30 10:20:05 +0000 using the toys pull request generator.
1 parent 87d47d8 commit 63cea90

File tree

5 files changed

+50
-2
lines changed

5 files changed

+50
-2
lines changed

api_names_out.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167196,6 +167196,8 @@
167196167196
"/deploymentmanager:v2/Expr/expression": expression
167197167197
"/deploymentmanager:v2/Expr/location": location
167198167198
"/deploymentmanager:v2/Expr/title": title
167199+
"/deploymentmanager:v2/FirewallPolicyRuleOperationMetadata": firewall_policy_rule_operation_metadata
167200+
"/deploymentmanager:v2/FirewallPolicyRuleOperationMetadata/allocatedPriority": allocated_priority
167199167201
"/deploymentmanager:v2/GlobalSetPolicyRequest": global_set_policy_request
167200167202
"/deploymentmanager:v2/GlobalSetPolicyRequest/bindings": bindings
167201167203
"/deploymentmanager:v2/GlobalSetPolicyRequest/bindings/binding": binding
@@ -167271,6 +167273,7 @@
167271167273
"/deploymentmanager:v2/Operation/error/errors/error/errorDetails/error_detail/quotaInfo": quota_info
167272167274
"/deploymentmanager:v2/Operation/error/errors/error/location": location
167273167275
"/deploymentmanager:v2/Operation/error/errors/error/message": message
167276+
"/deploymentmanager:v2/Operation/firewallPolicyRuleOperationMetadata": firewall_policy_rule_operation_metadata
167274167277
"/deploymentmanager:v2/Operation/httpErrorMessage": http_error_message
167275167278
"/deploymentmanager:v2/Operation/httpErrorStatusCode": http_error_status_code
167276167279
"/deploymentmanager:v2/Operation/id": id

generated/google-apis-deploymentmanager_v2/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-deploymentmanager_v2
22

3+
### v0.40.0 (2025-11-30)
4+
5+
* Regenerated from discovery document revision 20251121
6+
37
### v0.39.0 (2025-09-07)
48

59
* Regenerated from discovery document revision 20250828

generated/google-apis-deploymentmanager_v2/lib/google/apis/deploymentmanager_v2/classes.rb

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -672,6 +672,26 @@ def update!(**args)
672672
end
673673
end
674674

675+
#
676+
class FirewallPolicyRuleOperationMetadata
677+
include Google::Apis::Core::Hashable
678+
679+
# The priority allocated for the firewall policy rule if query parameters
680+
# specified minPriority/maxPriority.
681+
# Corresponds to the JSON property `allocatedPriority`
682+
# @return [Fixnum]
683+
attr_accessor :allocated_priority
684+
685+
def initialize(**args)
686+
update!(**args)
687+
end
688+
689+
# Update properties of this object
690+
def update!(**args)
691+
@allocated_priority = args[:allocated_priority] if args.key?(:allocated_priority)
692+
end
693+
end
694+
675695
#
676696
class GlobalSetPolicyRequest
677697
include Google::Apis::Core::Hashable
@@ -1007,6 +1027,11 @@ class Operation
10071027
# @return [Google::Apis::DeploymentmanagerV2::Operation::Error]
10081028
attr_accessor :error
10091029

1030+
#
1031+
# Corresponds to the JSON property `firewallPolicyRuleOperationMetadata`
1032+
# @return [Google::Apis::DeploymentmanagerV2::FirewallPolicyRuleOperationMetadata]
1033+
attr_accessor :firewall_policy_rule_operation_metadata
1034+
10101035
# [Output Only] If the operation fails, this field contains the HTTP error
10111036
# message that was returned, such as `NOT FOUND`.
10121037
# Corresponds to the JSON property `httpErrorMessage`
@@ -1156,6 +1181,7 @@ def update!(**args)
11561181
@description = args[:description] if args.key?(:description)
11571182
@end_time = args[:end_time] if args.key?(:end_time)
11581183
@error = args[:error] if args.key?(:error)
1184+
@firewall_policy_rule_operation_metadata = args[:firewall_policy_rule_operation_metadata] if args.key?(:firewall_policy_rule_operation_metadata)
11591185
@http_error_message = args[:http_error_message] if args.key?(:http_error_message)
11601186
@http_error_status_code = args[:http_error_status_code] if args.key?(:http_error_status_code)
11611187
@id = args[:id] if args.key?(:id)

generated/google-apis-deploymentmanager_v2/lib/google/apis/deploymentmanager_v2/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module DeploymentmanagerV2
1818
# Version of the google-apis-deploymentmanager_v2 gem
19-
GEM_VERSION = "0.39.0"
19+
GEM_VERSION = "0.40.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250828"
25+
REVISION = "20251121"
2626
end
2727
end
2828
end

generated/google-apis-deploymentmanager_v2/lib/google/apis/deploymentmanager_v2/representations.rb

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
112112
include Google::Apis::Core::JsonObjectSupport
113113
end
114114

115+
class FirewallPolicyRuleOperationMetadata
116+
class Representation < Google::Apis::Core::JsonRepresentation; end
117+
118+
include Google::Apis::Core::JsonObjectSupport
119+
end
120+
115121
class GlobalSetPolicyRequest
116122
class Representation < Google::Apis::Core::JsonRepresentation; end
117123

@@ -477,6 +483,13 @@ class Representation < Google::Apis::Core::JsonRepresentation
477483
end
478484
end
479485

486+
class FirewallPolicyRuleOperationMetadata
487+
# @private
488+
class Representation < Google::Apis::Core::JsonRepresentation
489+
property :allocated_priority, as: 'allocatedPriority'
490+
end
491+
end
492+
480493
class GlobalSetPolicyRequest
481494
# @private
482495
class Representation < Google::Apis::Core::JsonRepresentation
@@ -566,6 +579,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
566579
property :end_time, as: 'endTime'
567580
property :error, as: 'error', class: Google::Apis::DeploymentmanagerV2::Operation::Error, decorator: Google::Apis::DeploymentmanagerV2::Operation::Error::Representation
568581

582+
property :firewall_policy_rule_operation_metadata, as: 'firewallPolicyRuleOperationMetadata', class: Google::Apis::DeploymentmanagerV2::FirewallPolicyRuleOperationMetadata, decorator: Google::Apis::DeploymentmanagerV2::FirewallPolicyRuleOperationMetadata::Representation
583+
569584
property :http_error_message, as: 'httpErrorMessage'
570585
property :http_error_status_code, as: 'httpErrorStatusCode'
571586
property :id, :numeric_string => true, as: 'id'

0 commit comments

Comments
 (0)