google-cloud-resource_settings-v1 0.1.1 → 0.1.5
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/.yardopts +1 -1
- data/AUTHENTICATION.md +7 -25
- data/lib/google/cloud/resource_settings/v1/resource_settings_service/client.rb +114 -48
- data/lib/google/cloud/resource_settings/v1/version.rb +1 -1
- data/lib/google/cloud/resourcesettings/v1/resource_settings_pb.rb +2 -2
- data/lib/google/cloud/resourcesettings/v1/resource_settings_services_pb.rb +1 -1
- data/proto_docs/google/api/resource.rb +10 -71
- 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: 6507c90f8817834ad1eeb9288fb25c10e902a08b42bd9cb953af2f90f857e89d
|
4
|
+
data.tar.gz: d17d67857fad537199873cffd873fd75406b82a35125beaf1256d8cbc345fb87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9044bbf372f4f7c7a4395a4173350f2e8e525e58f1d424960881bbc7976d48b5a119c98b0c198ed0b5a5e544ca14d713e6914d4343766cf01b7c56765153cd7b
|
7
|
+
data.tar.gz: 2a16719f13fc23d4b68a7c0b448a7677ec25dff017c2f31f11a85ef11a4b78b918784c4add158bc8c55c7326cb8ff7c9b844385348a15bb260f1a5698d381bf1
|
data/.yardopts
CHANGED
data/AUTHENTICATION.md
CHANGED
@@ -120,15 +120,6 @@ To configure your system for this, simply:
|
|
120
120
|
**NOTE:** This is _not_ recommended for running in production. The Cloud SDK
|
121
121
|
*should* only be used during development.
|
122
122
|
|
123
|
-
[gce-how-to]: https://cloud.google.com/compute/docs/authentication#using
|
124
|
-
[dev-console]: https://console.cloud.google.com/project
|
125
|
-
|
126
|
-
[enable-apis]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/enable-apis.png
|
127
|
-
|
128
|
-
[create-new-service-account]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/create-new-service-account.png
|
129
|
-
[create-new-service-account-existing-keys]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/create-new-service-account-existing-keys.png
|
130
|
-
[reuse-service-account]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/reuse-service-account.png
|
131
|
-
|
132
123
|
## Creating a Service Account
|
133
124
|
|
134
125
|
Google Cloud requires **Service Account Credentials** to
|
@@ -139,31 +130,22 @@ If you are not running this client within
|
|
139
130
|
[Google Cloud Platform environments](#google-cloud-platform-environments), you
|
140
131
|
need a Google Developers service account.
|
141
132
|
|
142
|
-
1. Visit the [Google
|
133
|
+
1. Visit the [Google Cloud Console](https://console.cloud.google.com/project).
|
143
134
|
2. Create a new project or click on an existing project.
|
144
|
-
3. Activate the
|
135
|
+
3. Activate the menu in the upper left and select **APIs & Services**. From
|
145
136
|
here, you will enable the APIs that your application requires.
|
146
137
|
|
147
|
-
![Enable the APIs that your application requires][enable-apis]
|
148
|
-
|
149
138
|
*Note: You may need to enable billing in order to use these services.*
|
150
139
|
|
151
140
|
4. Select **Credentials** from the side navigation.
|
152
141
|
|
153
|
-
|
154
|
-
|
155
|
-
![Create a new service account][create-new-service-account]
|
156
|
-
|
157
|
-
![Create a new service account With Existing Keys][create-new-service-account-existing-keys]
|
158
|
-
|
159
|
-
Find the "Add credentials" drop down and select "Service account" to be
|
160
|
-
guided through downloading a new JSON key file.
|
142
|
+
Find the "Create credentials" drop down near the top of the page, and select
|
143
|
+
"Service account" to be guided through downloading a new JSON key file.
|
161
144
|
|
162
145
|
If you want to re-use an existing service account, you can easily generate a
|
163
|
-
new key file. Just select the account you wish to re-use,
|
164
|
-
|
165
|
-
|
166
|
-
![Re-use an existing service account][reuse-service-account]
|
146
|
+
new key file. Just select the account you wish to re-use, click the pencil
|
147
|
+
tool on the right side to edit the service account, select the **Keys** tab,
|
148
|
+
and then select **Add Key**.
|
167
149
|
|
168
150
|
The key file you download will be used by this library to authenticate API
|
169
151
|
requests and should be stored in a secure location.
|
@@ -52,13 +52,12 @@ module Google
|
|
52
52
|
# See {::Google::Cloud::ResourceSettings::V1::ResourceSettingsService::Client::Configuration}
|
53
53
|
# for a description of the configuration fields.
|
54
54
|
#
|
55
|
-
#
|
55
|
+
# @example
|
56
56
|
#
|
57
|
-
#
|
58
|
-
#
|
59
|
-
#
|
60
|
-
#
|
61
|
-
# end
|
57
|
+
# # Modify the configuration for all ResourceSettingsService clients
|
58
|
+
# ::Google::Cloud::ResourceSettings::V1::ResourceSettingsService::Client.configure do |config|
|
59
|
+
# config.timeout = 10.0
|
60
|
+
# end
|
62
61
|
#
|
63
62
|
# @yield [config] Configure the Client client.
|
64
63
|
# @yieldparam config [Client::Configuration]
|
@@ -81,6 +80,16 @@ module Google
|
|
81
80
|
initial_delay: 1.0, max_delay: 10.0, multiplier: 1.3, retry_codes: [14, 4]
|
82
81
|
}
|
83
82
|
|
83
|
+
default_config.rpcs.get_setting.timeout = 60.0
|
84
|
+
default_config.rpcs.get_setting.retry_policy = {
|
85
|
+
initial_delay: 1.0, max_delay: 10.0, multiplier: 1.3, retry_codes: [14, 4]
|
86
|
+
}
|
87
|
+
|
88
|
+
default_config.rpcs.update_setting.timeout = 60.0
|
89
|
+
default_config.rpcs.update_setting.retry_policy = {
|
90
|
+
initial_delay: 1.0, max_delay: 10.0, multiplier: 1.3, retry_codes: [14, 4]
|
91
|
+
}
|
92
|
+
|
84
93
|
default_config
|
85
94
|
end
|
86
95
|
yield @configure if block_given?
|
@@ -110,19 +119,15 @@ module Google
|
|
110
119
|
##
|
111
120
|
# Create a new ResourceSettingsService client object.
|
112
121
|
#
|
113
|
-
#
|
114
|
-
#
|
115
|
-
# To create a new ResourceSettingsService client with the default
|
116
|
-
# configuration:
|
122
|
+
# @example
|
117
123
|
#
|
118
|
-
#
|
124
|
+
# # Create a client using the default configuration
|
125
|
+
# client = ::Google::Cloud::ResourceSettings::V1::ResourceSettingsService::Client.new
|
119
126
|
#
|
120
|
-
#
|
121
|
-
#
|
122
|
-
#
|
123
|
-
#
|
124
|
-
# config.timeout = 10.0
|
125
|
-
# end
|
127
|
+
# # Create a client using a custom configuration
|
128
|
+
# client = ::Google::Cloud::ResourceSettings::V1::ResourceSettingsService::Client.new do |config|
|
129
|
+
# config.timeout = 10.0
|
130
|
+
# end
|
126
131
|
#
|
127
132
|
# @yield [config] Configure the ResourceSettingsService client.
|
128
133
|
# @yieldparam config [Client::Configuration]
|
@@ -142,10 +147,9 @@ module Google
|
|
142
147
|
|
143
148
|
# Create credentials
|
144
149
|
credentials = @config.credentials
|
145
|
-
# Use self-signed JWT if the
|
150
|
+
# Use self-signed JWT if the endpoint is unchanged from default,
|
146
151
|
# but only if the default endpoint does not have a region prefix.
|
147
|
-
enable_self_signed_jwt = @config.
|
148
|
-
@config.endpoint == Client.configure.endpoint &&
|
152
|
+
enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
|
149
153
|
!@config.endpoint.split(".").first.include?("-")
|
150
154
|
credentials ||= Credentials.default scope: @config.scope,
|
151
155
|
enable_self_signed_jwt: enable_self_signed_jwt
|
@@ -207,6 +211,27 @@ module Google
|
|
207
211
|
#
|
208
212
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
209
213
|
#
|
214
|
+
# @example Basic example
|
215
|
+
# require "google/cloud/resource_settings/v1"
|
216
|
+
#
|
217
|
+
# # Create a client object. The client can be reused for multiple calls.
|
218
|
+
# client = Google::Cloud::ResourceSettings::V1::ResourceSettingsService::Client.new
|
219
|
+
#
|
220
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
221
|
+
# request = Google::Cloud::ResourceSettings::V1::ListSettingsRequest.new
|
222
|
+
#
|
223
|
+
# # Call the list_settings method.
|
224
|
+
# result = client.list_settings request
|
225
|
+
#
|
226
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can
|
227
|
+
# # iterate over all elements by calling #each, and the enumerable
|
228
|
+
# # will lazily make API calls to fetch subsequent pages. Other
|
229
|
+
# # methods are also available for managing paging directly.
|
230
|
+
# result.each do |response|
|
231
|
+
# # Each element is of type ::Google::Cloud::ResourceSettings::V1::Setting.
|
232
|
+
# p response
|
233
|
+
# end
|
234
|
+
#
|
210
235
|
def list_settings request, options = nil
|
211
236
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
212
237
|
|
@@ -224,16 +249,20 @@ module Google
|
|
224
249
|
gapic_version: ::Google::Cloud::ResourceSettings::V1::VERSION
|
225
250
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
226
251
|
|
227
|
-
header_params = {
|
228
|
-
|
229
|
-
|
252
|
+
header_params = {}
|
253
|
+
if request.parent
|
254
|
+
header_params["parent"] = request.parent
|
255
|
+
end
|
256
|
+
|
230
257
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
231
258
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
232
259
|
|
233
260
|
options.apply_defaults timeout: @config.rpcs.list_settings.timeout,
|
234
261
|
metadata: metadata,
|
235
262
|
retry_policy: @config.rpcs.list_settings.retry_policy
|
236
|
-
|
263
|
+
|
264
|
+
options.apply_defaults timeout: @config.timeout,
|
265
|
+
metadata: @config.metadata,
|
237
266
|
retry_policy: @config.retry_policy
|
238
267
|
|
239
268
|
@resource_settings_service_stub.call_rpc :list_settings, request, options: options do |response, operation|
|
@@ -280,6 +309,21 @@ module Google
|
|
280
309
|
#
|
281
310
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
282
311
|
#
|
312
|
+
# @example Basic example
|
313
|
+
# require "google/cloud/resource_settings/v1"
|
314
|
+
#
|
315
|
+
# # Create a client object. The client can be reused for multiple calls.
|
316
|
+
# client = Google::Cloud::ResourceSettings::V1::ResourceSettingsService::Client.new
|
317
|
+
#
|
318
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
319
|
+
# request = Google::Cloud::ResourceSettings::V1::GetSettingRequest.new
|
320
|
+
#
|
321
|
+
# # Call the get_setting method.
|
322
|
+
# result = client.get_setting request
|
323
|
+
#
|
324
|
+
# # The returned object is of type Google::Cloud::ResourceSettings::V1::Setting.
|
325
|
+
# p result
|
326
|
+
#
|
283
327
|
def get_setting request, options = nil
|
284
328
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
285
329
|
|
@@ -297,16 +341,20 @@ module Google
|
|
297
341
|
gapic_version: ::Google::Cloud::ResourceSettings::V1::VERSION
|
298
342
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
299
343
|
|
300
|
-
header_params = {
|
301
|
-
|
302
|
-
|
344
|
+
header_params = {}
|
345
|
+
if request.name
|
346
|
+
header_params["name"] = request.name
|
347
|
+
end
|
348
|
+
|
303
349
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
304
350
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
305
351
|
|
306
352
|
options.apply_defaults timeout: @config.rpcs.get_setting.timeout,
|
307
353
|
metadata: metadata,
|
308
354
|
retry_policy: @config.rpcs.get_setting.retry_policy
|
309
|
-
|
355
|
+
|
356
|
+
options.apply_defaults timeout: @config.timeout,
|
357
|
+
metadata: @config.metadata,
|
310
358
|
retry_policy: @config.retry_policy
|
311
359
|
|
312
360
|
@resource_settings_service_stub.call_rpc :get_setting, request, options: options do |response, operation|
|
@@ -361,6 +409,21 @@ module Google
|
|
361
409
|
#
|
362
410
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
363
411
|
#
|
412
|
+
# @example Basic example
|
413
|
+
# require "google/cloud/resource_settings/v1"
|
414
|
+
#
|
415
|
+
# # Create a client object. The client can be reused for multiple calls.
|
416
|
+
# client = Google::Cloud::ResourceSettings::V1::ResourceSettingsService::Client.new
|
417
|
+
#
|
418
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
419
|
+
# request = Google::Cloud::ResourceSettings::V1::UpdateSettingRequest.new
|
420
|
+
#
|
421
|
+
# # Call the update_setting method.
|
422
|
+
# result = client.update_setting request
|
423
|
+
#
|
424
|
+
# # The returned object is of type Google::Cloud::ResourceSettings::V1::Setting.
|
425
|
+
# p result
|
426
|
+
#
|
364
427
|
def update_setting request, options = nil
|
365
428
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
366
429
|
|
@@ -378,16 +441,20 @@ module Google
|
|
378
441
|
gapic_version: ::Google::Cloud::ResourceSettings::V1::VERSION
|
379
442
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
380
443
|
|
381
|
-
header_params = {
|
382
|
-
|
383
|
-
|
444
|
+
header_params = {}
|
445
|
+
if request.setting&.name
|
446
|
+
header_params["setting.name"] = request.setting.name
|
447
|
+
end
|
448
|
+
|
384
449
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
385
450
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
386
451
|
|
387
452
|
options.apply_defaults timeout: @config.rpcs.update_setting.timeout,
|
388
453
|
metadata: metadata,
|
389
454
|
retry_policy: @config.rpcs.update_setting.retry_policy
|
390
|
-
|
455
|
+
|
456
|
+
options.apply_defaults timeout: @config.timeout,
|
457
|
+
metadata: @config.metadata,
|
391
458
|
retry_policy: @config.retry_policy
|
392
459
|
|
393
460
|
@resource_settings_service_stub.call_rpc :update_setting, request, options: options do |response, operation|
|
@@ -411,22 +478,21 @@ module Google
|
|
411
478
|
# Configuration can be applied globally to all clients, or to a single client
|
412
479
|
# on construction.
|
413
480
|
#
|
414
|
-
#
|
415
|
-
#
|
416
|
-
#
|
417
|
-
# to 20 seconds,
|
418
|
-
#
|
419
|
-
#
|
420
|
-
#
|
421
|
-
#
|
422
|
-
#
|
423
|
-
#
|
424
|
-
#
|
425
|
-
#
|
426
|
-
#
|
427
|
-
#
|
428
|
-
#
|
429
|
-
# end
|
481
|
+
# @example
|
482
|
+
#
|
483
|
+
# # Modify the global config, setting the timeout for
|
484
|
+
# # list_settings to 20 seconds,
|
485
|
+
# # and all remaining timeouts to 10 seconds.
|
486
|
+
# ::Google::Cloud::ResourceSettings::V1::ResourceSettingsService::Client.configure do |config|
|
487
|
+
# config.timeout = 10.0
|
488
|
+
# config.rpcs.list_settings.timeout = 20.0
|
489
|
+
# end
|
490
|
+
#
|
491
|
+
# # Apply the above configuration only to a new client.
|
492
|
+
# client = ::Google::Cloud::ResourceSettings::V1::ResourceSettingsService::Client.new do |config|
|
493
|
+
# config.timeout = 10.0
|
494
|
+
# config.rpcs.list_settings.timeout = 20.0
|
495
|
+
# end
|
430
496
|
#
|
431
497
|
# @!attribute [rw] endpoint
|
432
498
|
# The hostname or hostname:port of the service endpoint.
|
@@ -1,12 +1,12 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/resourcesettings/v1/resource_settings.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/annotations_pb'
|
7
5
|
require 'google/api/client_pb'
|
8
6
|
require 'google/api/field_behavior_pb'
|
9
7
|
require 'google/api/resource_pb'
|
8
|
+
require 'google/protobuf'
|
9
|
+
|
10
10
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
11
11
|
add_file("google/cloud/resourcesettings/v1/resource_settings.proto", :syntax => :proto3) do
|
12
12
|
add_message "google.cloud.resourcesettings.v1.Setting" do
|
@@ -33,11 +33,7 @@ module Google
|
|
33
33
|
# // For Kubernetes resources, the format is {api group}/{kind}.
|
34
34
|
# option (google.api.resource) = {
|
35
35
|
# type: "pubsub.googleapis.com/Topic"
|
36
|
-
#
|
37
|
-
# pattern: "projects/{project}/topics/{topic}"
|
38
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
39
|
-
# parent_name_extractor: "projects/{project}"
|
40
|
-
# }
|
36
|
+
# pattern: "projects/{project}/topics/{topic}"
|
41
37
|
# };
|
42
38
|
# }
|
43
39
|
#
|
@@ -45,10 +41,7 @@ module Google
|
|
45
41
|
#
|
46
42
|
# resources:
|
47
43
|
# - type: "pubsub.googleapis.com/Topic"
|
48
|
-
#
|
49
|
-
# - pattern: "projects/{project}/topics/{topic}"
|
50
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
51
|
-
# parent_name_extractor: "projects/{project}"
|
44
|
+
# pattern: "projects/{project}/topics/{topic}"
|
52
45
|
#
|
53
46
|
# Sometimes, resources have multiple patterns, typically because they can
|
54
47
|
# live under multiple parents.
|
@@ -58,26 +51,10 @@ module Google
|
|
58
51
|
# message LogEntry {
|
59
52
|
# option (google.api.resource) = {
|
60
53
|
# type: "logging.googleapis.com/LogEntry"
|
61
|
-
#
|
62
|
-
#
|
63
|
-
#
|
64
|
-
#
|
65
|
-
# }
|
66
|
-
# name_descriptor: {
|
67
|
-
# pattern: "folders/{folder}/logs/{log}"
|
68
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
69
|
-
# parent_name_extractor: "folders/{folder}"
|
70
|
-
# }
|
71
|
-
# name_descriptor: {
|
72
|
-
# pattern: "organizations/{organization}/logs/{log}"
|
73
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Organization"
|
74
|
-
# parent_name_extractor: "organizations/{organization}"
|
75
|
-
# }
|
76
|
-
# name_descriptor: {
|
77
|
-
# pattern: "billingAccounts/{billing_account}/logs/{log}"
|
78
|
-
# parent_type: "billing.googleapis.com/BillingAccount"
|
79
|
-
# parent_name_extractor: "billingAccounts/{billing_account}"
|
80
|
-
# }
|
54
|
+
# pattern: "projects/{project}/logs/{log}"
|
55
|
+
# pattern: "folders/{folder}/logs/{log}"
|
56
|
+
# pattern: "organizations/{organization}/logs/{log}"
|
57
|
+
# pattern: "billingAccounts/{billing_account}/logs/{log}"
|
81
58
|
# };
|
82
59
|
# }
|
83
60
|
#
|
@@ -85,48 +62,10 @@ module Google
|
|
85
62
|
#
|
86
63
|
# resources:
|
87
64
|
# - type: 'logging.googleapis.com/LogEntry'
|
88
|
-
#
|
89
|
-
#
|
90
|
-
#
|
91
|
-
#
|
92
|
-
# - pattern: "folders/{folder}/logs/{log}"
|
93
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
94
|
-
# parent_name_extractor: "folders/{folder}"
|
95
|
-
# - pattern: "organizations/{organization}/logs/{log}"
|
96
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Organization"
|
97
|
-
# parent_name_extractor: "organizations/{organization}"
|
98
|
-
# - pattern: "billingAccounts/{billing_account}/logs/{log}"
|
99
|
-
# parent_type: "billing.googleapis.com/BillingAccount"
|
100
|
-
# parent_name_extractor: "billingAccounts/{billing_account}"
|
101
|
-
#
|
102
|
-
# For flexible resources, the resource name doesn't contain parent names, but
|
103
|
-
# the resource itself has parents for policy evaluation.
|
104
|
-
#
|
105
|
-
# Example:
|
106
|
-
#
|
107
|
-
# message Shelf {
|
108
|
-
# option (google.api.resource) = {
|
109
|
-
# type: "library.googleapis.com/Shelf"
|
110
|
-
# name_descriptor: {
|
111
|
-
# pattern: "shelves/{shelf}"
|
112
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
113
|
-
# }
|
114
|
-
# name_descriptor: {
|
115
|
-
# pattern: "shelves/{shelf}"
|
116
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
117
|
-
# }
|
118
|
-
# };
|
119
|
-
# }
|
120
|
-
#
|
121
|
-
# The ResourceDescriptor Yaml config will look like:
|
122
|
-
#
|
123
|
-
# resources:
|
124
|
-
# - type: 'library.googleapis.com/Shelf'
|
125
|
-
# name_descriptor:
|
126
|
-
# - pattern: "shelves/{shelf}"
|
127
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
128
|
-
# - pattern: "shelves/{shelf}"
|
129
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
65
|
+
# pattern: "projects/{project}/logs/{log}"
|
66
|
+
# pattern: "folders/{folder}/logs/{log}"
|
67
|
+
# pattern: "organizations/{organization}/logs/{log}"
|
68
|
+
# pattern: "billingAccounts/{billing_account}/logs/{log}"
|
130
69
|
# @!attribute [rw] type
|
131
70
|
# @return [::String]
|
132
71
|
# The resource type. It must be in the format of
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-resource_settings-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-11 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.7'
|
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.7'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -203,7 +203,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
203
203
|
- !ruby/object:Gem::Version
|
204
204
|
version: '0'
|
205
205
|
requirements: []
|
206
|
-
rubygems_version: 3.
|
206
|
+
rubygems_version: 3.3.4
|
207
207
|
signing_key:
|
208
208
|
specification_version: 4
|
209
209
|
summary: API Client library for the Resource Settings V1 API
|