google-apis-iam_v1 0.82.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0af4b3ee36fa005872a2aef1dd2fc657d2e82494282779c4966bc044204a7d8b
|
|
4
|
+
data.tar.gz: 0a163f11f320751b23efc18aae97d72664df9d9dda5a41ae560e0cd714361af8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e6b0754b766d93619666c49d6239c301ca12e634cf1eb5cc486c6d82729f5c2ff24df1e0e0462b837798e9a2822da050d99571fb1d8089c0d8739b4d0ae83508
|
|
7
|
+
data.tar.gz: f63140b52918ee0a17264d160945b599953828534b4246d4c8a9e13b45e1ab650d43fb0c71a7f44460397757565993ace005044d15e03f8c9bbf0d1a7ab8ceec
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
7
|
+
### v0.83.0 (2026-02-01)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260123
|
|
10
|
+
|
|
3
11
|
### v0.82.0 (2026-01-25)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260116
|
|
@@ -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
|
|
|
@@ -3750,7 +3773,7 @@ module Google
|
|
|
3750
3773
|
# @return [String]
|
|
3751
3774
|
attr_accessor :mode
|
|
3752
3775
|
|
|
3753
|
-
#
|
|
3776
|
+
# Identifier. The resource name of the pool.
|
|
3754
3777
|
# Corresponds to the JSON property `name`
|
|
3755
3778
|
# @return [String]
|
|
3756
3779
|
attr_accessor :name
|
|
@@ -3801,7 +3824,7 @@ module Google
|
|
|
3801
3824
|
# @return [String]
|
|
3802
3825
|
attr_accessor :expire_time
|
|
3803
3826
|
|
|
3804
|
-
#
|
|
3827
|
+
# Identifier. The resource name of the managed identity.
|
|
3805
3828
|
# Corresponds to the JSON property `name`
|
|
3806
3829
|
# @return [String]
|
|
3807
3830
|
attr_accessor :name
|
|
@@ -3849,7 +3872,7 @@ module Google
|
|
|
3849
3872
|
# @return [String]
|
|
3850
3873
|
attr_accessor :expire_time
|
|
3851
3874
|
|
|
3852
|
-
#
|
|
3875
|
+
# Identifier. The resource name of the namespace.
|
|
3853
3876
|
# Corresponds to the JSON property `name`
|
|
3854
3877
|
# @return [String]
|
|
3855
3878
|
attr_accessor :name
|
|
@@ -3983,7 +4006,7 @@ module Google
|
|
|
3983
4006
|
# @return [String]
|
|
3984
4007
|
attr_accessor :expire_time
|
|
3985
4008
|
|
|
3986
|
-
#
|
|
4009
|
+
# Identifier. The resource name of the provider.
|
|
3987
4010
|
# Corresponds to the JSON property `name`
|
|
3988
4011
|
# @return [String]
|
|
3989
4012
|
attr_accessor :name
|
|
@@ -4049,7 +4072,7 @@ module Google
|
|
|
4049
4072
|
# @return [Google::Apis::IamV1::KeyData]
|
|
4050
4073
|
attr_accessor :key_data
|
|
4051
4074
|
|
|
4052
|
-
#
|
|
4075
|
+
# Identifier. The resource name of the key.
|
|
4053
4076
|
# Corresponds to the JSON property `name`
|
|
4054
4077
|
# @return [String]
|
|
4055
4078
|
attr_accessor :name
|
|
@@ -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.
|
|
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 = "
|
|
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
|
|
|
@@ -2457,7 +2457,7 @@ module Google
|
|
|
2457
2457
|
|
|
2458
2458
|
# Updates an existing WorkloadIdentityPool.
|
|
2459
2459
|
# @param [String] name
|
|
2460
|
-
#
|
|
2460
|
+
# Identifier. The resource name of the pool.
|
|
2461
2461
|
# @param [Google::Apis::IamV1::WorkloadIdentityPool] workload_identity_pool_object
|
|
2462
2462
|
# @param [String] update_mask
|
|
2463
2463
|
# Required. The list of fields to update.
|
|
@@ -2742,7 +2742,7 @@ module Google
|
|
|
2742
2742
|
|
|
2743
2743
|
# Updates an existing WorkloadIdentityPoolNamespace in a WorkloadIdentityPool.
|
|
2744
2744
|
# @param [String] name
|
|
2745
|
-
#
|
|
2745
|
+
# Identifier. The resource name of the namespace.
|
|
2746
2746
|
# @param [Google::Apis::IamV1::WorkloadIdentityPoolNamespace] workload_identity_pool_namespace_object
|
|
2747
2747
|
# @param [String] update_mask
|
|
2748
2748
|
# Required. The list of fields to update.
|
|
@@ -3042,7 +3042,7 @@ module Google
|
|
|
3042
3042
|
# Updates an existing WorkloadIdentityPoolManagedIdentity in a
|
|
3043
3043
|
# WorkloadIdentityPoolNamespace.
|
|
3044
3044
|
# @param [String] name
|
|
3045
|
-
#
|
|
3045
|
+
# Identifier. The resource name of the managed identity.
|
|
3046
3046
|
# @param [Google::Apis::IamV1::WorkloadIdentityPoolManagedIdentity] workload_identity_pool_managed_identity_object
|
|
3047
3047
|
# @param [String] update_mask
|
|
3048
3048
|
# Required. The list of fields to update.
|
|
@@ -3451,7 +3451,7 @@ module Google
|
|
|
3451
3451
|
|
|
3452
3452
|
# Updates an existing WorkloadIdentityPoolProvider.
|
|
3453
3453
|
# @param [String] name
|
|
3454
|
-
#
|
|
3454
|
+
# Identifier. The resource name of the provider.
|
|
3455
3455
|
# @param [Google::Apis::IamV1::WorkloadIdentityPoolProvider] workload_identity_pool_provider_object
|
|
3456
3456
|
# @param [String] update_mask
|
|
3457
3457
|
# Required. The list of fields to update.
|
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.
|
|
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.
|
|
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:
|