google-apis-networkconnectivity_v1 0.63.0 → 0.64.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/networkconnectivity_v1/classes.rb +251 -67
- data/lib/google/apis/networkconnectivity_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkconnectivity_v1/representations.rb +82 -0
- data/lib/google/apis/networkconnectivity_v1/service.rb +424 -118
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7b407d5d3bf4bcc4b5e10f966b1bf958095a28c5230183f223ac5c5f67fc14b
|
4
|
+
data.tar.gz: fdc704889fdf325be7ddf2a07c2da644d87fb8f9c34353205dbe7866703bfd4f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 464dda6f91a644a3b93d685340c96aae357c666d785b15f02f084ac1d8156fedeb68ddd6ddeca24cf4253af9e343a79ee29836ac7402216b19073de7283c9445
|
7
|
+
data.tar.gz: b6b4d62505d26201e768039d86170058fa27812b299ab527383083682fdf22f8056e017a75071b82c8c7355da8a4723e6aa0b91578db1fb6b1e0555e75943ae2
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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
|
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
|
576
|
-
# requests
|
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.
|
582
|
-
#
|
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
|
605
|
-
# unique across all
|
606
|
-
# another with the same name is created, the new
|
607
|
-
# different
|
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
|
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
|
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
|
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
|
1683
|
+
# Response message to list `Destination` resources.
|
1640
1684
|
class ListDestinationsResponse
|
1641
1685
|
include Google::Apis::Core::Hashable
|
1642
1686
|
|
1643
|
-
#
|
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
|
1871
|
+
# Response message to list `MulticloudDataTransferConfig` resources.
|
1828
1872
|
class ListMulticloudDataTransferConfigsResponse
|
1829
1873
|
include Google::Apis::Core::Hashable
|
1830
1874
|
|
1831
|
-
#
|
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
|
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.
|
2271
|
-
#
|
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.
|
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
|
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
|
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
|
2298
|
-
# requests
|
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.
|
2316
|
-
#
|
2317
|
-
#
|
2318
|
-
#
|
2319
|
-
#
|
2320
|
-
#
|
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
|
2326
|
-
# This value is unique across all
|
2327
|
-
# MulticloudDataTransferConfig is deleted and another
|
2328
|
-
# created, the new
|
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
|
-
#
|
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
|
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,43 @@ 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
|
+
# Optional. Labels as key value pairs
|
3407
|
+
# Corresponds to the JSON property `labels`
|
3408
|
+
# @return [Hash<String,String>]
|
3409
|
+
attr_accessor :labels
|
3410
|
+
|
3411
|
+
# Identifier. name of resource
|
3412
|
+
# Corresponds to the JSON property `name`
|
3413
|
+
# @return [String]
|
3414
|
+
attr_accessor :name
|
3415
|
+
|
3416
|
+
# Output only. [Output only] Update time stamp
|
3417
|
+
# Corresponds to the JSON property `updateTime`
|
3418
|
+
# @return [String]
|
3419
|
+
attr_accessor :update_time
|
3420
|
+
|
3421
|
+
def initialize(**args)
|
3422
|
+
update!(**args)
|
3423
|
+
end
|
3424
|
+
|
3425
|
+
# Update properties of this object
|
3426
|
+
def update!(**args)
|
3427
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
3428
|
+
@labels = args[:labels] if args.key?(:labels)
|
3429
|
+
@name = args[:name] if args.key?(:name)
|
3430
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
3431
|
+
end
|
3432
|
+
end
|
3433
|
+
|
3287
3434
|
# A route defines a path from VM instances within a spoke to a specific
|
3288
3435
|
# destination resource. Only VPC spokes have routes.
|
3289
3436
|
class Route
|
@@ -3593,22 +3740,17 @@ module Google
|
|
3593
3740
|
end
|
3594
3741
|
end
|
3595
3742
|
|
3596
|
-
# Specifies
|
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.
|
3743
|
+
# Specifies eligibility information for the service.
|
3600
3744
|
class ServiceConfig
|
3601
3745
|
include Google::Apis::Core::Hashable
|
3602
3746
|
|
3603
|
-
# Output only. The eligibility criteria for the service.
|
3604
|
-
# the eligibility criteria specified here for the service to qualify for
|
3605
|
-
# multicloud data transfer.
|
3747
|
+
# Output only. The eligibility criteria for the service.
|
3606
3748
|
# Corresponds to the JSON property `eligibilityCriteria`
|
3607
3749
|
# @return [String]
|
3608
3750
|
attr_accessor :eligibility_criteria
|
3609
3751
|
|
3610
|
-
# Output only. The eligibility criteria support
|
3611
|
-
#
|
3752
|
+
# Output only. The end time for eligibility criteria support. If not specified,
|
3753
|
+
# no planned end time is set.
|
3612
3754
|
# Corresponds to the JSON property `supportEndTime`
|
3613
3755
|
# @return [String]
|
3614
3756
|
attr_accessor :support_end_time
|
@@ -3678,8 +3820,8 @@ module Google
|
|
3678
3820
|
attr_accessor :producer_psc_configs
|
3679
3821
|
|
3680
3822
|
# The service class identifier this ServiceConnectionMap is for. The user of
|
3681
|
-
# ServiceConnectionMap create API needs to have
|
3682
|
-
#
|
3823
|
+
# ServiceConnectionMap create API needs to have networkconnectivity.
|
3824
|
+
# serviceClasses.use IAM permission for the service class.
|
3683
3825
|
# Corresponds to the JSON property `serviceClass`
|
3684
3826
|
# @return [String]
|
3685
3827
|
attr_accessor :service_class
|
@@ -3726,6 +3868,11 @@ module Google
|
|
3726
3868
|
class ServiceConnectionPolicy
|
3727
3869
|
include Google::Apis::Core::Hashable
|
3728
3870
|
|
3871
|
+
# Information for the automatically created subnetwork and its associated IR.
|
3872
|
+
# Corresponds to the JSON property `autoCreatedSubnetInfo`
|
3873
|
+
# @return [Google::Apis::NetworkconnectivityV1::AutoCreatedSubnetworkInfo]
|
3874
|
+
attr_accessor :auto_created_subnet_info
|
3875
|
+
|
3729
3876
|
# Output only. Time when the ServiceConnectionPolicy was created.
|
3730
3877
|
# Corresponds to the JSON property `createTime`
|
3731
3878
|
# @return [String]
|
@@ -3797,6 +3944,7 @@ module Google
|
|
3797
3944
|
|
3798
3945
|
# Update properties of this object
|
3799
3946
|
def update!(**args)
|
3947
|
+
@auto_created_subnet_info = args[:auto_created_subnet_info] if args.key?(:auto_created_subnet_info)
|
3800
3948
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3801
3949
|
@description = args[:description] if args.key?(:description)
|
3802
3950
|
@etag = args[:etag] if args.key?(:etag)
|
@@ -4198,11 +4346,10 @@ module Google
|
|
4198
4346
|
class StateMetadata
|
4199
4347
|
include Google::Apis::Core::Hashable
|
4200
4348
|
|
4201
|
-
# Output only.
|
4202
|
-
#
|
4203
|
-
#
|
4204
|
-
#
|
4205
|
-
# " Similarly, if the state is "PENDING_DELETE," it will show the deletion time.
|
4349
|
+
# Output only. Accompanies only the transient states, which include `ADDING`, `
|
4350
|
+
# DELETING`, and `SUSPENDING`, to denote the time until which the transient
|
4351
|
+
# state of the resource will be effective. For instance, if the state is `ADDING`
|
4352
|
+
# , this field shows the time when the resource state transitions to `ACTIVE`.
|
4206
4353
|
# Corresponds to the JSON property `effectiveTime`
|
4207
4354
|
# @return [String]
|
4208
4355
|
attr_accessor :effective_time
|
@@ -4254,7 +4401,7 @@ module Google
|
|
4254
4401
|
end
|
4255
4402
|
end
|
4256
4403
|
|
4257
|
-
# The timeline of pending states for a resource.
|
4404
|
+
# The timeline of the pending states for a resource.
|
4258
4405
|
class StateTimeline
|
4259
4406
|
include Google::Apis::Core::Hashable
|
4260
4407
|
|
@@ -4313,6 +4460,43 @@ module Google
|
|
4313
4460
|
end
|
4314
4461
|
end
|
4315
4462
|
|
4463
|
+
# Message describing Transport object
|
4464
|
+
class Transport
|
4465
|
+
include Google::Apis::Core::Hashable
|
4466
|
+
|
4467
|
+
# Output only. [Output only] Create time stamp
|
4468
|
+
# Corresponds to the JSON property `createTime`
|
4469
|
+
# @return [String]
|
4470
|
+
attr_accessor :create_time
|
4471
|
+
|
4472
|
+
# Optional. Labels as key value pairs
|
4473
|
+
# Corresponds to the JSON property `labels`
|
4474
|
+
# @return [Hash<String,String>]
|
4475
|
+
attr_accessor :labels
|
4476
|
+
|
4477
|
+
# Identifier. name of resource
|
4478
|
+
# Corresponds to the JSON property `name`
|
4479
|
+
# @return [String]
|
4480
|
+
attr_accessor :name
|
4481
|
+
|
4482
|
+
# Output only. [Output only] Update time stamp
|
4483
|
+
# Corresponds to the JSON property `updateTime`
|
4484
|
+
# @return [String]
|
4485
|
+
attr_accessor :update_time
|
4486
|
+
|
4487
|
+
def initialize(**args)
|
4488
|
+
update!(**args)
|
4489
|
+
end
|
4490
|
+
|
4491
|
+
# Update properties of this object
|
4492
|
+
def update!(**args)
|
4493
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
4494
|
+
@labels = args[:labels] if args.key?(:labels)
|
4495
|
+
@name = args[:name] if args.key?(:name)
|
4496
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
4497
|
+
end
|
4498
|
+
end
|
4499
|
+
|
4316
4500
|
# VM instances that this policy-based route applies to.
|
4317
4501
|
class VirtualMachine
|
4318
4502
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkconnectivityV1
|
18
18
|
# Version of the google-apis-networkconnectivity_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.64.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250829"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|