google-apis-networkconnectivity_v1 0.63.0 → 0.65.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.
@@ -247,6 +247,47 @@ module Google
247
247
  end
248
248
  end
249
249
 
250
+ # Information for the automatically created subnetwork and its associated IR.
251
+ class AutoCreatedSubnetworkInfo
252
+ include Google::Apis::Core::Hashable
253
+
254
+ # Output only. URI of the automatically created Internal Range. Only set if the
255
+ # subnetwork mode is AUTO_CREATED during creation.
256
+ # Corresponds to the JSON property `internalRange`
257
+ # @return [String]
258
+ attr_accessor :internal_range
259
+
260
+ # Output only. URI of the automatically created Internal Range reference. Only
261
+ # set if the subnetwork mode is AUTO_CREATED during creation.
262
+ # Corresponds to the JSON property `internalRangeRef`
263
+ # @return [String]
264
+ attr_accessor :internal_range_ref
265
+
266
+ # Output only. URI of the automatically created subnetwork. Only set if the
267
+ # subnetwork mode is AUTO_CREATED during creation.
268
+ # Corresponds to the JSON property `subnetwork`
269
+ # @return [String]
270
+ attr_accessor :subnetwork
271
+
272
+ # Output only. URI of the automatically created subnetwork reference. Only set
273
+ # if the subnetwork mode is AUTO_CREATED during creation.
274
+ # Corresponds to the JSON property `subnetworkRef`
275
+ # @return [String]
276
+ attr_accessor :subnetwork_ref
277
+
278
+ def initialize(**args)
279
+ update!(**args)
280
+ end
281
+
282
+ # Update properties of this object
283
+ def update!(**args)
284
+ @internal_range = args[:internal_range] if args.key?(:internal_range)
285
+ @internal_range_ref = args[:internal_range_ref] if args.key?(:internal_range_ref)
286
+ @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
287
+ @subnetwork_ref = args[:subnetwork_ref] if args.key?(:subnetwork_ref)
288
+ end
289
+ end
290
+
250
291
  # Associates `members`, or principals, with a `role`.
251
292
  class Binding
252
293
  include Google::Apis::Core::Hashable
@@ -553,33 +594,36 @@ module Google
553
594
  end
554
595
  end
555
596
 
556
- # The Destination resource.
597
+ # The `Destination` resource. It specifies the IP prefix and the associated
598
+ # autonomous system numbers (ASN) that you want to include in a `
599
+ # MulticloudDataTransferConfig` resource.
557
600
  class Destination
558
601
  include Google::Apis::Core::Hashable
559
602
 
560
- # Output only. Time when the Destination was created.
603
+ # Output only. Time when the `Destination` resource was created.
561
604
  # Corresponds to the JSON property `createTime`
562
605
  # @return [String]
563
606
  attr_accessor :create_time
564
607
 
565
- # Optional. An optional field to provide a description of this resource.
608
+ # Optional. A description of this resource.
566
609
  # Corresponds to the JSON property `description`
567
610
  # @return [String]
568
611
  attr_accessor :description
569
612
 
570
- # Required. Unordered list. The list of Endpoints configured for the IP Prefix.
613
+ # Required. Unordered list. The list of `DestinationEndpoint` resources
614
+ # configured for the IP prefix.
571
615
  # Corresponds to the JSON property `endpoints`
572
616
  # @return [Array<Google::Apis::NetworkconnectivityV1::DestinationEndpoint>]
573
617
  attr_accessor :endpoints
574
618
 
575
- # The etag is computed by the server, and may be sent on update and delete
576
- # requests to ensure the client has an up-to-date value before proceeding.
619
+ # The etag is computed by the server, and might be sent with update and delete
620
+ # requests so that the client has an up-to-date value before proceeding.
577
621
  # Corresponds to the JSON property `etag`
578
622
  # @return [String]
579
623
  attr_accessor :etag
580
624
 
581
- # Required. Immutable. Remote IP Prefix in the remote CSP, where the customer's
582
- # workload is located
625
+ # Required. Immutable. The IP prefix that represents your workload on another
626
+ # CSP.
583
627
  # Corresponds to the JSON property `ipPrefix`
584
628
  # @return [String]
585
629
  attr_accessor :ip_prefix
@@ -589,27 +633,27 @@ module Google
589
633
  # @return [Hash<String,String>]
590
634
  attr_accessor :labels
591
635
 
592
- # Identifier. The name of the Destination resource. Format: `projects/`project`/
593
- # locations/`location`/multicloudDataTransferConfigs/`
636
+ # Identifier. The name of the `Destination` resource. Format: `projects/`project`
637
+ # /locations/`location`/multicloudDataTransferConfigs/`
594
638
  # multicloud_data_transfer_config`/destinations/`destination``.
595
639
  # Corresponds to the JSON property `name`
596
640
  # @return [String]
597
641
  attr_accessor :name
598
642
 
599
- # The timeline of pending states for a resource.
643
+ # The timeline of the pending states for a resource.
600
644
  # Corresponds to the JSON property `stateTimeline`
601
645
  # @return [Google::Apis::NetworkconnectivityV1::StateTimeline]
602
646
  attr_accessor :state_timeline
603
647
 
604
- # Output only. The Google-generated UUID for the destination. This value is
605
- # unique across all destination resources. If a destination is deleted and
606
- # another with the same name is created, the new destination is assigned a
607
- # different uid.
648
+ # Output only. The Google-generated unique ID for the `Destination` resource.
649
+ # This value is unique across all `Destination` resources. If a resource is
650
+ # deleted and another with the same name is created, the new resource is
651
+ # assigned a different and unique ID.
608
652
  # Corresponds to the JSON property `uid`
609
653
  # @return [String]
610
654
  attr_accessor :uid
611
655
 
612
- # Output only. Time when the Destination was updated.
656
+ # Output only. Time when the `Destination` resource was updated.
613
657
  # Corresponds to the JSON property `updateTime`
614
658
  # @return [String]
615
659
  attr_accessor :update_time
@@ -633,26 +677,26 @@ module Google
633
677
  end
634
678
  end
635
679
 
636
- # The metadata for a DestinationEndpoint.
680
+ # The metadata for a `DestinationEndpoint` resource.
637
681
  class DestinationEndpoint
638
682
  include Google::Apis::Core::Hashable
639
683
 
640
- # Required. The ASN of the remote IP Prefix.
684
+ # Required. The ASN of the remote IP prefix.
641
685
  # Corresponds to the JSON property `asn`
642
686
  # @return [Fixnum]
643
687
  attr_accessor :asn
644
688
 
645
- # Required. The name of the CSP of the remote IP Prefix.
689
+ # Required. The CSP of the remote IP prefix.
646
690
  # Corresponds to the JSON property `csp`
647
691
  # @return [String]
648
692
  attr_accessor :csp
649
693
 
650
- # Output only. The state of the Endpoint.
694
+ # Output only. The state of the `DestinationEndpoint` resource.
651
695
  # Corresponds to the JSON property `state`
652
696
  # @return [String]
653
697
  attr_accessor :state
654
698
 
655
- # Output only. Time when the DestinationEndpoint was updated.
699
+ # Output only. Time when the `DestinationEndpoint` resource was updated.
656
700
  # Corresponds to the JSON property `updateTime`
657
701
  # @return [String]
658
702
  attr_accessor :update_time
@@ -1636,11 +1680,11 @@ module Google
1636
1680
  end
1637
1681
  end
1638
1682
 
1639
- # Response message for ListDestinations.
1683
+ # Response message to list `Destination` resources.
1640
1684
  class ListDestinationsResponse
1641
1685
  include Google::Apis::Core::Hashable
1642
1686
 
1643
- # Destinations to be returned.
1687
+ # The list of `Destination` resources to be listed.
1644
1688
  # Corresponds to the JSON property `destinations`
1645
1689
  # @return [Array<Google::Apis::NetworkconnectivityV1::Destination>]
1646
1690
  attr_accessor :destinations
@@ -1824,11 +1868,11 @@ module Google
1824
1868
  end
1825
1869
  end
1826
1870
 
1827
- # Response message for ListMulticloudDataTransferConfigs.
1871
+ # Response message to list `MulticloudDataTransferConfig` resources.
1828
1872
  class ListMulticloudDataTransferConfigsResponse
1829
1873
  include Google::Apis::Core::Hashable
1830
1874
 
1831
- # MulticloudDataTransferConfigs to be returned.
1875
+ # The list of `MulticloudDataTransferConfig` resources to be listed.
1832
1876
  # Corresponds to the JSON property `multicloudDataTransferConfigs`
1833
1877
  # @return [Array<Google::Apis::NetworkconnectivityV1::MulticloudDataTransferConfig>]
1834
1878
  attr_accessor :multicloud_data_transfer_configs
@@ -1855,7 +1899,8 @@ module Google
1855
1899
  end
1856
1900
  end
1857
1901
 
1858
- # Response message for ListMulticloudDataTransferSupportedServices.
1902
+ # Response message to list the services in your project in regions that are
1903
+ # eligible for Data Transfer Essentials configuration.
1859
1904
  class ListMulticloudDataTransferSupportedServicesResponse
1860
1905
  include Google::Apis::Core::Hashable
1861
1906
 
@@ -1944,6 +1989,37 @@ module Google
1944
1989
  end
1945
1990
  end
1946
1991
 
1992
+ # Message for response to listing RemoteTransportProfiles
1993
+ class ListRemoteTransportProfilesResponse
1994
+ include Google::Apis::Core::Hashable
1995
+
1996
+ # A token identifying a page of results the server should return.
1997
+ # Corresponds to the JSON property `nextPageToken`
1998
+ # @return [String]
1999
+ attr_accessor :next_page_token
2000
+
2001
+ # The list of RemoteTransportProfiles.
2002
+ # Corresponds to the JSON property `remoteTransportProfiles`
2003
+ # @return [Array<Google::Apis::NetworkconnectivityV1::RemoteTransportProfile>]
2004
+ attr_accessor :remote_transport_profiles
2005
+
2006
+ # Unordered list. Locations that could not be reached.
2007
+ # Corresponds to the JSON property `unreachable`
2008
+ # @return [Array<String>]
2009
+ attr_accessor :unreachable
2010
+
2011
+ def initialize(**args)
2012
+ update!(**args)
2013
+ end
2014
+
2015
+ # Update properties of this object
2016
+ def update!(**args)
2017
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2018
+ @remote_transport_profiles = args[:remote_transport_profiles] if args.key?(:remote_transport_profiles)
2019
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2020
+ end
2021
+ end
2022
+
1947
2023
  # Response for HubService.ListRouteTables method.
1948
2024
  class ListRouteTablesResponse
1949
2025
  include Google::Apis::Core::Hashable
@@ -2171,6 +2247,37 @@ module Google
2171
2247
  end
2172
2248
  end
2173
2249
 
2250
+ # Message for response to listing Transports.
2251
+ class ListTransportsResponse
2252
+ include Google::Apis::Core::Hashable
2253
+
2254
+ # A token identifying a page of results the server should return.
2255
+ # Corresponds to the JSON property `nextPageToken`
2256
+ # @return [String]
2257
+ attr_accessor :next_page_token
2258
+
2259
+ # The list of Transport.
2260
+ # Corresponds to the JSON property `transports`
2261
+ # @return [Array<Google::Apis::NetworkconnectivityV1::Transport>]
2262
+ attr_accessor :transports
2263
+
2264
+ # Unordered list. Locations that could not be reached.
2265
+ # Corresponds to the JSON property `unreachable`
2266
+ # @return [Array<String>]
2267
+ attr_accessor :unreachable
2268
+
2269
+ def initialize(**args)
2270
+ update!(**args)
2271
+ end
2272
+
2273
+ # Update properties of this object
2274
+ def update!(**args)
2275
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2276
+ @transports = args[:transports] if args.key?(:transports)
2277
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2278
+ end
2279
+ end
2280
+
2174
2281
  # A resource that represents a Google Cloud location.
2175
2282
  class Location
2176
2283
  include Google::Apis::Core::Hashable
@@ -2267,35 +2374,35 @@ module Google
2267
2374
  end
2268
2375
  end
2269
2376
 
2270
- # The MulticloudDataTransferConfig resource. This lists the services for which
2271
- # customer is opting in for Multicloud Data Transfer.
2377
+ # The `MulticloudDataTransferConfig` resource. It lists the services that you
2378
+ # configure for Data Transfer Essentials billing and metering.
2272
2379
  class MulticloudDataTransferConfig
2273
2380
  include Google::Apis::Core::Hashable
2274
2381
 
2275
- # Output only. Time when the MulticloudDataTransferConfig was created.
2382
+ # Output only. Time when the `MulticloudDataTransferConfig` resource was created.
2276
2383
  # Corresponds to the JSON property `createTime`
2277
2384
  # @return [String]
2278
2385
  attr_accessor :create_time
2279
2386
 
2280
- # Optional. An optional field to provide a description of this resource.
2387
+ # Optional. A description of this resource.
2281
2388
  # Corresponds to the JSON property `description`
2282
2389
  # @return [String]
2283
2390
  attr_accessor :description
2284
2391
 
2285
- # Output only. The number of Destinations in use under the
2286
- # MulticloudDataTransferConfig resource.
2392
+ # Output only. The number of `Destination` resources in use with the `
2393
+ # MulticloudDataTransferConfig` resource.
2287
2394
  # Corresponds to the JSON property `destinationsActiveCount`
2288
2395
  # @return [Fixnum]
2289
2396
  attr_accessor :destinations_active_count
2290
2397
 
2291
- # Output only. The number of Destinations configured under the
2292
- # MulticloudDataTransferConfig resource.
2398
+ # Output only. The number of `Destination` resources configured for the `
2399
+ # MulticloudDataTransferConfig` resource.
2293
2400
  # Corresponds to the JSON property `destinationsCount`
2294
2401
  # @return [Fixnum]
2295
2402
  attr_accessor :destinations_count
2296
2403
 
2297
- # The etag is computed by the server, and may be sent on update and delete
2298
- # requests to ensure the client has an up-to-date value before proceeding.
2404
+ # The etag is computed by the server, and might be sent with update and delete
2405
+ # requests so that the client has an up-to-date value before proceeding.
2299
2406
  # Corresponds to the JSON property `etag`
2300
2407
  # @return [String]
2301
2408
  attr_accessor :etag
@@ -2305,32 +2412,33 @@ module Google
2305
2412
  # @return [Hash<String,String>]
2306
2413
  attr_accessor :labels
2307
2414
 
2308
- # Identifier. The name of the MulticloudDataTransferConfig resource. Format: `
2415
+ # Identifier. The name of the `MulticloudDataTransferConfig` resource. Format: `
2309
2416
  # projects/`project`/locations/`location`/multicloudDataTransferConfigs/`
2310
2417
  # multicloud_data_transfer_config``.
2311
2418
  # Corresponds to the JSON property `name`
2312
2419
  # @return [String]
2313
2420
  attr_accessor :name
2314
2421
 
2315
- # Optional. This map services to either their current or planned states. Service
2316
- # names are keys, and the associated values describe the service's state. If a
2317
- # state change is expected, the value will be the list of ADDING or DELETING
2318
- # states depending on the actions taken. Example: "services": ` "big-query": ` "
2319
- # states": [ ` "state": "ADDING", "effective_time": "2024-12-12T08:00:00Z" `, ] `
2320
- # , "cloud-storage": ` "states": [ ` "state": "ACTIVE", ` ] ` `
2422
+ # Optional. Maps services to their current or planned states. Service names are
2423
+ # keys, and the associated values describe the state of the service. If a state
2424
+ # change is expected, the value is either `ADDING` or `DELETING`, depending on
2425
+ # the actions taken. Sample output: "services": ` "big-query": ` "states": [ ` "
2426
+ # effectiveTime": "2024-12-12T08:00:00Z" "state": "ADDING", `, ] `, "cloud-
2427
+ # storage": ` "states": [ ` "state": "ACTIVE", ` ] ` `
2321
2428
  # Corresponds to the JSON property `services`
2322
2429
  # @return [Hash<String,Google::Apis::NetworkconnectivityV1::StateTimeline>]
2323
2430
  attr_accessor :services
2324
2431
 
2325
- # Output only. The Google-generated UUID for the MulticloudDataTransferConfig.
2326
- # This value is unique across all MulticloudDataTransferConfig resources. If a
2327
- # MulticloudDataTransferConfig is deleted and another with the same name is
2328
- # created, the new MulticloudDataTransferConfig is assigned a different uid.
2432
+ # Output only. The Google-generated unique ID for the `
2433
+ # MulticloudDataTransferConfig` resource. This value is unique across all `
2434
+ # MulticloudDataTransferConfig` resources. If a resource is deleted and another
2435
+ # with the same name is created, the new resource is assigned a different and
2436
+ # unique ID.
2329
2437
  # Corresponds to the JSON property `uid`
2330
2438
  # @return [String]
2331
2439
  attr_accessor :uid
2332
2440
 
2333
- # Output only. Time when the MulticloudDataTransferConfig was updated.
2441
+ # Output only. Time when the `MulticloudDataTransferConfig` resource was updated.
2334
2442
  # Corresponds to the JSON property `updateTime`
2335
2443
  # @return [String]
2336
2444
  attr_accessor :update_time
@@ -2354,7 +2462,8 @@ module Google
2354
2462
  end
2355
2463
  end
2356
2464
 
2357
- # The supported service for Multicloud Data Transfer.
2465
+ # A service in your project in a region that is eligible for Data Transfer
2466
+ # Essentials configuration.
2358
2467
  class MulticloudDataTransferSupportedService
2359
2468
  include Google::Apis::Core::Hashable
2360
2469
 
@@ -2363,7 +2472,8 @@ module Google
2363
2472
  # @return [String]
2364
2473
  attr_accessor :name
2365
2474
 
2366
- # Output only. The network service tiers supported for the service.
2475
+ # Output only. The network service tier or regional endpoint supported for the
2476
+ # service.
2367
2477
  # Corresponds to the JSON property `serviceConfigs`
2368
2478
  # @return [Array<Google::Apis::NetworkconnectivityV1::ServiceConfig>]
2369
2479
  attr_accessor :service_configs
@@ -3284,6 +3394,97 @@ module Google
3284
3394
  end
3285
3395
  end
3286
3396
 
3397
+ # Message describing RemoteTransportProfile object.
3398
+ class RemoteTransportProfile
3399
+ include Google::Apis::Core::Hashable
3400
+
3401
+ # Output only. [Output only] Create time stamp.
3402
+ # Corresponds to the JSON property `createTime`
3403
+ # @return [String]
3404
+ attr_accessor :create_time
3405
+
3406
+ # Output only. Description of the profile.
3407
+ # Corresponds to the JSON property `description`
3408
+ # @return [String]
3409
+ attr_accessor :description
3410
+
3411
+ # Output only. [Output only] Type of provisioning flows supported by this
3412
+ # profile.
3413
+ # Corresponds to the JSON property `flow`
3414
+ # @return [String]
3415
+ attr_accessor :flow
3416
+
3417
+ # Output only. Labels as key value pairs.
3418
+ # Corresponds to the JSON property `labels`
3419
+ # @return [Hash<String,String>]
3420
+ attr_accessor :labels
3421
+
3422
+ # Identifier. Name of the resource in the format of $provider-$site.
3423
+ # Corresponds to the JSON property `name`
3424
+ # @return [String]
3425
+ attr_accessor :name
3426
+
3427
+ # Output only. [Output only] Order state for this profile.
3428
+ # Corresponds to the JSON property `orderState`
3429
+ # @return [String]
3430
+ attr_accessor :order_state
3431
+
3432
+ # Output only. Name of the provider on the other end of this profile. E.g. “
3433
+ # Amazon Web Services” or “Microsoft Azure”.
3434
+ # Corresponds to the JSON property `provider`
3435
+ # @return [String]
3436
+ attr_accessor :provider
3437
+
3438
+ # Output only. If the profile is a Cloud Service Provider with compute resources,
3439
+ # this is populated with the region where connectivity is being established. If
3440
+ # the profile provides facility-level selection, this is an identity of the
3441
+ # facility any connections on this profile are going through.
3442
+ # Corresponds to the JSON property `providerSite`
3443
+ # @return [String]
3444
+ attr_accessor :provider_site
3445
+
3446
+ # Output only. GCP Region where this profile is available.
3447
+ # Corresponds to the JSON property `region`
3448
+ # @return [String]
3449
+ attr_accessor :region
3450
+
3451
+ # Output only. [Output only] Availability class that will be configured for this
3452
+ # particular RemoteTransportProfile.
3453
+ # Corresponds to the JSON property `sla`
3454
+ # @return [String]
3455
+ attr_accessor :sla
3456
+
3457
+ # Output only. List of bandwidth enum values that are supported by this profile.
3458
+ # Corresponds to the JSON property `supportedBandwidths`
3459
+ # @return [Array<String>]
3460
+ attr_accessor :supported_bandwidths
3461
+
3462
+ # Output only. [Output only] Update time stamp.
3463
+ # Corresponds to the JSON property `updateTime`
3464
+ # @return [String]
3465
+ attr_accessor :update_time
3466
+
3467
+ def initialize(**args)
3468
+ update!(**args)
3469
+ end
3470
+
3471
+ # Update properties of this object
3472
+ def update!(**args)
3473
+ @create_time = args[:create_time] if args.key?(:create_time)
3474
+ @description = args[:description] if args.key?(:description)
3475
+ @flow = args[:flow] if args.key?(:flow)
3476
+ @labels = args[:labels] if args.key?(:labels)
3477
+ @name = args[:name] if args.key?(:name)
3478
+ @order_state = args[:order_state] if args.key?(:order_state)
3479
+ @provider = args[:provider] if args.key?(:provider)
3480
+ @provider_site = args[:provider_site] if args.key?(:provider_site)
3481
+ @region = args[:region] if args.key?(:region)
3482
+ @sla = args[:sla] if args.key?(:sla)
3483
+ @supported_bandwidths = args[:supported_bandwidths] if args.key?(:supported_bandwidths)
3484
+ @update_time = args[:update_time] if args.key?(:update_time)
3485
+ end
3486
+ end
3487
+
3287
3488
  # A route defines a path from VM instances within a spoke to a specific
3288
3489
  # destination resource. Only VPC spokes have routes.
3289
3490
  class Route
@@ -3593,22 +3794,17 @@ module Google
3593
3794
  end
3594
3795
  end
3595
3796
 
3596
- # Specifies the Multicloud Data Transfer supported services configuration. This
3597
- # includes either the network tier or the request endpoint. If end of support
3598
- # for multicloud data transfer is planned for a service's network tier or
3599
- # request endpoint, the end time will be provided.
3797
+ # Specifies eligibility information for the service.
3600
3798
  class ServiceConfig
3601
3799
  include Google::Apis::Core::Hashable
3602
3800
 
3603
- # Output only. The eligibility criteria for the service. The user has to meet
3604
- # the eligibility criteria specified here for the service to qualify for
3605
- # multicloud data transfer.
3801
+ # Output only. The eligibility criteria for the service.
3606
3802
  # Corresponds to the JSON property `eligibilityCriteria`
3607
3803
  # @return [String]
3608
3804
  attr_accessor :eligibility_criteria
3609
3805
 
3610
- # Output only. The eligibility criteria support end time. If the end time is not
3611
- # specified, no planned end time is available.
3806
+ # Output only. The end time for eligibility criteria support. If not specified,
3807
+ # no planned end time is set.
3612
3808
  # Corresponds to the JSON property `supportEndTime`
3613
3809
  # @return [String]
3614
3810
  attr_accessor :support_end_time
@@ -3678,8 +3874,8 @@ module Google
3678
3874
  attr_accessor :producer_psc_configs
3679
3875
 
3680
3876
  # The service class identifier this ServiceConnectionMap is for. The user of
3681
- # ServiceConnectionMap create API needs to have networkconnecitivty.
3682
- # serviceclasses.use iam permission for the service class.
3877
+ # ServiceConnectionMap create API needs to have networkconnectivity.
3878
+ # serviceClasses.use IAM permission for the service class.
3683
3879
  # Corresponds to the JSON property `serviceClass`
3684
3880
  # @return [String]
3685
3881
  attr_accessor :service_class
@@ -3726,6 +3922,11 @@ module Google
3726
3922
  class ServiceConnectionPolicy
3727
3923
  include Google::Apis::Core::Hashable
3728
3924
 
3925
+ # Information for the automatically created subnetwork and its associated IR.
3926
+ # Corresponds to the JSON property `autoCreatedSubnetInfo`
3927
+ # @return [Google::Apis::NetworkconnectivityV1::AutoCreatedSubnetworkInfo]
3928
+ attr_accessor :auto_created_subnet_info
3929
+
3729
3930
  # Output only. Time when the ServiceConnectionPolicy was created.
3730
3931
  # Corresponds to the JSON property `createTime`
3731
3932
  # @return [String]
@@ -3797,6 +3998,7 @@ module Google
3797
3998
 
3798
3999
  # Update properties of this object
3799
4000
  def update!(**args)
4001
+ @auto_created_subnet_info = args[:auto_created_subnet_info] if args.key?(:auto_created_subnet_info)
3800
4002
  @create_time = args[:create_time] if args.key?(:create_time)
3801
4003
  @description = args[:description] if args.key?(:description)
3802
4004
  @etag = args[:etag] if args.key?(:etag)
@@ -4198,11 +4400,10 @@ module Google
4198
4400
  class StateMetadata
4199
4401
  include Google::Apis::Core::Hashable
4200
4402
 
4201
- # Output only. This field will be accompanied only with transient states (
4202
- # PENDING_ADD, PENDING_DELETE, PENDING_SUSPENSION) and denotes the time when the
4203
- # transient state of the resource will be effective. For instance, if the state
4204
- # is "ADDING," this field will show the time the resource transitions to "ACTIVE.
4205
- # " Similarly, if the state is "PENDING_DELETE," it will show the deletion time.
4403
+ # Output only. Accompanies only the transient states, which include `ADDING`, `
4404
+ # DELETING`, and `SUSPENDING`, to denote the time until which the transient
4405
+ # state of the resource will be effective. For instance, if the state is `ADDING`
4406
+ # , this field shows the time when the resource state transitions to `ACTIVE`.
4206
4407
  # Corresponds to the JSON property `effectiveTime`
4207
4408
  # @return [String]
4208
4409
  attr_accessor :effective_time
@@ -4254,7 +4455,7 @@ module Google
4254
4455
  end
4255
4456
  end
4256
4457
 
4257
- # The timeline of pending states for a resource.
4458
+ # The timeline of the pending states for a resource.
4258
4459
  class StateTimeline
4259
4460
  include Google::Apis::Core::Hashable
4260
4461
 
@@ -4313,6 +4514,133 @@ module Google
4313
4514
  end
4314
4515
  end
4315
4516
 
4517
+ # Message describing Transport object.
4518
+ class Transport
4519
+ include Google::Apis::Core::Hashable
4520
+
4521
+ # Optional. Administrative state of the underlying connectivity. If set to true (
4522
+ # default), connectivity should be available between your environments. If set
4523
+ # to false, the connectivity over these links is disabled. Disabling your
4524
+ # Transport does not affect billing, and retains the underlying network
4525
+ # bandwidth associated with the connectivity.
4526
+ # Corresponds to the JSON property `adminEnabled`
4527
+ # @return [Boolean]
4528
+ attr_accessor :admin_enabled
4529
+ alias_method :admin_enabled?, :admin_enabled
4530
+
4531
+ # Optional. [Preview only] List of IP Prefixes that will be advertised to the
4532
+ # remote provider. Both IPv4 and IPv6 addresses are supported.
4533
+ # Corresponds to the JSON property `advertisedRoutes`
4534
+ # @return [String]
4535
+ attr_accessor :advertised_routes
4536
+
4537
+ # Required. Bandwidth of the Transport. This must be one of the supported
4538
+ # bandwidths for the remote profile.
4539
+ # Corresponds to the JSON property `bandwidth`
4540
+ # @return [String]
4541
+ attr_accessor :bandwidth
4542
+
4543
+ # Output only. [Output only] Create time stamp.
4544
+ # Corresponds to the JSON property `createTime`
4545
+ # @return [String]
4546
+ attr_accessor :create_time
4547
+
4548
+ # Optional. Description of the Transport.
4549
+ # Corresponds to the JSON property `description`
4550
+ # @return [String]
4551
+ attr_accessor :description
4552
+
4553
+ # Output only. [Output only] Google-generated activation key. This is only
4554
+ # output if the selected profile supports an OUTPUT key flow. Inputting this to
4555
+ # the provider is only valid while the resource is in a PENDING_KEY state. Once
4556
+ # the provider has accepted the key, the resource will move to the CONFIGURING
4557
+ # state.
4558
+ # Corresponds to the JSON property `generatedActivationKey`
4559
+ # @return [String]
4560
+ attr_accessor :generated_activation_key
4561
+
4562
+ # Optional. Labels as key value pairs.
4563
+ # Corresponds to the JSON property `labels`
4564
+ # @return [Hash<String,String>]
4565
+ attr_accessor :labels
4566
+
4567
+ # Output only. [Output only] The maximum transmission unit (MTU) of a packet
4568
+ # that can be sent over this transport.
4569
+ # Corresponds to the JSON property `mtuLimit`
4570
+ # @return [Fixnum]
4571
+ attr_accessor :mtu_limit
4572
+
4573
+ # Identifier. Name of the resource, see google.aip.dev/122 for resource naming.
4574
+ # Corresponds to the JSON property `name`
4575
+ # @return [String]
4576
+ attr_accessor :name
4577
+
4578
+ # Required. [Preview only] Resource URL of the Network that will be peered with
4579
+ # this Transport. This field must be provided during resource creation and
4580
+ # cannot be changed.
4581
+ # Corresponds to the JSON property `network`
4582
+ # @return [String]
4583
+ attr_accessor :network
4584
+
4585
+ # Optional. Key used for establishing a connection with the remote transport.
4586
+ # This key can only be provided if the profile supports an INPUT key flow and
4587
+ # the resource is in the PENDING_KEY state.
4588
+ # Corresponds to the JSON property `providedActivationKey`
4589
+ # @return [String]
4590
+ attr_accessor :provided_activation_key
4591
+
4592
+ # Required. GCP Region where this Transport is located.
4593
+ # Corresponds to the JSON property `region`
4594
+ # @return [String]
4595
+ attr_accessor :region
4596
+
4597
+ # Required. Resource URL of the remoteTransportProfile that this Transport is
4598
+ # connecting to. Format: projects/`project`/locations/`location`/
4599
+ # remoteTransportProfiles/`remote_transport_profile`
4600
+ # Corresponds to the JSON property `remoteProfile`
4601
+ # @return [String]
4602
+ attr_accessor :remote_profile
4603
+
4604
+ # Optional. IP version stack for the established connectivity.
4605
+ # Corresponds to the JSON property `stackType`
4606
+ # @return [String]
4607
+ attr_accessor :stack_type
4608
+
4609
+ # Output only. [Output only] State of the underlying connectivity.
4610
+ # Corresponds to the JSON property `state`
4611
+ # @return [String]
4612
+ attr_accessor :state
4613
+
4614
+ # Output only. [Output only] Update time stamp.
4615
+ # Corresponds to the JSON property `updateTime`
4616
+ # @return [String]
4617
+ attr_accessor :update_time
4618
+
4619
+ def initialize(**args)
4620
+ update!(**args)
4621
+ end
4622
+
4623
+ # Update properties of this object
4624
+ def update!(**args)
4625
+ @admin_enabled = args[:admin_enabled] if args.key?(:admin_enabled)
4626
+ @advertised_routes = args[:advertised_routes] if args.key?(:advertised_routes)
4627
+ @bandwidth = args[:bandwidth] if args.key?(:bandwidth)
4628
+ @create_time = args[:create_time] if args.key?(:create_time)
4629
+ @description = args[:description] if args.key?(:description)
4630
+ @generated_activation_key = args[:generated_activation_key] if args.key?(:generated_activation_key)
4631
+ @labels = args[:labels] if args.key?(:labels)
4632
+ @mtu_limit = args[:mtu_limit] if args.key?(:mtu_limit)
4633
+ @name = args[:name] if args.key?(:name)
4634
+ @network = args[:network] if args.key?(:network)
4635
+ @provided_activation_key = args[:provided_activation_key] if args.key?(:provided_activation_key)
4636
+ @region = args[:region] if args.key?(:region)
4637
+ @remote_profile = args[:remote_profile] if args.key?(:remote_profile)
4638
+ @stack_type = args[:stack_type] if args.key?(:stack_type)
4639
+ @state = args[:state] if args.key?(:state)
4640
+ @update_time = args[:update_time] if args.key?(:update_time)
4641
+ end
4642
+ end
4643
+
4316
4644
  # VM instances that this policy-based route applies to.
4317
4645
  class VirtualMachine
4318
4646
  include Google::Apis::Core::Hashable