google-apis-networkconnectivity_v1 0.62.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 +8 -0
- data/lib/google/apis/networkconnectivity_v1/classes.rb +586 -5
- data/lib/google/apis/networkconnectivity_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkconnectivity_v1/representations.rb +249 -0
- data/lib/google/apis/networkconnectivity_v1/service.rb +829 -3
- metadata +2 -2
@@ -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,6 +594,126 @@ module Google
|
|
553
594
|
end
|
554
595
|
end
|
555
596
|
|
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.
|
600
|
+
class Destination
|
601
|
+
include Google::Apis::Core::Hashable
|
602
|
+
|
603
|
+
# Output only. Time when the `Destination` resource was created.
|
604
|
+
# Corresponds to the JSON property `createTime`
|
605
|
+
# @return [String]
|
606
|
+
attr_accessor :create_time
|
607
|
+
|
608
|
+
# Optional. A description of this resource.
|
609
|
+
# Corresponds to the JSON property `description`
|
610
|
+
# @return [String]
|
611
|
+
attr_accessor :description
|
612
|
+
|
613
|
+
# Required. Unordered list. The list of `DestinationEndpoint` resources
|
614
|
+
# configured for the IP prefix.
|
615
|
+
# Corresponds to the JSON property `endpoints`
|
616
|
+
# @return [Array<Google::Apis::NetworkconnectivityV1::DestinationEndpoint>]
|
617
|
+
attr_accessor :endpoints
|
618
|
+
|
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.
|
621
|
+
# Corresponds to the JSON property `etag`
|
622
|
+
# @return [String]
|
623
|
+
attr_accessor :etag
|
624
|
+
|
625
|
+
# Required. Immutable. The IP prefix that represents your workload on another
|
626
|
+
# CSP.
|
627
|
+
# Corresponds to the JSON property `ipPrefix`
|
628
|
+
# @return [String]
|
629
|
+
attr_accessor :ip_prefix
|
630
|
+
|
631
|
+
# Optional. User-defined labels.
|
632
|
+
# Corresponds to the JSON property `labels`
|
633
|
+
# @return [Hash<String,String>]
|
634
|
+
attr_accessor :labels
|
635
|
+
|
636
|
+
# Identifier. The name of the `Destination` resource. Format: `projects/`project`
|
637
|
+
# /locations/`location`/multicloudDataTransferConfigs/`
|
638
|
+
# multicloud_data_transfer_config`/destinations/`destination``.
|
639
|
+
# Corresponds to the JSON property `name`
|
640
|
+
# @return [String]
|
641
|
+
attr_accessor :name
|
642
|
+
|
643
|
+
# The timeline of the pending states for a resource.
|
644
|
+
# Corresponds to the JSON property `stateTimeline`
|
645
|
+
# @return [Google::Apis::NetworkconnectivityV1::StateTimeline]
|
646
|
+
attr_accessor :state_timeline
|
647
|
+
|
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.
|
652
|
+
# Corresponds to the JSON property `uid`
|
653
|
+
# @return [String]
|
654
|
+
attr_accessor :uid
|
655
|
+
|
656
|
+
# Output only. Time when the `Destination` resource was updated.
|
657
|
+
# Corresponds to the JSON property `updateTime`
|
658
|
+
# @return [String]
|
659
|
+
attr_accessor :update_time
|
660
|
+
|
661
|
+
def initialize(**args)
|
662
|
+
update!(**args)
|
663
|
+
end
|
664
|
+
|
665
|
+
# Update properties of this object
|
666
|
+
def update!(**args)
|
667
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
668
|
+
@description = args[:description] if args.key?(:description)
|
669
|
+
@endpoints = args[:endpoints] if args.key?(:endpoints)
|
670
|
+
@etag = args[:etag] if args.key?(:etag)
|
671
|
+
@ip_prefix = args[:ip_prefix] if args.key?(:ip_prefix)
|
672
|
+
@labels = args[:labels] if args.key?(:labels)
|
673
|
+
@name = args[:name] if args.key?(:name)
|
674
|
+
@state_timeline = args[:state_timeline] if args.key?(:state_timeline)
|
675
|
+
@uid = args[:uid] if args.key?(:uid)
|
676
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
677
|
+
end
|
678
|
+
end
|
679
|
+
|
680
|
+
# The metadata for a `DestinationEndpoint` resource.
|
681
|
+
class DestinationEndpoint
|
682
|
+
include Google::Apis::Core::Hashable
|
683
|
+
|
684
|
+
# Required. The ASN of the remote IP prefix.
|
685
|
+
# Corresponds to the JSON property `asn`
|
686
|
+
# @return [Fixnum]
|
687
|
+
attr_accessor :asn
|
688
|
+
|
689
|
+
# Required. The CSP of the remote IP prefix.
|
690
|
+
# Corresponds to the JSON property `csp`
|
691
|
+
# @return [String]
|
692
|
+
attr_accessor :csp
|
693
|
+
|
694
|
+
# Output only. The state of the `DestinationEndpoint` resource.
|
695
|
+
# Corresponds to the JSON property `state`
|
696
|
+
# @return [String]
|
697
|
+
attr_accessor :state
|
698
|
+
|
699
|
+
# Output only. Time when the `DestinationEndpoint` resource was updated.
|
700
|
+
# Corresponds to the JSON property `updateTime`
|
701
|
+
# @return [String]
|
702
|
+
attr_accessor :update_time
|
703
|
+
|
704
|
+
def initialize(**args)
|
705
|
+
update!(**args)
|
706
|
+
end
|
707
|
+
|
708
|
+
# Update properties of this object
|
709
|
+
def update!(**args)
|
710
|
+
@asn = args[:asn] if args.key?(:asn)
|
711
|
+
@csp = args[:csp] if args.key?(:csp)
|
712
|
+
@state = args[:state] if args.key?(:state)
|
713
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
714
|
+
end
|
715
|
+
end
|
716
|
+
|
556
717
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
557
718
|
# messages in your APIs. A typical example is to use it as the request or the
|
558
719
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -1205,9 +1366,11 @@ module Google
|
|
1205
1366
|
attr_accessor :prefix_length
|
1206
1367
|
|
1207
1368
|
# 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
|
-
#
|
1369
|
+
# searching for a free range. If not set, defaults to the ["10.0.0.0/8", "172.16.
|
1370
|
+
# 0.0/12", "192.168.0.0/16"] address space (for auto-mode networks, the "10.0.0.
|
1371
|
+
# 0/9" range is used instead of "10.0.0.0/8"). This can be used to target the
|
1372
|
+
# search in other rfc-1918 address spaces like "172.16.0.0/12" and "192.168.0.0/
|
1373
|
+
# 16" or non-rfc-1918 address spaces used in the VPC.
|
1211
1374
|
# Corresponds to the JSON property `targetCidrRange`
|
1212
1375
|
# @return [Array<String>]
|
1213
1376
|
attr_accessor :target_cidr_range
|
@@ -1517,6 +1680,37 @@ module Google
|
|
1517
1680
|
end
|
1518
1681
|
end
|
1519
1682
|
|
1683
|
+
# Response message to list `Destination` resources.
|
1684
|
+
class ListDestinationsResponse
|
1685
|
+
include Google::Apis::Core::Hashable
|
1686
|
+
|
1687
|
+
# The list of `Destination` resources to be listed.
|
1688
|
+
# Corresponds to the JSON property `destinations`
|
1689
|
+
# @return [Array<Google::Apis::NetworkconnectivityV1::Destination>]
|
1690
|
+
attr_accessor :destinations
|
1691
|
+
|
1692
|
+
# The next page token.
|
1693
|
+
# Corresponds to the JSON property `nextPageToken`
|
1694
|
+
# @return [String]
|
1695
|
+
attr_accessor :next_page_token
|
1696
|
+
|
1697
|
+
# Locations that could not be reached.
|
1698
|
+
# Corresponds to the JSON property `unreachable`
|
1699
|
+
# @return [Array<String>]
|
1700
|
+
attr_accessor :unreachable
|
1701
|
+
|
1702
|
+
def initialize(**args)
|
1703
|
+
update!(**args)
|
1704
|
+
end
|
1705
|
+
|
1706
|
+
# Update properties of this object
|
1707
|
+
def update!(**args)
|
1708
|
+
@destinations = args[:destinations] if args.key?(:destinations)
|
1709
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1710
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1711
|
+
end
|
1712
|
+
end
|
1713
|
+
|
1520
1714
|
# Response for HubService.ListGroups method.
|
1521
1715
|
class ListGroupsResponse
|
1522
1716
|
include Google::Apis::Core::Hashable
|
@@ -1674,6 +1868,63 @@ module Google
|
|
1674
1868
|
end
|
1675
1869
|
end
|
1676
1870
|
|
1871
|
+
# Response message to list `MulticloudDataTransferConfig` resources.
|
1872
|
+
class ListMulticloudDataTransferConfigsResponse
|
1873
|
+
include Google::Apis::Core::Hashable
|
1874
|
+
|
1875
|
+
# The list of `MulticloudDataTransferConfig` resources to be listed.
|
1876
|
+
# Corresponds to the JSON property `multicloudDataTransferConfigs`
|
1877
|
+
# @return [Array<Google::Apis::NetworkconnectivityV1::MulticloudDataTransferConfig>]
|
1878
|
+
attr_accessor :multicloud_data_transfer_configs
|
1879
|
+
|
1880
|
+
# The next page token.
|
1881
|
+
# Corresponds to the JSON property `nextPageToken`
|
1882
|
+
# @return [String]
|
1883
|
+
attr_accessor :next_page_token
|
1884
|
+
|
1885
|
+
# Locations that could not be reached.
|
1886
|
+
# Corresponds to the JSON property `unreachable`
|
1887
|
+
# @return [Array<String>]
|
1888
|
+
attr_accessor :unreachable
|
1889
|
+
|
1890
|
+
def initialize(**args)
|
1891
|
+
update!(**args)
|
1892
|
+
end
|
1893
|
+
|
1894
|
+
# Update properties of this object
|
1895
|
+
def update!(**args)
|
1896
|
+
@multicloud_data_transfer_configs = args[:multicloud_data_transfer_configs] if args.key?(:multicloud_data_transfer_configs)
|
1897
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1898
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1899
|
+
end
|
1900
|
+
end
|
1901
|
+
|
1902
|
+
# Response message to list the services in your project in regions that are
|
1903
|
+
# eligible for Data Transfer Essentials configuration.
|
1904
|
+
class ListMulticloudDataTransferSupportedServicesResponse
|
1905
|
+
include Google::Apis::Core::Hashable
|
1906
|
+
|
1907
|
+
# The list of supported services.
|
1908
|
+
# Corresponds to the JSON property `multicloudDataTransferSupportedServices`
|
1909
|
+
# @return [Array<Google::Apis::NetworkconnectivityV1::MulticloudDataTransferSupportedService>]
|
1910
|
+
attr_accessor :multicloud_data_transfer_supported_services
|
1911
|
+
|
1912
|
+
# The next page token.
|
1913
|
+
# Corresponds to the JSON property `nextPageToken`
|
1914
|
+
# @return [String]
|
1915
|
+
attr_accessor :next_page_token
|
1916
|
+
|
1917
|
+
def initialize(**args)
|
1918
|
+
update!(**args)
|
1919
|
+
end
|
1920
|
+
|
1921
|
+
# Update properties of this object
|
1922
|
+
def update!(**args)
|
1923
|
+
@multicloud_data_transfer_supported_services = args[:multicloud_data_transfer_supported_services] if args.key?(:multicloud_data_transfer_supported_services)
|
1924
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1925
|
+
end
|
1926
|
+
end
|
1927
|
+
|
1677
1928
|
# Response for PolicyBasedRoutingService.ListPolicyBasedRoutes method.
|
1678
1929
|
class ListPolicyBasedRoutesResponse
|
1679
1930
|
include Google::Apis::Core::Hashable
|
@@ -1738,6 +1989,37 @@ module Google
|
|
1738
1989
|
end
|
1739
1990
|
end
|
1740
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
|
+
|
1741
2023
|
# Response for HubService.ListRouteTables method.
|
1742
2024
|
class ListRouteTablesResponse
|
1743
2025
|
include Google::Apis::Core::Hashable
|
@@ -1965,6 +2247,37 @@ module Google
|
|
1965
2247
|
end
|
1966
2248
|
end
|
1967
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
|
+
|
1968
2281
|
# A resource that represents a Google Cloud location.
|
1969
2282
|
class Location
|
1970
2283
|
include Google::Apis::Core::Hashable
|
@@ -2061,6 +2374,121 @@ module Google
|
|
2061
2374
|
end
|
2062
2375
|
end
|
2063
2376
|
|
2377
|
+
# The `MulticloudDataTransferConfig` resource. It lists the services that you
|
2378
|
+
# configure for Data Transfer Essentials billing and metering.
|
2379
|
+
class MulticloudDataTransferConfig
|
2380
|
+
include Google::Apis::Core::Hashable
|
2381
|
+
|
2382
|
+
# Output only. Time when the `MulticloudDataTransferConfig` resource was created.
|
2383
|
+
# Corresponds to the JSON property `createTime`
|
2384
|
+
# @return [String]
|
2385
|
+
attr_accessor :create_time
|
2386
|
+
|
2387
|
+
# Optional. A description of this resource.
|
2388
|
+
# Corresponds to the JSON property `description`
|
2389
|
+
# @return [String]
|
2390
|
+
attr_accessor :description
|
2391
|
+
|
2392
|
+
# Output only. The number of `Destination` resources in use with the `
|
2393
|
+
# MulticloudDataTransferConfig` resource.
|
2394
|
+
# Corresponds to the JSON property `destinationsActiveCount`
|
2395
|
+
# @return [Fixnum]
|
2396
|
+
attr_accessor :destinations_active_count
|
2397
|
+
|
2398
|
+
# Output only. The number of `Destination` resources configured for the `
|
2399
|
+
# MulticloudDataTransferConfig` resource.
|
2400
|
+
# Corresponds to the JSON property `destinationsCount`
|
2401
|
+
# @return [Fixnum]
|
2402
|
+
attr_accessor :destinations_count
|
2403
|
+
|
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.
|
2406
|
+
# Corresponds to the JSON property `etag`
|
2407
|
+
# @return [String]
|
2408
|
+
attr_accessor :etag
|
2409
|
+
|
2410
|
+
# Optional. User-defined labels.
|
2411
|
+
# Corresponds to the JSON property `labels`
|
2412
|
+
# @return [Hash<String,String>]
|
2413
|
+
attr_accessor :labels
|
2414
|
+
|
2415
|
+
# Identifier. The name of the `MulticloudDataTransferConfig` resource. Format: `
|
2416
|
+
# projects/`project`/locations/`location`/multicloudDataTransferConfigs/`
|
2417
|
+
# multicloud_data_transfer_config``.
|
2418
|
+
# Corresponds to the JSON property `name`
|
2419
|
+
# @return [String]
|
2420
|
+
attr_accessor :name
|
2421
|
+
|
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", ` ] ` `
|
2428
|
+
# Corresponds to the JSON property `services`
|
2429
|
+
# @return [Hash<String,Google::Apis::NetworkconnectivityV1::StateTimeline>]
|
2430
|
+
attr_accessor :services
|
2431
|
+
|
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.
|
2437
|
+
# Corresponds to the JSON property `uid`
|
2438
|
+
# @return [String]
|
2439
|
+
attr_accessor :uid
|
2440
|
+
|
2441
|
+
# Output only. Time when the `MulticloudDataTransferConfig` resource was updated.
|
2442
|
+
# Corresponds to the JSON property `updateTime`
|
2443
|
+
# @return [String]
|
2444
|
+
attr_accessor :update_time
|
2445
|
+
|
2446
|
+
def initialize(**args)
|
2447
|
+
update!(**args)
|
2448
|
+
end
|
2449
|
+
|
2450
|
+
# Update properties of this object
|
2451
|
+
def update!(**args)
|
2452
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
2453
|
+
@description = args[:description] if args.key?(:description)
|
2454
|
+
@destinations_active_count = args[:destinations_active_count] if args.key?(:destinations_active_count)
|
2455
|
+
@destinations_count = args[:destinations_count] if args.key?(:destinations_count)
|
2456
|
+
@etag = args[:etag] if args.key?(:etag)
|
2457
|
+
@labels = args[:labels] if args.key?(:labels)
|
2458
|
+
@name = args[:name] if args.key?(:name)
|
2459
|
+
@services = args[:services] if args.key?(:services)
|
2460
|
+
@uid = args[:uid] if args.key?(:uid)
|
2461
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
2462
|
+
end
|
2463
|
+
end
|
2464
|
+
|
2465
|
+
# A service in your project in a region that is eligible for Data Transfer
|
2466
|
+
# Essentials configuration.
|
2467
|
+
class MulticloudDataTransferSupportedService
|
2468
|
+
include Google::Apis::Core::Hashable
|
2469
|
+
|
2470
|
+
# Identifier. The name of the service.
|
2471
|
+
# Corresponds to the JSON property `name`
|
2472
|
+
# @return [String]
|
2473
|
+
attr_accessor :name
|
2474
|
+
|
2475
|
+
# Output only. The network service tier or regional endpoint supported for the
|
2476
|
+
# service.
|
2477
|
+
# Corresponds to the JSON property `serviceConfigs`
|
2478
|
+
# @return [Array<Google::Apis::NetworkconnectivityV1::ServiceConfig>]
|
2479
|
+
attr_accessor :service_configs
|
2480
|
+
|
2481
|
+
def initialize(**args)
|
2482
|
+
update!(**args)
|
2483
|
+
end
|
2484
|
+
|
2485
|
+
# Update properties of this object
|
2486
|
+
def update!(**args)
|
2487
|
+
@name = args[:name] if args.key?(:name)
|
2488
|
+
@service_configs = args[:service_configs] if args.key?(:service_configs)
|
2489
|
+
end
|
2490
|
+
end
|
2491
|
+
|
2064
2492
|
# A route next hop that leads to an interconnect attachment resource.
|
2065
2493
|
class NextHopInterconnectAttachment
|
2066
2494
|
include Google::Apis::Core::Hashable
|
@@ -2966,6 +3394,43 @@ module Google
|
|
2966
3394
|
end
|
2967
3395
|
end
|
2968
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
|
+
|
2969
3434
|
# A route defines a path from VM instances within a spoke to a specific
|
2970
3435
|
# destination resource. Only VPC spokes have routes.
|
2971
3436
|
class Route
|
@@ -3275,6 +3740,32 @@ module Google
|
|
3275
3740
|
end
|
3276
3741
|
end
|
3277
3742
|
|
3743
|
+
# Specifies eligibility information for the service.
|
3744
|
+
class ServiceConfig
|
3745
|
+
include Google::Apis::Core::Hashable
|
3746
|
+
|
3747
|
+
# Output only. The eligibility criteria for the service.
|
3748
|
+
# Corresponds to the JSON property `eligibilityCriteria`
|
3749
|
+
# @return [String]
|
3750
|
+
attr_accessor :eligibility_criteria
|
3751
|
+
|
3752
|
+
# Output only. The end time for eligibility criteria support. If not specified,
|
3753
|
+
# no planned end time is set.
|
3754
|
+
# Corresponds to the JSON property `supportEndTime`
|
3755
|
+
# @return [String]
|
3756
|
+
attr_accessor :support_end_time
|
3757
|
+
|
3758
|
+
def initialize(**args)
|
3759
|
+
update!(**args)
|
3760
|
+
end
|
3761
|
+
|
3762
|
+
# Update properties of this object
|
3763
|
+
def update!(**args)
|
3764
|
+
@eligibility_criteria = args[:eligibility_criteria] if args.key?(:eligibility_criteria)
|
3765
|
+
@support_end_time = args[:support_end_time] if args.key?(:support_end_time)
|
3766
|
+
end
|
3767
|
+
end
|
3768
|
+
|
3278
3769
|
# The ServiceConnectionMap resource.
|
3279
3770
|
class ServiceConnectionMap
|
3280
3771
|
include Google::Apis::Core::Hashable
|
@@ -3329,8 +3820,8 @@ module Google
|
|
3329
3820
|
attr_accessor :producer_psc_configs
|
3330
3821
|
|
3331
3822
|
# The service class identifier this ServiceConnectionMap is for. The user of
|
3332
|
-
# ServiceConnectionMap create API needs to have
|
3333
|
-
#
|
3823
|
+
# ServiceConnectionMap create API needs to have networkconnectivity.
|
3824
|
+
# serviceClasses.use IAM permission for the service class.
|
3334
3825
|
# Corresponds to the JSON property `serviceClass`
|
3335
3826
|
# @return [String]
|
3336
3827
|
attr_accessor :service_class
|
@@ -3377,6 +3868,11 @@ module Google
|
|
3377
3868
|
class ServiceConnectionPolicy
|
3378
3869
|
include Google::Apis::Core::Hashable
|
3379
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
|
+
|
3380
3876
|
# Output only. Time when the ServiceConnectionPolicy was created.
|
3381
3877
|
# Corresponds to the JSON property `createTime`
|
3382
3878
|
# @return [String]
|
@@ -3448,6 +3944,7 @@ module Google
|
|
3448
3944
|
|
3449
3945
|
# Update properties of this object
|
3450
3946
|
def update!(**args)
|
3947
|
+
@auto_created_subnet_info = args[:auto_created_subnet_info] if args.key?(:auto_created_subnet_info)
|
3451
3948
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3452
3949
|
@description = args[:description] if args.key?(:description)
|
3453
3950
|
@etag = args[:etag] if args.key?(:etag)
|
@@ -3845,6 +4342,34 @@ module Google
|
|
3845
4342
|
end
|
3846
4343
|
end
|
3847
4344
|
|
4345
|
+
# The state and activation time details of the resource state.
|
4346
|
+
class StateMetadata
|
4347
|
+
include Google::Apis::Core::Hashable
|
4348
|
+
|
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`.
|
4353
|
+
# Corresponds to the JSON property `effectiveTime`
|
4354
|
+
# @return [String]
|
4355
|
+
attr_accessor :effective_time
|
4356
|
+
|
4357
|
+
# Output only. The state of the resource.
|
4358
|
+
# Corresponds to the JSON property `state`
|
4359
|
+
# @return [String]
|
4360
|
+
attr_accessor :state
|
4361
|
+
|
4362
|
+
def initialize(**args)
|
4363
|
+
update!(**args)
|
4364
|
+
end
|
4365
|
+
|
4366
|
+
# Update properties of this object
|
4367
|
+
def update!(**args)
|
4368
|
+
@effective_time = args[:effective_time] if args.key?(:effective_time)
|
4369
|
+
@state = args[:state] if args.key?(:state)
|
4370
|
+
end
|
4371
|
+
end
|
4372
|
+
|
3848
4373
|
# The reason a spoke is inactive.
|
3849
4374
|
class StateReason
|
3850
4375
|
include Google::Apis::Core::Hashable
|
@@ -3876,6 +4401,25 @@ module Google
|
|
3876
4401
|
end
|
3877
4402
|
end
|
3878
4403
|
|
4404
|
+
# The timeline of the pending states for a resource.
|
4405
|
+
class StateTimeline
|
4406
|
+
include Google::Apis::Core::Hashable
|
4407
|
+
|
4408
|
+
# Output only. The state and activation time details of the resource state.
|
4409
|
+
# Corresponds to the JSON property `states`
|
4410
|
+
# @return [Array<Google::Apis::NetworkconnectivityV1::StateMetadata>]
|
4411
|
+
attr_accessor :states
|
4412
|
+
|
4413
|
+
def initialize(**args)
|
4414
|
+
update!(**args)
|
4415
|
+
end
|
4416
|
+
|
4417
|
+
# Update properties of this object
|
4418
|
+
def update!(**args)
|
4419
|
+
@states = args[:states] if args.key?(:states)
|
4420
|
+
end
|
4421
|
+
end
|
4422
|
+
|
3879
4423
|
# Request message for `TestIamPermissions` method.
|
3880
4424
|
class TestIamPermissionsRequest
|
3881
4425
|
include Google::Apis::Core::Hashable
|
@@ -3916,6 +4460,43 @@ module Google
|
|
3916
4460
|
end
|
3917
4461
|
end
|
3918
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
|
+
|
3919
4500
|
# VM instances that this policy-based route applies to.
|
3920
4501
|
class VirtualMachine
|
3921
4502
|
include Google::Apis::Core::Hashable
|