google-apis-iap_v1 0.9.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3805c9e78202250d1f2a7bf3d1953ba92cb035a39ad47740e427a2a9bb6da8a3
4
- data.tar.gz: 053f34d83f955bcbf321734aa7fb7be8d906ac24338322173ae65877357b16bb
3
+ metadata.gz: d1bc58d7cff1e337fcfc4790a8bd844c5bebabe4bf81e36a4432a63b2af58010
4
+ data.tar.gz: 31c3ec8feb535514145a73c25ab1c518c0976d0a9d06d138d3ce44fda3b1a093
5
5
  SHA512:
6
- metadata.gz: ecb6388b149970ea1726df1a67863a2d74a4a1a3cb85d2d34dda509ea974dab45624d4baf12b9590af52e8d0cfd02e58f4b9063e16d2b4c14d043c5e868da22a
7
- data.tar.gz: 71d9eeb2a3e4e88a52b53bab2b2083f83e9ef763369f3174ef910ce6d80c65dda446b60da3edd8b5f063836993798065091d80217ea2451f97843b6f8df703b5
6
+ metadata.gz: 11db8dfb5789ef1f275a3abfc77dd5886f63d06bef5a52fc34c7839a1c303472a5877efb0914403f682e09c9872a29e6f533904a929a89aeda56beaa536d6d56
7
+ data.tar.gz: 715b309ceec249502643b21ed460b9878e2ef338fe0d56f0bda1475ef7094ad978917ef94b7694943ffb3004ad7b5f2d0cb4beef8922b4b12729eb12c5db9274
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.9.0 (2021-09-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20210813
@@ -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.9.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 = "20210813"
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 G Suite organization as
55
- # the project. The brand is created in an un-reviewed status. NOTE: The "
56
- # internal only" status can be manually changed in the Google Cloud console.
57
- # Requires that a brand does not already exist for the project, and that the
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.9.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-09-06 00:00:00.000000000 Z
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.9.0
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: []