google-apis-beyondcorp_v1 0.10.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3fe3dfad594341f358d0b4bf05a8cb912ef71eeaabdb6f6f791379828f34848b
|
4
|
+
data.tar.gz: 511f234ad39b94702cd28b9fe93dc4cd3a7f92ff403ce2a6f946aaf11d1e0ebd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a16d5bb8d57d87e3986b44b9537caad91e85a302d62d0593d540aba37e91e0c00dd721fb33072ecc2abb2eba264e02821b7d5491bb435874cbcf76861ee9fb38
|
7
|
+
data.tar.gz: f3f779abdcd352a75be3c61af212130a9e7af3eb4d6885542e1578f102b2150269ec098ff8c0d0f8b52474797c6f1d0ea31669f3995495afa1add39d63c06e3f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-beyondcorp_v1
|
2
2
|
|
3
|
+
### v0.12.0 (2023-04-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230406
|
6
|
+
|
7
|
+
### v0.11.0 (2023-03-19)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230308
|
10
|
+
|
3
11
|
### v0.10.0 (2023-02-19)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.12.0
|
@@ -190,234 +190,6 @@ module Google
|
|
190
190
|
end
|
191
191
|
end
|
192
192
|
|
193
|
-
# Message describing ClientConnectorService object.
|
194
|
-
class ClientConnectorService
|
195
|
-
include Google::Apis::Core::Hashable
|
196
|
-
|
197
|
-
# Output only. [Output only] Create time stamp.
|
198
|
-
# Corresponds to the JSON property `createTime`
|
199
|
-
# @return [String]
|
200
|
-
attr_accessor :create_time
|
201
|
-
|
202
|
-
# Optional. User-provided name. The display name should follow certain format. *
|
203
|
-
# Must be 6 to 30 characters in length. * Can only contain lowercase letters,
|
204
|
-
# numbers, and hyphens. * Must start with a letter.
|
205
|
-
# Corresponds to the JSON property `displayName`
|
206
|
-
# @return [String]
|
207
|
-
attr_accessor :display_name
|
208
|
-
|
209
|
-
# The details of the egress info. One of the following options should be set.
|
210
|
-
# Corresponds to the JSON property `egress`
|
211
|
-
# @return [Google::Apis::BeyondcorpV1::Egress]
|
212
|
-
attr_accessor :egress
|
213
|
-
|
214
|
-
# Settings of how to connect to the ClientGateway. One of the following options
|
215
|
-
# should be set.
|
216
|
-
# Corresponds to the JSON property `ingress`
|
217
|
-
# @return [Google::Apis::BeyondcorpV1::Ingress]
|
218
|
-
attr_accessor :ingress
|
219
|
-
|
220
|
-
# Required. Name of resource. The name is ignored during creation.
|
221
|
-
# Corresponds to the JSON property `name`
|
222
|
-
# @return [String]
|
223
|
-
attr_accessor :name
|
224
|
-
|
225
|
-
# Output only. The operational state of the ClientConnectorService.
|
226
|
-
# Corresponds to the JSON property `state`
|
227
|
-
# @return [String]
|
228
|
-
attr_accessor :state
|
229
|
-
|
230
|
-
# Output only. [Output only] Update time stamp.
|
231
|
-
# Corresponds to the JSON property `updateTime`
|
232
|
-
# @return [String]
|
233
|
-
attr_accessor :update_time
|
234
|
-
|
235
|
-
def initialize(**args)
|
236
|
-
update!(**args)
|
237
|
-
end
|
238
|
-
|
239
|
-
# Update properties of this object
|
240
|
-
def update!(**args)
|
241
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
242
|
-
@display_name = args[:display_name] if args.key?(:display_name)
|
243
|
-
@egress = args[:egress] if args.key?(:egress)
|
244
|
-
@ingress = args[:ingress] if args.key?(:ingress)
|
245
|
-
@name = args[:name] if args.key?(:name)
|
246
|
-
@state = args[:state] if args.key?(:state)
|
247
|
-
@update_time = args[:update_time] if args.key?(:update_time)
|
248
|
-
end
|
249
|
-
end
|
250
|
-
|
251
|
-
# Represents the metadata of the long-running operation.
|
252
|
-
class ClientConnectorServiceOperationMetadata
|
253
|
-
include Google::Apis::Core::Hashable
|
254
|
-
|
255
|
-
# Output only. API version used to start the operation.
|
256
|
-
# Corresponds to the JSON property `apiVersion`
|
257
|
-
# @return [String]
|
258
|
-
attr_accessor :api_version
|
259
|
-
|
260
|
-
# Output only. The time the operation was created.
|
261
|
-
# Corresponds to the JSON property `createTime`
|
262
|
-
# @return [String]
|
263
|
-
attr_accessor :create_time
|
264
|
-
|
265
|
-
# Output only. The time the operation finished running.
|
266
|
-
# Corresponds to the JSON property `endTime`
|
267
|
-
# @return [String]
|
268
|
-
attr_accessor :end_time
|
269
|
-
|
270
|
-
# Output only. Identifies whether the user has requested cancellation of the
|
271
|
-
# operation. Operations that have successfully been cancelled have Operation.
|
272
|
-
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
273
|
-
# CANCELLED`.
|
274
|
-
# Corresponds to the JSON property `requestedCancellation`
|
275
|
-
# @return [Boolean]
|
276
|
-
attr_accessor :requested_cancellation
|
277
|
-
alias_method :requested_cancellation?, :requested_cancellation
|
278
|
-
|
279
|
-
# Output only. Human-readable status of the operation, if any.
|
280
|
-
# Corresponds to the JSON property `statusMessage`
|
281
|
-
# @return [String]
|
282
|
-
attr_accessor :status_message
|
283
|
-
|
284
|
-
# Output only. Server-defined resource path for the target of the operation.
|
285
|
-
# Corresponds to the JSON property `target`
|
286
|
-
# @return [String]
|
287
|
-
attr_accessor :target
|
288
|
-
|
289
|
-
# Output only. Name of the verb executed by the operation.
|
290
|
-
# Corresponds to the JSON property `verb`
|
291
|
-
# @return [String]
|
292
|
-
attr_accessor :verb
|
293
|
-
|
294
|
-
def initialize(**args)
|
295
|
-
update!(**args)
|
296
|
-
end
|
297
|
-
|
298
|
-
# Update properties of this object
|
299
|
-
def update!(**args)
|
300
|
-
@api_version = args[:api_version] if args.key?(:api_version)
|
301
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
302
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
303
|
-
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
304
|
-
@status_message = args[:status_message] if args.key?(:status_message)
|
305
|
-
@target = args[:target] if args.key?(:target)
|
306
|
-
@verb = args[:verb] if args.key?(:verb)
|
307
|
-
end
|
308
|
-
end
|
309
|
-
|
310
|
-
# Message describing ClientGateway object.
|
311
|
-
class ClientGateway
|
312
|
-
include Google::Apis::Core::Hashable
|
313
|
-
|
314
|
-
# Output only. The client connector service name that the client gateway is
|
315
|
-
# associated to. Client Connector Services, named as follows: `projects/`
|
316
|
-
# project_id`/locations/`location_id`/client_connector_services/`
|
317
|
-
# client_connector_service_id``.
|
318
|
-
# Corresponds to the JSON property `clientConnectorService`
|
319
|
-
# @return [String]
|
320
|
-
attr_accessor :client_connector_service
|
321
|
-
|
322
|
-
# Output only. [Output only] Create time stamp.
|
323
|
-
# Corresponds to the JSON property `createTime`
|
324
|
-
# @return [String]
|
325
|
-
attr_accessor :create_time
|
326
|
-
|
327
|
-
# Output only. A unique identifier for the instance generated by the system.
|
328
|
-
# Corresponds to the JSON property `id`
|
329
|
-
# @return [String]
|
330
|
-
attr_accessor :id
|
331
|
-
|
332
|
-
# Required. name of resource. The name is ignored during creation.
|
333
|
-
# Corresponds to the JSON property `name`
|
334
|
-
# @return [String]
|
335
|
-
attr_accessor :name
|
336
|
-
|
337
|
-
# Output only. The operational state of the gateway.
|
338
|
-
# Corresponds to the JSON property `state`
|
339
|
-
# @return [String]
|
340
|
-
attr_accessor :state
|
341
|
-
|
342
|
-
# Output only. [Output only] Update time stamp.
|
343
|
-
# Corresponds to the JSON property `updateTime`
|
344
|
-
# @return [String]
|
345
|
-
attr_accessor :update_time
|
346
|
-
|
347
|
-
def initialize(**args)
|
348
|
-
update!(**args)
|
349
|
-
end
|
350
|
-
|
351
|
-
# Update properties of this object
|
352
|
-
def update!(**args)
|
353
|
-
@client_connector_service = args[:client_connector_service] if args.key?(:client_connector_service)
|
354
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
355
|
-
@id = args[:id] if args.key?(:id)
|
356
|
-
@name = args[:name] if args.key?(:name)
|
357
|
-
@state = args[:state] if args.key?(:state)
|
358
|
-
@update_time = args[:update_time] if args.key?(:update_time)
|
359
|
-
end
|
360
|
-
end
|
361
|
-
|
362
|
-
# Represents the metadata of the long-running operation.
|
363
|
-
class ClientGatewayOperationMetadata
|
364
|
-
include Google::Apis::Core::Hashable
|
365
|
-
|
366
|
-
# Output only. API version used to start the operation.
|
367
|
-
# Corresponds to the JSON property `apiVersion`
|
368
|
-
# @return [String]
|
369
|
-
attr_accessor :api_version
|
370
|
-
|
371
|
-
# Output only. The time the operation was created.
|
372
|
-
# Corresponds to the JSON property `createTime`
|
373
|
-
# @return [String]
|
374
|
-
attr_accessor :create_time
|
375
|
-
|
376
|
-
# Output only. The time the operation finished running.
|
377
|
-
# Corresponds to the JSON property `endTime`
|
378
|
-
# @return [String]
|
379
|
-
attr_accessor :end_time
|
380
|
-
|
381
|
-
# Output only. Identifies whether the user has requested cancellation of the
|
382
|
-
# operation. Operations that have been cancelled successfully have Operation.
|
383
|
-
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
384
|
-
# CANCELLED`.
|
385
|
-
# Corresponds to the JSON property `requestedCancellation`
|
386
|
-
# @return [Boolean]
|
387
|
-
attr_accessor :requested_cancellation
|
388
|
-
alias_method :requested_cancellation?, :requested_cancellation
|
389
|
-
|
390
|
-
# Output only. Human-readable status of the operation, if any.
|
391
|
-
# Corresponds to the JSON property `statusMessage`
|
392
|
-
# @return [String]
|
393
|
-
attr_accessor :status_message
|
394
|
-
|
395
|
-
# Output only. Server-defined resource path for the target of the operation.
|
396
|
-
# Corresponds to the JSON property `target`
|
397
|
-
# @return [String]
|
398
|
-
attr_accessor :target
|
399
|
-
|
400
|
-
# Output only. Name of the verb executed by the operation.
|
401
|
-
# Corresponds to the JSON property `verb`
|
402
|
-
# @return [String]
|
403
|
-
attr_accessor :verb
|
404
|
-
|
405
|
-
def initialize(**args)
|
406
|
-
update!(**args)
|
407
|
-
end
|
408
|
-
|
409
|
-
# Update properties of this object
|
410
|
-
def update!(**args)
|
411
|
-
@api_version = args[:api_version] if args.key?(:api_version)
|
412
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
413
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
414
|
-
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
415
|
-
@status_message = args[:status_message] if args.key?(:status_message)
|
416
|
-
@target = args[:target] if args.key?(:target)
|
417
|
-
@verb = args[:verb] if args.key?(:verb)
|
418
|
-
end
|
419
|
-
end
|
420
|
-
|
421
193
|
# ConnectionConfig represents a Connection Configuration object.
|
422
194
|
class CloudSecurityZerotrustApplinkAppConnectorProtoConnectionConfig
|
423
195
|
include Google::Apis::Core::Hashable
|
@@ -567,79 +339,6 @@ module Google
|
|
567
339
|
end
|
568
340
|
end
|
569
341
|
|
570
|
-
# The basic ingress config for ClientGateways.
|
571
|
-
class Config
|
572
|
-
include Google::Apis::Core::Hashable
|
573
|
-
|
574
|
-
# Required. The settings used to configure basic ClientGateways.
|
575
|
-
# Corresponds to the JSON property `destinationRoutes`
|
576
|
-
# @return [Array<Google::Apis::BeyondcorpV1::DestinationRoute>]
|
577
|
-
attr_accessor :destination_routes
|
578
|
-
|
579
|
-
# Required. Immutable. The transport protocol used between the client and the
|
580
|
-
# server.
|
581
|
-
# Corresponds to the JSON property `transportProtocol`
|
582
|
-
# @return [String]
|
583
|
-
attr_accessor :transport_protocol
|
584
|
-
|
585
|
-
def initialize(**args)
|
586
|
-
update!(**args)
|
587
|
-
end
|
588
|
-
|
589
|
-
# Update properties of this object
|
590
|
-
def update!(**args)
|
591
|
-
@destination_routes = args[:destination_routes] if args.key?(:destination_routes)
|
592
|
-
@transport_protocol = args[:transport_protocol] if args.key?(:transport_protocol)
|
593
|
-
end
|
594
|
-
end
|
595
|
-
|
596
|
-
# The setting used to configure ClientGateways. It is adding routes to the
|
597
|
-
# client's routing table after the connection is established.
|
598
|
-
class DestinationRoute
|
599
|
-
include Google::Apis::Core::Hashable
|
600
|
-
|
601
|
-
# Required. The network address of the subnet for which the packet is routed to
|
602
|
-
# the ClientGateway.
|
603
|
-
# Corresponds to the JSON property `address`
|
604
|
-
# @return [String]
|
605
|
-
attr_accessor :address
|
606
|
-
|
607
|
-
# Required. The network mask of the subnet for which the packet is routed to the
|
608
|
-
# ClientGateway.
|
609
|
-
# Corresponds to the JSON property `netmask`
|
610
|
-
# @return [String]
|
611
|
-
attr_accessor :netmask
|
612
|
-
|
613
|
-
def initialize(**args)
|
614
|
-
update!(**args)
|
615
|
-
end
|
616
|
-
|
617
|
-
# Update properties of this object
|
618
|
-
def update!(**args)
|
619
|
-
@address = args[:address] if args.key?(:address)
|
620
|
-
@netmask = args[:netmask] if args.key?(:netmask)
|
621
|
-
end
|
622
|
-
end
|
623
|
-
|
624
|
-
# The details of the egress info. One of the following options should be set.
|
625
|
-
class Egress
|
626
|
-
include Google::Apis::Core::Hashable
|
627
|
-
|
628
|
-
# The peered VPC owned by the consumer project.
|
629
|
-
# Corresponds to the JSON property `peeredVpc`
|
630
|
-
# @return [Google::Apis::BeyondcorpV1::PeeredVpc]
|
631
|
-
attr_accessor :peered_vpc
|
632
|
-
|
633
|
-
def initialize(**args)
|
634
|
-
update!(**args)
|
635
|
-
end
|
636
|
-
|
637
|
-
# Update properties of this object
|
638
|
-
def update!(**args)
|
639
|
-
@peered_vpc = args[:peered_vpc] if args.key?(:peered_vpc)
|
640
|
-
end
|
641
|
-
end
|
642
|
-
|
643
342
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
644
343
|
# messages in your APIs. A typical example is to use it as the request or the
|
645
344
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -2547,26 +2246,6 @@ module Google
|
|
2547
2246
|
end
|
2548
2247
|
end
|
2549
2248
|
|
2550
|
-
# Settings of how to connect to the ClientGateway. One of the following options
|
2551
|
-
# should be set.
|
2552
|
-
class Ingress
|
2553
|
-
include Google::Apis::Core::Hashable
|
2554
|
-
|
2555
|
-
# The basic ingress config for ClientGateways.
|
2556
|
-
# Corresponds to the JSON property `config`
|
2557
|
-
# @return [Google::Apis::BeyondcorpV1::Config]
|
2558
|
-
attr_accessor :config
|
2559
|
-
|
2560
|
-
def initialize(**args)
|
2561
|
-
update!(**args)
|
2562
|
-
end
|
2563
|
-
|
2564
|
-
# Update properties of this object
|
2565
|
-
def update!(**args)
|
2566
|
-
@config = args[:config] if args.key?(:config)
|
2567
|
-
end
|
2568
|
-
end
|
2569
|
-
|
2570
2249
|
# Response message for BeyondCorp.ListAppGateways.
|
2571
2250
|
class ListAppGatewaysResponse
|
2572
2251
|
include Google::Apis::Core::Hashable
|
@@ -2599,87 +2278,6 @@ module Google
|
|
2599
2278
|
end
|
2600
2279
|
end
|
2601
2280
|
|
2602
|
-
# Message for response to listing ClientConnectorServices.
|
2603
|
-
class ListClientConnectorServicesResponse
|
2604
|
-
include Google::Apis::Core::Hashable
|
2605
|
-
|
2606
|
-
# The list of ClientConnectorService.
|
2607
|
-
# Corresponds to the JSON property `clientConnectorServices`
|
2608
|
-
# @return [Array<Google::Apis::BeyondcorpV1::ClientConnectorService>]
|
2609
|
-
attr_accessor :client_connector_services
|
2610
|
-
|
2611
|
-
# A token identifying a page of results the server should return.
|
2612
|
-
# Corresponds to the JSON property `nextPageToken`
|
2613
|
-
# @return [String]
|
2614
|
-
attr_accessor :next_page_token
|
2615
|
-
|
2616
|
-
# Locations that could not be reached.
|
2617
|
-
# Corresponds to the JSON property `unreachable`
|
2618
|
-
# @return [Array<String>]
|
2619
|
-
attr_accessor :unreachable
|
2620
|
-
|
2621
|
-
def initialize(**args)
|
2622
|
-
update!(**args)
|
2623
|
-
end
|
2624
|
-
|
2625
|
-
# Update properties of this object
|
2626
|
-
def update!(**args)
|
2627
|
-
@client_connector_services = args[:client_connector_services] if args.key?(:client_connector_services)
|
2628
|
-
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2629
|
-
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2630
|
-
end
|
2631
|
-
end
|
2632
|
-
|
2633
|
-
# Message for response to listing ClientGateways.
|
2634
|
-
class ListClientGatewaysResponse
|
2635
|
-
include Google::Apis::Core::Hashable
|
2636
|
-
|
2637
|
-
# The list of ClientGateway.
|
2638
|
-
# Corresponds to the JSON property `clientGateways`
|
2639
|
-
# @return [Array<Google::Apis::BeyondcorpV1::ClientGateway>]
|
2640
|
-
attr_accessor :client_gateways
|
2641
|
-
|
2642
|
-
# A token identifying a page of results the server should return.
|
2643
|
-
# Corresponds to the JSON property `nextPageToken`
|
2644
|
-
# @return [String]
|
2645
|
-
attr_accessor :next_page_token
|
2646
|
-
|
2647
|
-
# Locations that could not be reached.
|
2648
|
-
# Corresponds to the JSON property `unreachable`
|
2649
|
-
# @return [Array<String>]
|
2650
|
-
attr_accessor :unreachable
|
2651
|
-
|
2652
|
-
def initialize(**args)
|
2653
|
-
update!(**args)
|
2654
|
-
end
|
2655
|
-
|
2656
|
-
# Update properties of this object
|
2657
|
-
def update!(**args)
|
2658
|
-
@client_gateways = args[:client_gateways] if args.key?(:client_gateways)
|
2659
|
-
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2660
|
-
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2661
|
-
end
|
2662
|
-
end
|
2663
|
-
|
2664
|
-
# The peered VPC owned by the consumer project.
|
2665
|
-
class PeeredVpc
|
2666
|
-
include Google::Apis::Core::Hashable
|
2667
|
-
|
2668
|
-
# Required. The name of the peered VPC owned by the consumer project.
|
2669
|
-
# Corresponds to the JSON property `networkVpc`
|
2670
|
-
# @return [String]
|
2671
|
-
attr_accessor :network_vpc
|
2672
|
-
|
2673
|
-
def initialize(**args)
|
2674
|
-
update!(**args)
|
2675
|
-
end
|
2676
|
-
|
2677
|
-
# Update properties of this object
|
2678
|
-
def update!(**args)
|
2679
|
-
@network_vpc = args[:network_vpc] if args.key?(:network_vpc)
|
2680
|
-
end
|
2681
|
-
end
|
2682
|
-
|
2683
2281
|
# TunnelerError is an error proto for errors returned by the connection manager.
|
2684
2282
|
class Tunnelv1ProtoTunnelerError
|
2685
2283
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module BeyondcorpV1
|
18
18
|
# Version of the google-apis-beyondcorp_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230406"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -40,30 +40,6 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
-
class ClientConnectorService
|
44
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
-
|
46
|
-
include Google::Apis::Core::JsonObjectSupport
|
47
|
-
end
|
48
|
-
|
49
|
-
class ClientConnectorServiceOperationMetadata
|
50
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
-
|
52
|
-
include Google::Apis::Core::JsonObjectSupport
|
53
|
-
end
|
54
|
-
|
55
|
-
class ClientGateway
|
56
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
-
|
58
|
-
include Google::Apis::Core::JsonObjectSupport
|
59
|
-
end
|
60
|
-
|
61
|
-
class ClientGatewayOperationMetadata
|
62
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
-
|
64
|
-
include Google::Apis::Core::JsonObjectSupport
|
65
|
-
end
|
66
|
-
|
67
43
|
class CloudSecurityZerotrustApplinkAppConnectorProtoConnectionConfig
|
68
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
45
|
|
@@ -88,24 +64,6 @@ module Google
|
|
88
64
|
include Google::Apis::Core::JsonObjectSupport
|
89
65
|
end
|
90
66
|
|
91
|
-
class Config
|
92
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
-
|
94
|
-
include Google::Apis::Core::JsonObjectSupport
|
95
|
-
end
|
96
|
-
|
97
|
-
class DestinationRoute
|
98
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
-
|
100
|
-
include Google::Apis::Core::JsonObjectSupport
|
101
|
-
end
|
102
|
-
|
103
|
-
class Egress
|
104
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
-
|
106
|
-
include Google::Apis::Core::JsonObjectSupport
|
107
|
-
end
|
108
|
-
|
109
67
|
class Empty
|
110
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
69
|
|
@@ -388,36 +346,12 @@ module Google
|
|
388
346
|
include Google::Apis::Core::JsonObjectSupport
|
389
347
|
end
|
390
348
|
|
391
|
-
class Ingress
|
392
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
|
-
|
394
|
-
include Google::Apis::Core::JsonObjectSupport
|
395
|
-
end
|
396
|
-
|
397
349
|
class ListAppGatewaysResponse
|
398
350
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
351
|
|
400
352
|
include Google::Apis::Core::JsonObjectSupport
|
401
353
|
end
|
402
354
|
|
403
|
-
class ListClientConnectorServicesResponse
|
404
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
|
-
|
406
|
-
include Google::Apis::Core::JsonObjectSupport
|
407
|
-
end
|
408
|
-
|
409
|
-
class ListClientGatewaysResponse
|
410
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
|
-
|
412
|
-
include Google::Apis::Core::JsonObjectSupport
|
413
|
-
end
|
414
|
-
|
415
|
-
class PeeredVpc
|
416
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
-
|
418
|
-
include Google::Apis::Core::JsonObjectSupport
|
419
|
-
end
|
420
|
-
|
421
355
|
class Tunnelv1ProtoTunnelerError
|
422
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
357
|
|
@@ -469,59 +403,6 @@ module Google
|
|
469
403
|
end
|
470
404
|
end
|
471
405
|
|
472
|
-
class ClientConnectorService
|
473
|
-
# @private
|
474
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
475
|
-
property :create_time, as: 'createTime'
|
476
|
-
property :display_name, as: 'displayName'
|
477
|
-
property :egress, as: 'egress', class: Google::Apis::BeyondcorpV1::Egress, decorator: Google::Apis::BeyondcorpV1::Egress::Representation
|
478
|
-
|
479
|
-
property :ingress, as: 'ingress', class: Google::Apis::BeyondcorpV1::Ingress, decorator: Google::Apis::BeyondcorpV1::Ingress::Representation
|
480
|
-
|
481
|
-
property :name, as: 'name'
|
482
|
-
property :state, as: 'state'
|
483
|
-
property :update_time, as: 'updateTime'
|
484
|
-
end
|
485
|
-
end
|
486
|
-
|
487
|
-
class ClientConnectorServiceOperationMetadata
|
488
|
-
# @private
|
489
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
490
|
-
property :api_version, as: 'apiVersion'
|
491
|
-
property :create_time, as: 'createTime'
|
492
|
-
property :end_time, as: 'endTime'
|
493
|
-
property :requested_cancellation, as: 'requestedCancellation'
|
494
|
-
property :status_message, as: 'statusMessage'
|
495
|
-
property :target, as: 'target'
|
496
|
-
property :verb, as: 'verb'
|
497
|
-
end
|
498
|
-
end
|
499
|
-
|
500
|
-
class ClientGateway
|
501
|
-
# @private
|
502
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
503
|
-
property :client_connector_service, as: 'clientConnectorService'
|
504
|
-
property :create_time, as: 'createTime'
|
505
|
-
property :id, as: 'id'
|
506
|
-
property :name, as: 'name'
|
507
|
-
property :state, as: 'state'
|
508
|
-
property :update_time, as: 'updateTime'
|
509
|
-
end
|
510
|
-
end
|
511
|
-
|
512
|
-
class ClientGatewayOperationMetadata
|
513
|
-
# @private
|
514
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
515
|
-
property :api_version, as: 'apiVersion'
|
516
|
-
property :create_time, as: 'createTime'
|
517
|
-
property :end_time, as: 'endTime'
|
518
|
-
property :requested_cancellation, as: 'requestedCancellation'
|
519
|
-
property :status_message, as: 'statusMessage'
|
520
|
-
property :target, as: 'target'
|
521
|
-
property :verb, as: 'verb'
|
522
|
-
end
|
523
|
-
end
|
524
|
-
|
525
406
|
class CloudSecurityZerotrustApplinkAppConnectorProtoConnectionConfig
|
526
407
|
# @private
|
527
408
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -560,31 +441,6 @@ module Google
|
|
560
441
|
end
|
561
442
|
end
|
562
443
|
|
563
|
-
class Config
|
564
|
-
# @private
|
565
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
566
|
-
collection :destination_routes, as: 'destinationRoutes', class: Google::Apis::BeyondcorpV1::DestinationRoute, decorator: Google::Apis::BeyondcorpV1::DestinationRoute::Representation
|
567
|
-
|
568
|
-
property :transport_protocol, as: 'transportProtocol'
|
569
|
-
end
|
570
|
-
end
|
571
|
-
|
572
|
-
class DestinationRoute
|
573
|
-
# @private
|
574
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
575
|
-
property :address, as: 'address'
|
576
|
-
property :netmask, as: 'netmask'
|
577
|
-
end
|
578
|
-
end
|
579
|
-
|
580
|
-
class Egress
|
581
|
-
# @private
|
582
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
583
|
-
property :peered_vpc, as: 'peeredVpc', class: Google::Apis::BeyondcorpV1::PeeredVpc, decorator: Google::Apis::BeyondcorpV1::PeeredVpc::Representation
|
584
|
-
|
585
|
-
end
|
586
|
-
end
|
587
|
-
|
588
444
|
class Empty
|
589
445
|
# @private
|
590
446
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1058,14 +914,6 @@ module Google
|
|
1058
914
|
end
|
1059
915
|
end
|
1060
916
|
|
1061
|
-
class Ingress
|
1062
|
-
# @private
|
1063
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1064
|
-
property :config, as: 'config', class: Google::Apis::BeyondcorpV1::Config, decorator: Google::Apis::BeyondcorpV1::Config::Representation
|
1065
|
-
|
1066
|
-
end
|
1067
|
-
end
|
1068
|
-
|
1069
917
|
class ListAppGatewaysResponse
|
1070
918
|
# @private
|
1071
919
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1076,33 +924,6 @@ module Google
|
|
1076
924
|
end
|
1077
925
|
end
|
1078
926
|
|
1079
|
-
class ListClientConnectorServicesResponse
|
1080
|
-
# @private
|
1081
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1082
|
-
collection :client_connector_services, as: 'clientConnectorServices', class: Google::Apis::BeyondcorpV1::ClientConnectorService, decorator: Google::Apis::BeyondcorpV1::ClientConnectorService::Representation
|
1083
|
-
|
1084
|
-
property :next_page_token, as: 'nextPageToken'
|
1085
|
-
collection :unreachable, as: 'unreachable'
|
1086
|
-
end
|
1087
|
-
end
|
1088
|
-
|
1089
|
-
class ListClientGatewaysResponse
|
1090
|
-
# @private
|
1091
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1092
|
-
collection :client_gateways, as: 'clientGateways', class: Google::Apis::BeyondcorpV1::ClientGateway, decorator: Google::Apis::BeyondcorpV1::ClientGateway::Representation
|
1093
|
-
|
1094
|
-
property :next_page_token, as: 'nextPageToken'
|
1095
|
-
collection :unreachable, as: 'unreachable'
|
1096
|
-
end
|
1097
|
-
end
|
1098
|
-
|
1099
|
-
class PeeredVpc
|
1100
|
-
# @private
|
1101
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1102
|
-
property :network_vpc, as: 'networkVpc'
|
1103
|
-
end
|
1104
|
-
end
|
1105
|
-
|
1106
927
|
class Tunnelv1ProtoTunnelerError
|
1107
928
|
# @private
|
1108
929
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1262,137 +1262,6 @@ module Google
|
|
1262
1262
|
execute_or_queue_command(command, &block)
|
1263
1263
|
end
|
1264
1264
|
|
1265
|
-
# Creates a new ClientConnectorService in a given project and location.
|
1266
|
-
# @param [String] parent
|
1267
|
-
# Required. Value for parent.
|
1268
|
-
# @param [Google::Apis::BeyondcorpV1::ClientConnectorService] client_connector_service_object
|
1269
|
-
# @param [String] client_connector_service_id
|
1270
|
-
# Optional. User-settable client connector service resource ID. * Must start
|
1271
|
-
# with a letter. * Must contain between 4-63 characters from `/a-z-/`. * Must
|
1272
|
-
# end with a number or a letter. A random system generated name will be assigned
|
1273
|
-
# if not specified by the user.
|
1274
|
-
# @param [String] request_id
|
1275
|
-
# Optional. An optional request ID to identify requests. Specify a unique
|
1276
|
-
# request ID so that if you must retry your request, the server will know to
|
1277
|
-
# ignore the request if it has already been completed. The server will guarantee
|
1278
|
-
# that for at least 60 minutes since the first request. For example, consider a
|
1279
|
-
# situation where you make an initial request and t he request times out. If you
|
1280
|
-
# make the request again with the same request ID, the server can check if
|
1281
|
-
# original operation with the same request ID was received, and if so, will
|
1282
|
-
# ignore the second request. This prevents clients from accidentally creating
|
1283
|
-
# duplicate commitments. The request ID must be a valid UUID with the exception
|
1284
|
-
# that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1285
|
-
# @param [Boolean] validate_only
|
1286
|
-
# Optional. If set, validates request by executing a dry-run which would not
|
1287
|
-
# alter the resource in any way.
|
1288
|
-
# @param [String] fields
|
1289
|
-
# Selector specifying which fields to include in a partial response.
|
1290
|
-
# @param [String] quota_user
|
1291
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1292
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1293
|
-
# @param [Google::Apis::RequestOptions] options
|
1294
|
-
# Request-specific options
|
1295
|
-
#
|
1296
|
-
# @yield [result, err] Result & error if block supplied
|
1297
|
-
# @yieldparam result [Google::Apis::BeyondcorpV1::GoogleLongrunningOperation] parsed result object
|
1298
|
-
# @yieldparam err [StandardError] error object if request failed
|
1299
|
-
#
|
1300
|
-
# @return [Google::Apis::BeyondcorpV1::GoogleLongrunningOperation]
|
1301
|
-
#
|
1302
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1303
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1304
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1305
|
-
def create_project_location_client_connector_service(parent, client_connector_service_object = nil, client_connector_service_id: nil, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1306
|
-
command = make_simple_command(:post, 'v1/{+parent}/clientConnectorServices', options)
|
1307
|
-
command.request_representation = Google::Apis::BeyondcorpV1::ClientConnectorService::Representation
|
1308
|
-
command.request_object = client_connector_service_object
|
1309
|
-
command.response_representation = Google::Apis::BeyondcorpV1::GoogleLongrunningOperation::Representation
|
1310
|
-
command.response_class = Google::Apis::BeyondcorpV1::GoogleLongrunningOperation
|
1311
|
-
command.params['parent'] = parent unless parent.nil?
|
1312
|
-
command.query['clientConnectorServiceId'] = client_connector_service_id unless client_connector_service_id.nil?
|
1313
|
-
command.query['requestId'] = request_id unless request_id.nil?
|
1314
|
-
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
1315
|
-
command.query['fields'] = fields unless fields.nil?
|
1316
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1317
|
-
execute_or_queue_command(command, &block)
|
1318
|
-
end
|
1319
|
-
|
1320
|
-
# Deletes a single ClientConnectorService.
|
1321
|
-
# @param [String] name
|
1322
|
-
# Required. Name of the resource.
|
1323
|
-
# @param [String] request_id
|
1324
|
-
# Optional. An optional request ID to identify requests. Specify a unique
|
1325
|
-
# request ID so that if you must retry your request, the server will know to
|
1326
|
-
# ignore the request if it has already been completed. The server will guarantee
|
1327
|
-
# that for at least 60 minutes after the first request. For example, consider a
|
1328
|
-
# situation where you make an initial request and t he request times out. If you
|
1329
|
-
# make the request again with the same request ID, the server can check if
|
1330
|
-
# original operation with the same request ID was received, and if so, will
|
1331
|
-
# ignore the second request. This prevents clients from accidentally creating
|
1332
|
-
# duplicate commitments. The request ID must be a valid UUID with the exception
|
1333
|
-
# that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1334
|
-
# @param [Boolean] validate_only
|
1335
|
-
# Optional. If set, validates request by executing a dry-run which would not
|
1336
|
-
# alter the resource in any way.
|
1337
|
-
# @param [String] fields
|
1338
|
-
# Selector specifying which fields to include in a partial response.
|
1339
|
-
# @param [String] quota_user
|
1340
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1341
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1342
|
-
# @param [Google::Apis::RequestOptions] options
|
1343
|
-
# Request-specific options
|
1344
|
-
#
|
1345
|
-
# @yield [result, err] Result & error if block supplied
|
1346
|
-
# @yieldparam result [Google::Apis::BeyondcorpV1::GoogleLongrunningOperation] parsed result object
|
1347
|
-
# @yieldparam err [StandardError] error object if request failed
|
1348
|
-
#
|
1349
|
-
# @return [Google::Apis::BeyondcorpV1::GoogleLongrunningOperation]
|
1350
|
-
#
|
1351
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1352
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1353
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1354
|
-
def delete_project_location_client_connector_service(name, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1355
|
-
command = make_simple_command(:delete, 'v1/{+name}', options)
|
1356
|
-
command.response_representation = Google::Apis::BeyondcorpV1::GoogleLongrunningOperation::Representation
|
1357
|
-
command.response_class = Google::Apis::BeyondcorpV1::GoogleLongrunningOperation
|
1358
|
-
command.params['name'] = name unless name.nil?
|
1359
|
-
command.query['requestId'] = request_id unless request_id.nil?
|
1360
|
-
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
1361
|
-
command.query['fields'] = fields unless fields.nil?
|
1362
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1363
|
-
execute_or_queue_command(command, &block)
|
1364
|
-
end
|
1365
|
-
|
1366
|
-
# Gets details of a single ClientConnectorService.
|
1367
|
-
# @param [String] name
|
1368
|
-
# Required. Name of the resource.
|
1369
|
-
# @param [String] fields
|
1370
|
-
# Selector specifying which fields to include in a partial response.
|
1371
|
-
# @param [String] quota_user
|
1372
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1373
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1374
|
-
# @param [Google::Apis::RequestOptions] options
|
1375
|
-
# Request-specific options
|
1376
|
-
#
|
1377
|
-
# @yield [result, err] Result & error if block supplied
|
1378
|
-
# @yieldparam result [Google::Apis::BeyondcorpV1::ClientConnectorService] parsed result object
|
1379
|
-
# @yieldparam err [StandardError] error object if request failed
|
1380
|
-
#
|
1381
|
-
# @return [Google::Apis::BeyondcorpV1::ClientConnectorService]
|
1382
|
-
#
|
1383
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1384
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1385
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1386
|
-
def get_project_location_client_connector_service(name, fields: nil, quota_user: nil, options: nil, &block)
|
1387
|
-
command = make_simple_command(:get, 'v1/{+name}', options)
|
1388
|
-
command.response_representation = Google::Apis::BeyondcorpV1::ClientConnectorService::Representation
|
1389
|
-
command.response_class = Google::Apis::BeyondcorpV1::ClientConnectorService
|
1390
|
-
command.params['name'] = name unless name.nil?
|
1391
|
-
command.query['fields'] = fields unless fields.nil?
|
1392
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1393
|
-
execute_or_queue_command(command, &block)
|
1394
|
-
end
|
1395
|
-
|
1396
1265
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
1397
1266
|
# resource exists and does not have a policy set.
|
1398
1267
|
# @param [String] resource
|
@@ -1438,109 +1307,6 @@ module Google
|
|
1438
1307
|
execute_or_queue_command(command, &block)
|
1439
1308
|
end
|
1440
1309
|
|
1441
|
-
# Lists ClientConnectorServices in a given project and location.
|
1442
|
-
# @param [String] parent
|
1443
|
-
# Required. Parent value for ListClientConnectorServicesRequest.
|
1444
|
-
# @param [String] filter
|
1445
|
-
# Optional. Filtering results.
|
1446
|
-
# @param [String] order_by
|
1447
|
-
# Optional. Hint for how to order the results.
|
1448
|
-
# @param [Fixnum] page_size
|
1449
|
-
# Optional. Requested page size. Server may return fewer items than requested.
|
1450
|
-
# If unspecified, server will pick an appropriate default.
|
1451
|
-
# @param [String] page_token
|
1452
|
-
# Optional. A token identifying a page of results the server should return.
|
1453
|
-
# @param [String] fields
|
1454
|
-
# Selector specifying which fields to include in a partial response.
|
1455
|
-
# @param [String] quota_user
|
1456
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1457
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1458
|
-
# @param [Google::Apis::RequestOptions] options
|
1459
|
-
# Request-specific options
|
1460
|
-
#
|
1461
|
-
# @yield [result, err] Result & error if block supplied
|
1462
|
-
# @yieldparam result [Google::Apis::BeyondcorpV1::ListClientConnectorServicesResponse] parsed result object
|
1463
|
-
# @yieldparam err [StandardError] error object if request failed
|
1464
|
-
#
|
1465
|
-
# @return [Google::Apis::BeyondcorpV1::ListClientConnectorServicesResponse]
|
1466
|
-
#
|
1467
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1468
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1469
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1470
|
-
def list_project_location_client_connector_services(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1471
|
-
command = make_simple_command(:get, 'v1/{+parent}/clientConnectorServices', options)
|
1472
|
-
command.response_representation = Google::Apis::BeyondcorpV1::ListClientConnectorServicesResponse::Representation
|
1473
|
-
command.response_class = Google::Apis::BeyondcorpV1::ListClientConnectorServicesResponse
|
1474
|
-
command.params['parent'] = parent unless parent.nil?
|
1475
|
-
command.query['filter'] = filter unless filter.nil?
|
1476
|
-
command.query['orderBy'] = order_by unless order_by.nil?
|
1477
|
-
command.query['pageSize'] = page_size unless page_size.nil?
|
1478
|
-
command.query['pageToken'] = page_token unless page_token.nil?
|
1479
|
-
command.query['fields'] = fields unless fields.nil?
|
1480
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1481
|
-
execute_or_queue_command(command, &block)
|
1482
|
-
end
|
1483
|
-
|
1484
|
-
# Updates the parameters of a single ClientConnectorService.
|
1485
|
-
# @param [String] name
|
1486
|
-
# Required. Name of resource. The name is ignored during creation.
|
1487
|
-
# @param [Google::Apis::BeyondcorpV1::ClientConnectorService] client_connector_service_object
|
1488
|
-
# @param [Boolean] allow_missing
|
1489
|
-
# Optional. If set as true, will create the resource if it is not found.
|
1490
|
-
# @param [String] request_id
|
1491
|
-
# Optional. An optional request ID to identify requests. Specify a unique
|
1492
|
-
# request ID so that if you must retry your request, the server will know to
|
1493
|
-
# ignore the request if it has already been completed. The server will guarantee
|
1494
|
-
# that for at least 60 minutes since the first request. For example, consider a
|
1495
|
-
# situation where you make an initial request and t he request times out. If you
|
1496
|
-
# make the request again with the same request ID, the server can check if
|
1497
|
-
# original operation with the same request ID was received, and if so, will
|
1498
|
-
# ignore the second request. This prevents clients from accidentally creating
|
1499
|
-
# duplicate commitments. The request ID must be a valid UUID with the exception
|
1500
|
-
# that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1501
|
-
# @param [String] update_mask
|
1502
|
-
# Required. Field mask is used to specify the fields to be overwritten in the
|
1503
|
-
# ClientConnectorService resource by the update. The fields specified in the
|
1504
|
-
# update_mask are relative to the resource, not the full request. A field will
|
1505
|
-
# be overwritten if it is in the mask. If the user does not provide a mask then
|
1506
|
-
# all fields will be overwritten. Mutable fields: display_name, ingress.config.
|
1507
|
-
# destination_routes.
|
1508
|
-
# @param [Boolean] validate_only
|
1509
|
-
# Optional. If set, validates request by executing a dry-run which would not
|
1510
|
-
# alter the resource in any way.
|
1511
|
-
# @param [String] fields
|
1512
|
-
# Selector specifying which fields to include in a partial response.
|
1513
|
-
# @param [String] quota_user
|
1514
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1515
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1516
|
-
# @param [Google::Apis::RequestOptions] options
|
1517
|
-
# Request-specific options
|
1518
|
-
#
|
1519
|
-
# @yield [result, err] Result & error if block supplied
|
1520
|
-
# @yieldparam result [Google::Apis::BeyondcorpV1::GoogleLongrunningOperation] parsed result object
|
1521
|
-
# @yieldparam err [StandardError] error object if request failed
|
1522
|
-
#
|
1523
|
-
# @return [Google::Apis::BeyondcorpV1::GoogleLongrunningOperation]
|
1524
|
-
#
|
1525
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1526
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1527
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1528
|
-
def patch_project_location_client_connector_service(name, client_connector_service_object = nil, allow_missing: nil, request_id: nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1529
|
-
command = make_simple_command(:patch, 'v1/{+name}', options)
|
1530
|
-
command.request_representation = Google::Apis::BeyondcorpV1::ClientConnectorService::Representation
|
1531
|
-
command.request_object = client_connector_service_object
|
1532
|
-
command.response_representation = Google::Apis::BeyondcorpV1::GoogleLongrunningOperation::Representation
|
1533
|
-
command.response_class = Google::Apis::BeyondcorpV1::GoogleLongrunningOperation
|
1534
|
-
command.params['name'] = name unless name.nil?
|
1535
|
-
command.query['allowMissing'] = allow_missing unless allow_missing.nil?
|
1536
|
-
command.query['requestId'] = request_id unless request_id.nil?
|
1537
|
-
command.query['updateMask'] = update_mask unless update_mask.nil?
|
1538
|
-
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
1539
|
-
command.query['fields'] = fields unless fields.nil?
|
1540
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1541
|
-
execute_or_queue_command(command, &block)
|
1542
|
-
end
|
1543
|
-
|
1544
1310
|
# Sets the access control policy on the specified resource. Replaces any
|
1545
1311
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
1546
1312
|
# PERMISSION_DENIED` errors.
|
@@ -1617,136 +1383,6 @@ module Google
|
|
1617
1383
|
execute_or_queue_command(command, &block)
|
1618
1384
|
end
|
1619
1385
|
|
1620
|
-
# Creates a new ClientGateway in a given project and location.
|
1621
|
-
# @param [String] parent
|
1622
|
-
# Required. Value for parent.
|
1623
|
-
# @param [Google::Apis::BeyondcorpV1::ClientGateway] client_gateway_object
|
1624
|
-
# @param [String] client_gateway_id
|
1625
|
-
# Optional. User-settable client gateway resource ID. * Must start with a letter.
|
1626
|
-
# * Must contain between 4-63 characters from `/a-z-/`. * Must end with a
|
1627
|
-
# number or a letter.
|
1628
|
-
# @param [String] request_id
|
1629
|
-
# Optional. An optional request ID to identify requests. Specify a unique
|
1630
|
-
# request ID so that if you must retry your request, the server will know to
|
1631
|
-
# ignore the request if it has already been completed. The server will guarantee
|
1632
|
-
# that for at least 60 minutes since the first request. For example, consider a
|
1633
|
-
# situation where you make an initial request and the request times out. If you
|
1634
|
-
# make the request again with the same request ID, the server can check if
|
1635
|
-
# original operation with the same request ID was received, and if so, will
|
1636
|
-
# ignore the second request. This prevents clients from accidentally creating
|
1637
|
-
# duplicate commitments. The request ID must be a valid UUID with the exception
|
1638
|
-
# that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1639
|
-
# @param [Boolean] validate_only
|
1640
|
-
# Optional. If set, validates request by executing a dry-run which would not
|
1641
|
-
# alter the resource in any way.
|
1642
|
-
# @param [String] fields
|
1643
|
-
# Selector specifying which fields to include in a partial response.
|
1644
|
-
# @param [String] quota_user
|
1645
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1646
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1647
|
-
# @param [Google::Apis::RequestOptions] options
|
1648
|
-
# Request-specific options
|
1649
|
-
#
|
1650
|
-
# @yield [result, err] Result & error if block supplied
|
1651
|
-
# @yieldparam result [Google::Apis::BeyondcorpV1::GoogleLongrunningOperation] parsed result object
|
1652
|
-
# @yieldparam err [StandardError] error object if request failed
|
1653
|
-
#
|
1654
|
-
# @return [Google::Apis::BeyondcorpV1::GoogleLongrunningOperation]
|
1655
|
-
#
|
1656
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1657
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1658
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1659
|
-
def create_project_location_client_gateway(parent, client_gateway_object = nil, client_gateway_id: nil, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1660
|
-
command = make_simple_command(:post, 'v1/{+parent}/clientGateways', options)
|
1661
|
-
command.request_representation = Google::Apis::BeyondcorpV1::ClientGateway::Representation
|
1662
|
-
command.request_object = client_gateway_object
|
1663
|
-
command.response_representation = Google::Apis::BeyondcorpV1::GoogleLongrunningOperation::Representation
|
1664
|
-
command.response_class = Google::Apis::BeyondcorpV1::GoogleLongrunningOperation
|
1665
|
-
command.params['parent'] = parent unless parent.nil?
|
1666
|
-
command.query['clientGatewayId'] = client_gateway_id unless client_gateway_id.nil?
|
1667
|
-
command.query['requestId'] = request_id unless request_id.nil?
|
1668
|
-
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
1669
|
-
command.query['fields'] = fields unless fields.nil?
|
1670
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1671
|
-
execute_or_queue_command(command, &block)
|
1672
|
-
end
|
1673
|
-
|
1674
|
-
# Deletes a single ClientGateway.
|
1675
|
-
# @param [String] name
|
1676
|
-
# Required. Name of the resource
|
1677
|
-
# @param [String] request_id
|
1678
|
-
# Optional. An optional request ID to identify requests. Specify a unique
|
1679
|
-
# request ID so that if you must retry your request, the server will know to
|
1680
|
-
# ignore the request if it has already been completed. The server will guarantee
|
1681
|
-
# that for at least 60 minutes after the first request. For example, consider a
|
1682
|
-
# situation where you make an initial request and the request times out. If you
|
1683
|
-
# make the request again with the same request ID, the server can check if
|
1684
|
-
# original operation with the same request ID was received, and if so, will
|
1685
|
-
# ignore the second request. This prevents clients from accidentally creating
|
1686
|
-
# duplicate commitments. The request ID must be a valid UUID with the exception
|
1687
|
-
# that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1688
|
-
# @param [Boolean] validate_only
|
1689
|
-
# Optional. If set, validates request by executing a dry-run which would not
|
1690
|
-
# alter the resource in any way.
|
1691
|
-
# @param [String] fields
|
1692
|
-
# Selector specifying which fields to include in a partial response.
|
1693
|
-
# @param [String] quota_user
|
1694
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1695
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1696
|
-
# @param [Google::Apis::RequestOptions] options
|
1697
|
-
# Request-specific options
|
1698
|
-
#
|
1699
|
-
# @yield [result, err] Result & error if block supplied
|
1700
|
-
# @yieldparam result [Google::Apis::BeyondcorpV1::GoogleLongrunningOperation] parsed result object
|
1701
|
-
# @yieldparam err [StandardError] error object if request failed
|
1702
|
-
#
|
1703
|
-
# @return [Google::Apis::BeyondcorpV1::GoogleLongrunningOperation]
|
1704
|
-
#
|
1705
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1706
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1707
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1708
|
-
def delete_project_location_client_gateway(name, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1709
|
-
command = make_simple_command(:delete, 'v1/{+name}', options)
|
1710
|
-
command.response_representation = Google::Apis::BeyondcorpV1::GoogleLongrunningOperation::Representation
|
1711
|
-
command.response_class = Google::Apis::BeyondcorpV1::GoogleLongrunningOperation
|
1712
|
-
command.params['name'] = name unless name.nil?
|
1713
|
-
command.query['requestId'] = request_id unless request_id.nil?
|
1714
|
-
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
1715
|
-
command.query['fields'] = fields unless fields.nil?
|
1716
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1717
|
-
execute_or_queue_command(command, &block)
|
1718
|
-
end
|
1719
|
-
|
1720
|
-
# Gets details of a single ClientGateway.
|
1721
|
-
# @param [String] name
|
1722
|
-
# Required. Name of the resource
|
1723
|
-
# @param [String] fields
|
1724
|
-
# Selector specifying which fields to include in a partial response.
|
1725
|
-
# @param [String] quota_user
|
1726
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1727
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1728
|
-
# @param [Google::Apis::RequestOptions] options
|
1729
|
-
# Request-specific options
|
1730
|
-
#
|
1731
|
-
# @yield [result, err] Result & error if block supplied
|
1732
|
-
# @yieldparam result [Google::Apis::BeyondcorpV1::ClientGateway] parsed result object
|
1733
|
-
# @yieldparam err [StandardError] error object if request failed
|
1734
|
-
#
|
1735
|
-
# @return [Google::Apis::BeyondcorpV1::ClientGateway]
|
1736
|
-
#
|
1737
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1738
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1739
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1740
|
-
def get_project_location_client_gateway(name, fields: nil, quota_user: nil, options: nil, &block)
|
1741
|
-
command = make_simple_command(:get, 'v1/{+name}', options)
|
1742
|
-
command.response_representation = Google::Apis::BeyondcorpV1::ClientGateway::Representation
|
1743
|
-
command.response_class = Google::Apis::BeyondcorpV1::ClientGateway
|
1744
|
-
command.params['name'] = name unless name.nil?
|
1745
|
-
command.query['fields'] = fields unless fields.nil?
|
1746
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1747
|
-
execute_or_queue_command(command, &block)
|
1748
|
-
end
|
1749
|
-
|
1750
1386
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
1751
1387
|
# resource exists and does not have a policy set.
|
1752
1388
|
# @param [String] resource
|
@@ -1792,49 +1428,6 @@ module Google
|
|
1792
1428
|
execute_or_queue_command(command, &block)
|
1793
1429
|
end
|
1794
1430
|
|
1795
|
-
# Lists ClientGateways in a given project and location.
|
1796
|
-
# @param [String] parent
|
1797
|
-
# Required. Parent value for ListClientGatewaysRequest.
|
1798
|
-
# @param [String] filter
|
1799
|
-
# Optional. Filtering results.
|
1800
|
-
# @param [String] order_by
|
1801
|
-
# Optional. Hint for how to order the results.
|
1802
|
-
# @param [Fixnum] page_size
|
1803
|
-
# Optional. Requested page size. Server may return fewer items than requested.
|
1804
|
-
# If unspecified, server will pick an appropriate default.
|
1805
|
-
# @param [String] page_token
|
1806
|
-
# Optional. A token identifying a page of results the server should return.
|
1807
|
-
# @param [String] fields
|
1808
|
-
# Selector specifying which fields to include in a partial response.
|
1809
|
-
# @param [String] quota_user
|
1810
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1811
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1812
|
-
# @param [Google::Apis::RequestOptions] options
|
1813
|
-
# Request-specific options
|
1814
|
-
#
|
1815
|
-
# @yield [result, err] Result & error if block supplied
|
1816
|
-
# @yieldparam result [Google::Apis::BeyondcorpV1::ListClientGatewaysResponse] parsed result object
|
1817
|
-
# @yieldparam err [StandardError] error object if request failed
|
1818
|
-
#
|
1819
|
-
# @return [Google::Apis::BeyondcorpV1::ListClientGatewaysResponse]
|
1820
|
-
#
|
1821
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1822
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1823
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1824
|
-
def list_project_location_client_gateways(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1825
|
-
command = make_simple_command(:get, 'v1/{+parent}/clientGateways', options)
|
1826
|
-
command.response_representation = Google::Apis::BeyondcorpV1::ListClientGatewaysResponse::Representation
|
1827
|
-
command.response_class = Google::Apis::BeyondcorpV1::ListClientGatewaysResponse
|
1828
|
-
command.params['parent'] = parent unless parent.nil?
|
1829
|
-
command.query['filter'] = filter unless filter.nil?
|
1830
|
-
command.query['orderBy'] = order_by unless order_by.nil?
|
1831
|
-
command.query['pageSize'] = page_size unless page_size.nil?
|
1832
|
-
command.query['pageToken'] = page_token unless page_token.nil?
|
1833
|
-
command.query['fields'] = fields unless fields.nil?
|
1834
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1835
|
-
execute_or_queue_command(command, &block)
|
1836
|
-
end
|
1837
|
-
|
1838
1431
|
# Sets the access control policy on the specified resource. Replaces any
|
1839
1432
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
1840
1433
|
# PERMISSION_DENIED` errors.
|
@@ -2016,13 +1609,7 @@ module Google
|
|
2016
1609
|
end
|
2017
1610
|
|
2018
1611
|
# Lists operations that match the specified filter in the request. If the server
|
2019
|
-
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
2020
|
-
# binding allows API services to override the binding to use different resource
|
2021
|
-
# name schemes, such as `users/*/operations`. To override the binding, API
|
2022
|
-
# services can add a binding such as `"/v1/`name=users/*`/operations"` to their
|
2023
|
-
# service configuration. For backwards compatibility, the default name includes
|
2024
|
-
# the operations collection id, however overriding users must ensure the name
|
2025
|
-
# binding is the parent resource, without the operations collection id.
|
1612
|
+
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
2026
1613
|
# @param [String] name
|
2027
1614
|
# The name of the operation's parent resource.
|
2028
1615
|
# @param [String] filter
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-beyondcorp_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.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-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-beyondcorp_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1/v0.12.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-beyondcorp_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|