google-apis-networkconnectivity_v1 0.61.0 → 0.63.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 +8 -0
- data/lib/google/apis/networkconnectivity_v1/classes.rb +406 -12
- data/lib/google/apis/networkconnectivity_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkconnectivity_v1/representations.rb +167 -0
- data/lib/google/apis/networkconnectivity_v1/service.rb +522 -2
- 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: 56dec9e444bbfe4ad609ca46468c6df34a050c2eab44fed88e0192d2700866c1
|
4
|
+
data.tar.gz: 1e723bfec4971f10c351dd6c8d90a4f3989c4ba00188f539a359fdf96cce2da6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8be6d38a8f5c59973fc0dfa662546949e69bfd75e7836227e5aeb18fe7b545e419e63c2995f2e524333dee279f043d303783cffa8976bf0638261dd7cca97806
|
7
|
+
data.tar.gz: '085a3fd42b776268ceccca899557eb2c5539cf271ba6b547d814c737307898b512b88fbc7afe0d08d980e2aaaf17231df547407c46032f732b93741454496648'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-networkconnectivity_v1
|
2
2
|
|
3
|
+
### v0.63.0 (2025-08-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250815
|
6
|
+
|
7
|
+
### v0.62.0 (2025-07-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250703
|
10
|
+
|
3
11
|
### v0.61.0 (2025-06-29)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250617
|
@@ -553,6 +553,123 @@ module Google
|
|
553
553
|
end
|
554
554
|
end
|
555
555
|
|
556
|
+
# The Destination resource.
|
557
|
+
class Destination
|
558
|
+
include Google::Apis::Core::Hashable
|
559
|
+
|
560
|
+
# Output only. Time when the Destination was created.
|
561
|
+
# Corresponds to the JSON property `createTime`
|
562
|
+
# @return [String]
|
563
|
+
attr_accessor :create_time
|
564
|
+
|
565
|
+
# Optional. An optional field to provide a description of this resource.
|
566
|
+
# Corresponds to the JSON property `description`
|
567
|
+
# @return [String]
|
568
|
+
attr_accessor :description
|
569
|
+
|
570
|
+
# Required. Unordered list. The list of Endpoints configured for the IP Prefix.
|
571
|
+
# Corresponds to the JSON property `endpoints`
|
572
|
+
# @return [Array<Google::Apis::NetworkconnectivityV1::DestinationEndpoint>]
|
573
|
+
attr_accessor :endpoints
|
574
|
+
|
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.
|
577
|
+
# Corresponds to the JSON property `etag`
|
578
|
+
# @return [String]
|
579
|
+
attr_accessor :etag
|
580
|
+
|
581
|
+
# Required. Immutable. Remote IP Prefix in the remote CSP, where the customer's
|
582
|
+
# workload is located
|
583
|
+
# Corresponds to the JSON property `ipPrefix`
|
584
|
+
# @return [String]
|
585
|
+
attr_accessor :ip_prefix
|
586
|
+
|
587
|
+
# Optional. User-defined labels.
|
588
|
+
# Corresponds to the JSON property `labels`
|
589
|
+
# @return [Hash<String,String>]
|
590
|
+
attr_accessor :labels
|
591
|
+
|
592
|
+
# Identifier. The name of the Destination resource. Format: `projects/`project`/
|
593
|
+
# locations/`location`/multicloudDataTransferConfigs/`
|
594
|
+
# multicloud_data_transfer_config`/destinations/`destination``.
|
595
|
+
# Corresponds to the JSON property `name`
|
596
|
+
# @return [String]
|
597
|
+
attr_accessor :name
|
598
|
+
|
599
|
+
# The timeline of pending states for a resource.
|
600
|
+
# Corresponds to the JSON property `stateTimeline`
|
601
|
+
# @return [Google::Apis::NetworkconnectivityV1::StateTimeline]
|
602
|
+
attr_accessor :state_timeline
|
603
|
+
|
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.
|
608
|
+
# Corresponds to the JSON property `uid`
|
609
|
+
# @return [String]
|
610
|
+
attr_accessor :uid
|
611
|
+
|
612
|
+
# Output only. Time when the Destination was updated.
|
613
|
+
# Corresponds to the JSON property `updateTime`
|
614
|
+
# @return [String]
|
615
|
+
attr_accessor :update_time
|
616
|
+
|
617
|
+
def initialize(**args)
|
618
|
+
update!(**args)
|
619
|
+
end
|
620
|
+
|
621
|
+
# Update properties of this object
|
622
|
+
def update!(**args)
|
623
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
624
|
+
@description = args[:description] if args.key?(:description)
|
625
|
+
@endpoints = args[:endpoints] if args.key?(:endpoints)
|
626
|
+
@etag = args[:etag] if args.key?(:etag)
|
627
|
+
@ip_prefix = args[:ip_prefix] if args.key?(:ip_prefix)
|
628
|
+
@labels = args[:labels] if args.key?(:labels)
|
629
|
+
@name = args[:name] if args.key?(:name)
|
630
|
+
@state_timeline = args[:state_timeline] if args.key?(:state_timeline)
|
631
|
+
@uid = args[:uid] if args.key?(:uid)
|
632
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
633
|
+
end
|
634
|
+
end
|
635
|
+
|
636
|
+
# The metadata for a DestinationEndpoint.
|
637
|
+
class DestinationEndpoint
|
638
|
+
include Google::Apis::Core::Hashable
|
639
|
+
|
640
|
+
# Required. The ASN of the remote IP Prefix.
|
641
|
+
# Corresponds to the JSON property `asn`
|
642
|
+
# @return [Fixnum]
|
643
|
+
attr_accessor :asn
|
644
|
+
|
645
|
+
# Required. The name of the CSP of the remote IP Prefix.
|
646
|
+
# Corresponds to the JSON property `csp`
|
647
|
+
# @return [String]
|
648
|
+
attr_accessor :csp
|
649
|
+
|
650
|
+
# Output only. The state of the Endpoint.
|
651
|
+
# Corresponds to the JSON property `state`
|
652
|
+
# @return [String]
|
653
|
+
attr_accessor :state
|
654
|
+
|
655
|
+
# Output only. Time when the DestinationEndpoint was updated.
|
656
|
+
# Corresponds to the JSON property `updateTime`
|
657
|
+
# @return [String]
|
658
|
+
attr_accessor :update_time
|
659
|
+
|
660
|
+
def initialize(**args)
|
661
|
+
update!(**args)
|
662
|
+
end
|
663
|
+
|
664
|
+
# Update properties of this object
|
665
|
+
def update!(**args)
|
666
|
+
@asn = args[:asn] if args.key?(:asn)
|
667
|
+
@csp = args[:csp] if args.key?(:csp)
|
668
|
+
@state = args[:state] if args.key?(:state)
|
669
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
670
|
+
end
|
671
|
+
end
|
672
|
+
|
556
673
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
557
674
|
# messages in your APIs. A typical example is to use it as the request or the
|
558
675
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -1205,9 +1322,11 @@ module Google
|
|
1205
1322
|
attr_accessor :prefix_length
|
1206
1323
|
|
1207
1324
|
# Optional. Can be set to narrow down or pick a different address space while
|
1208
|
-
# searching for a free range. If not set, defaults to the "10.0.0.0/8"
|
1209
|
-
#
|
1210
|
-
#
|
1325
|
+
# searching for a free range. If not set, defaults to the ["10.0.0.0/8", "172.16.
|
1326
|
+
# 0.0/12", "192.168.0.0/16"] address space (for auto-mode networks, the "10.0.0.
|
1327
|
+
# 0/9" range is used instead of "10.0.0.0/8"). This can be used to target the
|
1328
|
+
# search in other rfc-1918 address spaces like "172.16.0.0/12" and "192.168.0.0/
|
1329
|
+
# 16" or non-rfc-1918 address spaces used in the VPC.
|
1211
1330
|
# Corresponds to the JSON property `targetCidrRange`
|
1212
1331
|
# @return [Array<String>]
|
1213
1332
|
attr_accessor :target_cidr_range
|
@@ -1265,9 +1384,8 @@ module Google
|
|
1265
1384
|
class LinkedInterconnectAttachments
|
1266
1385
|
include Google::Apis::Core::Hashable
|
1267
1386
|
|
1268
|
-
# Optional.
|
1269
|
-
#
|
1270
|
-
# ALL_IPV4_RANGES".
|
1387
|
+
# Optional. Hub routes fully encompassed by include import ranges are included
|
1388
|
+
# during import from hub.
|
1271
1389
|
# Corresponds to the JSON property `includeImportRanges`
|
1272
1390
|
# @return [Array<String>]
|
1273
1391
|
attr_accessor :include_import_ranges
|
@@ -1377,9 +1495,8 @@ module Google
|
|
1377
1495
|
class LinkedRouterApplianceInstances
|
1378
1496
|
include Google::Apis::Core::Hashable
|
1379
1497
|
|
1380
|
-
# Optional.
|
1381
|
-
#
|
1382
|
-
# ALL_IPV4_RANGES".
|
1498
|
+
# Optional. Hub routes fully encompassed by include import ranges are included
|
1499
|
+
# during import from hub.
|
1383
1500
|
# Corresponds to the JSON property `includeImportRanges`
|
1384
1501
|
# @return [Array<String>]
|
1385
1502
|
attr_accessor :include_import_ranges
|
@@ -1481,9 +1598,8 @@ module Google
|
|
1481
1598
|
class LinkedVpnTunnels
|
1482
1599
|
include Google::Apis::Core::Hashable
|
1483
1600
|
|
1484
|
-
# Optional.
|
1485
|
-
#
|
1486
|
-
# ALL_IPV4_RANGES".
|
1601
|
+
# Optional. Hub routes fully encompassed by include import ranges are included
|
1602
|
+
# during import from hub.
|
1487
1603
|
# Corresponds to the JSON property `includeImportRanges`
|
1488
1604
|
# @return [Array<String>]
|
1489
1605
|
attr_accessor :include_import_ranges
|
@@ -1520,6 +1636,37 @@ module Google
|
|
1520
1636
|
end
|
1521
1637
|
end
|
1522
1638
|
|
1639
|
+
# Response message for ListDestinations.
|
1640
|
+
class ListDestinationsResponse
|
1641
|
+
include Google::Apis::Core::Hashable
|
1642
|
+
|
1643
|
+
# Destinations to be returned.
|
1644
|
+
# Corresponds to the JSON property `destinations`
|
1645
|
+
# @return [Array<Google::Apis::NetworkconnectivityV1::Destination>]
|
1646
|
+
attr_accessor :destinations
|
1647
|
+
|
1648
|
+
# The next page token.
|
1649
|
+
# Corresponds to the JSON property `nextPageToken`
|
1650
|
+
# @return [String]
|
1651
|
+
attr_accessor :next_page_token
|
1652
|
+
|
1653
|
+
# Locations that could not be reached.
|
1654
|
+
# Corresponds to the JSON property `unreachable`
|
1655
|
+
# @return [Array<String>]
|
1656
|
+
attr_accessor :unreachable
|
1657
|
+
|
1658
|
+
def initialize(**args)
|
1659
|
+
update!(**args)
|
1660
|
+
end
|
1661
|
+
|
1662
|
+
# Update properties of this object
|
1663
|
+
def update!(**args)
|
1664
|
+
@destinations = args[:destinations] if args.key?(:destinations)
|
1665
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1666
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1667
|
+
end
|
1668
|
+
end
|
1669
|
+
|
1523
1670
|
# Response for HubService.ListGroups method.
|
1524
1671
|
class ListGroupsResponse
|
1525
1672
|
include Google::Apis::Core::Hashable
|
@@ -1677,6 +1824,62 @@ module Google
|
|
1677
1824
|
end
|
1678
1825
|
end
|
1679
1826
|
|
1827
|
+
# Response message for ListMulticloudDataTransferConfigs.
|
1828
|
+
class ListMulticloudDataTransferConfigsResponse
|
1829
|
+
include Google::Apis::Core::Hashable
|
1830
|
+
|
1831
|
+
# MulticloudDataTransferConfigs to be returned.
|
1832
|
+
# Corresponds to the JSON property `multicloudDataTransferConfigs`
|
1833
|
+
# @return [Array<Google::Apis::NetworkconnectivityV1::MulticloudDataTransferConfig>]
|
1834
|
+
attr_accessor :multicloud_data_transfer_configs
|
1835
|
+
|
1836
|
+
# The next page token.
|
1837
|
+
# Corresponds to the JSON property `nextPageToken`
|
1838
|
+
# @return [String]
|
1839
|
+
attr_accessor :next_page_token
|
1840
|
+
|
1841
|
+
# Locations that could not be reached.
|
1842
|
+
# Corresponds to the JSON property `unreachable`
|
1843
|
+
# @return [Array<String>]
|
1844
|
+
attr_accessor :unreachable
|
1845
|
+
|
1846
|
+
def initialize(**args)
|
1847
|
+
update!(**args)
|
1848
|
+
end
|
1849
|
+
|
1850
|
+
# Update properties of this object
|
1851
|
+
def update!(**args)
|
1852
|
+
@multicloud_data_transfer_configs = args[:multicloud_data_transfer_configs] if args.key?(:multicloud_data_transfer_configs)
|
1853
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1854
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1855
|
+
end
|
1856
|
+
end
|
1857
|
+
|
1858
|
+
# Response message for ListMulticloudDataTransferSupportedServices.
|
1859
|
+
class ListMulticloudDataTransferSupportedServicesResponse
|
1860
|
+
include Google::Apis::Core::Hashable
|
1861
|
+
|
1862
|
+
# The list of supported services.
|
1863
|
+
# Corresponds to the JSON property `multicloudDataTransferSupportedServices`
|
1864
|
+
# @return [Array<Google::Apis::NetworkconnectivityV1::MulticloudDataTransferSupportedService>]
|
1865
|
+
attr_accessor :multicloud_data_transfer_supported_services
|
1866
|
+
|
1867
|
+
# The next page token.
|
1868
|
+
# Corresponds to the JSON property `nextPageToken`
|
1869
|
+
# @return [String]
|
1870
|
+
attr_accessor :next_page_token
|
1871
|
+
|
1872
|
+
def initialize(**args)
|
1873
|
+
update!(**args)
|
1874
|
+
end
|
1875
|
+
|
1876
|
+
# Update properties of this object
|
1877
|
+
def update!(**args)
|
1878
|
+
@multicloud_data_transfer_supported_services = args[:multicloud_data_transfer_supported_services] if args.key?(:multicloud_data_transfer_supported_services)
|
1879
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1880
|
+
end
|
1881
|
+
end
|
1882
|
+
|
1680
1883
|
# Response for PolicyBasedRoutingService.ListPolicyBasedRoutes method.
|
1681
1884
|
class ListPolicyBasedRoutesResponse
|
1682
1885
|
include Google::Apis::Core::Hashable
|
@@ -2064,6 +2267,118 @@ module Google
|
|
2064
2267
|
end
|
2065
2268
|
end
|
2066
2269
|
|
2270
|
+
# The MulticloudDataTransferConfig resource. This lists the services for which
|
2271
|
+
# customer is opting in for Multicloud Data Transfer.
|
2272
|
+
class MulticloudDataTransferConfig
|
2273
|
+
include Google::Apis::Core::Hashable
|
2274
|
+
|
2275
|
+
# Output only. Time when the MulticloudDataTransferConfig was created.
|
2276
|
+
# Corresponds to the JSON property `createTime`
|
2277
|
+
# @return [String]
|
2278
|
+
attr_accessor :create_time
|
2279
|
+
|
2280
|
+
# Optional. An optional field to provide a description of this resource.
|
2281
|
+
# Corresponds to the JSON property `description`
|
2282
|
+
# @return [String]
|
2283
|
+
attr_accessor :description
|
2284
|
+
|
2285
|
+
# Output only. The number of Destinations in use under the
|
2286
|
+
# MulticloudDataTransferConfig resource.
|
2287
|
+
# Corresponds to the JSON property `destinationsActiveCount`
|
2288
|
+
# @return [Fixnum]
|
2289
|
+
attr_accessor :destinations_active_count
|
2290
|
+
|
2291
|
+
# Output only. The number of Destinations configured under the
|
2292
|
+
# MulticloudDataTransferConfig resource.
|
2293
|
+
# Corresponds to the JSON property `destinationsCount`
|
2294
|
+
# @return [Fixnum]
|
2295
|
+
attr_accessor :destinations_count
|
2296
|
+
|
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.
|
2299
|
+
# Corresponds to the JSON property `etag`
|
2300
|
+
# @return [String]
|
2301
|
+
attr_accessor :etag
|
2302
|
+
|
2303
|
+
# Optional. User-defined labels.
|
2304
|
+
# Corresponds to the JSON property `labels`
|
2305
|
+
# @return [Hash<String,String>]
|
2306
|
+
attr_accessor :labels
|
2307
|
+
|
2308
|
+
# Identifier. The name of the MulticloudDataTransferConfig resource. Format: `
|
2309
|
+
# projects/`project`/locations/`location`/multicloudDataTransferConfigs/`
|
2310
|
+
# multicloud_data_transfer_config``.
|
2311
|
+
# Corresponds to the JSON property `name`
|
2312
|
+
# @return [String]
|
2313
|
+
attr_accessor :name
|
2314
|
+
|
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", ` ] ` `
|
2321
|
+
# Corresponds to the JSON property `services`
|
2322
|
+
# @return [Hash<String,Google::Apis::NetworkconnectivityV1::StateTimeline>]
|
2323
|
+
attr_accessor :services
|
2324
|
+
|
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.
|
2329
|
+
# Corresponds to the JSON property `uid`
|
2330
|
+
# @return [String]
|
2331
|
+
attr_accessor :uid
|
2332
|
+
|
2333
|
+
# Output only. Time when the MulticloudDataTransferConfig was updated.
|
2334
|
+
# Corresponds to the JSON property `updateTime`
|
2335
|
+
# @return [String]
|
2336
|
+
attr_accessor :update_time
|
2337
|
+
|
2338
|
+
def initialize(**args)
|
2339
|
+
update!(**args)
|
2340
|
+
end
|
2341
|
+
|
2342
|
+
# Update properties of this object
|
2343
|
+
def update!(**args)
|
2344
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
2345
|
+
@description = args[:description] if args.key?(:description)
|
2346
|
+
@destinations_active_count = args[:destinations_active_count] if args.key?(:destinations_active_count)
|
2347
|
+
@destinations_count = args[:destinations_count] if args.key?(:destinations_count)
|
2348
|
+
@etag = args[:etag] if args.key?(:etag)
|
2349
|
+
@labels = args[:labels] if args.key?(:labels)
|
2350
|
+
@name = args[:name] if args.key?(:name)
|
2351
|
+
@services = args[:services] if args.key?(:services)
|
2352
|
+
@uid = args[:uid] if args.key?(:uid)
|
2353
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
2354
|
+
end
|
2355
|
+
end
|
2356
|
+
|
2357
|
+
# The supported service for Multicloud Data Transfer.
|
2358
|
+
class MulticloudDataTransferSupportedService
|
2359
|
+
include Google::Apis::Core::Hashable
|
2360
|
+
|
2361
|
+
# Identifier. The name of the service.
|
2362
|
+
# Corresponds to the JSON property `name`
|
2363
|
+
# @return [String]
|
2364
|
+
attr_accessor :name
|
2365
|
+
|
2366
|
+
# Output only. The network service tiers supported for the service.
|
2367
|
+
# Corresponds to the JSON property `serviceConfigs`
|
2368
|
+
# @return [Array<Google::Apis::NetworkconnectivityV1::ServiceConfig>]
|
2369
|
+
attr_accessor :service_configs
|
2370
|
+
|
2371
|
+
def initialize(**args)
|
2372
|
+
update!(**args)
|
2373
|
+
end
|
2374
|
+
|
2375
|
+
# Update properties of this object
|
2376
|
+
def update!(**args)
|
2377
|
+
@name = args[:name] if args.key?(:name)
|
2378
|
+
@service_configs = args[:service_configs] if args.key?(:service_configs)
|
2379
|
+
end
|
2380
|
+
end
|
2381
|
+
|
2067
2382
|
# A route next hop that leads to an interconnect attachment resource.
|
2068
2383
|
class NextHopInterconnectAttachment
|
2069
2384
|
include Google::Apis::Core::Hashable
|
@@ -3278,6 +3593,37 @@ module Google
|
|
3278
3593
|
end
|
3279
3594
|
end
|
3280
3595
|
|
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.
|
3600
|
+
class ServiceConfig
|
3601
|
+
include Google::Apis::Core::Hashable
|
3602
|
+
|
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.
|
3606
|
+
# Corresponds to the JSON property `eligibilityCriteria`
|
3607
|
+
# @return [String]
|
3608
|
+
attr_accessor :eligibility_criteria
|
3609
|
+
|
3610
|
+
# Output only. The eligibility criteria support end time. If the end time is not
|
3611
|
+
# specified, no planned end time is available.
|
3612
|
+
# Corresponds to the JSON property `supportEndTime`
|
3613
|
+
# @return [String]
|
3614
|
+
attr_accessor :support_end_time
|
3615
|
+
|
3616
|
+
def initialize(**args)
|
3617
|
+
update!(**args)
|
3618
|
+
end
|
3619
|
+
|
3620
|
+
# Update properties of this object
|
3621
|
+
def update!(**args)
|
3622
|
+
@eligibility_criteria = args[:eligibility_criteria] if args.key?(:eligibility_criteria)
|
3623
|
+
@support_end_time = args[:support_end_time] if args.key?(:support_end_time)
|
3624
|
+
end
|
3625
|
+
end
|
3626
|
+
|
3281
3627
|
# The ServiceConnectionMap resource.
|
3282
3628
|
class ServiceConnectionMap
|
3283
3629
|
include Google::Apis::Core::Hashable
|
@@ -3848,6 +4194,35 @@ module Google
|
|
3848
4194
|
end
|
3849
4195
|
end
|
3850
4196
|
|
4197
|
+
# The state and activation time details of the resource state.
|
4198
|
+
class StateMetadata
|
4199
|
+
include Google::Apis::Core::Hashable
|
4200
|
+
|
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.
|
4206
|
+
# Corresponds to the JSON property `effectiveTime`
|
4207
|
+
# @return [String]
|
4208
|
+
attr_accessor :effective_time
|
4209
|
+
|
4210
|
+
# Output only. The state of the resource.
|
4211
|
+
# Corresponds to the JSON property `state`
|
4212
|
+
# @return [String]
|
4213
|
+
attr_accessor :state
|
4214
|
+
|
4215
|
+
def initialize(**args)
|
4216
|
+
update!(**args)
|
4217
|
+
end
|
4218
|
+
|
4219
|
+
# Update properties of this object
|
4220
|
+
def update!(**args)
|
4221
|
+
@effective_time = args[:effective_time] if args.key?(:effective_time)
|
4222
|
+
@state = args[:state] if args.key?(:state)
|
4223
|
+
end
|
4224
|
+
end
|
4225
|
+
|
3851
4226
|
# The reason a spoke is inactive.
|
3852
4227
|
class StateReason
|
3853
4228
|
include Google::Apis::Core::Hashable
|
@@ -3879,6 +4254,25 @@ module Google
|
|
3879
4254
|
end
|
3880
4255
|
end
|
3881
4256
|
|
4257
|
+
# The timeline of pending states for a resource.
|
4258
|
+
class StateTimeline
|
4259
|
+
include Google::Apis::Core::Hashable
|
4260
|
+
|
4261
|
+
# Output only. The state and activation time details of the resource state.
|
4262
|
+
# Corresponds to the JSON property `states`
|
4263
|
+
# @return [Array<Google::Apis::NetworkconnectivityV1::StateMetadata>]
|
4264
|
+
attr_accessor :states
|
4265
|
+
|
4266
|
+
def initialize(**args)
|
4267
|
+
update!(**args)
|
4268
|
+
end
|
4269
|
+
|
4270
|
+
# Update properties of this object
|
4271
|
+
def update!(**args)
|
4272
|
+
@states = args[:states] if args.key?(:states)
|
4273
|
+
end
|
4274
|
+
end
|
4275
|
+
|
3882
4276
|
# Request message for `TestIamPermissions` method.
|
3883
4277
|
class TestIamPermissionsRequest
|
3884
4278
|
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.63.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 = "20250815"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|