google-apis-managedidentities_v1alpha1 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: dec02a1e45cc3f6a07d906d2573a3895889811846c1b9632bab10a5b93266186
|
4
|
+
data.tar.gz: ea7a00f5b32f8bc8118c13c92b42b952eff37ffcff2870b7901f270450771522
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35184114485b77851641c2a2c0d7ec2edee0a9873cb1a6377c7ebd1bcc4842018ffa165a70fce1bd72410bbdddf6ed382bde09a99b60f259a12423cfd2a02919
|
7
|
+
data.tar.gz: f3b2da4d4df97697b1cae8b681b81c39212db0eb183bfdf7530f344648118035939dc254b44ee3d107511a253b2ded3dfbcc8b4817be633badc41046f27271b8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-managedidentities_v1alpha1
|
2
2
|
|
3
|
+
### v0.34.0 (2023-10-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231010
|
6
|
+
|
7
|
+
### v0.33.0 (2023-07-09)
|
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
|
@@ -619,6 +619,12 @@ module Google
|
|
619
619
|
class EnableMigrationRequest
|
620
620
|
include Google::Apis::Core::Hashable
|
621
621
|
|
622
|
+
# Optional. Period after which the migration would be auto disabled. If
|
623
|
+
# unspecified, a default timeout of 48h is used.
|
624
|
+
# Corresponds to the JSON property `enableDuration`
|
625
|
+
# @return [String]
|
626
|
+
attr_accessor :enable_duration
|
627
|
+
|
622
628
|
# Required. List of the on-prem domains to be migrated.
|
623
629
|
# Corresponds to the JSON property `migratingDomains`
|
624
630
|
# @return [Array<Google::Apis::ManagedidentitiesV1alpha1::OnPremDomainDetails>]
|
@@ -630,6 +636,7 @@ module Google
|
|
630
636
|
|
631
637
|
# Update properties of this object
|
632
638
|
def update!(**args)
|
639
|
+
@enable_duration = args[:enable_duration] if args.key?(:enable_duration)
|
633
640
|
@migrating_domains = args[:migrating_domains] if args.key?(:migrating_domains)
|
634
641
|
end
|
635
642
|
end
|
@@ -1788,13 +1795,13 @@ module Google
|
|
1788
1795
|
# @return [String]
|
1789
1796
|
attr_accessor :name
|
1790
1797
|
|
1791
|
-
# The normal response of the operation
|
1792
|
-
#
|
1793
|
-
#
|
1794
|
-
#
|
1795
|
-
#
|
1796
|
-
#
|
1797
|
-
#
|
1798
|
+
# The normal, successful response of the operation. If the original method
|
1799
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
1800
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
1801
|
+
# response should be the resource. For other methods, the response should have
|
1802
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
1803
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
1804
|
+
# `TakeSnapshotResponse`.
|
1798
1805
|
# Corresponds to the JSON property `response`
|
1799
1806
|
# @return [Hash<String,Object>]
|
1800
1807
|
attr_accessor :response
|
@@ -1952,22 +1959,22 @@ module Google
|
|
1952
1959
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
1953
1960
|
# the request, the resource, or both. To learn which resources support
|
1954
1961
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
1955
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
1962
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
1956
1963
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
1957
1964
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
1958
1965
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
1959
1966
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
1960
1967
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
1961
1968
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
1962
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
1963
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
1964
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
1965
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
1966
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
1967
|
-
# access description: Does not grant access after Sep 2020
|
1968
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1969
|
-
# a description of IAM and its features, see the
|
1970
|
-
# cloud.google.com/iam/docs/).
|
1969
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
1970
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
1971
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
1972
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
1973
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
1974
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
1975
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1976
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
1977
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
1971
1978
|
class Policy
|
1972
1979
|
include Google::Apis::Core::Hashable
|
1973
1980
|
|
@@ -2197,22 +2204,22 @@ module Google
|
|
2197
2204
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
2198
2205
|
# the request, the resource, or both. To learn which resources support
|
2199
2206
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
2200
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
2207
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
2201
2208
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
2202
2209
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
2203
2210
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
2204
2211
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
2205
2212
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
2206
2213
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
2207
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
2208
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
2209
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
2210
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
2211
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
2212
|
-
# access description: Does not grant access after Sep 2020
|
2213
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
2214
|
-
# a description of IAM and its features, see the
|
2215
|
-
# cloud.google.com/iam/docs/).
|
2214
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
2215
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
2216
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
2217
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
2218
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
2219
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
2220
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
2221
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
2222
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
2216
2223
|
# Corresponds to the JSON property `policy`
|
2217
2224
|
# @return [Google::Apis::ManagedidentitiesV1alpha1::Policy]
|
2218
2225
|
attr_accessor :policy
|
@@ -2447,8 +2454,8 @@ module Google
|
|
2447
2454
|
attr_accessor :channel
|
2448
2455
|
|
2449
2456
|
# Deny Maintenance Period that is applied to resource to indicate when
|
2450
|
-
# maintenance is forbidden.
|
2451
|
-
#
|
2457
|
+
# maintenance is forbidden. The protocol supports zero-to-many such periods, but
|
2458
|
+
# the current SLM Rollout implementation only supports zero-to-one.
|
2452
2459
|
# Corresponds to the JSON property `denyMaintenancePeriods`
|
2453
2460
|
# @return [Array<Google::Apis::ManagedidentitiesV1alpha1::DenyMaintenancePeriod>]
|
2454
2461
|
attr_accessor :deny_maintenance_periods
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ManagedidentitiesV1alpha1
|
18
18
|
# Version of the google-apis-managedidentities_v1alpha1 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::ManagedidentitiesV1alpha1::OnPremDomainDetails, decorator: Google::Apis::ManagedidentitiesV1alpha1::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_v1alpha1
|
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_v1alpha1/CHANGELOG.md
|
62
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1alpha1/v0.
|
62
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1alpha1/v0.34.0
|
63
63
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedidentities_v1alpha1
|
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
|