google-apis-iap_v1 0.6.0 → 0.10.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 +16 -0
- data/lib/google/apis/iap_v1/classes.rb +46 -3
- data/lib/google/apis/iap_v1/gem_version.rb +3 -3
- data/lib/google/apis/iap_v1/representations.rb +17 -0
- data/lib/google/apis/iap_v1/service.rb +5 -5
- data/lib/google/apis/iap_v1.rb +1 -1
- metadata +13 -7
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
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-iap_v1
|
2
2
|
|
3
|
+
### v0.10.0 (2021-10-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210930
|
6
|
+
|
7
|
+
### v0.9.0 (2021-09-01)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210813
|
10
|
+
|
11
|
+
### v0.8.0 (2021-06-29)
|
12
|
+
|
13
|
+
* Regenerated using generator version 0.4.0
|
14
|
+
|
15
|
+
### v0.7.0 (2021-06-24)
|
16
|
+
|
17
|
+
* Unspecified changes
|
18
|
+
|
3
19
|
### v0.6.0 (2021-06-15)
|
4
20
|
|
5
21
|
* Regenerated from discovery document revision 20210611
|
@@ -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
|
|
@@ -591,7 +597,7 @@ module Google
|
|
591
597
|
# resourcemanager.organizationAdmin - members: - user:eve@example.com role:
|
592
598
|
# roles/resourcemanager.organizationViewer condition: title: expirable access
|
593
599
|
# description: Does not grant access after Sep 2020 expression: request.time <
|
594
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
600
|
+
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
|
595
601
|
# description of IAM and its features, see the [IAM documentation](https://cloud.
|
596
602
|
# google.com/iam/docs/).
|
597
603
|
class Policy
|
@@ -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
|
@@ -842,7 +885,7 @@ module Google
|
|
842
885
|
# resourcemanager.organizationAdmin - members: - user:eve@example.com role:
|
843
886
|
# roles/resourcemanager.organizationViewer condition: title: expirable access
|
844
887
|
# description: Does not grant access after Sep 2020 expression: request.time <
|
845
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
888
|
+
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
|
846
889
|
# description of IAM and its features, see the [IAM documentation](https://cloud.
|
847
890
|
# google.com/iam/docs/).
|
848
891
|
# Corresponds to the JSON property `policy`
|
@@ -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
|
-
GENERATOR_VERSION = "0.
|
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`.
|
data/lib/google/apis/iap_v1.rb
CHANGED
@@ -29,7 +29,7 @@ module Google
|
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1'
|
31
31
|
|
32
|
-
# See, edit, configure, and delete your Google Cloud
|
32
|
+
# See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
33
33
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
34
34
|
end
|
35
35
|
end
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Cloud Identity-Aware Proxy API V1.
|
28
34
|
Simple REST clients are Ruby client libraries that provide access to Google services
|
29
35
|
via their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-iap_v1/CHANGELOG.md
|
55
|
-
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
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-iap_v1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|