google-apis-iam_v1 0.54.0 → 0.55.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: 1142b7590b9a08c0918c7c4c19a1c2198973bd0e39aef60d714f8530057c4b41
4
- data.tar.gz: 3434366564f5597d9c3a0659f55d4511b6fc41d3139b3d7c90add1ecfe2d6f89
3
+ metadata.gz: eeb711227ab9d126b67b5ff5a327e187b9325c963fcb4f9502f2e4d1ae4beca2
4
+ data.tar.gz: d0a3d4fb3659804b8aceabd20ec89567b9b0b708fb67e3cd85949c3d95506d86
5
5
  SHA512:
6
- metadata.gz: 61486cecbb1d3fa7508cf6918b3ceb0b64240fdaf19896b9259fbb58067135c3fed45a73f061dbf742f23efd6948f923f7443f234298808cd3516bbc1d7dcfc5
7
- data.tar.gz: b606f93c188313d0e829285723d6562b83f618d80d779aa64cdd9cd163512de32b627e78edd59b73dd048ff67735ce6f6ef473fb050ffebe93747a3469ee185c
6
+ metadata.gz: f2bba21a95e849ae59cde6d0c19dc1b48ca4e02763f9df3bcaa8e05263e9aea2c21dd153a8185bf8e8fcc66acdeb3238864994b46247599e1fc667344263a914
7
+ data.tar.gz: 5dd5c60d60c3e5bee5889ee0317261b82f80c99f35237b57ac25b90fcac2f91708b56f77a51c89bc8a9d5a32cd5869a2ae48917e70adc8648f34d3613d8bcfdd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-iam_v1
2
2
 
3
+ ### v0.55.0 (2024-03-24)
4
+
5
+ * Regenerated from discovery document revision 20240314
6
+ * Regenerated using generator version 0.14.0
7
+
3
8
  ### v0.54.0 (2024-02-23)
4
9
 
5
10
  * Unspecified changes
@@ -1748,6 +1748,32 @@ module Google
1748
1748
  end
1749
1749
  end
1750
1750
 
1751
+ # Operation metadata returned by the CLH during resource state reconciliation.
1752
+ class ReconciliationOperationMetadata
1753
+ include Google::Apis::Core::Hashable
1754
+
1755
+ # DEPRECATED. Use exclusive_action instead.
1756
+ # Corresponds to the JSON property `deleteResource`
1757
+ # @return [Boolean]
1758
+ attr_accessor :delete_resource
1759
+ alias_method :delete_resource?, :delete_resource
1760
+
1761
+ # Excluisive action returned by the CLH.
1762
+ # Corresponds to the JSON property `exclusiveAction`
1763
+ # @return [String]
1764
+ attr_accessor :exclusive_action
1765
+
1766
+ def initialize(**args)
1767
+ update!(**args)
1768
+ end
1769
+
1770
+ # Update properties of this object
1771
+ def update!(**args)
1772
+ @delete_resource = args[:delete_resource] if args.key?(:delete_resource)
1773
+ @exclusive_action = args[:exclusive_action] if args.key?(:exclusive_action)
1774
+ end
1775
+ end
1776
+
1751
1777
  # A role in the Identity and Access Management API.
1752
1778
  class Role
1753
1779
  include Google::Apis::Core::Hashable
@@ -1778,8 +1804,8 @@ module Google
1778
1804
  # The name of the role. When `Role` is used in `CreateRole`, the role name must
1779
1805
  # not be set. When `Role` is used in output and other input such as `UpdateRole`,
1780
1806
  # the role name is the complete path. For example, `roles/logging.viewer` for
1781
- # predefined roles, `organizations/`ORGANIZATION_ID`/roles/my-role` for
1782
- # organization-level custom roles, and `projects/`PROJECT_ID`/roles/my-role` for
1807
+ # predefined roles, `organizations/`ORGANIZATION_ID`/roles/myRole` for
1808
+ # organization-level custom roles, and `projects/`PROJECT_ID`/roles/myRole` for
1783
1809
  # project-level custom roles.
1784
1810
  # Corresponds to the JSON property `name`
1785
1811
  # @return [String]
@@ -1818,18 +1844,18 @@ module Google
1818
1844
  class Saml
1819
1845
  include Google::Apis::Core::Hashable
1820
1846
 
1821
- # Required. SAML Identity provider configuration metadata xml doc. The xml
1822
- # document should comply with [SAML 2.0 specification](https://www.oasis-open.
1823
- # org/committees/download.php/56785/sstc-saml-metadata-errata-2.0-wd-05.pdf).
1824
- # The max size of the acceptable xml document will be bounded to 128k characters.
1825
- # The metadata xml document should satisfy the following constraints: 1) Must
1826
- # contain an Identity Provider Entity ID. 2) Must contain at least one non-
1827
- # expired signing key certificate. 3) For each signing key: a) Valid from should
1828
- # be no more than 7 days from now. b) Valid to should be no more than 15 years
1829
- # in the future. 4) Upto 3 IdP signing keys are allowed in the metadata xml.
1830
- # When updating the provider's metadata xml, at lease one non-expired signing
1831
- # key must overlap with the existing metadata. This requirement is skipped if
1832
- # there are no non-expired signing keys present in the existing metadata
1847
+ # Required. SAML identity provider (IdP) configuration metadata XML doc. The XML
1848
+ # document must comply with the [SAML 2.0 specification](https://docs.oasis-open.
1849
+ # org/security/saml/v2.0/saml-metadata-2.0-os.pdf). The maximum size of an
1850
+ # acceptable XML document is 128K characters. The SAML metadata XML document
1851
+ # must satisfy the following constraints: * Must contain an IdP Entity ID. *
1852
+ # Must contain at least one non-expired signing certificate. * For each signing
1853
+ # certificate, the expiration must be: * From no more than 7 days in the future.
1854
+ # * To no more than 15 years in the future. * Up to three IdP signing keys are
1855
+ # allowed. When updating the provider's metadata XML, at least one non-expired
1856
+ # signing key must overlap with the existing metadata. This requirement is
1857
+ # skipped if there are no non-expired signing keys present in the existing
1858
+ # metadata.
1833
1859
  # Corresponds to the JSON property `idpMetadataXml`
1834
1860
  # @return [String]
1835
1861
  attr_accessor :idp_metadata_xml
@@ -2579,8 +2605,8 @@ module Google
2579
2605
  # user's thumbnail photo. This is an optional field. When set, the image will be
2580
2606
  # visible as the user's profile picture. If not set, a generic user icon will be
2581
2607
  # displayed instead. This attribute cannot be referenced in IAM bindings. * `
2582
- # google.posix_username`: The linux username used by OS login. This is an
2583
- # optional field and the mapped posix username cannot exceed 32 characters, The
2608
+ # google.posix_username`: The Linux username used by OS Login. This is an
2609
+ # optional field and the mapped POSIX username cannot exceed 32 characters, The
2584
2610
  # key must match the regex "^a-zA-Z0-9._`0,31`$". This attribute cannot be
2585
2611
  # referenced in IAM bindings. You can also provide custom attributes by
2586
2612
  # specifying `attribute.`custom_attribute``, where `custom_attribute` is the
@@ -2894,6 +2920,12 @@ module Google
2894
2920
  # @return [String]
2895
2921
  attr_accessor :state
2896
2922
 
2923
+ # An X.509-type identity provider represents a CA. It is trusted to assert a
2924
+ # client identity if the client has a certificate that chains up to this CA.
2925
+ # Corresponds to the JSON property `x509`
2926
+ # @return [Google::Apis::IamV1::X509]
2927
+ attr_accessor :x509
2928
+
2897
2929
  def initialize(**args)
2898
2930
  update!(**args)
2899
2931
  end
@@ -2911,6 +2943,7 @@ module Google
2911
2943
  @oidc = args[:oidc] if args.key?(:oidc)
2912
2944
  @saml = args[:saml] if args.key?(:saml)
2913
2945
  @state = args[:state] if args.key?(:state)
2946
+ @x509 = args[:x509] if args.key?(:x509)
2914
2947
  end
2915
2948
  end
2916
2949
 
@@ -2961,6 +2994,20 @@ module Google
2961
2994
  @use = args[:use] if args.key?(:use)
2962
2995
  end
2963
2996
  end
2997
+
2998
+ # An X.509-type identity provider represents a CA. It is trusted to assert a
2999
+ # client identity if the client has a certificate that chains up to this CA.
3000
+ class X509
3001
+ include Google::Apis::Core::Hashable
3002
+
3003
+ def initialize(**args)
3004
+ update!(**args)
3005
+ end
3006
+
3007
+ # Update properties of this object
3008
+ def update!(**args)
3009
+ end
3010
+ end
2964
3011
  end
2965
3012
  end
2966
3013
  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.54.0"
19
+ GEM_VERSION = "0.55.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.1"
22
+ GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240118"
25
+ REVISION = "20240314"
26
26
  end
27
27
  end
28
28
  end
@@ -334,6 +334,12 @@ module Google
334
334
  include Google::Apis::Core::JsonObjectSupport
335
335
  end
336
336
 
337
+ class ReconciliationOperationMetadata
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
337
343
  class Role
338
344
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
345
 
@@ -520,6 +526,12 @@ module Google
520
526
  include Google::Apis::Core::JsonObjectSupport
521
527
  end
522
528
 
529
+ class X509
530
+ class Representation < Google::Apis::Core::JsonRepresentation; end
531
+
532
+ include Google::Apis::Core::JsonObjectSupport
533
+ end
534
+
523
535
  class AccessRestrictions
524
536
  # @private
525
537
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -980,6 +992,14 @@ module Google
980
992
  end
981
993
  end
982
994
 
995
+ class ReconciliationOperationMetadata
996
+ # @private
997
+ class Representation < Google::Apis::Core::JsonRepresentation
998
+ property :delete_resource, as: 'deleteResource'
999
+ property :exclusive_action, as: 'exclusiveAction'
1000
+ end
1001
+ end
1002
+
983
1003
  class Role
984
1004
  # @private
985
1005
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1251,6 +1271,8 @@ module Google
1251
1271
  property :saml, as: 'saml', class: Google::Apis::IamV1::Saml, decorator: Google::Apis::IamV1::Saml::Representation
1252
1272
 
1253
1273
  property :state, as: 'state'
1274
+ property :x509, as: 'x509', class: Google::Apis::IamV1::X509, decorator: Google::Apis::IamV1::X509::Representation
1275
+
1254
1276
  end
1255
1277
  end
1256
1278
 
@@ -1265,6 +1287,12 @@ module Google
1265
1287
  property :use, as: 'use'
1266
1288
  end
1267
1289
  end
1290
+
1291
+ class X509
1292
+ # @private
1293
+ class Representation < Google::Apis::Core::JsonRepresentation
1294
+ end
1295
+ end
1268
1296
  end
1269
1297
  end
1270
1298
  end
@@ -22,9 +22,11 @@ module Google
22
22
  module IamV1
23
23
  # Identity and Access Management (IAM) API
24
24
  #
25
- # Manages identity and access control for Google Cloud Platform resources,
26
- # including the creation of service accounts, which you can use to authenticate
27
- # to Google and make API calls.
25
+ # Manages identity and access control for Google Cloud resources, including the
26
+ # creation of service accounts, which you can use to authenticate to Google and
27
+ # make API calls. Enabling this API also enables the IAM Service Account
28
+ # Credentials API (iamcredentials.googleapis.com). However, disabling this API
29
+ # doesn't disable the IAM Service Account Credentials API.
28
30
  #
29
31
  # @example
30
32
  # require 'google/apis/iam_v1'
@@ -21,9 +21,11 @@ module Google
21
21
  module Apis
22
22
  # Identity and Access Management (IAM) API
23
23
  #
24
- # Manages identity and access control for Google Cloud Platform resources,
25
- # including the creation of service accounts, which you can use to authenticate
26
- # to Google and make API calls.
24
+ # Manages identity and access control for Google Cloud resources, including the
25
+ # creation of service accounts, which you can use to authenticate to Google and
26
+ # make API calls. Enabling this API also enables the IAM Service Account
27
+ # Credentials API (iamcredentials.googleapis.com). However, disabling this API
28
+ # doesn't disable the IAM Service Account Credentials API.
27
29
  #
28
30
  # @see https://cloud.google.com/iam/
29
31
  module IamV1
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-iam_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.54.0
4
+ version: 0.55.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: 2024-02-25 00:00:00.000000000 Z
11
+ date: 2024-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -59,7 +59,7 @@ licenses:
59
59
  metadata:
60
60
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
61
61
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v1/CHANGELOG.md
62
- documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.54.0
62
+ documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.55.0
63
63
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v1
64
64
  post_install_message:
65
65
  rdoc_options: []