google-apis-privateca_v1 0.8.0 → 0.9.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 066a05dcc144811c1c6725240bf08398d3fc201ecc7e89d3da39c90447828c23
|
|
4
|
+
data.tar.gz: 6247c63b5365592001df40f52a1e63f08948c028266c50d7e509c7a95acd51a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b17d5cca3448518c9ab949790242f65cd255d63754f465b5ac660d24fa99e7bd403df7d2093ef1a4a61ab0aeb9017d4505e6198cb285ace7bd663a7c012536d2
|
|
7
|
+
data.tar.gz: ae2cee395a5502424430eb3843e90ac021478a66ed4ff5d3ce0328c873cca1f4535e946e8db1d825a4ab507a1b3bd62ddbd69ffa149b2a4c40131f343cf8e1c7
|
data/CHANGELOG.md
CHANGED
|
@@ -299,6 +299,11 @@ module Google
|
|
|
299
299
|
class CaPool
|
|
300
300
|
include Google::Apis::Core::Hashable
|
|
301
301
|
|
|
302
|
+
# Output only. The time at which this CaPool was created.
|
|
303
|
+
# Corresponds to the JSON property `createTime`
|
|
304
|
+
# @return [String]
|
|
305
|
+
attr_accessor :create_time
|
|
306
|
+
|
|
302
307
|
# Defines controls over all certificate issuance within a CaPool.
|
|
303
308
|
# Corresponds to the JSON property `issuancePolicy`
|
|
304
309
|
# @return [Google::Apis::PrivatecaV1::IssuancePolicy]
|
|
@@ -328,17 +333,24 @@ module Google
|
|
|
328
333
|
# @return [String]
|
|
329
334
|
attr_accessor :tier
|
|
330
335
|
|
|
336
|
+
# Output only. The time at which this CaPool was last updated.
|
|
337
|
+
# Corresponds to the JSON property `updateTime`
|
|
338
|
+
# @return [String]
|
|
339
|
+
attr_accessor :update_time
|
|
340
|
+
|
|
331
341
|
def initialize(**args)
|
|
332
342
|
update!(**args)
|
|
333
343
|
end
|
|
334
344
|
|
|
335
345
|
# Update properties of this object
|
|
336
346
|
def update!(**args)
|
|
347
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
337
348
|
@issuance_policy = args[:issuance_policy] if args.key?(:issuance_policy)
|
|
338
349
|
@labels = args[:labels] if args.key?(:labels)
|
|
339
350
|
@name = args[:name] if args.key?(:name)
|
|
340
351
|
@publishing_options = args[:publishing_options] if args.key?(:publishing_options)
|
|
341
352
|
@tier = args[:tier] if args.key?(:tier)
|
|
353
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
342
354
|
end
|
|
343
355
|
end
|
|
344
356
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.9.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 = "
|
|
25
|
+
REVISION = "20211020"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -484,6 +484,7 @@ module Google
|
|
|
484
484
|
class CaPool
|
|
485
485
|
# @private
|
|
486
486
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
487
|
+
property :create_time, as: 'createTime'
|
|
487
488
|
property :issuance_policy, as: 'issuancePolicy', class: Google::Apis::PrivatecaV1::IssuancePolicy, decorator: Google::Apis::PrivatecaV1::IssuancePolicy::Representation
|
|
488
489
|
|
|
489
490
|
hash :labels, as: 'labels'
|
|
@@ -491,6 +492,7 @@ module Google
|
|
|
491
492
|
property :publishing_options, as: 'publishingOptions', class: Google::Apis::PrivatecaV1::PublishingOptions, decorator: Google::Apis::PrivatecaV1::PublishingOptions::Representation
|
|
492
493
|
|
|
493
494
|
property :tier, as: 'tier'
|
|
495
|
+
property :update_time, as: 'updateTime'
|
|
494
496
|
end
|
|
495
497
|
end
|
|
496
498
|
|
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.
|
|
4
|
+
version: 0.9.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-
|
|
11
|
+
date: 2021-11-01 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.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-privateca_v1/v0.9.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: []
|