google-apis-accessapproval_v1 0.44.0 → 0.46.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: deb6d68661fdac0229a74fe977cdf5dad6025b57d2f441d2bfcbe48de8858dec
|
|
4
|
+
data.tar.gz: 1be51e0f8ab34801833efaabc69c62dfeec8965b67a2a4c6e8ccc76fb04195c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e0f61f3a49ab92ebb50494e92d4b045737382d2cb902ada190642e945a814cdba2ddeeb76c08402041d2591362691d6ff3176f36f17224c9dcc62c614080c1fc
|
|
7
|
+
data.tar.gz: e16fc18d254bf129fe4492e278271986fe788068faed83815da9d22adcf1b635b30efcd76fc0828ccf68470f37c4cfa01dfa081dd48488daec79bd56951c4221
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-accessapproval_v1
|
|
2
2
|
|
|
3
|
+
### v0.46.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated using generator version 0.19.0
|
|
6
|
+
|
|
7
|
+
### v0.45.0 (2026-02-01)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260126
|
|
10
|
+
|
|
3
11
|
### v0.44.0 (2025-09-21)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250912
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/assured-workloads/access-ap
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -71,6 +71,12 @@ module Google
|
|
|
71
71
|
attr_accessor :ancestor_has_active_key_version
|
|
72
72
|
alias_method :ancestor_has_active_key_version?, :ancestor_has_active_key_version
|
|
73
73
|
|
|
74
|
+
# Output only. Field to differentiate ancestor enrolled services from locally
|
|
75
|
+
# enrolled services.
|
|
76
|
+
# Corresponds to the JSON property `ancestorsEnrolledServices`
|
|
77
|
+
# @return [Array<Google::Apis::AccessapprovalV1::EnrolledService>]
|
|
78
|
+
attr_accessor :ancestors_enrolled_services
|
|
79
|
+
|
|
74
80
|
# Represents all the policies that can be set for Customer Approval.
|
|
75
81
|
# Corresponds to the JSON property `approvalPolicy`
|
|
76
82
|
# @return [Google::Apis::AccessapprovalV1::CustomerApprovalApprovalPolicy]
|
|
@@ -174,6 +180,7 @@ module Google
|
|
|
174
180
|
def update!(**args)
|
|
175
181
|
@active_key_version = args[:active_key_version] if args.key?(:active_key_version)
|
|
176
182
|
@ancestor_has_active_key_version = args[:ancestor_has_active_key_version] if args.key?(:ancestor_has_active_key_version)
|
|
183
|
+
@ancestors_enrolled_services = args[:ancestors_enrolled_services] if args.key?(:ancestors_enrolled_services)
|
|
177
184
|
@approval_policy = args[:approval_policy] if args.key?(:approval_policy)
|
|
178
185
|
@effective_approval_policy = args[:effective_approval_policy] if args.key?(:effective_approval_policy)
|
|
179
186
|
@enrolled_ancestor = args[:enrolled_ancestor] if args.key?(:enrolled_ancestor)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AccessapprovalV1
|
|
18
18
|
# Version of the google-apis-accessapproval_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.46.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260126"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -137,6 +137,8 @@ module Google
|
|
|
137
137
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
138
138
|
property :active_key_version, as: 'activeKeyVersion'
|
|
139
139
|
property :ancestor_has_active_key_version, as: 'ancestorHasActiveKeyVersion'
|
|
140
|
+
collection :ancestors_enrolled_services, as: 'ancestorsEnrolledServices', class: Google::Apis::AccessapprovalV1::EnrolledService, decorator: Google::Apis::AccessapprovalV1::EnrolledService::Representation
|
|
141
|
+
|
|
140
142
|
property :approval_policy, as: 'approvalPolicy', class: Google::Apis::AccessapprovalV1::CustomerApprovalApprovalPolicy, decorator: Google::Apis::AccessapprovalV1::CustomerApprovalApprovalPolicy::Representation
|
|
141
143
|
|
|
142
144
|
property :effective_approval_policy, as: 'effectiveApprovalPolicy', class: Google::Apis::AccessapprovalV1::CustomerApprovalApprovalPolicy, decorator: Google::Apis::AccessapprovalV1::CustomerApprovalApprovalPolicy::Representation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-accessapproval_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.46.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-accessapproval_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-accessapproval_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-accessapproval_v1/v0.46.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-accessapproval_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|