google-apis-beyondcorp_v1alpha 0.22.0 → 0.23.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: 8cd051568b2a11cf30ce5a00786bfcc6fe25a76e4f800871760f7e7fd9596694
4
- data.tar.gz: d8f4e4209bf4009902db748fc4f0d9ca8681b4a6c6ba80c5cded4de6e96f67a8
3
+ metadata.gz: 25a70fb19861bf9927224905ab174e4285e213d180f893e34cc5af326be35291
4
+ data.tar.gz: f5c5c217c3d52793ba920b8a4b36d5669fc4665b18fe266c96499f219f5b5fe9
5
5
  SHA512:
6
- metadata.gz: d505bc055a83d4db8823c3b1d13f1267fb38e9fb45e8844f8ee35ba920ffac6b48c9d136559d427cde156b9486bd4d777d9a527a045ab26b2dfe082bb21e1843
7
- data.tar.gz: 318bada69c128d9b07fabbe63a5d8d20d6d89542abd524e9fecca19cd68463dc783b6a3b927dc88a17ea0240356842bdabf7e8e5180ab5c6a0feb3aa7ae99809
6
+ metadata.gz: 31df2c17b214b4638d885932e2dab0cf1627f4dde5382772a27a39c3c7a478c3d0e8d4a24901fbd878713baacb5246ad6977880ad142b4fcc441cf4a85d15a34
7
+ data.tar.gz: 1b14f9ca975fdd7282b495ce39d771515ab590aec1431dcf6d037eee12195a2ffe7edd255f1537de84145673e0c730860c92caaaccd8d7e102e4b73354ecae4f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-beyondcorp_v1alpha
2
2
 
3
+ ### v0.23.0 (2023-06-25)
4
+
5
+ * Regenerated from discovery document revision 20230616
6
+
3
7
  ### v0.22.0 (2023-06-18)
4
8
 
5
9
  * Regenerated from discovery document revision 20230613
@@ -215,234 +215,6 @@ module Google
215
215
  end
216
216
  end
217
217
 
218
- # Message describing ClientConnectorService object.
219
- class ClientConnectorService
220
- include Google::Apis::Core::Hashable
221
-
222
- # Output only. [Output only] Create time stamp.
223
- # Corresponds to the JSON property `createTime`
224
- # @return [String]
225
- attr_accessor :create_time
226
-
227
- # Optional. User-provided name. The display name should follow certain format. *
228
- # Must be 6 to 30 characters in length. * Can only contain lowercase letters,
229
- # numbers, and hyphens. * Must start with a letter.
230
- # Corresponds to the JSON property `displayName`
231
- # @return [String]
232
- attr_accessor :display_name
233
-
234
- # The details of the egress info. One of the following options should be set.
235
- # Corresponds to the JSON property `egress`
236
- # @return [Google::Apis::BeyondcorpV1alpha::Egress]
237
- attr_accessor :egress
238
-
239
- # Settings of how to connect to the ClientGateway. One of the following options
240
- # should be set.
241
- # Corresponds to the JSON property `ingress`
242
- # @return [Google::Apis::BeyondcorpV1alpha::Ingress]
243
- attr_accessor :ingress
244
-
245
- # Required. Name of resource. The name is ignored during creation.
246
- # Corresponds to the JSON property `name`
247
- # @return [String]
248
- attr_accessor :name
249
-
250
- # Output only. The operational state of the ClientConnectorService.
251
- # Corresponds to the JSON property `state`
252
- # @return [String]
253
- attr_accessor :state
254
-
255
- # Output only. [Output only] Update time stamp.
256
- # Corresponds to the JSON property `updateTime`
257
- # @return [String]
258
- attr_accessor :update_time
259
-
260
- def initialize(**args)
261
- update!(**args)
262
- end
263
-
264
- # Update properties of this object
265
- def update!(**args)
266
- @create_time = args[:create_time] if args.key?(:create_time)
267
- @display_name = args[:display_name] if args.key?(:display_name)
268
- @egress = args[:egress] if args.key?(:egress)
269
- @ingress = args[:ingress] if args.key?(:ingress)
270
- @name = args[:name] if args.key?(:name)
271
- @state = args[:state] if args.key?(:state)
272
- @update_time = args[:update_time] if args.key?(:update_time)
273
- end
274
- end
275
-
276
- # Represents the metadata of the long-running operation.
277
- class ClientConnectorServiceOperationMetadata
278
- include Google::Apis::Core::Hashable
279
-
280
- # Output only. API version used to start the operation.
281
- # Corresponds to the JSON property `apiVersion`
282
- # @return [String]
283
- attr_accessor :api_version
284
-
285
- # Output only. The time the operation was created.
286
- # Corresponds to the JSON property `createTime`
287
- # @return [String]
288
- attr_accessor :create_time
289
-
290
- # Output only. The time the operation finished running.
291
- # Corresponds to the JSON property `endTime`
292
- # @return [String]
293
- attr_accessor :end_time
294
-
295
- # Output only. Identifies whether the user has requested cancellation of the
296
- # operation. Operations that have successfully been cancelled have Operation.
297
- # error value with a google.rpc.Status.code of 1, corresponding to `Code.
298
- # CANCELLED`.
299
- # Corresponds to the JSON property `requestedCancellation`
300
- # @return [Boolean]
301
- attr_accessor :requested_cancellation
302
- alias_method :requested_cancellation?, :requested_cancellation
303
-
304
- # Output only. Human-readable status of the operation, if any.
305
- # Corresponds to the JSON property `statusMessage`
306
- # @return [String]
307
- attr_accessor :status_message
308
-
309
- # Output only. Server-defined resource path for the target of the operation.
310
- # Corresponds to the JSON property `target`
311
- # @return [String]
312
- attr_accessor :target
313
-
314
- # Output only. Name of the verb executed by the operation.
315
- # Corresponds to the JSON property `verb`
316
- # @return [String]
317
- attr_accessor :verb
318
-
319
- def initialize(**args)
320
- update!(**args)
321
- end
322
-
323
- # Update properties of this object
324
- def update!(**args)
325
- @api_version = args[:api_version] if args.key?(:api_version)
326
- @create_time = args[:create_time] if args.key?(:create_time)
327
- @end_time = args[:end_time] if args.key?(:end_time)
328
- @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
329
- @status_message = args[:status_message] if args.key?(:status_message)
330
- @target = args[:target] if args.key?(:target)
331
- @verb = args[:verb] if args.key?(:verb)
332
- end
333
- end
334
-
335
- # Message describing ClientGateway object.
336
- class ClientGateway
337
- include Google::Apis::Core::Hashable
338
-
339
- # Output only. The client connector service name that the client gateway is
340
- # associated to. Client Connector Services, named as follows: `projects/`
341
- # project_id`/locations/`location_id`/client_connector_services/`
342
- # client_connector_service_id``.
343
- # Corresponds to the JSON property `clientConnectorService`
344
- # @return [String]
345
- attr_accessor :client_connector_service
346
-
347
- # Output only. [Output only] Create time stamp.
348
- # Corresponds to the JSON property `createTime`
349
- # @return [String]
350
- attr_accessor :create_time
351
-
352
- # Output only. A unique identifier for the instance generated by the system.
353
- # Corresponds to the JSON property `id`
354
- # @return [String]
355
- attr_accessor :id
356
-
357
- # Required. name of resource. The name is ignored during creation.
358
- # Corresponds to the JSON property `name`
359
- # @return [String]
360
- attr_accessor :name
361
-
362
- # Output only. The operational state of the gateway.
363
- # Corresponds to the JSON property `state`
364
- # @return [String]
365
- attr_accessor :state
366
-
367
- # Output only. [Output only] Update time stamp.
368
- # Corresponds to the JSON property `updateTime`
369
- # @return [String]
370
- attr_accessor :update_time
371
-
372
- def initialize(**args)
373
- update!(**args)
374
- end
375
-
376
- # Update properties of this object
377
- def update!(**args)
378
- @client_connector_service = args[:client_connector_service] if args.key?(:client_connector_service)
379
- @create_time = args[:create_time] if args.key?(:create_time)
380
- @id = args[:id] if args.key?(:id)
381
- @name = args[:name] if args.key?(:name)
382
- @state = args[:state] if args.key?(:state)
383
- @update_time = args[:update_time] if args.key?(:update_time)
384
- end
385
- end
386
-
387
- # Represents the metadata of the long-running operation.
388
- class ClientGatewayOperationMetadata
389
- include Google::Apis::Core::Hashable
390
-
391
- # Output only. API version used to start the operation.
392
- # Corresponds to the JSON property `apiVersion`
393
- # @return [String]
394
- attr_accessor :api_version
395
-
396
- # Output only. The time the operation was created.
397
- # Corresponds to the JSON property `createTime`
398
- # @return [String]
399
- attr_accessor :create_time
400
-
401
- # Output only. The time the operation finished running.
402
- # Corresponds to the JSON property `endTime`
403
- # @return [String]
404
- attr_accessor :end_time
405
-
406
- # Output only. Identifies whether the user has requested cancellation of the
407
- # operation. Operations that have been cancelled successfully have Operation.
408
- # error value with a google.rpc.Status.code of 1, corresponding to `Code.
409
- # CANCELLED`.
410
- # Corresponds to the JSON property `requestedCancellation`
411
- # @return [Boolean]
412
- attr_accessor :requested_cancellation
413
- alias_method :requested_cancellation?, :requested_cancellation
414
-
415
- # Output only. Human-readable status of the operation, if any.
416
- # Corresponds to the JSON property `statusMessage`
417
- # @return [String]
418
- attr_accessor :status_message
419
-
420
- # Output only. Server-defined resource path for the target of the operation.
421
- # Corresponds to the JSON property `target`
422
- # @return [String]
423
- attr_accessor :target
424
-
425
- # Output only. Name of the verb executed by the operation.
426
- # Corresponds to the JSON property `verb`
427
- # @return [String]
428
- attr_accessor :verb
429
-
430
- def initialize(**args)
431
- update!(**args)
432
- end
433
-
434
- # Update properties of this object
435
- def update!(**args)
436
- @api_version = args[:api_version] if args.key?(:api_version)
437
- @create_time = args[:create_time] if args.key?(:create_time)
438
- @end_time = args[:end_time] if args.key?(:end_time)
439
- @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
440
- @status_message = args[:status_message] if args.key?(:status_message)
441
- @target = args[:target] if args.key?(:target)
442
- @verb = args[:verb] if args.key?(:verb)
443
- end
444
- end
445
-
446
218
  # The configuration for Pub/Sub messaging for the connector.
447
219
  class CloudPubSubNotificationConfig
448
220
  include Google::Apis::Core::Hashable
@@ -611,32 +383,6 @@ module Google
611
383
  end
612
384
  end
613
385
 
614
- # The basic ingress config for ClientGateways.
615
- class Config
616
- include Google::Apis::Core::Hashable
617
-
618
- # Required. The settings used to configure basic ClientGateways.
619
- # Corresponds to the JSON property `destinationRoutes`
620
- # @return [Array<Google::Apis::BeyondcorpV1alpha::DestinationRoute>]
621
- attr_accessor :destination_routes
622
-
623
- # Required. Immutable. The transport protocol used between the client and the
624
- # server.
625
- # Corresponds to the JSON property `transportProtocol`
626
- # @return [String]
627
- attr_accessor :transport_protocol
628
-
629
- def initialize(**args)
630
- update!(**args)
631
- end
632
-
633
- # Update properties of this object
634
- def update!(**args)
635
- @destination_routes = args[:destination_routes] if args.key?(:destination_routes)
636
- @transport_protocol = args[:transport_protocol] if args.key?(:transport_protocol)
637
- end
638
- end
639
-
640
386
  # A BeyondCorp Connection resource represents a BeyondCorp protected connection
641
387
  # to a remote application. It creates all the necessary GCP components needed
642
388
  # for creating a BeyondCorp protected connection. Multiple connectors can be
@@ -1020,53 +766,6 @@ module Google
1020
766
  end
1021
767
  end
1022
768
 
1023
- # The setting used to configure ClientGateways. It is adding routes to the
1024
- # client's routing table after the connection is established.
1025
- class DestinationRoute
1026
- include Google::Apis::Core::Hashable
1027
-
1028
- # Required. The network address of the subnet for which the packet is routed to
1029
- # the ClientGateway.
1030
- # Corresponds to the JSON property `address`
1031
- # @return [String]
1032
- attr_accessor :address
1033
-
1034
- # Required. The network mask of the subnet for which the packet is routed to the
1035
- # ClientGateway.
1036
- # Corresponds to the JSON property `netmask`
1037
- # @return [String]
1038
- attr_accessor :netmask
1039
-
1040
- def initialize(**args)
1041
- update!(**args)
1042
- end
1043
-
1044
- # Update properties of this object
1045
- def update!(**args)
1046
- @address = args[:address] if args.key?(:address)
1047
- @netmask = args[:netmask] if args.key?(:netmask)
1048
- end
1049
- end
1050
-
1051
- # The details of the egress info. One of the following options should be set.
1052
- class Egress
1053
- include Google::Apis::Core::Hashable
1054
-
1055
- # The peered VPC owned by the consumer project.
1056
- # Corresponds to the JSON property `peeredVpc`
1057
- # @return [Google::Apis::BeyondcorpV1alpha::PeeredVpc]
1058
- attr_accessor :peered_vpc
1059
-
1060
- def initialize(**args)
1061
- update!(**args)
1062
- end
1063
-
1064
- # Update properties of this object
1065
- def update!(**args)
1066
- @peered_vpc = args[:peered_vpc] if args.key?(:peered_vpc)
1067
- end
1068
- end
1069
-
1070
769
  # A generic empty message that you can re-use to avoid defining duplicated empty
1071
770
  # messages in your APIs. A typical example is to use it as the request or the
1072
771
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -2245,6 +1944,12 @@ module Google
2245
1944
  class GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata
2246
1945
  include Google::Apis::Core::Hashable
2247
1946
 
1947
+ # Optional. UUID used by the Partner to refer to the PartnerTenant in their
1948
+ # internal systems.
1949
+ # Corresponds to the JSON property `internalTenantId`
1950
+ # @return [String]
1951
+ attr_accessor :internal_tenant_id
1952
+
2248
1953
  # Optional. UUID used by the Partner to refer to the PartnerTenant in their
2249
1954
  # internal systems.
2250
1955
  # Corresponds to the JSON property `partnerTenantId`
@@ -2257,6 +1962,7 @@ module Google
2257
1962
 
2258
1963
  # Update properties of this object
2259
1964
  def update!(**args)
1965
+ @internal_tenant_id = args[:internal_tenant_id] if args.key?(:internal_tenant_id)
2260
1966
  @partner_tenant_id = args[:partner_tenant_id] if args.key?(:partner_tenant_id)
2261
1967
  end
2262
1968
  end
@@ -3698,26 +3404,6 @@ module Google
3698
3404
  end
3699
3405
  end
3700
3406
 
3701
- # Settings of how to connect to the ClientGateway. One of the following options
3702
- # should be set.
3703
- class Ingress
3704
- include Google::Apis::Core::Hashable
3705
-
3706
- # The basic ingress config for ClientGateways.
3707
- # Corresponds to the JSON property `config`
3708
- # @return [Google::Apis::BeyondcorpV1alpha::Config]
3709
- attr_accessor :config
3710
-
3711
- def initialize(**args)
3712
- update!(**args)
3713
- end
3714
-
3715
- # Update properties of this object
3716
- def update!(**args)
3717
- @config = args[:config] if args.key?(:config)
3718
- end
3719
- end
3720
-
3721
3407
  # Response message for BeyondCorp.ListAppGateways.
3722
3408
  class ListAppGatewaysResponse
3723
3409
  include Google::Apis::Core::Hashable
@@ -3750,68 +3436,6 @@ module Google
3750
3436
  end
3751
3437
  end
3752
3438
 
3753
- # Message for response to listing ClientConnectorServices.
3754
- class ListClientConnectorServicesResponse
3755
- include Google::Apis::Core::Hashable
3756
-
3757
- # The list of ClientConnectorService.
3758
- # Corresponds to the JSON property `clientConnectorServices`
3759
- # @return [Array<Google::Apis::BeyondcorpV1alpha::ClientConnectorService>]
3760
- attr_accessor :client_connector_services
3761
-
3762
- # A token identifying a page of results the server should return.
3763
- # Corresponds to the JSON property `nextPageToken`
3764
- # @return [String]
3765
- attr_accessor :next_page_token
3766
-
3767
- # Locations that could not be reached.
3768
- # Corresponds to the JSON property `unreachable`
3769
- # @return [Array<String>]
3770
- attr_accessor :unreachable
3771
-
3772
- def initialize(**args)
3773
- update!(**args)
3774
- end
3775
-
3776
- # Update properties of this object
3777
- def update!(**args)
3778
- @client_connector_services = args[:client_connector_services] if args.key?(:client_connector_services)
3779
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3780
- @unreachable = args[:unreachable] if args.key?(:unreachable)
3781
- end
3782
- end
3783
-
3784
- # Message for response to listing ClientGateways.
3785
- class ListClientGatewaysResponse
3786
- include Google::Apis::Core::Hashable
3787
-
3788
- # The list of ClientGateway.
3789
- # Corresponds to the JSON property `clientGateways`
3790
- # @return [Array<Google::Apis::BeyondcorpV1alpha::ClientGateway>]
3791
- attr_accessor :client_gateways
3792
-
3793
- # A token identifying a page of results the server should return.
3794
- # Corresponds to the JSON property `nextPageToken`
3795
- # @return [String]
3796
- attr_accessor :next_page_token
3797
-
3798
- # Locations that could not be reached.
3799
- # Corresponds to the JSON property `unreachable`
3800
- # @return [Array<String>]
3801
- attr_accessor :unreachable
3802
-
3803
- def initialize(**args)
3804
- update!(**args)
3805
- end
3806
-
3807
- # Update properties of this object
3808
- def update!(**args)
3809
- @client_gateways = args[:client_gateways] if args.key?(:client_gateways)
3810
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3811
- @unreachable = args[:unreachable] if args.key?(:unreachable)
3812
- end
3813
- end
3814
-
3815
3439
  # Response message for BeyondCorp.ListConnections.
3816
3440
  class ListConnectionsResponse
3817
3441
  include Google::Apis::Core::Hashable
@@ -3895,25 +3519,6 @@ module Google
3895
3519
  end
3896
3520
  end
3897
3521
 
3898
- # The peered VPC owned by the consumer project.
3899
- class PeeredVpc
3900
- include Google::Apis::Core::Hashable
3901
-
3902
- # Required. The name of the peered VPC owned by the consumer project.
3903
- # Corresponds to the JSON property `networkVpc`
3904
- # @return [String]
3905
- attr_accessor :network_vpc
3906
-
3907
- def initialize(**args)
3908
- update!(**args)
3909
- end
3910
-
3911
- # Update properties of this object
3912
- def update!(**args)
3913
- @network_vpc = args[:network_vpc] if args.key?(:network_vpc)
3914
- end
3915
- end
3916
-
3917
3522
  # PrincipalInfo represents an Identity oneof.
3918
3523
  class PrincipalInfo
3919
3524
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BeyondcorpV1alpha
18
18
  # Version of the google-apis-beyondcorp_v1alpha gem
19
- GEM_VERSION = "0.22.0"
19
+ GEM_VERSION = "0.23.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 = "20230613"
25
+ REVISION = "20230616"
26
26
  end
27
27
  end
28
28
  end