google-apis-cloudresourcemanager_v3 0.59.0 → 0.60.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a2edf9c64ac064777a89adba28a713d668730bb3ee9b0dd68c22c4702db8e9d
4
- data.tar.gz: 2f955f40f14bb027900c368e027402e0bea5ad2219f9686451879c4e35472243
3
+ metadata.gz: 3e2a96783e242964877b4451511930b7149ca89934b69d37c2ac0d29e2510ae0
4
+ data.tar.gz: 254e0a9031f5c106b96c8084849fe8e4acf9cf37b1d502239cac9b7e60b7701c
5
5
  SHA512:
6
- metadata.gz: 00af7399b4ce12c624998c86dbf144dcb474d2aa7321abd40b0597a6661332728eb2b69b4be1ca0e4b7254c7dc498e41083e8ad55f50a1eb1e259dfc7a2971f0
7
- data.tar.gz: f85ede551967709338e7abecd2cb46d7e7edca983553e9daf439c156accfd20de63401babdae593b6e61dc2688460195fb51ace6c113889cf06df9ef31e6dcc0
6
+ metadata.gz: 31d99884394f023d4f7fc2ef08dd99207fb10e24b577749a55a009c0836ab173a60e2918775186549d5de149aeb863ee7d1805f621cb93f0fcf3c7f1a52e44b4
7
+ data.tar.gz: abc661c35882aad11c4a40f3484e08ff4d44fbf16001e786018c0fe3910c1fbf90d5944c1ec6aa3305b6e6ecf977c1b4e93c754e963eb549462e74759873cea3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudresourcemanager_v3
2
2
 
3
+ ### v0.60.0 (2025-11-16)
4
+
5
+ * Regenerated from discovery document revision 20251103
6
+
3
7
  ### v0.59.0 (2025-06-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20250606
@@ -1120,8 +1120,7 @@ module Google
1120
1120
  include Google::Apis::Core::Hashable
1121
1121
 
1122
1122
  # A pagination token returned from a previous call to `ListTagValues` that
1123
- # indicates from where listing should continue. This is currently not used, but
1124
- # the server may at any point start supplying a valid token.
1123
+ # indicates from where listing should continue.
1125
1124
  # Corresponds to the JSON property `nextPageToken`
1126
1125
  # @return [String]
1127
1126
  attr_accessor :next_page_token
@@ -1924,6 +1923,12 @@ module Google
1924
1923
  class TagKey
1925
1924
  include Google::Apis::Core::Hashable
1926
1925
 
1926
+ # Optional. Regular expression constraint for freeform tag values. If present,
1927
+ # it implicitly allows freeform values (constrained by the regex).
1928
+ # Corresponds to the JSON property `allowedValuesRegex`
1929
+ # @return [String]
1930
+ attr_accessor :allowed_values_regex
1931
+
1927
1932
  # Output only. Creation time.
1928
1933
  # Corresponds to the JSON property `createTime`
1929
1934
  # @return [String]
@@ -1997,6 +2002,7 @@ module Google
1997
2002
 
1998
2003
  # Update properties of this object
1999
2004
  def update!(**args)
2005
+ @allowed_values_regex = args[:allowed_values_regex] if args.key?(:allowed_values_regex)
2000
2006
  @create_time = args[:create_time] if args.key?(:create_time)
2001
2007
  @description = args[:description] if args.key?(:description)
2002
2008
  @etag = args[:etag] if args.key?(:etag)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudresourcemanagerV3
18
18
  # Version of the google-apis-cloudresourcemanager_v3 gem
19
- GEM_VERSION = "0.59.0"
19
+ GEM_VERSION = "0.60.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250606"
25
+ REVISION = "20251103"
26
26
  end
27
27
  end
28
28
  end
@@ -881,6 +881,7 @@ module Google
881
881
  class TagKey
882
882
  # @private
883
883
  class Representation < Google::Apis::Core::JsonRepresentation
884
+ property :allowed_values_regex, as: 'allowedValuesRegex'
884
885
  property :create_time, as: 'createTime'
885
886
  property :description, as: 'description'
886
887
  property :etag, as: 'etag'
@@ -845,7 +845,8 @@ module Google
845
845
  execute_or_queue_command(command, &block)
846
846
  end
847
847
 
848
- # Updates tag bindings directly attached to a GCP resource.
848
+ # Updates tag bindings directly attached to a GCP resource. Update_mask can be
849
+ # kept empty or "*".
849
850
  # @param [String] name
850
851
  # Identifier. The name of the TagBindingCollection, following the convention: `
851
852
  # locations/`location`/tagBindingCollections/`encoded-full-resource-name`` where
@@ -853,6 +854,8 @@ module Google
853
854
  # the TagBindings are bound to. "locations/global/tagBindingCollections/%2f%
854
855
  # 2fcloudresourcemanager.googleapis.com%2fprojects%2f123"
855
856
  # @param [Google::Apis::CloudresourcemanagerV3::TagBindingCollection] tag_binding_collection_object
857
+ # @param [String] update_mask
858
+ # Optional. An update mask to selectively update fields.
856
859
  # @param [String] fields
857
860
  # Selector specifying which fields to include in a partial response.
858
861
  # @param [String] quota_user
@@ -870,13 +873,14 @@ module Google
870
873
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
871
874
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
872
875
  # @raise [Google::Apis::AuthorizationError] Authorization is required
873
- def update_location_tag_binding_collection(name, tag_binding_collection_object = nil, fields: nil, quota_user: nil, options: nil, &block)
874
- command = make_simple_command(:put, 'v3/{+name}', options)
876
+ def patch_location_tag_binding_collection(name, tag_binding_collection_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
877
+ command = make_simple_command(:patch, 'v3/{+name}', options)
875
878
  command.request_representation = Google::Apis::CloudresourcemanagerV3::TagBindingCollection::Representation
876
879
  command.request_object = tag_binding_collection_object
877
880
  command.response_representation = Google::Apis::CloudresourcemanagerV3::Operation::Representation
878
881
  command.response_class = Google::Apis::CloudresourcemanagerV3::Operation
879
882
  command.params['name'] = name unless name.nil?
883
+ command.query['updateMask'] = update_mask unless update_mask.nil?
880
884
  command.query['fields'] = fields unless fields.nil?
881
885
  command.query['quotaUser'] = quota_user unless quota_user.nil?
882
886
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudresourcemanager_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.59.0
4
+ version: 0.60.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudresourcemanager_v3/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v3/v0.59.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v3/v0.60.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudresourcemanager_v3
62
62
  rdoc_options: []
63
63
  require_paths: