google-apis-secretmanager_v1beta2 0.14.0 → 0.15.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: 6ccbe83ede4d15b62839a6ce44f38269bca5d1da4aacaa2c06fe561301a688c9
4
- data.tar.gz: 61f892323051e34711cbf7cdfe685711857486b09afc785c1cc58c1b590034f7
3
+ metadata.gz: 928e48a3cdc0b806a0cab1b142d2d7282f8240b53b46a56791d6055c27a249e6
4
+ data.tar.gz: 3b83cecaa254cedce468e62559a9037f16e068102d4d00d0a344fea4cc2331eb
5
5
  SHA512:
6
- metadata.gz: 0a2d8f6acef83a969cf6ae75eca423a9461a5ce36e955fce5d44c053b8b3c843c1bc2ac6e7bf88d32df47b6dff37a70fa23c25b6dbd19bc116e51c94426764d4
7
- data.tar.gz: 82494c812a0ce3c30ac5d979cfd40074f52f9062497b267f136c1ae0ba6efc6f78a44829dfb8a6303fd67b4c182ca9d970cf21652e08a87064803e42644d6488
6
+ metadata.gz: 0d7d2c9935edfb6ac548da99e678d1515c2132553ec2522494059c89086277c8161bba6d7d0684f9fa421f2b301ee6970fea8cd208b1e4991120a51dbe00c68d
7
+ data.tar.gz: 43499b4da5257fa7c202c956d3437c916659802710ef2c4dce5b2f1b98523458a6eb9bd0bb3bb19f24360675a16c1ff65e9bab7054cfb8598909f64e6830ced0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-secretmanager_v1beta2
2
2
 
3
+ ### v0.15.0 (2026-08-16)
4
+
5
+ * Regenerated from discovery document revision 20260731
6
+
3
7
  ### v0.14.0 (2026-06-14)
4
8
 
5
9
  * Regenerated using generator version 0.19.0
@@ -962,6 +962,40 @@ module Google
962
962
  end
963
963
  end
964
964
 
965
+ # Output-only policy member strings of a Google Cloud resource's built-in
966
+ # identity.
967
+ class ResourcePolicyMember
968
+ include Google::Apis::Core::Hashable
969
+
970
+ # Output only. IAM policy binding member referring to a Google Cloud resource by
971
+ # user-assigned name (https://google.aip.dev/122). If a resource is deleted and
972
+ # recreated with the same name, the binding will be applicable to the new
973
+ # resource. Example: `principal://parametermanager.googleapis.com/projects/12345/
974
+ # name/locations/us-central1-a/parameters/my-parameter`
975
+ # Corresponds to the JSON property `iamPolicyNamePrincipal`
976
+ # @return [String]
977
+ attr_accessor :iam_policy_name_principal
978
+
979
+ # Output only. IAM policy binding member referring to a Google Cloud resource by
980
+ # system-assigned unique identifier (https://google.aip.dev/148#uid). If a
981
+ # resource is deleted and recreated with the same name, the binding will not be
982
+ # applicable to the new resource Example: `principal://parametermanager.
983
+ # googleapis.com/projects/12345/uid/locations/us-central1-a/parameters/a918fed5`
984
+ # Corresponds to the JSON property `iamPolicyUidPrincipal`
985
+ # @return [String]
986
+ attr_accessor :iam_policy_uid_principal
987
+
988
+ def initialize(**args)
989
+ update!(**args)
990
+ end
991
+
992
+ # Update properties of this object
993
+ def update!(**args)
994
+ @iam_policy_name_principal = args[:iam_policy_name_principal] if args.key?(:iam_policy_name_principal)
995
+ @iam_policy_uid_principal = args[:iam_policy_uid_principal] if args.key?(:iam_policy_uid_principal)
996
+ end
997
+ end
998
+
965
999
  # The rotation time and period for a Secret. At next_rotation_time, Secret
966
1000
  # Manager will send a Pub/Sub notification to the topics configured on the
967
1001
  # Secret. Secret.topics must be set to configure rotation.
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecretmanagerV1beta2
18
18
  # Version of the google-apis-secretmanager_v1beta2 gem
19
- GEM_VERSION = "0.14.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260424"
25
+ REVISION = "20260731"
26
26
  end
27
27
  end
28
28
  end
@@ -178,6 +178,12 @@ module Google
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
+ class ResourcePolicyMember
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
181
187
  class Rotation
182
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
189
 
@@ -481,6 +487,14 @@ module Google
481
487
  end
482
488
  end
483
489
 
490
+ class ResourcePolicyMember
491
+ # @private
492
+ class Representation < Google::Apis::Core::JsonRepresentation
493
+ property :iam_policy_name_principal, as: 'iamPolicyNamePrincipal'
494
+ property :iam_policy_uid_principal, as: 'iamPolicyUidPrincipal'
495
+ end
496
+ end
497
+
484
498
  class Rotation
485
499
  # @private
486
500
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-secretmanager_v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.15.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-secretmanager_v1beta2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-secretmanager_v1beta2/v0.14.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-secretmanager_v1beta2/v0.15.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-secretmanager_v1beta2
62
62
  rdoc_options: []
63
63
  require_paths: