Skip to content

Commit cf05b56

Browse files
feat: Automated regeneration of deploymentmanager v2beta client (#25082)
Auto-created at 2025-11-30 10:18:51 +0000 using the toys pull request generator.
1 parent 63cea90 commit cf05b56

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
@@ -167658,6 +167658,8 @@
167658167658
"/deploymentmanager:v2beta/Expr/expression": expression
167659167659
"/deploymentmanager:v2beta/Expr/location": location
167660167660
"/deploymentmanager:v2beta/Expr/title": title
167661+
"/deploymentmanager:v2beta/FirewallPolicyRuleOperationMetadata": firewall_policy_rule_operation_metadata
167662+
"/deploymentmanager:v2beta/FirewallPolicyRuleOperationMetadata/allocatedPriority": allocated_priority
167661167663
"/deploymentmanager:v2beta/GlobalSetPolicyRequest": global_set_policy_request
167662167664
"/deploymentmanager:v2beta/GlobalSetPolicyRequest/bindings": bindings
167663167665
"/deploymentmanager:v2beta/GlobalSetPolicyRequest/bindings/binding": binding
@@ -167738,6 +167740,7 @@
167738167740
"/deploymentmanager:v2beta/Operation/error/errors/error/errorDetails/error_detail/quotaInfo": quota_info
167739167741
"/deploymentmanager:v2beta/Operation/error/errors/error/location": location
167740167742
"/deploymentmanager:v2beta/Operation/error/errors/error/message": message
167743+
"/deploymentmanager:v2beta/Operation/firewallPolicyRuleOperationMetadata": firewall_policy_rule_operation_metadata
167741167744
"/deploymentmanager:v2beta/Operation/httpErrorMessage": http_error_message
167742167745
"/deploymentmanager:v2beta/Operation/httpErrorStatusCode": http_error_status_code
167743167746
"/deploymentmanager:v2beta/Operation/id": id

generated/google-apis-deploymentmanager_v2beta/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_v2beta
22

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

59
* Regenerated from discovery document revision 20250828

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

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -981,6 +981,26 @@ def update!(**args)
981981
end
982982
end
983983

984+
#
985+
class FirewallPolicyRuleOperationMetadata
986+
include Google::Apis::Core::Hashable
987+
988+
# The priority allocated for the firewall policy rule if query parameters
989+
# specified minPriority/maxPriority.
990+
# Corresponds to the JSON property `allocatedPriority`
991+
# @return [Fixnum]
992+
attr_accessor :allocated_priority
993+
994+
def initialize(**args)
995+
update!(**args)
996+
end
997+
998+
# Update properties of this object
999+
def update!(**args)
1000+
@allocated_priority = args[:allocated_priority] if args.key?(:allocated_priority)
1001+
end
1002+
end
1003+
9841004
#
9851005
class GlobalSetPolicyRequest
9861006
include Google::Apis::Core::Hashable
@@ -1354,6 +1374,11 @@ class Operation
13541374
# @return [Google::Apis::DeploymentmanagerV2beta::Operation::Error]
13551375
attr_accessor :error
13561376

1377+
#
1378+
# Corresponds to the JSON property `firewallPolicyRuleOperationMetadata`
1379+
# @return [Google::Apis::DeploymentmanagerV2beta::FirewallPolicyRuleOperationMetadata]
1380+
attr_accessor :firewall_policy_rule_operation_metadata
1381+
13571382
# [Output Only] If the operation fails, this field contains the HTTP error
13581383
# message that was returned, such as `NOT FOUND`.
13591384
# Corresponds to the JSON property `httpErrorMessage`
@@ -1503,6 +1528,7 @@ def update!(**args)
15031528
@description = args[:description] if args.key?(:description)
15041529
@end_time = args[:end_time] if args.key?(:end_time)
15051530
@error = args[:error] if args.key?(:error)
1531+
@firewall_policy_rule_operation_metadata = args[:firewall_policy_rule_operation_metadata] if args.key?(:firewall_policy_rule_operation_metadata)
15061532
@http_error_message = args[:http_error_message] if args.key?(:http_error_message)
15071533
@http_error_status_code = args[:http_error_status_code] if args.key?(:http_error_status_code)
15081534
@id = args[:id] if args.key?(:id)

generated/google-apis-deploymentmanager_v2beta/lib/google/apis/deploymentmanager_v2beta/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 DeploymentmanagerV2beta
1818
# Version of the google-apis-deploymentmanager_v2beta gem
19-
GEM_VERSION = "0.38.0"
19+
GEM_VERSION = "0.39.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_v2beta/lib/google/apis/deploymentmanager_v2beta/representations.rb

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
166166
include Google::Apis::Core::JsonObjectSupport
167167
end
168168

169+
class FirewallPolicyRuleOperationMetadata
170+
class Representation < Google::Apis::Core::JsonRepresentation; end
171+
172+
include Google::Apis::Core::JsonObjectSupport
173+
end
174+
169175
class GlobalSetPolicyRequest
170176
class Representation < Google::Apis::Core::JsonRepresentation; end
171177

@@ -702,6 +708,13 @@ class Representation < Google::Apis::Core::JsonRepresentation
702708
end
703709
end
704710

711+
class FirewallPolicyRuleOperationMetadata
712+
# @private
713+
class Representation < Google::Apis::Core::JsonRepresentation
714+
property :allocated_priority, as: 'allocatedPriority'
715+
end
716+
end
717+
705718
class GlobalSetPolicyRequest
706719
# @private
707720
class Representation < Google::Apis::Core::JsonRepresentation
@@ -801,6 +814,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
801814
property :end_time, as: 'endTime'
802815
property :error, as: 'error', class: Google::Apis::DeploymentmanagerV2beta::Operation::Error, decorator: Google::Apis::DeploymentmanagerV2beta::Operation::Error::Representation
803816

817+
property :firewall_policy_rule_operation_metadata, as: 'firewallPolicyRuleOperationMetadata', class: Google::Apis::DeploymentmanagerV2beta::FirewallPolicyRuleOperationMetadata, decorator: Google::Apis::DeploymentmanagerV2beta::FirewallPolicyRuleOperationMetadata::Representation
818+
804819
property :http_error_message, as: 'httpErrorMessage'
805820
property :http_error_status_code, as: 'httpErrorStatusCode'
806821
property :id, :numeric_string => true, as: 'id'

0 commit comments

Comments
 (0)