google-apis-accesscontextmanager_v1 0.50.0 → 0.51.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 +4 -0
- data/lib/google/apis/accesscontextmanager_v1/classes.rb +9 -1
- data/lib/google/apis/accesscontextmanager_v1/gem_version.rb +2 -2
- data/lib/google/apis/accesscontextmanager_v1/representations.rb +2 -0
- data/lib/google/apis/accesscontextmanager_v1/service.rb +6 -5
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 781559d3f54c452ded44773afabb8743d0b6fb7632a3cc3a0a8fa043af024d37
|
|
4
|
+
data.tar.gz: 3d7ed1ebe2c35fdee403cdbd4b4d5685ab2f7194c61b89cde49213e86e48801c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 91ebff52258578ffb3cf80f98ba57e9ba2e3ff9502d2ff57a69b18280484549528884aa62bc9fc32f47145c6c3269de0bb7bcb835e73382186e2594f2e79bb35
|
|
7
|
+
data.tar.gz: 433b9556f4a4e1b7560a140ce94e227ca5e5044816424bd3236ddd5a284d90a9edb65b80e445021406e6fd8762d2c641283bd3bcd2516625ecbf12f940abd986
|
data/CHANGELOG.md
CHANGED
|
@@ -1021,7 +1021,7 @@ module Google
|
|
|
1021
1021
|
end
|
|
1022
1022
|
|
|
1023
1023
|
# Restricts access to Cloud Console and Google Cloud APIs for a set of users
|
|
1024
|
-
# using Context-Aware Access.
|
|
1024
|
+
# using Context-Aware Access.
|
|
1025
1025
|
class GcpUserAccessBinding
|
|
1026
1026
|
include Google::Apis::Core::Hashable
|
|
1027
1027
|
|
|
@@ -1080,6 +1080,13 @@ module Google
|
|
|
1080
1080
|
# @return [Array<Google::Apis::AccesscontextmanagerV1::ScopedAccessSettings>]
|
|
1081
1081
|
attr_accessor :scoped_access_settings
|
|
1082
1082
|
|
|
1083
|
+
# Stores settings related to Google Cloud Session Length including session
|
|
1084
|
+
# duration, the type of challenge (i.e. method) they should face when their
|
|
1085
|
+
# session expires, and other related settings.
|
|
1086
|
+
# Corresponds to the JSON property `sessionSettings`
|
|
1087
|
+
# @return [Google::Apis::AccesscontextmanagerV1::SessionSettings]
|
|
1088
|
+
attr_accessor :session_settings
|
|
1089
|
+
|
|
1083
1090
|
def initialize(**args)
|
|
1084
1091
|
update!(**args)
|
|
1085
1092
|
end
|
|
@@ -1093,6 +1100,7 @@ module Google
|
|
|
1093
1100
|
@reauth_settings = args[:reauth_settings] if args.key?(:reauth_settings)
|
|
1094
1101
|
@restricted_client_applications = args[:restricted_client_applications] if args.key?(:restricted_client_applications)
|
|
1095
1102
|
@scoped_access_settings = args[:scoped_access_settings] if args.key?(:scoped_access_settings)
|
|
1103
|
+
@session_settings = args[:session_settings] if args.key?(:session_settings)
|
|
1096
1104
|
end
|
|
1097
1105
|
end
|
|
1098
1106
|
|
|
@@ -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.51.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20241028"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -633,6 +633,8 @@ module Google
|
|
|
633
633
|
|
|
634
634
|
collection :scoped_access_settings, as: 'scopedAccessSettings', class: Google::Apis::AccesscontextmanagerV1::ScopedAccessSettings, decorator: Google::Apis::AccesscontextmanagerV1::ScopedAccessSettings::Representation
|
|
635
635
|
|
|
636
|
+
property :session_settings, as: 'sessionSettings', class: Google::Apis::AccesscontextmanagerV1::SessionSettings, decorator: Google::Apis::AccesscontextmanagerV1::SessionSettings::Representation
|
|
637
|
+
|
|
636
638
|
end
|
|
637
639
|
end
|
|
638
640
|
|
|
@@ -1398,11 +1398,12 @@ module Google
|
|
|
1398
1398
|
# Optional. This field controls whether or not certain repeated settings in the
|
|
1399
1399
|
# update request overwrite or append to existing settings on the binding. If
|
|
1400
1400
|
# true, then append. Otherwise overwrite. So far, only scoped_access_settings
|
|
1401
|
-
# supports appending. Global access_levels,
|
|
1402
|
-
# reauth_settings, and
|
|
1403
|
-
#
|
|
1404
|
-
#
|
|
1405
|
-
#
|
|
1401
|
+
# with reauth_settings supports appending. Global access_levels, access_levels
|
|
1402
|
+
# in scoped_access_settings, dry_run_access_levels, reauth_settings, and
|
|
1403
|
+
# session_settings are not compatible with append functionality, and the request
|
|
1404
|
+
# will return an error if append=true when these settings are in the update_mask.
|
|
1405
|
+
# The request will also return an error if append=true when "
|
|
1406
|
+
# scoped_access_settings" is not set in the update_mask.
|
|
1406
1407
|
# @param [String] update_mask
|
|
1407
1408
|
# Required. Only the fields specified in this mask are updated. Because name and
|
|
1408
1409
|
# group_key cannot be changed, update_mask is required and may only contain the
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.51.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-11-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -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-accesscontextmanager_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-accesscontextmanager_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-accesscontextmanager_v1/v0.51.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-accesscontextmanager_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|