google-apis-iam_v1 0.66.0 → 0.67.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/iam_v1/classes.rb +32 -1
- data/lib/google/apis/iam_v1/gem_version.rb +2 -2
- data/lib/google/apis/iam_v1/representations.rb +16 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d29bde2db02e0dcb614b1ea6c75269b4863aa109104c0939703c38c4fefbdf95
|
4
|
+
data.tar.gz: 2df7dc581ad837da2efe4c3d54b23944dc4a6ee53d6c39aec5942683abcc8290
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d368df505535ca4b0c774be0eeabd46a721d08ed2abdf97f4dcf6147250b5d8aa444b6f729b512981fee083425de5637501be9b5a8b442afe43c784573892f78
|
7
|
+
data.tar.gz: 856845a22d43f013a4cc856ee9dfac9e9564e9ce54ac2ce6d01f64c45f099fcb0a14ece8a5d80f6f6a367e8a3baea907e220eeed8b9f2cfec1f1d8299dfe7fb9
|
data/CHANGELOG.md
CHANGED
@@ -1717,7 +1717,10 @@ module Google
|
|
1717
1717
|
# @return [Array<String>]
|
1718
1718
|
attr_accessor :allowed_audiences
|
1719
1719
|
|
1720
|
-
# Required. The OIDC issuer URL. Must be an HTTPS endpoint.
|
1720
|
+
# Required. The OIDC issuer URL. Must be an HTTPS endpoint. Used per OpenID
|
1721
|
+
# Connect Discovery 1.0 spec to locate the provider's public keys (via `jwks_uri`
|
1722
|
+
# ) for verifying tokens like the OIDC ID token. These public key types must be '
|
1723
|
+
# EC' or 'RSA'.
|
1721
1724
|
# Corresponds to the JSON property `issuerUri`
|
1722
1725
|
# @return [String]
|
1723
1726
|
attr_accessor :issuer_uri
|
@@ -3754,6 +3757,12 @@ module Google
|
|
3754
3757
|
# @return [String]
|
3755
3758
|
attr_accessor :state
|
3756
3759
|
|
3760
|
+
# An X.509-type identity provider represents a CA. It is trusted to assert a
|
3761
|
+
# client identity if the client has a certificate that chains up to this CA.
|
3762
|
+
# Corresponds to the JSON property `x509`
|
3763
|
+
# @return [Google::Apis::IamV1::X509]
|
3764
|
+
attr_accessor :x509
|
3765
|
+
|
3757
3766
|
def initialize(**args)
|
3758
3767
|
update!(**args)
|
3759
3768
|
end
|
@@ -3771,6 +3780,7 @@ module Google
|
|
3771
3780
|
@oidc = args[:oidc] if args.key?(:oidc)
|
3772
3781
|
@saml = args[:saml] if args.key?(:saml)
|
3773
3782
|
@state = args[:state] if args.key?(:state)
|
3783
|
+
@x509 = args[:x509] if args.key?(:x509)
|
3774
3784
|
end
|
3775
3785
|
end
|
3776
3786
|
|
@@ -3821,6 +3831,27 @@ module Google
|
|
3821
3831
|
@use = args[:use] if args.key?(:use)
|
3822
3832
|
end
|
3823
3833
|
end
|
3834
|
+
|
3835
|
+
# An X.509-type identity provider represents a CA. It is trusted to assert a
|
3836
|
+
# client identity if the client has a certificate that chains up to this CA.
|
3837
|
+
class X509
|
3838
|
+
include Google::Apis::Core::Hashable
|
3839
|
+
|
3840
|
+
# Trust store that contains trust anchors and optional intermediate CAs used in
|
3841
|
+
# PKI to build trust chain and verify client's identity.
|
3842
|
+
# Corresponds to the JSON property `trustStore`
|
3843
|
+
# @return [Google::Apis::IamV1::TrustStore]
|
3844
|
+
attr_accessor :trust_store
|
3845
|
+
|
3846
|
+
def initialize(**args)
|
3847
|
+
update!(**args)
|
3848
|
+
end
|
3849
|
+
|
3850
|
+
# Update properties of this object
|
3851
|
+
def update!(**args)
|
3852
|
+
@trust_store = args[:trust_store] if args.key?(:trust_store)
|
3853
|
+
end
|
3854
|
+
end
|
3824
3855
|
end
|
3825
3856
|
end
|
3826
3857
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module IamV1
|
18
18
|
# Version of the google-apis-iam_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.67.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250411"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -676,6 +676,12 @@ module Google
|
|
676
676
|
include Google::Apis::Core::JsonObjectSupport
|
677
677
|
end
|
678
678
|
|
679
|
+
class X509
|
680
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
681
|
+
|
682
|
+
include Google::Apis::Core::JsonObjectSupport
|
683
|
+
end
|
684
|
+
|
679
685
|
class AccessRestrictions
|
680
686
|
# @private
|
681
687
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1648,6 +1654,8 @@ module Google
|
|
1648
1654
|
property :saml, as: 'saml', class: Google::Apis::IamV1::Saml, decorator: Google::Apis::IamV1::Saml::Representation
|
1649
1655
|
|
1650
1656
|
property :state, as: 'state'
|
1657
|
+
property :x509, as: 'x509', class: Google::Apis::IamV1::X509, decorator: Google::Apis::IamV1::X509::Representation
|
1658
|
+
|
1651
1659
|
end
|
1652
1660
|
end
|
1653
1661
|
|
@@ -1662,6 +1670,14 @@ module Google
|
|
1662
1670
|
property :use, as: 'use'
|
1663
1671
|
end
|
1664
1672
|
end
|
1673
|
+
|
1674
|
+
class X509
|
1675
|
+
# @private
|
1676
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1677
|
+
property :trust_store, as: 'trustStore', class: Google::Apis::IamV1::TrustStore, decorator: Google::Apis::IamV1::TrustStore::Representation
|
1678
|
+
|
1679
|
+
end
|
1680
|
+
end
|
1665
1681
|
end
|
1666
1682
|
end
|
1667
1683
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-iam_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.67.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-20 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
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-iam_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.67.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v1
|
63
63
|
rdoc_options: []
|
64
64
|
require_paths:
|