google-apis-beyondcorp_v1 0.11.0 → 0.13.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8114c60ac2b9c2804b75cc8c989c7e0e70fcaa5c3be724449c41819eb9b76cb3
|
4
|
+
data.tar.gz: a5504bd463fe88723dab64b99d4326ec6e0e944a4464eb353e76fae9f391cea9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb8949a29c3f128923f877ba63ea3c0acc5c51eaa3741ef059c600f51659036877702543d85b55f3c726d40483af10b3f6f11929256356c5ee8864ec55e1f099
|
7
|
+
data.tar.gz: aab8b4ca2e5273ff355cc9acd43cc776ff15b693ac39d54dccf3eb5264bbc7cad4e45b187d3f2ef6983951607f87798be26bbea49700562a7cca2e0cf32d9276
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-beyondcorp_v1
|
2
2
|
|
3
|
+
### v0.13.0 (2023-04-30)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230425
|
6
|
+
|
7
|
+
### v0.12.0 (2023-04-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230406
|
10
|
+
|
3
11
|
### v0.11.0 (2023-03-19)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230308
|
@@ -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.
|
@@ -1972,7 +1671,7 @@ module Google
|
|
1972
1671
|
end
|
1973
1672
|
end
|
1974
1673
|
|
1975
|
-
# A resource that represents Google Cloud
|
1674
|
+
# A resource that represents a Google Cloud location.
|
1976
1675
|
class GoogleCloudLocationLocation
|
1977
1676
|
include Google::Apis::Core::Hashable
|
1978
1677
|
|
@@ -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.13.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 = "20230425"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|