google-apis-accesscontextmanager_v1 0.28.0 → 0.30.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/accesscontextmanager_v1/classes.rb +10 -1
- data/lib/google/apis/accesscontextmanager_v1/gem_version.rb +2 -2
- data/lib/google/apis/accesscontextmanager_v1/representations.rb +1 -0
- data/lib/google/apis/accesscontextmanager_v1/service.rb +4 -9
- 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: 880f2fac8dd73d15f10298aa57c5b12a10363dc29522c8d4a2474f1c9419ed9b
|
|
4
|
+
data.tar.gz: 0b9cce55f4a760eebedae0364cab3595c1104e30d8801810dcf5ca5580b875c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b0700ff86d3458956bf7ca7f14c4fe85b52de0384815a2bd9f329360100ffed7f904eb4bde542619024f365e1860206652bb8e7069cef3339b2971283084fbc
|
|
7
|
+
data.tar.gz: 8984bbafe4a0cc1cf77d64fa4240b3c0fe9820906fb8f331797e3e5a95bb723a1069ccc6d9ea7f6ef330c1415aaf19ff911f14f7336edf1d389670e1368b1e9d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-accesscontextmanager_v1
|
|
2
2
|
|
|
3
|
+
### v0.30.0 (2023-03-26)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20230319
|
|
6
|
+
|
|
7
|
+
### v0.29.0 (2023-03-19)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20230312
|
|
10
|
+
|
|
3
11
|
### v0.28.0 (2023-02-15)
|
|
4
12
|
|
|
5
13
|
* Regenerated using generator version 0.12.0
|
|
@@ -844,13 +844,21 @@ module Google
|
|
|
844
844
|
class GcpUserAccessBinding
|
|
845
845
|
include Google::Apis::Core::Hashable
|
|
846
846
|
|
|
847
|
-
#
|
|
847
|
+
# Optional. Access level that a user must have to be granted access. Only one
|
|
848
848
|
# access level is supported, not multiple. This repeated field must have exactly
|
|
849
849
|
# one element. Example: "accessPolicies/9522/accessLevels/device_trusted"
|
|
850
850
|
# Corresponds to the JSON property `accessLevels`
|
|
851
851
|
# @return [Array<String>]
|
|
852
852
|
attr_accessor :access_levels
|
|
853
853
|
|
|
854
|
+
# Optional. Dry run access level that will be evaluated but will not be enforced.
|
|
855
|
+
# The access denial based on dry run policy will be logged. Only one access
|
|
856
|
+
# level is supported, not multiple. This list must have exactly one element.
|
|
857
|
+
# Example: "accessPolicies/9522/accessLevels/device_trusted"
|
|
858
|
+
# Corresponds to the JSON property `dryRunAccessLevels`
|
|
859
|
+
# @return [Array<String>]
|
|
860
|
+
attr_accessor :dry_run_access_levels
|
|
861
|
+
|
|
854
862
|
# Required. Immutable. Google Group id whose members are subject to this binding'
|
|
855
863
|
# s restrictions. See "id" in the [G Suite Directory API's Groups resource] (
|
|
856
864
|
# https://developers.google.com/admin-sdk/directory/v1/reference/groups#resource)
|
|
@@ -877,6 +885,7 @@ module Google
|
|
|
877
885
|
# Update properties of this object
|
|
878
886
|
def update!(**args)
|
|
879
887
|
@access_levels = args[:access_levels] if args.key?(:access_levels)
|
|
888
|
+
@dry_run_access_levels = args[:dry_run_access_levels] if args.key?(:dry_run_access_levels)
|
|
880
889
|
@group_key = args[:group_key] if args.key?(:group_key)
|
|
881
890
|
@name = args[:name] if args.key?(:name)
|
|
882
891
|
end
|
|
@@ -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.30.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230319"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -505,6 +505,7 @@ module Google
|
|
|
505
505
|
# @private
|
|
506
506
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
507
507
|
collection :access_levels, as: 'accessLevels'
|
|
508
|
+
collection :dry_run_access_levels, as: 'dryRunAccessLevels'
|
|
508
509
|
property :group_key, as: 'groupKey'
|
|
509
510
|
property :name, as: 'name'
|
|
510
511
|
end
|
|
@@ -1198,13 +1198,7 @@ module Google
|
|
|
1198
1198
|
end
|
|
1199
1199
|
|
|
1200
1200
|
# Lists operations that match the specified filter in the request. If the server
|
|
1201
|
-
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
|
1202
|
-
# binding allows API services to override the binding to use different resource
|
|
1203
|
-
# name schemes, such as `users/*/operations`. To override the binding, API
|
|
1204
|
-
# services can add a binding such as `"/v1/`name=users/*`/operations"` to their
|
|
1205
|
-
# service configuration. For backwards compatibility, the default name includes
|
|
1206
|
-
# the operations collection id, however overriding users must ensure the name
|
|
1207
|
-
# binding is the parent resource, without the operations collection id.
|
|
1201
|
+
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
|
1208
1202
|
# @param [String] name
|
|
1209
1203
|
# The name of the operation's parent resource.
|
|
1210
1204
|
# @param [String] filter
|
|
@@ -1391,8 +1385,9 @@ module Google
|
|
|
1391
1385
|
# @param [Google::Apis::AccesscontextmanagerV1::GcpUserAccessBinding] gcp_user_access_binding_object
|
|
1392
1386
|
# @param [String] update_mask
|
|
1393
1387
|
# Required. Only the fields specified in this mask are updated. Because name and
|
|
1394
|
-
# group_key cannot be changed, update_mask is required and
|
|
1395
|
-
#
|
|
1388
|
+
# group_key cannot be changed, update_mask is required and may only contain the
|
|
1389
|
+
# following fields: `access_levels`, `dry_run_access_levels`. update_mask `
|
|
1390
|
+
# paths: "access_levels" `
|
|
1396
1391
|
# @param [String] fields
|
|
1397
1392
|
# Selector specifying which fields to include in a partial response.
|
|
1398
1393
|
# @param [String] quota_user
|
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.30.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: 2023-
|
|
11
|
+
date: 2023-03-26 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.30.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: []
|