google-cloud-security-private_ca-v1 0.1.6 → 0.2.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: 2a927f76d68f9c11e665df9dc39473d2cd42ab9f09d488071e1e8c9d130b6569
4
- data.tar.gz: d2fb2cb1c5efb4982c90868151449cba11c6d88cba8e2f20c12109ab11832873
3
+ metadata.gz: '079527efb4bd5885f1764120a2b9c20b3384124dbf10aedc79d20c0a0871c1f4'
4
+ data.tar.gz: 8e4bf7638333d6a21555bc2eef3818600ee1b7a734da348a9fa8315b033077fa
5
5
  SHA512:
6
- metadata.gz: 4c67ff9cef1c365dc5cda47e3e7e612a0b8403f5fe95850c9565d14f45600f8103b23124697724ee7e3b6d3f5095721e3f86cbf6fac267f350f89584a71c7b7e
7
- data.tar.gz: '018e813d467a2d7a37a6f84c30aeb4bcd9239d5c8aa96b19462331ea90bc397c400ec56460ce84018aed6faaadc300166c983ac6e58d71bf6fbcda25698c3156'
6
+ metadata.gz: 2d0117863395ae453d19fbc9989c6c331fa3d84402af2326c795bc5c3127036ddbff612f0148faedc9c73c570d1ad149b6d0bf8ac043c7602e9bd3de1ce839cb
7
+ data.tar.gz: 0c4f63275f6f62840f915d8f24f3db440de9021bfda7a78fedd5c90a627239cd4da877759c7abbbcfc32b08e80c9948699b43ba0236df88f08c56d2a2835a359
@@ -1546,7 +1546,7 @@ module Google
1546
1546
  # @param options [::Gapic::CallOptions, ::Hash]
1547
1547
  # Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
1548
1548
  #
1549
- # @overload delete_certificate_authority(name: nil, request_id: nil, ignore_active_certificates: nil)
1549
+ # @overload delete_certificate_authority(name: nil, request_id: nil, ignore_active_certificates: nil, skip_grace_period: nil)
1550
1550
  # Pass arguments to `delete_certificate_authority` via keyword arguments. Note that at
1551
1551
  # least one keyword argument is required. To specify no parameters, or to keep all
1552
1552
  # the default parameter values, pass an empty Hash as a request object (see above).
@@ -1571,6 +1571,10 @@ module Google
1571
1571
  # @param ignore_active_certificates [::Boolean]
1572
1572
  # Optional. This field allows the CA to be deleted even if the CA has
1573
1573
  # active certs. Active certs include both unrevoked and unexpired certs.
1574
+ # @param skip_grace_period [::Boolean]
1575
+ # Optional. If this flag is set, the Certificate Authority will be deleted as soon as
1576
+ # possible without a 30-day grace period where undeletion would have been
1577
+ # allowed. If you proceed, there will be no way to recover this CA.
1574
1578
  #
1575
1579
  # @yield [response, operation] Access the result along with the RPC operation
1576
1580
  # @yieldparam response [::Gapic::Operation]
@@ -22,7 +22,7 @@ module Google
22
22
  module Security
23
23
  module PrivateCA
24
24
  module V1
25
- VERSION = "0.1.6"
25
+ VERSION = "0.2.0"
26
26
  end
27
27
  end
28
28
  end
@@ -26,6 +26,8 @@ module Google
26
26
  ##
27
27
  # To load this package, including all its services, and instantiate a client:
28
28
  #
29
+ # @example
30
+ #
29
31
  # require "google/cloud/security/private_ca/v1"
30
32
  # client = ::Google::Cloud::Security::PrivateCA::V1::CertificateAuthorityService::Client.new
31
33
  #
@@ -1,7 +1,6 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/security/privateca/v1/resources.proto
3
3
 
4
- require 'google/api/annotations_pb'
5
4
  require 'google/api/field_behavior_pb'
6
5
  require 'google/api/resource_pb'
7
6
  require 'google/protobuf/duration_pb'
@@ -7,7 +7,6 @@ require 'google/api/field_behavior_pb'
7
7
  require 'google/api/resource_pb'
8
8
  require 'google/cloud/security/privateca/v1/resources_pb'
9
9
  require 'google/longrunning/operations_pb'
10
- require 'google/protobuf/duration_pb'
11
10
  require 'google/protobuf/field_mask_pb'
12
11
  require 'google/protobuf/timestamp_pb'
13
12
  require 'google/protobuf'
@@ -96,6 +95,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
96
95
  optional :name, :string, 1
97
96
  optional :request_id, :string, 2
98
97
  optional :ignore_active_certificates, :bool, 4
98
+ optional :skip_grace_period, :bool, 5
99
99
  end
100
100
  add_message "google.cloud.security.privateca.v1.UpdateCertificateAuthorityRequest" do
101
101
  optional :certificate_authority, :message, 1, "google.cloud.security.privateca.v1.CertificateAuthority"
@@ -441,6 +441,11 @@ module Google
441
441
  # @return [::Boolean]
442
442
  # Optional. This field allows the CA to be deleted even if the CA has
443
443
  # active certs. Active certs include both unrevoked and unexpired certs.
444
+ # @!attribute [rw] skip_grace_period
445
+ # @return [::Boolean]
446
+ # Optional. If this flag is set, the Certificate Authority will be deleted as soon as
447
+ # possible without a 30-day grace period where undeletion would have been
448
+ # allowed. If you proceed, there will be no way to recover this CA.
444
449
  class DeleteCertificateAuthorityRequest
445
450
  include ::Google::Protobuf::MessageExts
446
451
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-security-private_ca-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.2.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: 2022-02-16 00:00:00.000000000 Z
11
+ date: 2022-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common