google-apis-iap_v1 0.9.0 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1bc58d7cff1e337fcfc4790a8bd844c5bebabe4bf81e36a4432a63b2af58010
|
4
|
+
data.tar.gz: 31c3ec8feb535514145a73c25ab1c518c0976d0a9d06d138d3ce44fda3b1a093
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11db8dfb5789ef1f275a3abfc77dd5886f63d06bef5a52fc34c7839a1c303472a5877efb0914403f682e09c9872a29e6f533904a929a89aeda56beaa536d6d56
|
7
|
+
data.tar.gz: 715b309ceec249502643b21ed460b9878e2ef338fe0d56f0bda1475ef7094ad978917ef94b7694943ffb3004ad7b5f2d0cb4beef8922b4b12729eb12c5db9274
|
data/CHANGELOG.md
CHANGED
@@ -82,6 +82,11 @@ module Google
|
|
82
82
|
# @return [Google::Apis::IapV1::PolicyDelegationSettings]
|
83
83
|
attr_accessor :policy_delegation_settings
|
84
84
|
|
85
|
+
# Configuration for IAP reauthentication policies.
|
86
|
+
# Corresponds to the JSON property `reauthSettings`
|
87
|
+
# @return [Google::Apis::IapV1::ReauthSettings]
|
88
|
+
attr_accessor :reauth_settings
|
89
|
+
|
85
90
|
def initialize(**args)
|
86
91
|
update!(**args)
|
87
92
|
end
|
@@ -92,6 +97,7 @@ module Google
|
|
92
97
|
@gcip_settings = args[:gcip_settings] if args.key?(:gcip_settings)
|
93
98
|
@oauth_settings = args[:oauth_settings] if args.key?(:oauth_settings)
|
94
99
|
@policy_delegation_settings = args[:policy_delegation_settings] if args.key?(:policy_delegation_settings)
|
100
|
+
@reauth_settings = args[:reauth_settings] if args.key?(:reauth_settings)
|
95
101
|
end
|
96
102
|
end
|
97
103
|
|
@@ -599,7 +605,12 @@ module Google
|
|
599
605
|
|
600
606
|
# Associates a list of `members` to a `role`. Optionally, may specify a `
|
601
607
|
# condition` that determines how and when the `bindings` are applied. Each of
|
602
|
-
# the `bindings` must contain at least one member.
|
608
|
+
# the `bindings` must contain at least one member. The `bindings` in a `Policy`
|
609
|
+
# can refer to up to 1,500 members; up to 250 of these members can be Google
|
610
|
+
# groups. Each occurrence of a member counts towards these limits. For example,
|
611
|
+
# if the `bindings` grant 50 different roles to `user:alice@example.com`, and
|
612
|
+
# not to any other member, then you can add another 1,450 members to the `
|
613
|
+
# bindings` in the `Policy`.
|
603
614
|
# Corresponds to the JSON property `bindings`
|
604
615
|
# @return [Array<Google::Apis::IapV1::Binding>]
|
605
616
|
attr_accessor :bindings
|
@@ -736,6 +747,38 @@ module Google
|
|
736
747
|
end
|
737
748
|
end
|
738
749
|
|
750
|
+
# Configuration for IAP reauthentication policies.
|
751
|
+
class ReauthSettings
|
752
|
+
include Google::Apis::Core::Hashable
|
753
|
+
|
754
|
+
# Reauth session lifetime, how long before a user has to reauthenticate again.
|
755
|
+
# Corresponds to the JSON property `maxAge`
|
756
|
+
# @return [String]
|
757
|
+
attr_accessor :max_age
|
758
|
+
|
759
|
+
# Reauth method required by the policy.
|
760
|
+
# Corresponds to the JSON property `method`
|
761
|
+
# @return [String]
|
762
|
+
attr_accessor :method_prop
|
763
|
+
|
764
|
+
# How IAP determines the effective policy in cases of hierarchial policies.
|
765
|
+
# Policies are merged from higher in the hierarchy to lower in the hierarchy.
|
766
|
+
# Corresponds to the JSON property `policyType`
|
767
|
+
# @return [String]
|
768
|
+
attr_accessor :policy_type
|
769
|
+
|
770
|
+
def initialize(**args)
|
771
|
+
update!(**args)
|
772
|
+
end
|
773
|
+
|
774
|
+
# Update properties of this object
|
775
|
+
def update!(**args)
|
776
|
+
@max_age = args[:max_age] if args.key?(:max_age)
|
777
|
+
@method_prop = args[:method_prop] if args.key?(:method_prop)
|
778
|
+
@policy_type = args[:policy_type] if args.key?(:policy_type)
|
779
|
+
end
|
780
|
+
end
|
781
|
+
|
739
782
|
# The request sent to ResetIdentityAwareProxyClientSecret.
|
740
783
|
class ResetIdentityAwareProxyClientSecretRequest
|
741
784
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module IapV1
|
18
18
|
# Version of the google-apis-iap_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210930"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -142,6 +142,12 @@ module Google
|
|
142
142
|
include Google::Apis::Core::JsonObjectSupport
|
143
143
|
end
|
144
144
|
|
145
|
+
class ReauthSettings
|
146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
|
+
|
148
|
+
include Google::Apis::Core::JsonObjectSupport
|
149
|
+
end
|
150
|
+
|
145
151
|
class ResetIdentityAwareProxyClientSecretRequest
|
146
152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
153
|
|
@@ -191,6 +197,8 @@ module Google
|
|
191
197
|
|
192
198
|
property :policy_delegation_settings, as: 'policyDelegationSettings', class: Google::Apis::IapV1::PolicyDelegationSettings, decorator: Google::Apis::IapV1::PolicyDelegationSettings::Representation
|
193
199
|
|
200
|
+
property :reauth_settings, as: 'reauthSettings', class: Google::Apis::IapV1::ReauthSettings, decorator: Google::Apis::IapV1::ReauthSettings::Representation
|
201
|
+
|
194
202
|
end
|
195
203
|
end
|
196
204
|
|
@@ -353,6 +361,15 @@ module Google
|
|
353
361
|
end
|
354
362
|
end
|
355
363
|
|
364
|
+
class ReauthSettings
|
365
|
+
# @private
|
366
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
367
|
+
property :max_age, as: 'maxAge'
|
368
|
+
property :method_prop, as: 'method'
|
369
|
+
property :policy_type, as: 'policyType'
|
370
|
+
end
|
371
|
+
end
|
372
|
+
|
356
373
|
class ResetIdentityAwareProxyClientSecretRequest
|
357
374
|
# @private
|
358
375
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -51,11 +51,11 @@ module Google
|
|
51
51
|
|
52
52
|
# Constructs a new OAuth brand for the project if one does not exist. The
|
53
53
|
# created brand is "internal only", meaning that OAuth clients created under it
|
54
|
-
# only accept requests from users who belong to the same
|
55
|
-
# the project. The brand is created in an un-reviewed status.
|
56
|
-
# internal only" status can be manually changed in the Google Cloud
|
57
|
-
# Requires that a brand does not already exist for the project, and
|
58
|
-
# specified support email is owned by the caller.
|
54
|
+
# only accept requests from users who belong to the same Google Workspace
|
55
|
+
# organization as the project. The brand is created in an un-reviewed status.
|
56
|
+
# NOTE: The "internal only" status can be manually changed in the Google Cloud
|
57
|
+
# Console. Requires that a brand does not already exist for the project, and
|
58
|
+
# that the specified support email is owned by the caller.
|
59
59
|
# @param [String] parent
|
60
60
|
# Required. GCP Project number/id under which the brand is to be created. In the
|
61
61
|
# following format: projects/`project_number/id`.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-iap_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.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: 2021-
|
11
|
+
date: 2021-10-11 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/master/generated/google-apis-iap_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-iap_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-iap_v1/v0.10.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-iap_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|