google-apis-iap_v1 0.35.0 → 0.36.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 +4 -0
- data/lib/google/apis/iap_v1/classes.rb +26 -20
- data/lib/google/apis/iap_v1/gem_version.rb +2 -2
- data/lib/google/apis/iap_v1/representations.rb +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a2a9b246229b740190e12825908527aac35e28c2b40106af6526e5e4eb436984
|
4
|
+
data.tar.gz: 014da4167aa71b2652f88fd3b6f63a0016e1f61b7c8d1b6638f6e32cee9de84d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43de193af2c2a23a732791f0a53c97f9e8a5754587d97157f84752a5bfdf640d2b8c8e03443be60562bf3e24f45cac4bb9d1b1c396a523bfbd1f88af5f923c9c
|
7
|
+
data.tar.gz: 10792bf0cb0cb6350a72ae9a6c6f5a4acfcc579ce116ec68c06bec0f0b0791357a24331238b8865464cd758f47feb70540b10c037c7bf123cb4fa6e89f822fd0
|
data/CHANGELOG.md
CHANGED
@@ -693,6 +693,11 @@ module Google
|
|
693
693
|
# @return [String]
|
694
694
|
attr_accessor :login_hint
|
695
695
|
|
696
|
+
# List of client ids allowed to use IAP programmatically.
|
697
|
+
# Corresponds to the JSON property `programmaticClients`
|
698
|
+
# @return [Array<String>]
|
699
|
+
attr_accessor :programmatic_clients
|
700
|
+
|
696
701
|
def initialize(**args)
|
697
702
|
update!(**args)
|
698
703
|
end
|
@@ -700,6 +705,7 @@ module Google
|
|
700
705
|
# Update properties of this object
|
701
706
|
def update!(**args)
|
702
707
|
@login_hint = args[:login_hint] if args.key?(:login_hint)
|
708
|
+
@programmatic_clients = args[:programmatic_clients] if args.key?(:programmatic_clients)
|
703
709
|
end
|
704
710
|
end
|
705
711
|
|
@@ -714,22 +720,22 @@ module Google
|
|
714
720
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
715
721
|
# the request, the resource, or both. To learn which resources support
|
716
722
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
717
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
723
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
718
724
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
719
725
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
720
726
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
721
727
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
722
728
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
723
729
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
724
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
725
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
726
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
727
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
728
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
729
|
-
# access description: Does not grant access after Sep 2020
|
730
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
731
|
-
# a description of IAM and its features, see the
|
732
|
-
# cloud.google.com/iam/docs/).
|
730
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
731
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
732
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
733
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
734
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
735
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
736
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
737
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
738
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
733
739
|
class Policy
|
734
740
|
include Google::Apis::Core::Hashable
|
735
741
|
|
@@ -1002,22 +1008,22 @@ module Google
|
|
1002
1008
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
1003
1009
|
# the request, the resource, or both. To learn which resources support
|
1004
1010
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
1005
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
1011
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
1006
1012
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
1007
1013
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
1008
1014
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
1009
1015
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
1010
1016
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
1011
1017
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
1012
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
1013
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
1014
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
1015
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
1016
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
1017
|
-
# access description: Does not grant access after Sep 2020
|
1018
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1019
|
-
# a description of IAM and its features, see the
|
1020
|
-
# cloud.google.com/iam/docs/).
|
1018
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
1019
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
1020
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
1021
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
1022
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
1023
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
1024
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1025
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
1026
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
1021
1027
|
# Corresponds to the JSON property `policy`
|
1022
1028
|
# @return [Google::Apis::IapV1::Policy]
|
1023
1029
|
attr_accessor :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.36.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 = "20230901"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
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.36.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-09-10 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/main/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.36.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iap_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Identity-Aware Proxy API V1
|