google-cloud-assured_workloads-v1 0.6.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/assured_workloads/v1/assured_workloads_service/client.rb +16 -5
- data/lib/google/cloud/assured_workloads/v1/assured_workloads_service/operations.rb +15 -4
- data/lib/google/cloud/assured_workloads/v1/assured_workloads_service/rest/client.rb +113 -4
- data/lib/google/cloud/assured_workloads/v1/assured_workloads_service/rest/operations.rb +84 -7
- data/lib/google/cloud/assured_workloads/v1/assured_workloads_service/rest/service_stub.rb +6 -6
- data/lib/google/cloud/assured_workloads/v1/version.rb +1 -1
- data/lib/google/cloud/assuredworkloads/v1/assuredworkloads_pb.rb +27 -195
- data/proto_docs/google/api/client.rb +67 -4
- data/proto_docs/google/api/field_behavior.rb +14 -0
- data/proto_docs/google/protobuf/any.rb +7 -4
- data/proto_docs/google/protobuf/timestamp.rb +1 -3
- 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: 46fb7051a1efe84e46d8581fe1e4065a7abf5957bd7e6d968b749a08583a1131
|
4
|
+
data.tar.gz: '0803c2e56d5dd40779150c7f20be573459d7375598a64355a95842ffcb0ff138'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fe62271b7a181ac84f44dbb2e8f588fff8bf967de96d88cdac49851f817cd467dd0cd57dede9779011b31f1b22f41cb734e72dd294b7608939fc8e2dcfb88ef
|
7
|
+
data.tar.gz: ee6d915d5cfffdfcde188a3bae7a6c201c19e8de9b3ce176f29c600c9f41bd618c0b579dffd1143aa068fdf54831e05226b03446da705733bae611d0b15c6757
|
data/README.md
CHANGED
@@ -47,7 +47,7 @@ for general usage information.
|
|
47
47
|
|
48
48
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
49
49
|
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
|
50
|
-
or a [`Google::Cloud::Logging::Logger`](https://
|
50
|
+
or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
|
51
51
|
that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
52
52
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
53
53
|
|
@@ -125,7 +125,7 @@ module Google
|
|
125
125
|
credentials = @config.credentials
|
126
126
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
127
127
|
# but only if the default endpoint does not have a region prefix.
|
128
|
-
enable_self_signed_jwt = @config.endpoint ==
|
128
|
+
enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
129
129
|
!@config.endpoint.split(".").first.include?("-")
|
130
130
|
credentials ||= Credentials.default scope: @config.scope,
|
131
131
|
enable_self_signed_jwt: enable_self_signed_jwt
|
@@ -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
|
|
@@ -1036,9 +1037,9 @@ module Google
|
|
1036
1037
|
# * (`String`) The path to a service account key file in JSON format
|
1037
1038
|
# * (`Hash`) A service account key as a Hash
|
1038
1039
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
1039
|
-
# (see the [googleauth docs](https://
|
1040
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
1040
1041
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
1041
|
-
# (see the [signet docs](https://
|
1042
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
1042
1043
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
1043
1044
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
1044
1045
|
# * (`nil`) indicating no credentials
|
@@ -1080,7 +1081,9 @@ module Google
|
|
1080
1081
|
class Configuration
|
1081
1082
|
extend ::Gapic::Config
|
1082
1083
|
|
1083
|
-
|
1084
|
+
DEFAULT_ENDPOINT = "assuredworkloads.googleapis.com"
|
1085
|
+
|
1086
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
1084
1087
|
config_attr :credentials, nil do |value|
|
1085
1088
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
1086
1089
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
@@ -1115,6 +1118,14 @@ module Google
|
|
1115
1118
|
end
|
1116
1119
|
end
|
1117
1120
|
|
1121
|
+
##
|
1122
|
+
# Configuration for the channel pool
|
1123
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
1124
|
+
#
|
1125
|
+
def channel_pool
|
1126
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
1127
|
+
end
|
1128
|
+
|
1118
1129
|
##
|
1119
1130
|
# Configuration RPC class for the AssuredWorkloadsService API.
|
1120
1131
|
#
|
@@ -93,7 +93,8 @@ module Google
|
|
93
93
|
credentials: credentials,
|
94
94
|
endpoint: @config.endpoint,
|
95
95
|
channel_args: @config.channel_args,
|
96
|
-
interceptors: @config.interceptors
|
96
|
+
interceptors: @config.interceptors,
|
97
|
+
channel_pool_config: @config.channel_pool
|
97
98
|
)
|
98
99
|
|
99
100
|
# Used by an LRO wrapper for some methods of this service
|
@@ -620,9 +621,9 @@ module Google
|
|
620
621
|
# * (`String`) The path to a service account key file in JSON format
|
621
622
|
# * (`Hash`) A service account key as a Hash
|
622
623
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
623
|
-
# (see the [googleauth docs](https://
|
624
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
624
625
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
625
|
-
# (see the [signet docs](https://
|
626
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
626
627
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
627
628
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
628
629
|
# * (`nil`) indicating no credentials
|
@@ -664,7 +665,9 @@ module Google
|
|
664
665
|
class Configuration
|
665
666
|
extend ::Gapic::Config
|
666
667
|
|
667
|
-
|
668
|
+
DEFAULT_ENDPOINT = "assuredworkloads.googleapis.com"
|
669
|
+
|
670
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
668
671
|
config_attr :credentials, nil do |value|
|
669
672
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
670
673
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
@@ -699,6 +702,14 @@ module Google
|
|
699
702
|
end
|
700
703
|
end
|
701
704
|
|
705
|
+
##
|
706
|
+
# Configuration for the channel pool
|
707
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
708
|
+
#
|
709
|
+
def channel_pool
|
710
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
711
|
+
end
|
712
|
+
|
702
713
|
##
|
703
714
|
# Configuration RPC class for the Operations API.
|
704
715
|
#
|
@@ -121,7 +121,7 @@ module Google
|
|
121
121
|
credentials = @config.credentials
|
122
122
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
123
123
|
# but only if the default endpoint does not have a region prefix.
|
124
|
-
enable_self_signed_jwt = @config.endpoint ==
|
124
|
+
enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
125
125
|
!@config.endpoint.split(".").first.include?("-")
|
126
126
|
credentials ||= Credentials.default scope: @config.scope,
|
127
127
|
enable_self_signed_jwt: enable_self_signed_jwt
|
@@ -185,6 +185,29 @@ module Google
|
|
185
185
|
# @return [::Gapic::Operation]
|
186
186
|
#
|
187
187
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
188
|
+
#
|
189
|
+
# @example Basic example
|
190
|
+
# require "google/cloud/assured_workloads/v1"
|
191
|
+
#
|
192
|
+
# # Create a client object. The client can be reused for multiple calls.
|
193
|
+
# client = Google::Cloud::AssuredWorkloads::V1::AssuredWorkloadsService::Rest::Client.new
|
194
|
+
#
|
195
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
196
|
+
# request = Google::Cloud::AssuredWorkloads::V1::CreateWorkloadRequest.new
|
197
|
+
#
|
198
|
+
# # Call the create_workload method.
|
199
|
+
# result = client.create_workload request
|
200
|
+
#
|
201
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
202
|
+
# # check the status of an operation, cancel it, or wait for results.
|
203
|
+
# # Here is how to wait for a response.
|
204
|
+
# result.wait_until_done! timeout: 60
|
205
|
+
# if result.response?
|
206
|
+
# p result.response
|
207
|
+
# else
|
208
|
+
# puts "No response received."
|
209
|
+
# end
|
210
|
+
#
|
188
211
|
def create_workload request, options = nil
|
189
212
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
190
213
|
|
@@ -256,6 +279,22 @@ module Google
|
|
256
279
|
# @return [::Google::Cloud::AssuredWorkloads::V1::Workload]
|
257
280
|
#
|
258
281
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
282
|
+
#
|
283
|
+
# @example Basic example
|
284
|
+
# require "google/cloud/assured_workloads/v1"
|
285
|
+
#
|
286
|
+
# # Create a client object. The client can be reused for multiple calls.
|
287
|
+
# client = Google::Cloud::AssuredWorkloads::V1::AssuredWorkloadsService::Rest::Client.new
|
288
|
+
#
|
289
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
290
|
+
# request = Google::Cloud::AssuredWorkloads::V1::UpdateWorkloadRequest.new
|
291
|
+
#
|
292
|
+
# # Call the update_workload method.
|
293
|
+
# result = client.update_workload request
|
294
|
+
#
|
295
|
+
# # The returned object is of type Google::Cloud::AssuredWorkloads::V1::Workload.
|
296
|
+
# p result
|
297
|
+
#
|
259
298
|
def update_workload request, options = nil
|
260
299
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
261
300
|
|
@@ -329,6 +368,22 @@ module Google
|
|
329
368
|
# @return [::Google::Cloud::AssuredWorkloads::V1::RestrictAllowedResourcesResponse]
|
330
369
|
#
|
331
370
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
371
|
+
#
|
372
|
+
# @example Basic example
|
373
|
+
# require "google/cloud/assured_workloads/v1"
|
374
|
+
#
|
375
|
+
# # Create a client object. The client can be reused for multiple calls.
|
376
|
+
# client = Google::Cloud::AssuredWorkloads::V1::AssuredWorkloadsService::Rest::Client.new
|
377
|
+
#
|
378
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
379
|
+
# request = Google::Cloud::AssuredWorkloads::V1::RestrictAllowedResourcesRequest.new
|
380
|
+
#
|
381
|
+
# # Call the restrict_allowed_resources method.
|
382
|
+
# result = client.restrict_allowed_resources request
|
383
|
+
#
|
384
|
+
# # The returned object is of type Google::Cloud::AssuredWorkloads::V1::RestrictAllowedResourcesResponse.
|
385
|
+
# p result
|
386
|
+
#
|
332
387
|
def restrict_allowed_resources request, options = nil
|
333
388
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
334
389
|
|
@@ -398,6 +453,22 @@ module Google
|
|
398
453
|
# @return [::Google::Protobuf::Empty]
|
399
454
|
#
|
400
455
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
456
|
+
#
|
457
|
+
# @example Basic example
|
458
|
+
# require "google/cloud/assured_workloads/v1"
|
459
|
+
#
|
460
|
+
# # Create a client object. The client can be reused for multiple calls.
|
461
|
+
# client = Google::Cloud::AssuredWorkloads::V1::AssuredWorkloadsService::Rest::Client.new
|
462
|
+
#
|
463
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
464
|
+
# request = Google::Cloud::AssuredWorkloads::V1::DeleteWorkloadRequest.new
|
465
|
+
#
|
466
|
+
# # Call the delete_workload method.
|
467
|
+
# result = client.delete_workload request
|
468
|
+
#
|
469
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
470
|
+
# p result
|
471
|
+
#
|
401
472
|
def delete_workload request, options = nil
|
402
473
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
403
474
|
|
@@ -464,6 +535,22 @@ module Google
|
|
464
535
|
# @return [::Google::Cloud::AssuredWorkloads::V1::Workload]
|
465
536
|
#
|
466
537
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
538
|
+
#
|
539
|
+
# @example Basic example
|
540
|
+
# require "google/cloud/assured_workloads/v1"
|
541
|
+
#
|
542
|
+
# # Create a client object. The client can be reused for multiple calls.
|
543
|
+
# client = Google::Cloud::AssuredWorkloads::V1::AssuredWorkloadsService::Rest::Client.new
|
544
|
+
#
|
545
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
546
|
+
# request = Google::Cloud::AssuredWorkloads::V1::GetWorkloadRequest.new
|
547
|
+
#
|
548
|
+
# # Call the get_workload method.
|
549
|
+
# result = client.get_workload request
|
550
|
+
#
|
551
|
+
# # The returned object is of type Google::Cloud::AssuredWorkloads::V1::Workload.
|
552
|
+
# p result
|
553
|
+
#
|
467
554
|
def get_workload request, options = nil
|
468
555
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
469
556
|
|
@@ -536,6 +623,26 @@ module Google
|
|
536
623
|
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::AssuredWorkloads::V1::Workload>]
|
537
624
|
#
|
538
625
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
626
|
+
#
|
627
|
+
# @example Basic example
|
628
|
+
# require "google/cloud/assured_workloads/v1"
|
629
|
+
#
|
630
|
+
# # Create a client object. The client can be reused for multiple calls.
|
631
|
+
# client = Google::Cloud::AssuredWorkloads::V1::AssuredWorkloadsService::Rest::Client.new
|
632
|
+
#
|
633
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
634
|
+
# request = Google::Cloud::AssuredWorkloads::V1::ListWorkloadsRequest.new
|
635
|
+
#
|
636
|
+
# # Call the list_workloads method.
|
637
|
+
# result = client.list_workloads request
|
638
|
+
#
|
639
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
640
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
641
|
+
# result.each do |item|
|
642
|
+
# # Each element is of type ::Google::Cloud::AssuredWorkloads::V1::Workload.
|
643
|
+
# p item
|
644
|
+
# end
|
645
|
+
#
|
539
646
|
def list_workloads request, options = nil
|
540
647
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
541
648
|
|
@@ -610,9 +717,9 @@ module Google
|
|
610
717
|
# * (`String`) The path to a service account key file in JSON format
|
611
718
|
# * (`Hash`) A service account key as a Hash
|
612
719
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
613
|
-
# (see the [googleauth docs](https://
|
720
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
614
721
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
615
|
-
# (see the [signet docs](https://
|
722
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
616
723
|
# * (`nil`) indicating no credentials
|
617
724
|
# @return [::Object]
|
618
725
|
# @!attribute [rw] scope
|
@@ -645,7 +752,9 @@ module Google
|
|
645
752
|
class Configuration
|
646
753
|
extend ::Gapic::Config
|
647
754
|
|
648
|
-
|
755
|
+
DEFAULT_ENDPOINT = "assuredworkloads.googleapis.com"
|
756
|
+
|
757
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
649
758
|
config_attr :credentials, nil do |value|
|
650
759
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
651
760
|
allowed.any? { |klass| klass === value }
|
@@ -136,6 +136,26 @@ module Google
|
|
136
136
|
# @return [::Gapic::Operation]
|
137
137
|
#
|
138
138
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
139
|
+
#
|
140
|
+
# @example Basic example
|
141
|
+
# require "google/longrunning"
|
142
|
+
#
|
143
|
+
# # Create a client object. The client can be reused for multiple calls.
|
144
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
145
|
+
#
|
146
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
147
|
+
# request = Google::Longrunning::ListOperationsRequest.new
|
148
|
+
#
|
149
|
+
# # Call the list_operations method.
|
150
|
+
# result = client.list_operations request
|
151
|
+
#
|
152
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
153
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
154
|
+
# result.each do |item|
|
155
|
+
# # Each element is of type ::Google::Longrunning::Operation.
|
156
|
+
# p item
|
157
|
+
# end
|
158
|
+
#
|
139
159
|
def list_operations request, options = nil
|
140
160
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
141
161
|
|
@@ -201,6 +221,29 @@ module Google
|
|
201
221
|
# @return [::Gapic::Operation]
|
202
222
|
#
|
203
223
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
224
|
+
#
|
225
|
+
# @example Basic example
|
226
|
+
# require "google/longrunning"
|
227
|
+
#
|
228
|
+
# # Create a client object. The client can be reused for multiple calls.
|
229
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
230
|
+
#
|
231
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
232
|
+
# request = Google::Longrunning::GetOperationRequest.new
|
233
|
+
#
|
234
|
+
# # Call the get_operation method.
|
235
|
+
# result = client.get_operation request
|
236
|
+
#
|
237
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
238
|
+
# # check the status of an operation, cancel it, or wait for results.
|
239
|
+
# # Here is how to wait for a response.
|
240
|
+
# result.wait_until_done! timeout: 60
|
241
|
+
# if result.response?
|
242
|
+
# p result.response
|
243
|
+
# else
|
244
|
+
# puts "No response received."
|
245
|
+
# end
|
246
|
+
#
|
204
247
|
def get_operation request, options = nil
|
205
248
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
206
249
|
|
@@ -267,6 +310,22 @@ module Google
|
|
267
310
|
# @return [::Google::Protobuf::Empty]
|
268
311
|
#
|
269
312
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
313
|
+
#
|
314
|
+
# @example Basic example
|
315
|
+
# require "google/longrunning"
|
316
|
+
#
|
317
|
+
# # Create a client object. The client can be reused for multiple calls.
|
318
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
319
|
+
#
|
320
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
321
|
+
# request = Google::Longrunning::DeleteOperationRequest.new
|
322
|
+
#
|
323
|
+
# # Call the delete_operation method.
|
324
|
+
# result = client.delete_operation request
|
325
|
+
#
|
326
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
327
|
+
# p result
|
328
|
+
#
|
270
329
|
def delete_operation request, options = nil
|
271
330
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
272
331
|
|
@@ -338,6 +397,22 @@ module Google
|
|
338
397
|
# @return [::Google::Protobuf::Empty]
|
339
398
|
#
|
340
399
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
400
|
+
#
|
401
|
+
# @example Basic example
|
402
|
+
# require "google/longrunning"
|
403
|
+
#
|
404
|
+
# # Create a client object. The client can be reused for multiple calls.
|
405
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
406
|
+
#
|
407
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
408
|
+
# request = Google::Longrunning::CancelOperationRequest.new
|
409
|
+
#
|
410
|
+
# # Call the cancel_operation method.
|
411
|
+
# result = client.cancel_operation request
|
412
|
+
#
|
413
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
414
|
+
# p result
|
415
|
+
#
|
341
416
|
def cancel_operation request, options = nil
|
342
417
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
343
418
|
|
@@ -411,9 +486,9 @@ module Google
|
|
411
486
|
# * (`String`) The path to a service account key file in JSON format
|
412
487
|
# * (`Hash`) A service account key as a Hash
|
413
488
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
414
|
-
# (see the [googleauth docs](https://
|
489
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
415
490
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
416
|
-
# (see the [signet docs](https://
|
491
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
417
492
|
# * (`nil`) indicating no credentials
|
418
493
|
# @return [::Object]
|
419
494
|
# @!attribute [rw] scope
|
@@ -446,7 +521,9 @@ module Google
|
|
446
521
|
class Configuration
|
447
522
|
extend ::Gapic::Config
|
448
523
|
|
449
|
-
|
524
|
+
DEFAULT_ENDPOINT = "assuredworkloads.googleapis.com"
|
525
|
+
|
526
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
450
527
|
config_attr :credentials, nil do |value|
|
451
528
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
452
529
|
allowed.any? { |klass| klass === value }
|
@@ -567,7 +644,7 @@ module Google
|
|
567
644
|
|
568
645
|
verb, uri, query_string_params, body = OperationsServiceStub.transcode_list_operations_request request_pb
|
569
646
|
query_string_params = if query_string_params.any?
|
570
|
-
query_string_params.to_h { |p| p.split
|
647
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
571
648
|
else
|
572
649
|
{}
|
573
650
|
end
|
@@ -605,7 +682,7 @@ module Google
|
|
605
682
|
|
606
683
|
verb, uri, query_string_params, body = OperationsServiceStub.transcode_get_operation_request request_pb
|
607
684
|
query_string_params = if query_string_params.any?
|
608
|
-
query_string_params.to_h { |p| p.split
|
685
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
609
686
|
else
|
610
687
|
{}
|
611
688
|
end
|
@@ -643,7 +720,7 @@ module Google
|
|
643
720
|
|
644
721
|
verb, uri, query_string_params, body = OperationsServiceStub.transcode_delete_operation_request request_pb
|
645
722
|
query_string_params = if query_string_params.any?
|
646
|
-
query_string_params.to_h { |p| p.split
|
723
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
647
724
|
else
|
648
725
|
{}
|
649
726
|
end
|
@@ -681,7 +758,7 @@ module Google
|
|
681
758
|
|
682
759
|
verb, uri, query_string_params, body = OperationsServiceStub.transcode_cancel_operation_request request_pb
|
683
760
|
query_string_params = if query_string_params.any?
|
684
|
-
query_string_params.to_h { |p| p.split
|
761
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
685
762
|
else
|
686
763
|
{}
|
687
764
|
end
|
@@ -59,7 +59,7 @@ module Google
|
|
59
59
|
|
60
60
|
verb, uri, query_string_params, body = ServiceStub.transcode_create_workload_request request_pb
|
61
61
|
query_string_params = if query_string_params.any?
|
62
|
-
query_string_params.to_h { |p| p.split
|
62
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
63
63
|
else
|
64
64
|
{}
|
65
65
|
end
|
@@ -97,7 +97,7 @@ module Google
|
|
97
97
|
|
98
98
|
verb, uri, query_string_params, body = ServiceStub.transcode_update_workload_request request_pb
|
99
99
|
query_string_params = if query_string_params.any?
|
100
|
-
query_string_params.to_h { |p| p.split
|
100
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
101
101
|
else
|
102
102
|
{}
|
103
103
|
end
|
@@ -135,7 +135,7 @@ module Google
|
|
135
135
|
|
136
136
|
verb, uri, query_string_params, body = ServiceStub.transcode_restrict_allowed_resources_request request_pb
|
137
137
|
query_string_params = if query_string_params.any?
|
138
|
-
query_string_params.to_h { |p| p.split
|
138
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
139
139
|
else
|
140
140
|
{}
|
141
141
|
end
|
@@ -173,7 +173,7 @@ module Google
|
|
173
173
|
|
174
174
|
verb, uri, query_string_params, body = ServiceStub.transcode_delete_workload_request request_pb
|
175
175
|
query_string_params = if query_string_params.any?
|
176
|
-
query_string_params.to_h { |p| p.split
|
176
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
177
177
|
else
|
178
178
|
{}
|
179
179
|
end
|
@@ -211,7 +211,7 @@ module Google
|
|
211
211
|
|
212
212
|
verb, uri, query_string_params, body = ServiceStub.transcode_get_workload_request request_pb
|
213
213
|
query_string_params = if query_string_params.any?
|
214
|
-
query_string_params.to_h { |p| p.split
|
214
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
215
215
|
else
|
216
216
|
{}
|
217
217
|
end
|
@@ -249,7 +249,7 @@ module Google
|
|
249
249
|
|
250
250
|
verb, uri, query_string_params, body = ServiceStub.transcode_list_workloads_request request_pb
|
251
251
|
query_string_params = if query_string_params.any?
|
252
|
-
query_string_params.to_h { |p| p.split
|
252
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
253
253
|
else
|
254
254
|
{}
|
255
255
|
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
3
|
# source: google/cloud/assuredworkloads/v1/assuredworkloads.proto
|
3
4
|
|
@@ -13,203 +14,34 @@ require 'google/protobuf/empty_pb'
|
|
13
14
|
require 'google/protobuf/field_mask_pb'
|
14
15
|
require 'google/protobuf/timestamp_pb'
|
15
16
|
|
16
|
-
|
17
|
-
add_file("google/cloud/assuredworkloads/v1/assuredworkloads.proto", :syntax => :proto3) do
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
add_message "google.cloud.assuredworkloads.v1.ListWorkloadsResponse" do
|
41
|
-
repeated :workloads, :message, 1, "google.cloud.assuredworkloads.v1.Workload"
|
42
|
-
optional :next_page_token, :string, 2
|
43
|
-
end
|
44
|
-
add_message "google.cloud.assuredworkloads.v1.Workload" do
|
45
|
-
optional :name, :string, 1
|
46
|
-
optional :display_name, :string, 2
|
47
|
-
repeated :resources, :message, 3, "google.cloud.assuredworkloads.v1.Workload.ResourceInfo"
|
48
|
-
optional :compliance_regime, :enum, 4, "google.cloud.assuredworkloads.v1.Workload.ComplianceRegime"
|
49
|
-
optional :create_time, :message, 5, "google.protobuf.Timestamp"
|
50
|
-
optional :billing_account, :string, 6
|
51
|
-
optional :etag, :string, 9
|
52
|
-
map :labels, :string, :string, 10
|
53
|
-
optional :provisioned_resources_parent, :string, 13
|
54
|
-
optional :kms_settings, :message, 14, "google.cloud.assuredworkloads.v1.Workload.KMSSettings"
|
55
|
-
repeated :resource_settings, :message, 15, "google.cloud.assuredworkloads.v1.Workload.ResourceSettings"
|
56
|
-
optional :kaj_enrollment_state, :enum, 17, "google.cloud.assuredworkloads.v1.Workload.KajEnrollmentState"
|
57
|
-
optional :enable_sovereign_controls, :bool, 18
|
58
|
-
optional :saa_enrollment_response, :message, 20, "google.cloud.assuredworkloads.v1.Workload.SaaEnrollmentResponse"
|
59
|
-
repeated :compliant_but_disallowed_services, :string, 24
|
60
|
-
optional :partner, :enum, 25, "google.cloud.assuredworkloads.v1.Workload.Partner"
|
61
|
-
end
|
62
|
-
add_message "google.cloud.assuredworkloads.v1.Workload.ResourceInfo" do
|
63
|
-
optional :resource_id, :int64, 1
|
64
|
-
optional :resource_type, :enum, 2, "google.cloud.assuredworkloads.v1.Workload.ResourceInfo.ResourceType"
|
65
|
-
end
|
66
|
-
add_enum "google.cloud.assuredworkloads.v1.Workload.ResourceInfo.ResourceType" do
|
67
|
-
value :RESOURCE_TYPE_UNSPECIFIED, 0
|
68
|
-
value :CONSUMER_PROJECT, 1
|
69
|
-
value :CONSUMER_FOLDER, 4
|
70
|
-
value :ENCRYPTION_KEYS_PROJECT, 2
|
71
|
-
value :KEYRING, 3
|
72
|
-
end
|
73
|
-
add_message "google.cloud.assuredworkloads.v1.Workload.KMSSettings" do
|
74
|
-
optional :next_rotation_time, :message, 1, "google.protobuf.Timestamp"
|
75
|
-
optional :rotation_period, :message, 2, "google.protobuf.Duration"
|
76
|
-
end
|
77
|
-
add_message "google.cloud.assuredworkloads.v1.Workload.ResourceSettings" do
|
78
|
-
optional :resource_id, :string, 1
|
79
|
-
optional :resource_type, :enum, 2, "google.cloud.assuredworkloads.v1.Workload.ResourceInfo.ResourceType"
|
80
|
-
optional :display_name, :string, 3
|
81
|
-
end
|
82
|
-
add_message "google.cloud.assuredworkloads.v1.Workload.SaaEnrollmentResponse" do
|
83
|
-
proto3_optional :setup_status, :enum, 1, "google.cloud.assuredworkloads.v1.Workload.SaaEnrollmentResponse.SetupState"
|
84
|
-
repeated :setup_errors, :enum, 2, "google.cloud.assuredworkloads.v1.Workload.SaaEnrollmentResponse.SetupError"
|
85
|
-
end
|
86
|
-
add_enum "google.cloud.assuredworkloads.v1.Workload.SaaEnrollmentResponse.SetupState" do
|
87
|
-
value :SETUP_STATE_UNSPECIFIED, 0
|
88
|
-
value :STATUS_PENDING, 1
|
89
|
-
value :STATUS_COMPLETE, 2
|
90
|
-
end
|
91
|
-
add_enum "google.cloud.assuredworkloads.v1.Workload.SaaEnrollmentResponse.SetupError" do
|
92
|
-
value :SETUP_ERROR_UNSPECIFIED, 0
|
93
|
-
value :ERROR_INVALID_BASE_SETUP, 1
|
94
|
-
value :ERROR_MISSING_EXTERNAL_SIGNING_KEY, 2
|
95
|
-
value :ERROR_NOT_ALL_SERVICES_ENROLLED, 3
|
96
|
-
value :ERROR_SETUP_CHECK_FAILED, 4
|
97
|
-
end
|
98
|
-
add_enum "google.cloud.assuredworkloads.v1.Workload.ComplianceRegime" do
|
99
|
-
value :COMPLIANCE_REGIME_UNSPECIFIED, 0
|
100
|
-
value :IL4, 1
|
101
|
-
value :CJIS, 2
|
102
|
-
value :FEDRAMP_HIGH, 3
|
103
|
-
value :FEDRAMP_MODERATE, 4
|
104
|
-
value :US_REGIONAL_ACCESS, 5
|
105
|
-
value :HIPAA, 6
|
106
|
-
value :HITRUST, 7
|
107
|
-
value :EU_REGIONS_AND_SUPPORT, 8
|
108
|
-
value :CA_REGIONS_AND_SUPPORT, 9
|
109
|
-
value :ITAR, 10
|
110
|
-
value :AU_REGIONS_AND_US_SUPPORT, 11
|
111
|
-
value :ASSURED_WORKLOADS_FOR_PARTNERS, 12
|
112
|
-
end
|
113
|
-
add_enum "google.cloud.assuredworkloads.v1.Workload.KajEnrollmentState" do
|
114
|
-
value :KAJ_ENROLLMENT_STATE_UNSPECIFIED, 0
|
115
|
-
value :KAJ_ENROLLMENT_STATE_PENDING, 1
|
116
|
-
value :KAJ_ENROLLMENT_STATE_COMPLETE, 2
|
117
|
-
end
|
118
|
-
add_enum "google.cloud.assuredworkloads.v1.Workload.Partner" do
|
119
|
-
value :PARTNER_UNSPECIFIED, 0
|
120
|
-
value :LOCAL_CONTROLS_BY_S3NS, 1
|
121
|
-
end
|
122
|
-
add_message "google.cloud.assuredworkloads.v1.CreateWorkloadOperationMetadata" do
|
123
|
-
optional :create_time, :message, 1, "google.protobuf.Timestamp"
|
124
|
-
optional :display_name, :string, 2
|
125
|
-
optional :parent, :string, 3
|
126
|
-
optional :compliance_regime, :enum, 4, "google.cloud.assuredworkloads.v1.Workload.ComplianceRegime"
|
127
|
-
end
|
128
|
-
add_message "google.cloud.assuredworkloads.v1.RestrictAllowedResourcesRequest" do
|
129
|
-
optional :name, :string, 1
|
130
|
-
optional :restriction_type, :enum, 2, "google.cloud.assuredworkloads.v1.RestrictAllowedResourcesRequest.RestrictionType"
|
131
|
-
end
|
132
|
-
add_enum "google.cloud.assuredworkloads.v1.RestrictAllowedResourcesRequest.RestrictionType" do
|
133
|
-
value :RESTRICTION_TYPE_UNSPECIFIED, 0
|
134
|
-
value :ALLOW_ALL_GCP_RESOURCES, 1
|
135
|
-
value :ALLOW_COMPLIANT_RESOURCES, 2
|
136
|
-
end
|
137
|
-
add_message "google.cloud.assuredworkloads.v1.RestrictAllowedResourcesResponse" do
|
138
|
-
end
|
139
|
-
add_message "google.cloud.assuredworkloads.v1.AcknowledgeViolationRequest" do
|
140
|
-
optional :name, :string, 1
|
141
|
-
optional :comment, :string, 2
|
142
|
-
optional :non_compliant_org_policy, :string, 3
|
143
|
-
end
|
144
|
-
add_message "google.cloud.assuredworkloads.v1.AcknowledgeViolationResponse" do
|
145
|
-
end
|
146
|
-
add_message "google.cloud.assuredworkloads.v1.TimeWindow" do
|
147
|
-
optional :start_time, :message, 1, "google.protobuf.Timestamp"
|
148
|
-
optional :end_time, :message, 2, "google.protobuf.Timestamp"
|
149
|
-
end
|
150
|
-
add_message "google.cloud.assuredworkloads.v1.ListViolationsRequest" do
|
151
|
-
optional :parent, :string, 1
|
152
|
-
optional :interval, :message, 2, "google.cloud.assuredworkloads.v1.TimeWindow"
|
153
|
-
optional :page_size, :int32, 3
|
154
|
-
optional :page_token, :string, 4
|
155
|
-
optional :filter, :string, 5
|
156
|
-
end
|
157
|
-
add_message "google.cloud.assuredworkloads.v1.ListViolationsResponse" do
|
158
|
-
repeated :violations, :message, 1, "google.cloud.assuredworkloads.v1.Violation"
|
159
|
-
optional :next_page_token, :string, 2
|
160
|
-
end
|
161
|
-
add_message "google.cloud.assuredworkloads.v1.GetViolationRequest" do
|
162
|
-
optional :name, :string, 1
|
163
|
-
end
|
164
|
-
add_message "google.cloud.assuredworkloads.v1.Violation" do
|
165
|
-
optional :name, :string, 1
|
166
|
-
optional :description, :string, 2
|
167
|
-
optional :begin_time, :message, 3, "google.protobuf.Timestamp"
|
168
|
-
optional :update_time, :message, 4, "google.protobuf.Timestamp"
|
169
|
-
optional :resolve_time, :message, 5, "google.protobuf.Timestamp"
|
170
|
-
optional :category, :string, 6
|
171
|
-
optional :state, :enum, 7, "google.cloud.assuredworkloads.v1.Violation.State"
|
172
|
-
optional :org_policy_constraint, :string, 8
|
173
|
-
optional :audit_log_link, :string, 11
|
174
|
-
optional :non_compliant_org_policy, :string, 12
|
175
|
-
optional :remediation, :message, 13, "google.cloud.assuredworkloads.v1.Violation.Remediation"
|
176
|
-
optional :acknowledged, :bool, 14
|
177
|
-
proto3_optional :acknowledgement_time, :message, 15, "google.protobuf.Timestamp"
|
178
|
-
optional :exception_audit_log_link, :string, 16
|
179
|
-
end
|
180
|
-
add_message "google.cloud.assuredworkloads.v1.Violation.Remediation" do
|
181
|
-
optional :instructions, :message, 1, "google.cloud.assuredworkloads.v1.Violation.Remediation.Instructions"
|
182
|
-
repeated :compliant_values, :string, 2
|
183
|
-
optional :remediation_type, :enum, 3, "google.cloud.assuredworkloads.v1.Violation.Remediation.RemediationType"
|
184
|
-
end
|
185
|
-
add_message "google.cloud.assuredworkloads.v1.Violation.Remediation.Instructions" do
|
186
|
-
optional :gcloud_instructions, :message, 1, "google.cloud.assuredworkloads.v1.Violation.Remediation.Instructions.Gcloud"
|
187
|
-
optional :console_instructions, :message, 2, "google.cloud.assuredworkloads.v1.Violation.Remediation.Instructions.Console"
|
188
|
-
end
|
189
|
-
add_message "google.cloud.assuredworkloads.v1.Violation.Remediation.Instructions.Gcloud" do
|
190
|
-
repeated :gcloud_commands, :string, 1
|
191
|
-
repeated :steps, :string, 2
|
192
|
-
repeated :additional_links, :string, 3
|
193
|
-
end
|
194
|
-
add_message "google.cloud.assuredworkloads.v1.Violation.Remediation.Instructions.Console" do
|
195
|
-
repeated :console_uris, :string, 1
|
196
|
-
repeated :steps, :string, 2
|
197
|
-
repeated :additional_links, :string, 3
|
198
|
-
end
|
199
|
-
add_enum "google.cloud.assuredworkloads.v1.Violation.Remediation.RemediationType" do
|
200
|
-
value :REMEDIATION_TYPE_UNSPECIFIED, 0
|
201
|
-
value :REMEDIATION_BOOLEAN_ORG_POLICY_VIOLATION, 1
|
202
|
-
value :REMEDIATION_LIST_ALLOWED_VALUES_ORG_POLICY_VIOLATION, 2
|
203
|
-
value :REMEDIATION_LIST_DENIED_VALUES_ORG_POLICY_VIOLATION, 3
|
204
|
-
value :REMEDIATION_RESTRICT_CMEK_CRYPTO_KEY_PROJECTS_ORG_POLICY_VIOLATION, 4
|
205
|
-
end
|
206
|
-
add_enum "google.cloud.assuredworkloads.v1.Violation.State" do
|
207
|
-
value :STATE_UNSPECIFIED, 0
|
208
|
-
value :RESOLVED, 2
|
209
|
-
value :UNRESOLVED, 3
|
210
|
-
value :EXCEPTION, 4
|
17
|
+
|
18
|
+
descriptor_data = "\n7google/cloud/assuredworkloads/v1/assuredworkloads.proto\x12 google.cloud.assuredworkloads.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a#google/longrunning/operations.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xb6\x01\n\x15\x43reateWorkloadRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\x12(assuredworkloads.googleapis.com/Workload\x12\x41\n\x08workload\x18\x02 \x01(\x0b\x32*.google.cloud.assuredworkloads.v1.WorkloadB\x03\xe0\x41\x02\x12\x18\n\x0b\x65xternal_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x90\x01\n\x15UpdateWorkloadRequest\x12\x41\n\x08workload\x18\x01 \x01(\x0b\x32*.google.cloud.assuredworkloads.v1.WorkloadB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\"j\n\x15\x44\x65leteWorkloadRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(assuredworkloads.googleapis.com/Workload\x12\x11\n\x04\x65tag\x18\x02 \x01(\tB\x03\xe0\x41\x01\"T\n\x12GetWorkloadRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(assuredworkloads.googleapis.com/Workload\"\x8f\x01\n\x14ListWorkloadsRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\x12(assuredworkloads.googleapis.com/Workload\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\"o\n\x15ListWorkloadsResponse\x12=\n\tworkloads\x18\x01 \x03(\x0b\x32*.google.cloud.assuredworkloads.v1.Workload\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xb6\x15\n\x08Workload\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x19\n\x0c\x64isplay_name\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12O\n\tresources\x18\x03 \x03(\x0b\x32\x37.google.cloud.assuredworkloads.v1.Workload.ResourceInfoB\x03\xe0\x41\x03\x12^\n\x11\x63ompliance_regime\x18\x04 \x01(\x0e\x32;.google.cloud.assuredworkloads.v1.Workload.ComplianceRegimeB\x06\xe0\x41\x02\xe0\x41\x05\x12\x37\n\x0b\x63reate_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x06\xe0\x41\x03\xe0\x41\x05\x12\x1c\n\x0f\x62illing_account\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12\x11\n\x04\x65tag\x18\t \x01(\tB\x03\xe0\x41\x01\x12K\n\x06labels\x18\n \x03(\x0b\x32\x36.google.cloud.assuredworkloads.v1.Workload.LabelsEntryB\x03\xe0\x41\x01\x12)\n\x1cprovisioned_resources_parent\x18\r \x01(\tB\x03\xe0\x41\x04\x12S\n\x0ckms_settings\x18\x0e \x01(\x0b\x32\x36.google.cloud.assuredworkloads.v1.Workload.KMSSettingsB\x05\x18\x01\xe0\x41\x04\x12[\n\x11resource_settings\x18\x0f \x03(\x0b\x32;.google.cloud.assuredworkloads.v1.Workload.ResourceSettingsB\x03\xe0\x41\x04\x12`\n\x14kaj_enrollment_state\x18\x11 \x01(\x0e\x32=.google.cloud.assuredworkloads.v1.Workload.KajEnrollmentStateB\x03\xe0\x41\x03\x12&\n\x19\x65nable_sovereign_controls\x18\x12 \x01(\x08\x42\x03\xe0\x41\x01\x12\x66\n\x17saa_enrollment_response\x18\x14 \x01(\x0b\x32@.google.cloud.assuredworkloads.v1.Workload.SaaEnrollmentResponseB\x03\xe0\x41\x03\x12.\n!compliant_but_disallowed_services\x18\x18 \x03(\tB\x03\xe0\x41\x03\x12H\n\x07partner\x18\x19 \x01(\x0e\x32\x32.google.cloud.assuredworkloads.v1.Workload.PartnerB\x03\xe0\x41\x01\x1a\x89\x02\n\x0cResourceInfo\x12\x13\n\x0bresource_id\x18\x01 \x01(\x03\x12[\n\rresource_type\x18\x02 \x01(\x0e\x32\x44.google.cloud.assuredworkloads.v1.Workload.ResourceInfo.ResourceType\"\x86\x01\n\x0cResourceType\x12\x1d\n\x19RESOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x18\n\x10\x43ONSUMER_PROJECT\x10\x01\x1a\x02\x08\x01\x12\x13\n\x0f\x43ONSUMER_FOLDER\x10\x04\x12\x1b\n\x17\x45NCRYPTION_KEYS_PROJECT\x10\x02\x12\x0b\n\x07KEYRING\x10\x03\x1a\x93\x01\n\x0bKMSSettings\x12\x41\n\x12next_rotation_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\t\xe0\x41\x02\xe0\x41\x04\xe0\x41\x05\x12=\n\x0frotation_period\x18\x02 \x01(\x0b\x32\x19.google.protobuf.DurationB\t\xe0\x41\x02\xe0\x41\x04\xe0\x41\x05:\x02\x18\x01\x1a\x9a\x01\n\x10ResourceSettings\x12\x13\n\x0bresource_id\x18\x01 \x01(\t\x12[\n\rresource_type\x18\x02 \x01(\x0e\x32\x44.google.cloud.assuredworkloads.v1.Workload.ResourceInfo.ResourceType\x12\x14\n\x0c\x64isplay_name\x18\x03 \x01(\t\x1a\xfc\x03\n\x15SaaEnrollmentResponse\x12\x66\n\x0csetup_status\x18\x01 \x01(\x0e\x32K.google.cloud.assuredworkloads.v1.Workload.SaaEnrollmentResponse.SetupStateH\x00\x88\x01\x01\x12\x61\n\x0csetup_errors\x18\x02 \x03(\x0e\x32K.google.cloud.assuredworkloads.v1.Workload.SaaEnrollmentResponse.SetupError\"R\n\nSetupState\x12\x1b\n\x17SETUP_STATE_UNSPECIFIED\x10\x00\x12\x12\n\x0eSTATUS_PENDING\x10\x01\x12\x13\n\x0fSTATUS_COMPLETE\x10\x02\"\xb2\x01\n\nSetupError\x12\x1b\n\x17SETUP_ERROR_UNSPECIFIED\x10\x00\x12\x1c\n\x18\x45RROR_INVALID_BASE_SETUP\x10\x01\x12&\n\"ERROR_MISSING_EXTERNAL_SIGNING_KEY\x10\x02\x12#\n\x1f\x45RROR_NOT_ALL_SERVICES_ENROLLED\x10\x03\x12\x1c\n\x18\x45RROR_SETUP_CHECK_FAILED\x10\x04\x42\x0f\n\r_setup_status\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xa5\x02\n\x10\x43omplianceRegime\x12!\n\x1d\x43OMPLIANCE_REGIME_UNSPECIFIED\x10\x00\x12\x07\n\x03IL4\x10\x01\x12\x08\n\x04\x43JIS\x10\x02\x12\x10\n\x0c\x46\x45\x44RAMP_HIGH\x10\x03\x12\x14\n\x10\x46\x45\x44RAMP_MODERATE\x10\x04\x12\x16\n\x12US_REGIONAL_ACCESS\x10\x05\x12\t\n\x05HIPAA\x10\x06\x12\x0b\n\x07HITRUST\x10\x07\x12\x1a\n\x16\x45U_REGIONS_AND_SUPPORT\x10\x08\x12\x1a\n\x16\x43\x41_REGIONS_AND_SUPPORT\x10\t\x12\x08\n\x04ITAR\x10\n\x12\x1d\n\x19\x41U_REGIONS_AND_US_SUPPORT\x10\x0b\x12\"\n\x1e\x41SSURED_WORKLOADS_FOR_PARTNERS\x10\x0c\"\x7f\n\x12KajEnrollmentState\x12$\n KAJ_ENROLLMENT_STATE_UNSPECIFIED\x10\x00\x12 \n\x1cKAJ_ENROLLMENT_STATE_PENDING\x10\x01\x12!\n\x1dKAJ_ENROLLMENT_STATE_COMPLETE\x10\x02\">\n\x07Partner\x12\x17\n\x13PARTNER_UNSPECIFIED\x10\x00\x12\x1a\n\x16LOCAL_CONTROLS_BY_S3NS\x10\x01:u\xea\x41r\n(assuredworkloads.googleapis.com/Workload\x12\x46organizations/{organization}/locations/{location}/workloads/{workload}\"\xe4\x01\n\x1f\x43reateWorkloadOperationMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x01\x12\x19\n\x0c\x64isplay_name\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06parent\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12[\n\x11\x63ompliance_regime\x18\x04 \x01(\x0e\x32;.google.cloud.assuredworkloads.v1.Workload.ComplianceRegimeB\x03\xe0\x41\x01\"\x97\x02\n\x1fRestrictAllowedResourcesRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12p\n\x10restriction_type\x18\x02 \x01(\x0e\x32Q.google.cloud.assuredworkloads.v1.RestrictAllowedResourcesRequest.RestrictionTypeB\x03\xe0\x41\x02\"o\n\x0fRestrictionType\x12 \n\x1cRESTRICTION_TYPE_UNSPECIFIED\x10\x00\x12\x1b\n\x17\x41LLOW_ALL_GCP_RESOURCES\x10\x01\x12\x1d\n\x19\x41LLOW_COMPLIANT_RESOURCES\x10\x02\"\"\n RestrictAllowedResourcesResponse\"o\n\x1b\x41\x63knowledgeViolationRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x14\n\x07\x63omment\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\'\n\x18non_compliant_org_policy\x18\x03 \x01(\tB\x05\x18\x01\xe0\x41\x01\"\x1e\n\x1c\x41\x63knowledgeViolationResponse\"j\n\nTimeWindow\x12.\n\nstart_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xe5\x01\n\x15ListViolationsRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\x12)assuredworkloads.googleapis.com/Violation\x12\x43\n\x08interval\x18\x02 \x01(\x0b\x32,.google.cloud.assuredworkloads.v1.TimeWindowB\x03\xe0\x41\x01\x12\x16\n\tpage_size\x18\x03 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"r\n\x16ListViolationsResponse\x12?\n\nviolations\x18\x01 \x03(\x0b\x32+.google.cloud.assuredworkloads.v1.Violation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"V\n\x13GetViolationRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)assuredworkloads.googleapis.com/Violation\"\x8e\x0e\n\tViolation\x12\x14\n\x04name\x18\x01 \x01(\tB\x06\xe0\x41\x03\xe0\x41\x05\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x33\n\nbegin_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0cresolve_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x15\n\x08\x63\x61tegory\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12\x45\n\x05state\x18\x07 \x01(\x0e\x32\x31.google.cloud.assuredworkloads.v1.Violation.StateB\x03\xe0\x41\x03\x12%\n\x15org_policy_constraint\x18\x08 \x01(\tB\x06\xe0\x41\x03\xe0\x41\x05\x12\x1e\n\x0e\x61udit_log_link\x18\x0b \x01(\tB\x06\xe0\x41\x03\xe0\x41\x05\x12(\n\x18non_compliant_org_policy\x18\x0c \x01(\tB\x06\xe0\x41\x03\xe0\x41\x05\x12Q\n\x0bremediation\x18\r \x01(\x0b\x32\x37.google.cloud.assuredworkloads.v1.Violation.RemediationB\x03\xe0\x41\x03\x12\x19\n\x0c\x61\x63knowledged\x18\x0e \x01(\x08\x42\x03\xe0\x41\x03\x12\x42\n\x14\x61\x63knowledgement_time\x18\x0f \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x01H\x00\x88\x01\x01\x12(\n\x18\x65xception_audit_log_link\x18\x10 \x01(\tB\x06\xe0\x41\x03\xe0\x41\x05\x1a\x8c\x07\n\x0bRemediation\x12_\n\x0cinstructions\x18\x01 \x01(\x0b\x32\x44.google.cloud.assuredworkloads.v1.Violation.Remediation.InstructionsB\x03\xe0\x41\x02\x12\x18\n\x10\x63ompliant_values\x18\x02 \x03(\t\x12\x66\n\x10remediation_type\x18\x03 \x01(\x0e\x32G.google.cloud.assuredworkloads.v1.Violation.Remediation.RemediationTypeB\x03\xe0\x41\x03\x1a\xfa\x02\n\x0cInstructions\x12h\n\x13gcloud_instructions\x18\x01 \x01(\x0b\x32K.google.cloud.assuredworkloads.v1.Violation.Remediation.Instructions.Gcloud\x12j\n\x14\x63onsole_instructions\x18\x02 \x01(\x0b\x32L.google.cloud.assuredworkloads.v1.Violation.Remediation.Instructions.Console\x1aJ\n\x06Gcloud\x12\x17\n\x0fgcloud_commands\x18\x01 \x03(\t\x12\r\n\x05steps\x18\x02 \x03(\t\x12\x18\n\x10\x61\x64\x64itional_links\x18\x03 \x03(\t\x1aH\n\x07\x43onsole\x12\x14\n\x0c\x63onsole_uris\x18\x01 \x03(\t\x12\r\n\x05steps\x18\x02 \x03(\t\x12\x18\n\x10\x61\x64\x64itional_links\x18\x03 \x03(\t\"\x9c\x02\n\x0fRemediationType\x12 \n\x1cREMEDIATION_TYPE_UNSPECIFIED\x10\x00\x12,\n(REMEDIATION_BOOLEAN_ORG_POLICY_VIOLATION\x10\x01\x12\x38\n4REMEDIATION_LIST_ALLOWED_VALUES_ORG_POLICY_VIOLATION\x10\x02\x12\x37\n3REMEDIATION_LIST_DENIED_VALUES_ORG_POLICY_VIOLATION\x10\x03\x12\x46\nBREMEDIATION_RESTRICT_CMEK_CRYPTO_KEY_PROJECTS_ORG_POLICY_VIOLATION\x10\x04\"K\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08RESOLVED\x10\x02\x12\x0e\n\nUNRESOLVED\x10\x03\x12\r\n\tEXCEPTION\x10\x04:\x8e\x01\xea\x41\x8a\x01\n)assuredworkloads.googleapis.com/Violation\x12]organizations/{organization}/locations/{location}/workloads/{workload}/violations/{violation}B\x17\n\x15_acknowledgement_time2\x86\x0e\n\x17\x41ssuredWorkloadsService\x12\xef\x01\n\x0e\x43reateWorkload\x12\x37.google.cloud.assuredworkloads.v1.CreateWorkloadRequest\x1a\x1d.google.longrunning.Operation\"\x84\x01\x82\xd3\xe4\x93\x02>\"2/v1/{parent=organizations/*/locations/*}/workloads:\x08workload\xda\x41\x0fparent,workload\xca\x41+\n\x08Workload\x12\x1f\x43reateWorkloadOperationMetadata\x12\xdb\x01\n\x0eUpdateWorkload\x12\x37.google.cloud.assuredworkloads.v1.UpdateWorkloadRequest\x1a*.google.cloud.assuredworkloads.v1.Workload\"d\x82\xd3\xe4\x93\x02G2;/v1/{workload.name=organizations/*/locations/*/workloads/*}:\x08workload\xda\x41\x14workload,update_mask\x12\xf9\x01\n\x18RestrictAllowedResources\x12\x41.google.cloud.assuredworkloads.v1.RestrictAllowedResourcesRequest\x1a\x42.google.cloud.assuredworkloads.v1.RestrictAllowedResourcesResponse\"V\x82\xd3\xe4\x93\x02P\"K/v1/{name=organizations/*/locations/*/workloads/*}:restrictAllowedResources:\x01*\x12\xa4\x01\n\x0e\x44\x65leteWorkload\x12\x37.google.cloud.assuredworkloads.v1.DeleteWorkloadRequest\x1a\x16.google.protobuf.Empty\"A\x82\xd3\xe4\x93\x02\x34*2/v1/{name=organizations/*/locations/*/workloads/*}\xda\x41\x04name\x12\xb2\x01\n\x0bGetWorkload\x12\x34.google.cloud.assuredworkloads.v1.GetWorkloadRequest\x1a*.google.cloud.assuredworkloads.v1.Workload\"A\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{name=organizations/*/locations/*/workloads/*}\xda\x41\x04name\x12\xc5\x01\n\rListWorkloads\x12\x36.google.cloud.assuredworkloads.v1.ListWorkloadsRequest\x1a\x37.google.cloud.assuredworkloads.v1.ListWorkloadsResponse\"C\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{parent=organizations/*/locations/*}/workloads\xda\x41\x06parent\x12\x8e\x01\n\x0eListViolations\x12\x37.google.cloud.assuredworkloads.v1.ListViolationsRequest\x1a\x38.google.cloud.assuredworkloads.v1.ListViolationsResponse\"\t\xda\x41\x06parent\x12{\n\x0cGetViolation\x12\x35.google.cloud.assuredworkloads.v1.GetViolationRequest\x1a+.google.cloud.assuredworkloads.v1.Violation\"\x07\xda\x41\x04name\x12\x97\x01\n\x14\x41\x63knowledgeViolation\x12=.google.cloud.assuredworkloads.v1.AcknowledgeViolationRequest\x1a>.google.cloud.assuredworkloads.v1.AcknowledgeViolationResponse\"\x00\x1aS\xca\x41\x1f\x61ssuredworkloads.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xdd\x02\n$com.google.cloud.assuredworkloads.v1B\x15\x41ssuredworkloadsProtoP\x01ZPcloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb;assuredworkloadspb\xaa\x02 Google.Cloud.AssuredWorkloads.V1\xca\x02 Google\\Cloud\\AssuredWorkloads\\V1\xea\x02#Google::Cloud::AssuredWorkloads::V1\xea\x41]\n(assuredworkloads.googleapis.com/Location\x12\x31organizations/{organization}/locations/{location}b\x06proto3"
|
19
|
+
|
20
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
21
|
+
|
22
|
+
begin
|
23
|
+
pool.add_serialized_file(descriptor_data)
|
24
|
+
rescue TypeError => e
|
25
|
+
# Compatibility code: will be removed in the next major version.
|
26
|
+
require 'google/protobuf/descriptor_pb'
|
27
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
28
|
+
parsed.clear_dependency
|
29
|
+
serialized = parsed.class.encode(parsed)
|
30
|
+
file = pool.add_serialized_file(serialized)
|
31
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
32
|
+
imports = [
|
33
|
+
["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
|
34
|
+
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
35
|
+
["google.protobuf.Duration", "google/protobuf/duration.proto"],
|
36
|
+
]
|
37
|
+
imports.each do |type_name, expected_filename|
|
38
|
+
import_file = pool.lookup(type_name).file_descriptor
|
39
|
+
if import_file.name != expected_filename
|
40
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
211
41
|
end
|
212
42
|
end
|
43
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
44
|
+
warn "This will become an error in the next major version."
|
213
45
|
end
|
214
46
|
|
215
47
|
module Google
|
@@ -35,7 +35,9 @@ module Google
|
|
35
35
|
# Details about how and where to publish client libraries.
|
36
36
|
# @!attribute [rw] version
|
37
37
|
# @return [::String]
|
38
|
-
# Version of the API to apply these settings to.
|
38
|
+
# Version of the API to apply these settings to. This is the full protobuf
|
39
|
+
# package for the API, ending in the version element.
|
40
|
+
# Examples: "google.cloud.speech.v1" and "google.spanner.admin.database.v1".
|
39
41
|
# @!attribute [rw] launch_stage
|
40
42
|
# @return [::Google::Api::LaunchStage]
|
41
43
|
# Launch stage of this version of the API.
|
@@ -81,7 +83,7 @@ module Google
|
|
81
83
|
# long-running operation pattern.
|
82
84
|
# @!attribute [rw] new_issue_uri
|
83
85
|
# @return [::String]
|
84
|
-
# Link to a
|
86
|
+
# Link to a *public* URI where users can report issues. Example:
|
85
87
|
# https://issuetracker.google.com/issues/new?component=190865&template=1161103
|
86
88
|
# @!attribute [rw] documentation_uri
|
87
89
|
# @return [::String]
|
@@ -111,6 +113,10 @@ module Google
|
|
111
113
|
# Client library settings. If the same version string appears multiple
|
112
114
|
# times in this list, then the last one wins. Settings from earlier
|
113
115
|
# settings with the same version string are discarded.
|
116
|
+
# @!attribute [rw] proto_reference_documentation_uri
|
117
|
+
# @return [::String]
|
118
|
+
# Optional link to proto reference documentation. Example:
|
119
|
+
# https://cloud.google.com/pubsub/lite/docs/reference/rpc
|
114
120
|
class Publishing
|
115
121
|
include ::Google::Protobuf::MessageExts
|
116
122
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -203,9 +209,57 @@ module Google
|
|
203
209
|
# @!attribute [rw] common
|
204
210
|
# @return [::Google::Api::CommonLanguageSettings]
|
205
211
|
# Some settings.
|
212
|
+
# @!attribute [rw] renamed_services
|
213
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
214
|
+
# Map from original service names to renamed versions.
|
215
|
+
# This is used when the default generated types
|
216
|
+
# would cause a naming conflict. (Neither name is
|
217
|
+
# fully-qualified.)
|
218
|
+
# Example: Subscriber to SubscriberServiceApi.
|
219
|
+
# @!attribute [rw] renamed_resources
|
220
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
221
|
+
# Map from full resource types to the effective short name
|
222
|
+
# for the resource. This is used when otherwise resource
|
223
|
+
# named from different services would cause naming collisions.
|
224
|
+
# Example entry:
|
225
|
+
# "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"
|
226
|
+
# @!attribute [rw] ignored_resources
|
227
|
+
# @return [::Array<::String>]
|
228
|
+
# List of full resource types to ignore during generation.
|
229
|
+
# This is typically used for API-specific Location resources,
|
230
|
+
# which should be handled by the generator as if they were actually
|
231
|
+
# the common Location resources.
|
232
|
+
# Example entry: "documentai.googleapis.com/Location"
|
233
|
+
# @!attribute [rw] forced_namespace_aliases
|
234
|
+
# @return [::Array<::String>]
|
235
|
+
# Namespaces which must be aliased in snippets due to
|
236
|
+
# a known (but non-generator-predictable) naming collision
|
237
|
+
# @!attribute [rw] handwritten_signatures
|
238
|
+
# @return [::Array<::String>]
|
239
|
+
# Method signatures (in the form "service.method(signature)")
|
240
|
+
# which are provided separately, so shouldn't be generated.
|
241
|
+
# Snippets *calling* these methods are still generated, however.
|
206
242
|
class DotnetSettings
|
207
243
|
include ::Google::Protobuf::MessageExts
|
208
244
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
245
|
+
|
246
|
+
# @!attribute [rw] key
|
247
|
+
# @return [::String]
|
248
|
+
# @!attribute [rw] value
|
249
|
+
# @return [::String]
|
250
|
+
class RenamedServicesEntry
|
251
|
+
include ::Google::Protobuf::MessageExts
|
252
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
253
|
+
end
|
254
|
+
|
255
|
+
# @!attribute [rw] key
|
256
|
+
# @return [::String]
|
257
|
+
# @!attribute [rw] value
|
258
|
+
# @return [::String]
|
259
|
+
class RenamedResourcesEntry
|
260
|
+
include ::Google::Protobuf::MessageExts
|
261
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
262
|
+
end
|
209
263
|
end
|
210
264
|
|
211
265
|
# Settings for Ruby client libraries.
|
@@ -240,8 +294,8 @@ module Google
|
|
240
294
|
# Example of a YAML configuration::
|
241
295
|
#
|
242
296
|
# publishing:
|
243
|
-
#
|
244
|
-
# - selector:
|
297
|
+
# method_settings:
|
298
|
+
# - selector: google.cloud.speech.v2.Speech.BatchRecognize
|
245
299
|
# long_running:
|
246
300
|
# initial_poll_delay:
|
247
301
|
# seconds: 60 # 1 minute
|
@@ -299,6 +353,15 @@ module Google
|
|
299
353
|
|
300
354
|
# Street View Org.
|
301
355
|
STREET_VIEW = 4
|
356
|
+
|
357
|
+
# Shopping Org.
|
358
|
+
SHOPPING = 5
|
359
|
+
|
360
|
+
# Geo Org.
|
361
|
+
GEO = 6
|
362
|
+
|
363
|
+
# Generative AI - https://developers.generativeai.google
|
364
|
+
GENERATIVE_AI = 7
|
302
365
|
end
|
303
366
|
|
304
367
|
# To where should client libraries be published?
|
@@ -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
|
@@ -43,8 +43,12 @@ module Google
|
|
43
43
|
# if (any.is(Foo.class)) {
|
44
44
|
# foo = any.unpack(Foo.class);
|
45
45
|
# }
|
46
|
+
# // or ...
|
47
|
+
# if (any.isSameTypeAs(Foo.getDefaultInstance())) {
|
48
|
+
# foo = any.unpack(Foo.getDefaultInstance());
|
49
|
+
# }
|
46
50
|
#
|
47
|
-
#
|
51
|
+
# Example 3: Pack and unpack a message in Python.
|
48
52
|
#
|
49
53
|
# foo = Foo(...)
|
50
54
|
# any = Any()
|
@@ -54,7 +58,7 @@ module Google
|
|
54
58
|
# any.Unpack(foo)
|
55
59
|
# ...
|
56
60
|
#
|
57
|
-
#
|
61
|
+
# Example 4: Pack and unpack a message in Go
|
58
62
|
#
|
59
63
|
# foo := &pb.Foo{...}
|
60
64
|
# any, err := anypb.New(foo)
|
@@ -73,9 +77,8 @@ module Google
|
|
73
77
|
# in the type URL, for example "foo.bar.com/x/y.z" will yield type
|
74
78
|
# name "y.z".
|
75
79
|
#
|
76
|
-
#
|
77
80
|
# JSON
|
78
|
-
#
|
81
|
+
# ====
|
79
82
|
# The JSON representation of an `Any` value uses the regular
|
80
83
|
# representation of the deserialized, embedded message, with an
|
81
84
|
# additional field `@type` which contains the type URL. Example:
|
@@ -69,7 +69,6 @@ module Google
|
|
69
69
|
# Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
|
70
70
|
# .setNanos((int) ((millis % 1000) * 1000000)).build();
|
71
71
|
#
|
72
|
-
#
|
73
72
|
# Example 5: Compute Timestamp from Java `Instant.now()`.
|
74
73
|
#
|
75
74
|
# Instant now = Instant.now();
|
@@ -78,7 +77,6 @@ module Google
|
|
78
77
|
# Timestamp.newBuilder().setSeconds(now.getEpochSecond())
|
79
78
|
# .setNanos(now.getNano()).build();
|
80
79
|
#
|
81
|
-
#
|
82
80
|
# Example 6: Compute Timestamp from current time in Python.
|
83
81
|
#
|
84
82
|
# timestamp = Timestamp()
|
@@ -108,7 +106,7 @@ module Google
|
|
108
106
|
# [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
|
109
107
|
# the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
|
110
108
|
# the Joda Time's [`ISODateTimeFormat.dateTime()`](
|
111
|
-
# http://
|
109
|
+
# http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
|
112
110
|
# ) to obtain a formatter capable of generating timestamps in this format.
|
113
111
|
# @!attribute [rw] seconds
|
114
112
|
# @return [::Integer]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-assured_workloads-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.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
|
@@ -217,7 +217,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
217
217
|
- !ruby/object:Gem::Version
|
218
218
|
version: '0'
|
219
219
|
requirements: []
|
220
|
-
rubygems_version: 3.4.
|
220
|
+
rubygems_version: 3.4.19
|
221
221
|
signing_key:
|
222
222
|
specification_version: 4
|
223
223
|
summary: API Client library for the Assured Workloads for Government V1 API
|