google-apis-managedidentities_v1beta1 0.32.0 → 0.34.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: 5f73c318e66047315edd7153a665dfcfeebfaca71601257fed44e4879347293f
|
4
|
+
data.tar.gz: 36b4b286b7e75a9054bbb094c827247611488f20492228d7523a01f328cbde13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7197e644d88043ab12713943745d9df0889f1f0de24a618f90327fc245609e477fab0b7d20a66b4ba8422d9de4239b2350a16fe315a55e7b77cbc7d7b1a00767
|
7
|
+
data.tar.gz: 944c10d501afac78a382e6faa86df4348f78c435305f2af75b5d8dcb43fc142e07b7fde8cc16e2f6e71d7fcde56b073aa0dfedfdc11f9d0fc31af06e4e99e83e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-managedidentities_v1beta1
|
2
2
|
|
3
|
+
### v0.34.0 (2023-10-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231010
|
6
|
+
|
7
|
+
### v0.33.0 (2023-07-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230705
|
10
|
+
|
3
11
|
### v0.32.0 (2023-05-14)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230505
|
@@ -618,6 +618,12 @@ module Google
|
|
618
618
|
class EnableMigrationRequest
|
619
619
|
include Google::Apis::Core::Hashable
|
620
620
|
|
621
|
+
# Optional. Period after which the migration would be auto disabled. If
|
622
|
+
# unspecified, a default timeout of 48h is used.
|
623
|
+
# Corresponds to the JSON property `enableDuration`
|
624
|
+
# @return [String]
|
625
|
+
attr_accessor :enable_duration
|
626
|
+
|
621
627
|
# Required. List of the on-prem domains to be migrated.
|
622
628
|
# Corresponds to the JSON property `migratingDomains`
|
623
629
|
# @return [Array<Google::Apis::ManagedidentitiesV1beta1::OnPremDomainDetails>]
|
@@ -629,6 +635,7 @@ module Google
|
|
629
635
|
|
630
636
|
# Update properties of this object
|
631
637
|
def update!(**args)
|
638
|
+
@enable_duration = args[:enable_duration] if args.key?(:enable_duration)
|
632
639
|
@migrating_domains = args[:migrating_domains] if args.key?(:migrating_domains)
|
633
640
|
end
|
634
641
|
end
|
@@ -1787,13 +1794,13 @@ module Google
|
|
1787
1794
|
# @return [String]
|
1788
1795
|
attr_accessor :name
|
1789
1796
|
|
1790
|
-
# The normal response of the operation
|
1791
|
-
#
|
1792
|
-
#
|
1793
|
-
#
|
1794
|
-
#
|
1795
|
-
#
|
1796
|
-
#
|
1797
|
+
# The normal, successful response of the operation. If the original method
|
1798
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
1799
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
1800
|
+
# response should be the resource. For other methods, the response should have
|
1801
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
1802
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
1803
|
+
# `TakeSnapshotResponse`.
|
1797
1804
|
# Corresponds to the JSON property `response`
|
1798
1805
|
# @return [Hash<String,Object>]
|
1799
1806
|
attr_accessor :response
|
@@ -1951,22 +1958,22 @@ module Google
|
|
1951
1958
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
1952
1959
|
# the request, the resource, or both. To learn which resources support
|
1953
1960
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
1954
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
1961
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
1955
1962
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
1956
1963
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
1957
1964
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
1958
1965
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
1959
1966
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
1960
1967
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
1961
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
1962
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
1963
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
1964
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
1965
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
1966
|
-
# access description: Does not grant access after Sep 2020
|
1967
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1968
|
-
# a description of IAM and its features, see the
|
1969
|
-
# cloud.google.com/iam/docs/).
|
1968
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
1969
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
1970
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
1971
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
1972
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
1973
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
1974
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1975
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
1976
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
1970
1977
|
class Policy
|
1971
1978
|
include Google::Apis::Core::Hashable
|
1972
1979
|
|
@@ -2155,22 +2162,22 @@ module Google
|
|
2155
2162
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
2156
2163
|
# the request, the resource, or both. To learn which resources support
|
2157
2164
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
2158
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
2165
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
2159
2166
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
2160
2167
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
2161
2168
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
2162
2169
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
2163
2170
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
2164
2171
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
2165
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
2166
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
2167
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
2168
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
2169
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
2170
|
-
# access description: Does not grant access after Sep 2020
|
2171
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
2172
|
-
# a description of IAM and its features, see the
|
2173
|
-
# cloud.google.com/iam/docs/).
|
2172
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
2173
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
2174
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
2175
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
2176
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
2177
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
2178
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
2179
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
2180
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
2174
2181
|
# Corresponds to the JSON property `policy`
|
2175
2182
|
# @return [Google::Apis::ManagedidentitiesV1beta1::Policy]
|
2176
2183
|
attr_accessor :policy
|
@@ -2446,8 +2453,8 @@ module Google
|
|
2446
2453
|
attr_accessor :channel
|
2447
2454
|
|
2448
2455
|
# Deny Maintenance Period that is applied to resource to indicate when
|
2449
|
-
# maintenance is forbidden.
|
2450
|
-
#
|
2456
|
+
# maintenance is forbidden. The protocol supports zero-to-many such periods, but
|
2457
|
+
# the current SLM Rollout implementation only supports zero-to-one.
|
2451
2458
|
# Corresponds to the JSON property `denyMaintenancePeriods`
|
2452
2459
|
# @return [Array<Google::Apis::ManagedidentitiesV1beta1::DenyMaintenancePeriod>]
|
2453
2460
|
attr_accessor :deny_maintenance_periods
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ManagedidentitiesV1beta1
|
18
18
|
# Version of the google-apis-managedidentities_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.34.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 = "20231010"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -548,6 +548,7 @@ module Google
|
|
548
548
|
class EnableMigrationRequest
|
549
549
|
# @private
|
550
550
|
class Representation < Google::Apis::Core::JsonRepresentation
|
551
|
+
property :enable_duration, as: 'enableDuration'
|
551
552
|
collection :migrating_domains, as: 'migratingDomains', class: Google::Apis::ManagedidentitiesV1beta1::OnPremDomainDetails, decorator: Google::Apis::ManagedidentitiesV1beta1::OnPremDomainDetails::Representation
|
552
553
|
|
553
554
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-managedidentities_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.34.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-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -59,7 +59,7 @@ licenses:
|
|
59
59
|
metadata:
|
60
60
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
61
61
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedidentities_v1beta1/CHANGELOG.md
|
62
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1beta1/v0.
|
62
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1beta1/v0.34.0
|
63
63
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedidentities_v1beta1
|
64
64
|
post_install_message:
|
65
65
|
rdoc_options: []
|
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
76
|
- !ruby/object:Gem::Version
|
77
77
|
version: '0'
|
78
78
|
requirements: []
|
79
|
-
rubygems_version: 3.4.
|
79
|
+
rubygems_version: 3.4.19
|
80
80
|
signing_key:
|
81
81
|
specification_version: 4
|
82
82
|
summary: Simple REST client for Managed Service for Microsoft Active Directory API
|