google-apis-privateca_v1 0.32.0 → 0.33.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: 3c5cbfc5fc73ebdf6f36adc7770acf198b6b8a679b7947d0a4904c89caaf567e
4
- data.tar.gz: '018ae565b76ca5177e81de1accf459f2629e6ac0e011d38364fd34621cd4d15f'
3
+ metadata.gz: 2ec155b0c313046407b86b3b2d178a23bceac238210e4f6359ba882cddd0db0e
4
+ data.tar.gz: ac9585146c646adf21fbabad8c89f400f303a112f8223ae5c629e752d9b7e3c8
5
5
  SHA512:
6
- metadata.gz: 67d662cb38741dd0e03655cc3ede4c999a59cfd172f480d363cdda59fd1c9dbf0020db038dd1fa837d11deeee64de6147b7aa80e64586ad279a68798ae63fff3
7
- data.tar.gz: 90b8bcdebdf0699841654f2f8b0dd5d5be552fc7322dee42b9e5f024778bf78934210edadf59a09be5f42e7b391f0d574e0b1ed63665baf50d9a3e237b60ba52
6
+ metadata.gz: ad9f0efe060d82b203e3e58d3b9c5766a9180351d395b0ac5bfc35e53bde332d095bc82f0a3bd17dcfa0e9498d9392113254c06974cb98a70665e062f21f6a3a
7
+ data.tar.gz: 336470deb05a138d135f7d8607465e8aabce8623b34b292d0389b919d750e12c6b0dc41b75c3bd930b7e5cc444d65e4e67b82c1ab82d8dad4042a82445aa2efe
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-privateca_v1
2
2
 
3
+ ### v0.33.0 (2023-08-27)
4
+
5
+ * Regenerated from discovery document revision 20230816
6
+
3
7
  ### v0.32.0 (2023-05-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20230503
@@ -927,6 +927,16 @@ module Google
927
927
  # @return [Hash<String,String>]
928
928
  attr_accessor :labels
929
929
 
930
+ # Optional. The maximum lifetime allowed for issued Certificates that use this
931
+ # template. If the issuing CaPool's IssuancePolicy specifies a maximum_lifetime
932
+ # the minimum of the two durations will be the maximum lifetime for issued
933
+ # Certificates. Note that if the issuing CertificateAuthority expires before a
934
+ # Certificate's requested maximum_lifetime, the effective lifetime will be
935
+ # explicitly truncated to match it.
936
+ # Corresponds to the JSON property `maximumLifetime`
937
+ # @return [String]
938
+ attr_accessor :maximum_lifetime
939
+
930
940
  # Output only. The resource name for this CertificateTemplate in the format `
931
941
  # projects/*/locations/*/certificateTemplates/*`.
932
942
  # Corresponds to the JSON property `name`
@@ -961,6 +971,7 @@ module Google
961
971
  @description = args[:description] if args.key?(:description)
962
972
  @identity_constraints = args[:identity_constraints] if args.key?(:identity_constraints)
963
973
  @labels = args[:labels] if args.key?(:labels)
974
+ @maximum_lifetime = args[:maximum_lifetime] if args.key?(:maximum_lifetime)
964
975
  @name = args[:name] if args.key?(:name)
965
976
  @passthrough_extensions = args[:passthrough_extensions] if args.key?(:passthrough_extensions)
966
977
  @predefined_values = args[:predefined_values] if args.key?(:predefined_values)
@@ -1909,13 +1920,13 @@ module Google
1909
1920
  # @return [String]
1910
1921
  attr_accessor :name
1911
1922
 
1912
- # The normal response of the operation in case of success. If the original
1913
- # method returns no data on success, such as `Delete`, the response is `google.
1914
- # protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`,
1915
- # the response should be the resource. For other methods, the response should
1916
- # have the type `XxxResponse`, where `Xxx` is the original method name. For
1917
- # example, if the original method name is `TakeSnapshot()`, the inferred
1918
- # response type is `TakeSnapshotResponse`.
1923
+ # The normal, successful response of the operation. If the original method
1924
+ # returns no data on success, such as `Delete`, the response is `google.protobuf.
1925
+ # Empty`. If the original method is standard `Get`/`Create`/`Update`, the
1926
+ # response should be the resource. For other methods, the response should have
1927
+ # the type `XxxResponse`, where `Xxx` is the original method name. For example,
1928
+ # if the original method name is `TakeSnapshot()`, the inferred response type is
1929
+ # `TakeSnapshotResponse`.
1919
1930
  # Corresponds to the JSON property `response`
1920
1931
  # @return [Hash<String,Object>]
1921
1932
  attr_accessor :response
@@ -2004,22 +2015,22 @@ module Google
2004
2015
  # evaluates to `true`. A condition can add constraints based on attributes of
2005
2016
  # the request, the resource, or both. To learn which resources support
2006
2017
  # conditions in their IAM policies, see the [IAM documentation](https://cloud.
2007
- # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
2018
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
2008
2019
  # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
2009
2020
  # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
2010
2021
  # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
2011
2022
  # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
2012
2023
  # ], "condition": ` "title": "expirable access", "description": "Does not grant
2013
2024
  # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
2014
- # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
2015
- # bindings: - members: - user:mike@example.com - group:admins@example.com -
2016
- # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
2017
- # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
2018
- # com role: roles/resourcemanager.organizationViewer condition: title: expirable
2019
- # access description: Does not grant access after Sep 2020 expression: request.
2020
- # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
2021
- # a description of IAM and its features, see the [IAM documentation](https://
2022
- # cloud.google.com/iam/docs/).
2025
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
2026
+ # example:** ``` bindings: - members: - user:mike@example.com - group:admins@
2027
+ # example.com - domain:google.com - serviceAccount:my-project-id@appspot.
2028
+ # gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
2029
+ # user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
2030
+ # title: expirable access description: Does not grant access after Sep 2020
2031
+ # expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
2032
+ # BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
2033
+ # [IAM documentation](https://cloud.google.com/iam/docs/).
2023
2034
  class Policy
2024
2035
  include Google::Apis::Core::Hashable
2025
2036
 
@@ -2323,22 +2334,22 @@ module Google
2323
2334
  # evaluates to `true`. A condition can add constraints based on attributes of
2324
2335
  # the request, the resource, or both. To learn which resources support
2325
2336
  # conditions in their IAM policies, see the [IAM documentation](https://cloud.
2326
- # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
2337
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
2327
2338
  # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
2328
2339
  # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
2329
2340
  # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
2330
2341
  # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
2331
2342
  # ], "condition": ` "title": "expirable access", "description": "Does not grant
2332
2343
  # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
2333
- # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
2334
- # bindings: - members: - user:mike@example.com - group:admins@example.com -
2335
- # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
2336
- # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
2337
- # com role: roles/resourcemanager.organizationViewer condition: title: expirable
2338
- # access description: Does not grant access after Sep 2020 expression: request.
2339
- # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
2340
- # a description of IAM and its features, see the [IAM documentation](https://
2341
- # cloud.google.com/iam/docs/).
2344
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
2345
+ # example:** ``` bindings: - members: - user:mike@example.com - group:admins@
2346
+ # example.com - domain:google.com - serviceAccount:my-project-id@appspot.
2347
+ # gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
2348
+ # user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
2349
+ # title: expirable access description: Does not grant access after Sep 2020
2350
+ # expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
2351
+ # BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
2352
+ # [IAM documentation](https://cloud.google.com/iam/docs/).
2342
2353
  # Corresponds to the JSON property `policy`
2343
2354
  # @return [Google::Apis::PrivatecaV1::Policy]
2344
2355
  attr_accessor :policy
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module PrivatecaV1
18
18
  # Version of the google-apis-privateca_v1 gem
19
- GEM_VERSION = "0.32.0"
19
+ GEM_VERSION = "0.33.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 = "20230503"
25
+ REVISION = "20230816"
26
26
  end
27
27
  end
28
28
  end
@@ -647,6 +647,7 @@ module Google
647
647
  property :identity_constraints, as: 'identityConstraints', class: Google::Apis::PrivatecaV1::CertificateIdentityConstraints, decorator: Google::Apis::PrivatecaV1::CertificateIdentityConstraints::Representation
648
648
 
649
649
  hash :labels, as: 'labels'
650
+ property :maximum_lifetime, as: 'maximumLifetime'
650
651
  property :name, as: 'name'
651
652
  property :passthrough_extensions, as: 'passthroughExtensions', class: Google::Apis::PrivatecaV1::CertificateExtensionConstraints, decorator: Google::Apis::PrivatecaV1::CertificateExtensionConstraints::Representation
652
653
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-privateca_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.32.0
4
+ version: 0.33.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-05-14 00:00:00.000000000 Z
11
+ date: 2023-08-27 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-privateca_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-privateca_v1/v0.32.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-privateca_v1/v0.33.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-privateca_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.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Certificate Authority API V1