google-apis-iam_v1 0.83.0 → 0.85.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/iam_v1/classes.rb +23 -14
- data/lib/google/apis/iam_v1/gem_version.rb +2 -2
- data/lib/google/apis/iam_v1/representations.rb +2 -12
- data/lib/google/apis/iam_v1/service.rb +0 -36
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ebe0a0a0419db64dc6ea77336eacbb79cc5af3f21ff4eb803ed4c38676ead314
|
|
4
|
+
data.tar.gz: 7a5ab2c6472899917a6bda4fcce0fe06ac759cb81617eecddfb2e3243ada7b62
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d258b3450adbf7731b38daafee3fe6356cf195a3ca3e1bb2ccd59b687cce184fb3f779b5858e328a6ef219c1599fd5564488de3e42be960ebfb6b41a487a91c1
|
|
7
|
+
data.tar.gz: 614e3cd96262a526df3da57cbbcc9ae03e0e2662795da9adb139c327009436b8d2cd0aca027365d9107d5125678f22673510f9755df1e7f609f83918679dcdae
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-iam_v1
|
|
2
2
|
|
|
3
|
+
### v0.85.0 (2026-03-22)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260313
|
|
6
|
+
|
|
7
|
+
### v0.84.0 (2026-03-15)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260306
|
|
10
|
+
|
|
3
11
|
### v0.83.0 (2026-02-01)
|
|
4
12
|
|
|
5
13
|
* 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
|
|
|
@@ -3147,20 +3170,6 @@ module Google
|
|
|
3147
3170
|
end
|
|
3148
3171
|
end
|
|
3149
3172
|
|
|
3150
|
-
# Gemini Enterprise only. Request message for
|
|
3151
|
-
# UndeleteWorkforcePoolProviderScimToken.
|
|
3152
|
-
class UndeleteWorkforcePoolProviderScimTokenRequest
|
|
3153
|
-
include Google::Apis::Core::Hashable
|
|
3154
|
-
|
|
3155
|
-
def initialize(**args)
|
|
3156
|
-
update!(**args)
|
|
3157
|
-
end
|
|
3158
|
-
|
|
3159
|
-
# Update properties of this object
|
|
3160
|
-
def update!(**args)
|
|
3161
|
-
end
|
|
3162
|
-
end
|
|
3163
|
-
|
|
3164
3173
|
# Request message for UndeleteWorkforcePool.
|
|
3165
3174
|
class UndeleteWorkforcePoolRequest
|
|
3166
3175
|
include Google::Apis::Core::Hashable
|
|
@@ -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.85.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 = "20260313"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -592,12 +592,6 @@ module Google
|
|
|
592
592
|
include Google::Apis::Core::JsonObjectSupport
|
|
593
593
|
end
|
|
594
594
|
|
|
595
|
-
class UndeleteWorkforcePoolProviderScimTokenRequest
|
|
596
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
597
|
-
|
|
598
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
599
|
-
end
|
|
600
|
-
|
|
601
595
|
class UndeleteWorkforcePoolRequest
|
|
602
596
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
603
597
|
|
|
@@ -973,6 +967,7 @@ module Google
|
|
|
973
967
|
property :key_algorithm, as: 'keyAlgorithm'
|
|
974
968
|
property :lifetime, as: 'lifetime'
|
|
975
969
|
property :rotation_window_percentage, as: 'rotationWindowPercentage'
|
|
970
|
+
property :use_default_shared_ca, as: 'useDefaultSharedCa'
|
|
976
971
|
end
|
|
977
972
|
end
|
|
978
973
|
|
|
@@ -1505,6 +1500,7 @@ module Google
|
|
|
1505
1500
|
|
|
1506
1501
|
collection :trust_anchors, as: 'trustAnchors', class: Google::Apis::IamV1::TrustAnchor, decorator: Google::Apis::IamV1::TrustAnchor::Representation
|
|
1507
1502
|
|
|
1503
|
+
property :trust_default_shared_ca, as: 'trustDefaultSharedCa'
|
|
1508
1504
|
end
|
|
1509
1505
|
end
|
|
1510
1506
|
|
|
@@ -1553,12 +1549,6 @@ module Google
|
|
|
1553
1549
|
end
|
|
1554
1550
|
end
|
|
1555
1551
|
|
|
1556
|
-
class UndeleteWorkforcePoolProviderScimTokenRequest
|
|
1557
|
-
# @private
|
|
1558
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1559
|
-
end
|
|
1560
|
-
end
|
|
1561
|
-
|
|
1562
1552
|
class UndeleteWorkforcePoolRequest
|
|
1563
1553
|
# @private
|
|
1564
1554
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1367,42 +1367,6 @@ module Google
|
|
|
1367
1367
|
execute_or_queue_command(command, &block)
|
|
1368
1368
|
end
|
|
1369
1369
|
|
|
1370
|
-
# Gemini Enterprise only. Undeletes a WorkforcePoolProviderScimToken,that was
|
|
1371
|
-
# deleted fewer than 30 days ago.
|
|
1372
|
-
# @param [String] name
|
|
1373
|
-
# Required. Gemini Enterprise only. The name of the SCIM token to undelete.
|
|
1374
|
-
# Format: `locations/`location`/workforcePools/`workforce_pool`/providers/`
|
|
1375
|
-
# provider`/scimTenants/`scim_tenant`/tokens/`token``
|
|
1376
|
-
# @param [Google::Apis::IamV1::UndeleteWorkforcePoolProviderScimTokenRequest] undelete_workforce_pool_provider_scim_token_request_object
|
|
1377
|
-
# @param [String] fields
|
|
1378
|
-
# Selector specifying which fields to include in a partial response.
|
|
1379
|
-
# @param [String] quota_user
|
|
1380
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
|
1381
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1382
|
-
# @param [Google::Apis::RequestOptions] options
|
|
1383
|
-
# Request-specific options
|
|
1384
|
-
#
|
|
1385
|
-
# @yield [result, err] Result & error if block supplied
|
|
1386
|
-
# @yieldparam result [Google::Apis::IamV1::WorkforcePoolProviderScimToken] parsed result object
|
|
1387
|
-
# @yieldparam err [StandardError] error object if request failed
|
|
1388
|
-
#
|
|
1389
|
-
# @return [Google::Apis::IamV1::WorkforcePoolProviderScimToken]
|
|
1390
|
-
#
|
|
1391
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1392
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1393
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1394
|
-
def undelete_workforce_pool_provider_scim_token(name, undelete_workforce_pool_provider_scim_token_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1395
|
-
command = make_simple_command(:post, 'v1/{+name}:undelete', options)
|
|
1396
|
-
command.request_representation = Google::Apis::IamV1::UndeleteWorkforcePoolProviderScimTokenRequest::Representation
|
|
1397
|
-
command.request_object = undelete_workforce_pool_provider_scim_token_request_object
|
|
1398
|
-
command.response_representation = Google::Apis::IamV1::WorkforcePoolProviderScimToken::Representation
|
|
1399
|
-
command.response_class = Google::Apis::IamV1::WorkforcePoolProviderScimToken
|
|
1400
|
-
command.params['name'] = name unless name.nil?
|
|
1401
|
-
command.query['fields'] = fields unless fields.nil?
|
|
1402
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1403
|
-
execute_or_queue_command(command, &block)
|
|
1404
|
-
end
|
|
1405
|
-
|
|
1406
1370
|
# Deletes a WorkforcePoolSubject. Subject must not already be in a deleted state.
|
|
1407
1371
|
# A WorkforcePoolSubject is automatically created the first time an external
|
|
1408
1372
|
# credential is exchanged for a Google Cloud credential using a mapped `google.
|
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.85.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.85.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:
|