google-cloud-security-public_ca-v1beta1 0.3.1 → 0.4.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/lib/google/cloud/security/public_ca/v1beta1/public_certificate_authority_service/client.rb +10 -1
- data/lib/google/cloud/security/public_ca/v1beta1/public_certificate_authority_service/rest/client.rb +16 -0
- data/lib/google/cloud/security/public_ca/v1beta1/version.rb +1 -1
- data/proto_docs/google/api/field_behavior.rb +14 -0
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ea969d33ad11166960be253f6e8d0a7d4f86aa8d2172038b1f280e348a20aab
|
|
4
|
+
data.tar.gz: 07cff41289cd4a97ffa9091c4222ffb16e2d7c5b1586d32141d0605415912bd9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e13e2b2ea847226e94c045ec462e903f92840da201d7cddcd1707196ada5bfe3944b161fd769d9653c12866bcc5ae3a4b90ccb7d5dfca5a3cc4f5f7815cf3904
|
|
7
|
+
data.tar.gz: 3b649d852b6f305b8f9b9ec1d61ddebaba6a12f5f4da709d71e4f605aa7f0b55ecae1e04bc700c15a853496d70ac84b8a88981fddcebcdf9fbad72a579263ed5
|
data/lib/google/cloud/security/public_ca/v1beta1/public_certificate_authority_service/client.rb
CHANGED
|
@@ -146,7 +146,8 @@ module Google
|
|
|
146
146
|
credentials: credentials,
|
|
147
147
|
endpoint: @config.endpoint,
|
|
148
148
|
channel_args: @config.channel_args,
|
|
149
|
-
interceptors: @config.interceptors
|
|
149
|
+
interceptors: @config.interceptors,
|
|
150
|
+
channel_pool_config: @config.channel_pool
|
|
150
151
|
)
|
|
151
152
|
end
|
|
152
153
|
|
|
@@ -363,6 +364,14 @@ module Google
|
|
|
363
364
|
end
|
|
364
365
|
end
|
|
365
366
|
|
|
367
|
+
##
|
|
368
|
+
# Configuration for the channel pool
|
|
369
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
|
370
|
+
#
|
|
371
|
+
def channel_pool
|
|
372
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
|
373
|
+
end
|
|
374
|
+
|
|
366
375
|
##
|
|
367
376
|
# Configuration RPC class for the PublicCertificateAuthorityService API.
|
|
368
377
|
#
|
data/lib/google/cloud/security/public_ca/v1beta1/public_certificate_authority_service/rest/client.rb
CHANGED
|
@@ -177,6 +177,22 @@ module Google
|
|
|
177
177
|
# @return [::Google::Cloud::Security::PublicCA::V1beta1::ExternalAccountKey]
|
|
178
178
|
#
|
|
179
179
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
|
180
|
+
#
|
|
181
|
+
# @example Basic example
|
|
182
|
+
# require "google/cloud/security/public_ca/v1beta1"
|
|
183
|
+
#
|
|
184
|
+
# # Create a client object. The client can be reused for multiple calls.
|
|
185
|
+
# client = Google::Cloud::Security::PublicCA::V1beta1::PublicCertificateAuthorityService::Rest::Client.new
|
|
186
|
+
#
|
|
187
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
|
188
|
+
# request = Google::Cloud::Security::PublicCA::V1beta1::CreateExternalAccountKeyRequest.new
|
|
189
|
+
#
|
|
190
|
+
# # Call the create_external_account_key method.
|
|
191
|
+
# result = client.create_external_account_key request
|
|
192
|
+
#
|
|
193
|
+
# # The returned object is of type Google::Cloud::Security::PublicCA::V1beta1::ExternalAccountKey.
|
|
194
|
+
# p result
|
|
195
|
+
#
|
|
180
196
|
def create_external_account_key request, options = nil
|
|
181
197
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
|
182
198
|
|
|
@@ -66,6 +66,20 @@ module Google
|
|
|
66
66
|
# a non-empty value will be returned. The user will not be aware of what
|
|
67
67
|
# non-empty value to expect.
|
|
68
68
|
NON_EMPTY_DEFAULT = 7
|
|
69
|
+
|
|
70
|
+
# Denotes that the field in a resource (a message annotated with
|
|
71
|
+
# google.api.resource) is used in the resource name to uniquely identify the
|
|
72
|
+
# resource. For AIP-compliant APIs, this should only be applied to the
|
|
73
|
+
# `name` field on the resource.
|
|
74
|
+
#
|
|
75
|
+
# This behavior should not be applied to references to other resources within
|
|
76
|
+
# the message.
|
|
77
|
+
#
|
|
78
|
+
# The identifier field of resources often have different field behavior
|
|
79
|
+
# depending on the request it is embedded in (e.g. for Create methods name
|
|
80
|
+
# is optional and unused, while for Update methods it is required). Instead
|
|
81
|
+
# of method-specific annotations, only `IDENTIFIER` is required.
|
|
82
|
+
IDENTIFIER = 8
|
|
69
83
|
end
|
|
70
84
|
end
|
|
71
85
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-security-public_ca-v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.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-
|
|
11
|
+
date: 2023-09-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.20.0
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 2.a
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.
|
|
29
|
+
version: 0.20.0
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 2.a
|
|
@@ -215,7 +215,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
215
215
|
- !ruby/object:Gem::Version
|
|
216
216
|
version: '0'
|
|
217
217
|
requirements: []
|
|
218
|
-
rubygems_version: 3.4.
|
|
218
|
+
rubygems_version: 3.4.19
|
|
219
219
|
signing_key:
|
|
220
220
|
specification_version: 4
|
|
221
221
|
summary: The Public Certificate Authority API may be used to create and manage ACME
|