google-apis-iam_v1 0.83.0 → 0.84.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: 6f647b662b10456c63cafb867beb7dcbc78e1dcd752067c4dcc408bedf35ad2a
4
- data.tar.gz: f2089fbf68c527bce44a4f4fe83927359ff9401f5f6f2a267c37a7a7019d0fc2
3
+ metadata.gz: 0af4b3ee36fa005872a2aef1dd2fc657d2e82494282779c4966bc044204a7d8b
4
+ data.tar.gz: 0a163f11f320751b23efc18aae97d72664df9d9dda5a41ae560e0cd714361af8
5
5
  SHA512:
6
- metadata.gz: a7341589d0b8236a4e155f419a045a5ef2a53dab4ee21cf8413757553c6b50d6a77aa2fdda106a0a36e97d41d7bc3e7785e5dbbc17d7cd146ae1da03823227bf
7
- data.tar.gz: 220d7528cd4b56465ce0eee484928ab2c4c9aad4e286093317f44d5364c45201fd5ce4d97ad694f2782439415f39def2167aad5754a915a18b65f295b8b94c59
6
+ metadata.gz: e6b0754b766d93619666c49d6239c301ca12e634cf1eb5cc486c6d82729f5c2ff24df1e0e0462b837798e9a2822da050d99571fb1d8089c0d8739b4d0ae83508
7
+ data.tar.gz: f63140b52918ee0a17264d160945b599953828534b4246d4c8a9e13b45e1ab650d43fb0c71a7f44460397757565993ace005044d15e03f8c9bbf0d1a7ab8ceec
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-iam_v1
2
2
 
3
+ ### v0.84.0 (2026-03-15)
4
+
5
+ * Regenerated from discovery document revision 20260306
6
+
3
7
  ### v0.83.0 (2026-02-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20260123
@@ -985,6 +985,18 @@ module Google
985
985
  # @return [Fixnum]
986
986
  attr_accessor :rotation_window_percentage
987
987
 
988
+ # Optional. If set to true, the trust domain will utilize the GCP-provisioned
989
+ # default CA. A default CA in the same region as the workload will be selected
990
+ # to issue the certificate. Enabling this will clear any existing `ca_pools`
991
+ # configuration to provision the certificates. NOTE: This field is mutually
992
+ # exclusive with `ca_pools`. If this flag is enabled, certificates will be
993
+ # automatically provisioned from the default shared CAs. This flag should not be
994
+ # set if you want to use your own CA pools to provision the certificates.
995
+ # Corresponds to the JSON property `useDefaultSharedCa`
996
+ # @return [Boolean]
997
+ attr_accessor :use_default_shared_ca
998
+ alias_method :use_default_shared_ca?, :use_default_shared_ca
999
+
988
1000
  def initialize(**args)
989
1001
  update!(**args)
990
1002
  end
@@ -995,6 +1007,7 @@ module Google
995
1007
  @key_algorithm = args[:key_algorithm] if args.key?(:key_algorithm)
996
1008
  @lifetime = args[:lifetime] if args.key?(:lifetime)
997
1009
  @rotation_window_percentage = args[:rotation_window_percentage] if args.key?(:rotation_window_percentage)
1010
+ @use_default_shared_ca = args[:use_default_shared_ca] if args.key?(:use_default_shared_ca)
998
1011
  end
999
1012
  end
1000
1013
 
@@ -3025,6 +3038,15 @@ module Google
3025
3038
  # @return [Array<Google::Apis::IamV1::TrustAnchor>]
3026
3039
  attr_accessor :trust_anchors
3027
3040
 
3041
+ # Optional. If set to True, the trust bundle will include the private ca managed
3042
+ # identity regional root public certificates. Important: `
3043
+ # trust_default_shared_ca` is only supported for managed identity trust domain
3044
+ # resource.
3045
+ # Corresponds to the JSON property `trustDefaultSharedCa`
3046
+ # @return [Boolean]
3047
+ attr_accessor :trust_default_shared_ca
3048
+ alias_method :trust_default_shared_ca?, :trust_default_shared_ca
3049
+
3028
3050
  def initialize(**args)
3029
3051
  update!(**args)
3030
3052
  end
@@ -3033,6 +3055,7 @@ module Google
3033
3055
  def update!(**args)
3034
3056
  @intermediate_cas = args[:intermediate_cas] if args.key?(:intermediate_cas)
3035
3057
  @trust_anchors = args[:trust_anchors] if args.key?(:trust_anchors)
3058
+ @trust_default_shared_ca = args[:trust_default_shared_ca] if args.key?(:trust_default_shared_ca)
3036
3059
  end
3037
3060
  end
3038
3061
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module IamV1
18
18
  # Version of the google-apis-iam_v1 gem
19
- GEM_VERSION = "0.83.0"
19
+ GEM_VERSION = "0.84.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 = "20260123"
25
+ REVISION = "20260306"
26
26
  end
27
27
  end
28
28
  end
@@ -973,6 +973,7 @@ module Google
973
973
  property :key_algorithm, as: 'keyAlgorithm'
974
974
  property :lifetime, as: 'lifetime'
975
975
  property :rotation_window_percentage, as: 'rotationWindowPercentage'
976
+ property :use_default_shared_ca, as: 'useDefaultSharedCa'
976
977
  end
977
978
  end
978
979
 
@@ -1505,6 +1506,7 @@ module Google
1505
1506
 
1506
1507
  collection :trust_anchors, as: 'trustAnchors', class: Google::Apis::IamV1::TrustAnchor, decorator: Google::Apis::IamV1::TrustAnchor::Representation
1507
1508
 
1509
+ property :trust_default_shared_ca, as: 'trustDefaultSharedCa'
1508
1510
  end
1509
1511
  end
1510
1512
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-iam_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.83.0
4
+ version: 0.84.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.83.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.84.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v1
63
63
  rdoc_options: []
64
64
  require_paths: