google-apis-accesscontextmanager_v1 0.69.0 → 0.70.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: d85f4b80db917dd34639a5f2c9d481b5e2800074d02d8ed0523d2b386eb41bfd
|
|
4
|
+
data.tar.gz: c8aa57934dcdde7e729f1566b46437607d416c6220b83ae843d7ead54cf27b8e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d35b464aa4d97c0adc88434d32a8f8ab63df60aad7078793de3bc81d4a8fb20f1ad7d715e063d43bb8749fde249cb982ce35ca1769202411098b2897045d68ff
|
|
7
|
+
data.tar.gz: 78776efa4b3223224852ff00f7fe0db87f0aa4f3f8329c292febf60d5199ed075d95d7f17ddbc56dc559764bda77ea41ea500b74d81c8d58220ad34f94e52b6c
|
data/CHANGELOG.md
CHANGED
|
@@ -2235,14 +2235,15 @@ module Google
|
|
|
2235
2235
|
# Optional. The session length. Setting this field to zero is equal to disabling
|
|
2236
2236
|
# session. Also can set infinite session by flipping the enabled bit to false
|
|
2237
2237
|
# below. If use_oidc_max_age is true, for OIDC apps, the session length will be
|
|
2238
|
-
# the minimum of this field and OIDC max_age param.
|
|
2238
|
+
# the minimum of this field and OIDC max_age param. If this field is set to zero,
|
|
2239
|
+
# session_length_enabled must be set to false or left unset.
|
|
2239
2240
|
# Corresponds to the JSON property `sessionLength`
|
|
2240
2241
|
# @return [String]
|
|
2241
2242
|
attr_accessor :session_length
|
|
2242
2243
|
|
|
2243
2244
|
# Optional. This field enables or disables Google Cloud session length. When
|
|
2244
2245
|
# false, all fields set above will be disregarded and the session length is
|
|
2245
|
-
# basically infinite.
|
|
2246
|
+
# basically infinite. If session_length is set to zero, this field must be false.
|
|
2246
2247
|
# Corresponds to the JSON property `sessionLengthEnabled`
|
|
2247
2248
|
# @return [Boolean]
|
|
2248
2249
|
attr_accessor :session_length_enabled
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AccesscontextmanagerV1
|
|
18
18
|
# Version of the google-apis-accesscontextmanager_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.70.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 = "
|
|
25
|
+
REVISION = "20260730"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1364,6 +1364,12 @@ module Google
|
|
|
1364
1364
|
# Lists all GcpUserAccessBindings for a Google Cloud organization.
|
|
1365
1365
|
# @param [String] parent
|
|
1366
1366
|
# Required. Example: "organizations/256"
|
|
1367
|
+
# @param [String] filter
|
|
1368
|
+
# Optional. The literal filter to apply to the results returned. See https://
|
|
1369
|
+
# google.aip.dev/160 for more details. Accepts values: * principal:group_key *
|
|
1370
|
+
# principal:service_account OR principal:service_account_project_number. If this
|
|
1371
|
+
# field is empty or not one of the above, the default value is "principal:
|
|
1372
|
+
# group_key".
|
|
1367
1373
|
# @param [Fixnum] page_size
|
|
1368
1374
|
# Optional. Maximum number of items to return. The server may return fewer items.
|
|
1369
1375
|
# If left blank, the server may return any number of items.
|
|
@@ -1387,11 +1393,12 @@ module Google
|
|
|
1387
1393
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1388
1394
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1389
1395
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1390
|
-
def list_organization_gcp_user_access_bindings(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1396
|
+
def list_organization_gcp_user_access_bindings(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1391
1397
|
command = make_simple_command(:get, 'v1/{+parent}/gcpUserAccessBindings', options)
|
|
1392
1398
|
command.response_representation = Google::Apis::AccesscontextmanagerV1::ListGcpUserAccessBindingsResponse::Representation
|
|
1393
1399
|
command.response_class = Google::Apis::AccesscontextmanagerV1::ListGcpUserAccessBindingsResponse
|
|
1394
1400
|
command.params['parent'] = parent unless parent.nil?
|
|
1401
|
+
command.query['filter'] = filter unless filter.nil?
|
|
1395
1402
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1396
1403
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1397
1404
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-accesscontextmanager_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.70.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-accesscontextmanager_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-accesscontextmanager_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-accesscontextmanager_v1/v0.70.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-accesscontextmanager_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|