google-apis-networkconnectivity_v1 0.32.0 → 0.34.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 +88 -43
- data/lib/google/apis/networkconnectivity_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkconnectivity_v1/representations.rb +28 -0
- data/lib/google/apis/networkconnectivity_v1/service.rb +34 -34
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9b428e6645653dbb89ca15a11ed5f5b7a8d91f0014f0a2ea3c25a8a9cea2c74
|
4
|
+
data.tar.gz: 60e8701de75f462b3424ac2a6922550f2485014233361b7d136cfcd7440eadd6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4a7c5391ffb364b85f8ed71d04af4885044f20ed904c6ea600ff218a01dcb37dc06b0f337a18bcc89b296519602715cf83f7e7caf5b2c6695ef677c4c28c183
|
7
|
+
data.tar.gz: fe0142adc5b584f6ff16aec5aaf984b838b21db5896761bb760d2e0a769eed07f5fe761f4c0100f9a19f1b86fedcaf04a5cd6f686a0d421b85c8fa9e43dacbd9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-networkconnectivity_v1
|
2
2
|
|
3
|
+
### v0.34.0 (2023-10-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230921
|
6
|
+
|
7
|
+
### v0.33.0 (2023-09-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230906
|
10
|
+
|
3
11
|
### v0.32.0 (2023-09-10)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230831
|
@@ -27,10 +27,10 @@ module Google
|
|
27
27
|
include Google::Apis::Core::Hashable
|
28
28
|
|
29
29
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
30
|
-
# that if you must retry your request, the server
|
31
|
-
#
|
32
|
-
#
|
33
|
-
#
|
30
|
+
# that if you must retry your request, the server knows to ignore the request if
|
31
|
+
# it has already been completed. The server guarantees that a request doesn't
|
32
|
+
# result in creation of duplicate commitments for at least 60 minutes. For
|
33
|
+
# example, consider a situation where you make an initial request and the
|
34
34
|
# request times out. If you make the request again with the same request ID, the
|
35
35
|
# server can check to see whether the original operation was received. If it was,
|
36
36
|
# the server ignores the second request. This behavior prevents clients from
|
@@ -57,15 +57,38 @@ module Google
|
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
60
|
+
# The response for HubService.AcceptHubSpoke.
|
61
|
+
class AcceptHubSpokeResponse
|
62
|
+
include Google::Apis::Core::Hashable
|
63
|
+
|
64
|
+
# A Network Connectivity Center spoke represents one or more network
|
65
|
+
# connectivity resources. When you create a spoke, you associate it with a hub.
|
66
|
+
# You must also identify a value for exactly one of the following fields: *
|
67
|
+
# linked_vpn_tunnels * linked_interconnect_attachments *
|
68
|
+
# linked_router_appliance_instances * linked_vpc_network
|
69
|
+
# Corresponds to the JSON property `spoke`
|
70
|
+
# @return [Google::Apis::NetworkconnectivityV1::Spoke]
|
71
|
+
attr_accessor :spoke
|
72
|
+
|
73
|
+
def initialize(**args)
|
74
|
+
update!(**args)
|
75
|
+
end
|
76
|
+
|
77
|
+
# Update properties of this object
|
78
|
+
def update!(**args)
|
79
|
+
@spoke = args[:spoke] if args.key?(:spoke)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
60
83
|
# The request for HubService.AcceptSpoke.
|
61
84
|
class AcceptSpokeRequest
|
62
85
|
include Google::Apis::Core::Hashable
|
63
86
|
|
64
87
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
65
|
-
# that if you must retry your request, the server
|
66
|
-
#
|
67
|
-
#
|
68
|
-
#
|
88
|
+
# that if you must retry your request, the server knows to ignore the request if
|
89
|
+
# it has already been completed. The server guarantees that a request doesn't
|
90
|
+
# result in creation of duplicate commitments for at least 60 minutes. For
|
91
|
+
# example, consider a situation where you make an initial request and the
|
69
92
|
# request times out. If you make the request again with the same request ID, the
|
70
93
|
# server can check to see whether the original operation was received. If it was,
|
71
94
|
# the server ignores the second request. This behavior prevents clients from
|
@@ -449,25 +472,25 @@ module Google
|
|
449
472
|
class Filter
|
450
473
|
include Google::Apis::Core::Hashable
|
451
474
|
|
452
|
-
# Optional. The destination IP range of outgoing packets that this policy
|
475
|
+
# Optional. The destination IP range of outgoing packets that this policy-based
|
453
476
|
# route applies to. Default is "0.0.0.0/0" if protocol version is IPv4.
|
454
477
|
# Corresponds to the JSON property `destRange`
|
455
478
|
# @return [String]
|
456
479
|
attr_accessor :dest_range
|
457
480
|
|
458
|
-
# Optional. The IP protocol that this policy
|
481
|
+
# Optional. The IP protocol that this policy-based route applies to. Valid
|
459
482
|
# values are 'TCP', 'UDP', and 'ALL'. Default is 'ALL'.
|
460
483
|
# Corresponds to the JSON property `ipProtocol`
|
461
484
|
# @return [String]
|
462
485
|
attr_accessor :ip_protocol
|
463
486
|
|
464
|
-
# Required. Internet protocol versions this policy
|
487
|
+
# Required. Internet protocol versions this policy-based route applies to. For
|
465
488
|
# this version, only IPV4 is supported.
|
466
489
|
# Corresponds to the JSON property `protocolVersion`
|
467
490
|
# @return [String]
|
468
491
|
attr_accessor :protocol_version
|
469
492
|
|
470
|
-
# Optional. The source IP range of outgoing packets that this policy
|
493
|
+
# Optional. The source IP range of outgoing packets that this policy-based route
|
471
494
|
# applies to. Default is "0.0.0.0/0" if protocol version is IPv4.
|
472
495
|
# Corresponds to the JSON property `srcRange`
|
473
496
|
# @return [String]
|
@@ -828,11 +851,11 @@ module Google
|
|
828
851
|
end
|
829
852
|
end
|
830
853
|
|
831
|
-
# InterconnectAttachment
|
854
|
+
# InterconnectAttachment that this route applies to.
|
832
855
|
class InterconnectAttachment
|
833
856
|
include Google::Apis::Core::Hashable
|
834
857
|
|
835
|
-
# Optional. Cloud region to install this policy
|
858
|
+
# Optional. Cloud region to install this policy-based route on interconnect
|
836
859
|
# attachment. Use `all` to install it on all interconnect attachments.
|
837
860
|
# Corresponds to the JSON property `region`
|
838
861
|
# @return [String]
|
@@ -1267,7 +1290,7 @@ module Google
|
|
1267
1290
|
# @return [String]
|
1268
1291
|
attr_accessor :next_page_token
|
1269
1292
|
|
1270
|
-
# Policy
|
1293
|
+
# Policy-based routes to be returned.
|
1271
1294
|
# Corresponds to the JSON property `policyBasedRoutes`
|
1272
1295
|
# @return [Array<Google::Apis::NetworkconnectivityV1::PolicyBasedRoute>]
|
1273
1296
|
attr_accessor :policy_based_routes
|
@@ -1755,14 +1778,14 @@ module Google
|
|
1755
1778
|
end
|
1756
1779
|
end
|
1757
1780
|
|
1758
|
-
# Policy
|
1759
|
-
#
|
1760
|
-
#
|
1761
|
-
#
|
1781
|
+
# Policy-based routes route L4 network traffic based on not just destination IP
|
1782
|
+
# address, but also source IP address, protocol, and more. If a policy-based
|
1783
|
+
# route conflicts with other types of routes, the policy-based route always take
|
1784
|
+
# precedence.
|
1762
1785
|
class PolicyBasedRoute
|
1763
1786
|
include Google::Apis::Core::Hashable
|
1764
1787
|
|
1765
|
-
# Output only. Time when the
|
1788
|
+
# Output only. Time when the policy-based route was created.
|
1766
1789
|
# Corresponds to the JSON property `createTime`
|
1767
1790
|
# @return [String]
|
1768
1791
|
attr_accessor :create_time
|
@@ -1778,13 +1801,13 @@ module Google
|
|
1778
1801
|
# @return [Google::Apis::NetworkconnectivityV1::Filter]
|
1779
1802
|
attr_accessor :filter
|
1780
1803
|
|
1781
|
-
# InterconnectAttachment
|
1804
|
+
# InterconnectAttachment that this route applies to.
|
1782
1805
|
# Corresponds to the JSON property `interconnectAttachment`
|
1783
1806
|
# @return [Google::Apis::NetworkconnectivityV1::InterconnectAttachment]
|
1784
1807
|
attr_accessor :interconnect_attachment
|
1785
1808
|
|
1786
1809
|
# Output only. Type of this resource. Always networkconnectivity#
|
1787
|
-
# policyBasedRoute for
|
1810
|
+
# policyBasedRoute for policy-based Route resources.
|
1788
1811
|
# Corresponds to the JSON property `kind`
|
1789
1812
|
# @return [String]
|
1790
1813
|
attr_accessor :kind
|
@@ -1800,15 +1823,14 @@ module Google
|
|
1800
1823
|
# @return [String]
|
1801
1824
|
attr_accessor :name
|
1802
1825
|
|
1803
|
-
# Required. Fully-qualified URL of the network that this route applies to
|
1804
|
-
# projects/my-project/global/networks/my-network.
|
1826
|
+
# Required. Fully-qualified URL of the network that this route applies to, for
|
1827
|
+
# example: projects/my-project/global/networks/my-network.
|
1805
1828
|
# Corresponds to the JSON property `network`
|
1806
1829
|
# @return [String]
|
1807
1830
|
attr_accessor :network
|
1808
1831
|
|
1809
|
-
# Optional. The IP of a global
|
1810
|
-
#
|
1811
|
-
# supported.
|
1832
|
+
# Optional. The IP address of a global-access-enabled L4 ILB that is the next
|
1833
|
+
# hop for matching packets. For this version, only nextHopIlbIp is supported.
|
1812
1834
|
# Corresponds to the JSON property `nextHopIlbIp`
|
1813
1835
|
# @return [String]
|
1814
1836
|
attr_accessor :next_hop_ilb_ip
|
@@ -1819,9 +1841,9 @@ module Google
|
|
1819
1841
|
# @return [String]
|
1820
1842
|
attr_accessor :next_hop_other_routes
|
1821
1843
|
|
1822
|
-
# Optional. The priority of this policy
|
1823
|
-
# ties in cases where there are more than one matching policy
|
1824
|
-
# In cases where multiple policy
|
1844
|
+
# Optional. The priority of this policy-based route. Priority is used to break
|
1845
|
+
# ties in cases where there are more than one matching policy-based routes found.
|
1846
|
+
# In cases where multiple policy-based routes are matched, the one with the
|
1825
1847
|
# lowest-numbered priority value wins. The default value is 1000. The priority
|
1826
1848
|
# value must be from 1 to 65535, inclusive.
|
1827
1849
|
# Corresponds to the JSON property `priority`
|
@@ -1833,12 +1855,12 @@ module Google
|
|
1833
1855
|
# @return [String]
|
1834
1856
|
attr_accessor :self_link
|
1835
1857
|
|
1836
|
-
# Output only. Time when the
|
1858
|
+
# Output only. Time when the policy-based route was updated.
|
1837
1859
|
# Corresponds to the JSON property `updateTime`
|
1838
1860
|
# @return [String]
|
1839
1861
|
attr_accessor :update_time
|
1840
1862
|
|
1841
|
-
# VM instances to which this policy
|
1863
|
+
# VM instances to which this policy-based route applies to.
|
1842
1864
|
# Corresponds to the JSON property `virtualMachine`
|
1843
1865
|
# @return [Google::Apis::NetworkconnectivityV1::VirtualMachine]
|
1844
1866
|
attr_accessor :virtual_machine
|
@@ -2010,10 +2032,10 @@ module Google
|
|
2010
2032
|
attr_accessor :details
|
2011
2033
|
|
2012
2034
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
2013
|
-
# that if you must retry your request, the server
|
2014
|
-
#
|
2015
|
-
#
|
2016
|
-
#
|
2035
|
+
# that if you must retry your request, the server knows to ignore the request if
|
2036
|
+
# it has already been completed. The server guarantees that a request doesn't
|
2037
|
+
# result in creation of duplicate commitments for at least 60 minutes. For
|
2038
|
+
# example, consider a situation where you make an initial request and the
|
2017
2039
|
# request times out. If you make the request again with the same request ID, the
|
2018
2040
|
# server can check to see whether the original operation was received. If it was,
|
2019
2041
|
# the server ignores the second request. This behavior prevents clients from
|
@@ -2041,6 +2063,29 @@ module Google
|
|
2041
2063
|
end
|
2042
2064
|
end
|
2043
2065
|
|
2066
|
+
# The response for HubService.RejectHubSpoke.
|
2067
|
+
class RejectHubSpokeResponse
|
2068
|
+
include Google::Apis::Core::Hashable
|
2069
|
+
|
2070
|
+
# A Network Connectivity Center spoke represents one or more network
|
2071
|
+
# connectivity resources. When you create a spoke, you associate it with a hub.
|
2072
|
+
# You must also identify a value for exactly one of the following fields: *
|
2073
|
+
# linked_vpn_tunnels * linked_interconnect_attachments *
|
2074
|
+
# linked_router_appliance_instances * linked_vpc_network
|
2075
|
+
# Corresponds to the JSON property `spoke`
|
2076
|
+
# @return [Google::Apis::NetworkconnectivityV1::Spoke]
|
2077
|
+
attr_accessor :spoke
|
2078
|
+
|
2079
|
+
def initialize(**args)
|
2080
|
+
update!(**args)
|
2081
|
+
end
|
2082
|
+
|
2083
|
+
# Update properties of this object
|
2084
|
+
def update!(**args)
|
2085
|
+
@spoke = args[:spoke] if args.key?(:spoke)
|
2086
|
+
end
|
2087
|
+
end
|
2088
|
+
|
2044
2089
|
# The request for HubService.RejectSpoke.
|
2045
2090
|
class RejectSpokeRequest
|
2046
2091
|
include Google::Apis::Core::Hashable
|
@@ -2052,10 +2097,10 @@ module Google
|
|
2052
2097
|
attr_accessor :details
|
2053
2098
|
|
2054
2099
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
2055
|
-
# that if you must retry your request, the server
|
2056
|
-
#
|
2057
|
-
#
|
2058
|
-
#
|
2100
|
+
# that if you must retry your request, the server knows to ignore the request if
|
2101
|
+
# it has already been completed. The server guarantees that a request doesn't
|
2102
|
+
# result in creation of duplicate commitments for at least 60 minutes. For
|
2103
|
+
# example, consider a situation where you make an initial request and the
|
2059
2104
|
# request times out. If you make the request again with the same request ID, the
|
2060
2105
|
# server can check to see whether the original operation was received. If it was,
|
2061
2106
|
# the server ignores the second request. This behavior prevents clients from
|
@@ -2975,12 +3020,12 @@ module Google
|
|
2975
3020
|
end
|
2976
3021
|
end
|
2977
3022
|
|
2978
|
-
# VM instances to which this policy
|
3023
|
+
# VM instances to which this policy-based route applies to.
|
2979
3024
|
class VirtualMachine
|
2980
3025
|
include Google::Apis::Core::Hashable
|
2981
3026
|
|
2982
|
-
# Optional. A list of VM instance tags
|
2983
|
-
#
|
3027
|
+
# Optional. A list of VM instance tags the this policy-based route applies to.
|
3028
|
+
# VM instances that have ANY of tags specified here will install this PBR.
|
2984
3029
|
# Corresponds to the JSON property `tags`
|
2985
3030
|
# @return [Array<String>]
|
2986
3031
|
attr_accessor :tags
|
@@ -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.34.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230921"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class AcceptHubSpokeResponse
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class AcceptSpokeRequest
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -298,6 +304,12 @@ module Google
|
|
298
304
|
include Google::Apis::Core::JsonObjectSupport
|
299
305
|
end
|
300
306
|
|
307
|
+
class RejectHubSpokeResponse
|
308
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
|
+
|
310
|
+
include Google::Apis::Core::JsonObjectSupport
|
311
|
+
end
|
312
|
+
|
301
313
|
class RejectSpokeRequest
|
302
314
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
315
|
|
@@ -426,6 +438,14 @@ module Google
|
|
426
438
|
end
|
427
439
|
end
|
428
440
|
|
441
|
+
class AcceptHubSpokeResponse
|
442
|
+
# @private
|
443
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
444
|
+
property :spoke, as: 'spoke', class: Google::Apis::NetworkconnectivityV1::Spoke, decorator: Google::Apis::NetworkconnectivityV1::Spoke::Representation
|
445
|
+
|
446
|
+
end
|
447
|
+
end
|
448
|
+
|
429
449
|
class AcceptSpokeRequest
|
430
450
|
# @private
|
431
451
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -898,6 +918,14 @@ module Google
|
|
898
918
|
end
|
899
919
|
end
|
900
920
|
|
921
|
+
class RejectHubSpokeResponse
|
922
|
+
# @private
|
923
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
924
|
+
property :spoke, as: 'spoke', class: Google::Apis::NetworkconnectivityV1::Spoke, decorator: Google::Apis::NetworkconnectivityV1::Spoke::Representation
|
925
|
+
|
926
|
+
end
|
927
|
+
end
|
928
|
+
|
901
929
|
class RejectSpokeRequest
|
902
930
|
# @private
|
903
931
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -122,9 +122,9 @@ module Google
|
|
122
122
|
execute_or_queue_command(command, &block)
|
123
123
|
end
|
124
124
|
|
125
|
-
# Accepts a proposal to attach a Network Connectivity Center spoke to
|
125
|
+
# Accepts a proposal to attach a Network Connectivity Center spoke to a hub.
|
126
126
|
# @param [String] name
|
127
|
-
# Required. The name of the hub.
|
127
|
+
# Required. The name of the hub into which to accept the spoke.
|
128
128
|
# @param [Google::Apis::NetworkconnectivityV1::AcceptHubSpokeRequest] accept_hub_spoke_request_object
|
129
129
|
# @param [String] fields
|
130
130
|
# Selector specifying which fields to include in a partial response.
|
@@ -163,10 +163,10 @@ module Google
|
|
163
163
|
# Required. A unique identifier for the hub.
|
164
164
|
# @param [String] request_id
|
165
165
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
166
|
-
# that if you must retry your request, the server
|
167
|
-
#
|
168
|
-
#
|
169
|
-
#
|
166
|
+
# that if you must retry your request, the server knows to ignore the request if
|
167
|
+
# it has already been completed. The server guarantees that a request doesn't
|
168
|
+
# result in creation of duplicate commitments for at least 60 minutes. For
|
169
|
+
# example, consider a situation where you make an initial request and the
|
170
170
|
# request times out. If you make the request again with the same request ID, the
|
171
171
|
# server can check to see whether the original operation was received. If it was,
|
172
172
|
# the server ignores the second request. This behavior prevents clients from
|
@@ -209,10 +209,10 @@ module Google
|
|
209
209
|
# Required. The name of the hub to delete.
|
210
210
|
# @param [String] request_id
|
211
211
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
212
|
-
# that if you must retry your request, the server
|
213
|
-
#
|
214
|
-
#
|
215
|
-
#
|
212
|
+
# that if you must retry your request, the server knows to ignore the request if
|
213
|
+
# it has already been completed. The server guarantees that a request doesn't
|
214
|
+
# result in creation of duplicate commitments for at least 60 minutes. For
|
215
|
+
# example, consider a situation where you make an initial request and the
|
216
216
|
# request times out. If you make the request again with the same request ID, the
|
217
217
|
# server can check to see whether the original operation was received. If it was,
|
218
218
|
# the server ignores the second request. This behavior prevents clients from
|
@@ -427,10 +427,10 @@ module Google
|
|
427
427
|
# @param [Google::Apis::NetworkconnectivityV1::Hub] hub_object
|
428
428
|
# @param [String] request_id
|
429
429
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
430
|
-
# that if you must retry your request, the server
|
431
|
-
#
|
432
|
-
#
|
433
|
-
#
|
430
|
+
# that if you must retry your request, the server knows to ignore the request if
|
431
|
+
# it has already been completed. The server guarantees that a request doesn't
|
432
|
+
# result in creation of duplicate commitments for at least 60 minutes. For
|
433
|
+
# example, consider a situation where you make an initial request and the
|
434
434
|
# request times out. If you make the request again with the same request ID, the
|
435
435
|
# server can check to see whether the original operation was received. If it was,
|
436
436
|
# the server ignores the second request. This behavior prevents clients from
|
@@ -474,12 +474,12 @@ module Google
|
|
474
474
|
execute_or_queue_command(command, &block)
|
475
475
|
end
|
476
476
|
|
477
|
-
# Rejects a Network Connectivity Center spoke from being attached to
|
477
|
+
# Rejects a Network Connectivity Center spoke from being attached to a hub. If
|
478
478
|
# the spoke was previously in the `ACTIVE` state, it transitions to the `
|
479
479
|
# INACTIVE` state and is no longer able to connect to other spokes that are
|
480
480
|
# attached to the hub.
|
481
481
|
# @param [String] name
|
482
|
-
# Required. The name of the hub.
|
482
|
+
# Required. The name of the hub from which to reject the spoke.
|
483
483
|
# @param [Google::Apis::NetworkconnectivityV1::RejectHubSpokeRequest] reject_hub_spoke_request_object
|
484
484
|
# @param [String] fields
|
485
485
|
# Selector specifying which fields to include in a partial response.
|
@@ -923,12 +923,12 @@ module Google
|
|
923
923
|
execute_or_queue_command(command, &block)
|
924
924
|
end
|
925
925
|
|
926
|
-
# Creates a new
|
926
|
+
# Creates a new policy-based route in a given project and location.
|
927
927
|
# @param [String] parent
|
928
928
|
# Required. The parent resource's name of the PolicyBasedRoute.
|
929
929
|
# @param [Google::Apis::NetworkconnectivityV1::PolicyBasedRoute] policy_based_route_object
|
930
930
|
# @param [String] policy_based_route_id
|
931
|
-
# Required. Unique id for the
|
931
|
+
# Required. Unique id for the policy-based route to create.
|
932
932
|
# @param [String] request_id
|
933
933
|
# Optional. An optional request ID to identify requests. Specify a unique
|
934
934
|
# request ID so that if you must retry your request, the server will know to
|
@@ -971,9 +971,9 @@ module Google
|
|
971
971
|
execute_or_queue_command(command, &block)
|
972
972
|
end
|
973
973
|
|
974
|
-
# Deletes a single
|
974
|
+
# Deletes a single policy-based route.
|
975
975
|
# @param [String] name
|
976
|
-
# Required. Name of the
|
976
|
+
# Required. Name of the policy-based route resource to delete.
|
977
977
|
# @param [String] request_id
|
978
978
|
# Optional. An optional request ID to identify requests. Specify a unique
|
979
979
|
# request ID so that if you must retry your request, the server will know to
|
@@ -1013,7 +1013,7 @@ module Google
|
|
1013
1013
|
execute_or_queue_command(command, &block)
|
1014
1014
|
end
|
1015
1015
|
|
1016
|
-
# Gets details of a single
|
1016
|
+
# Gets details of a single policy-based route.
|
1017
1017
|
# @param [String] name
|
1018
1018
|
# Required. Name of the PolicyBasedRoute resource to get.
|
1019
1019
|
# @param [String] fields
|
@@ -1088,7 +1088,7 @@ module Google
|
|
1088
1088
|
execute_or_queue_command(command, &block)
|
1089
1089
|
end
|
1090
1090
|
|
1091
|
-
# Lists
|
1091
|
+
# Lists policy-based routes in a given project and location.
|
1092
1092
|
# @param [String] parent
|
1093
1093
|
# Required. The parent resource's name.
|
1094
1094
|
# @param [String] filter
|
@@ -2757,10 +2757,10 @@ module Google
|
|
2757
2757
|
# @param [Google::Apis::NetworkconnectivityV1::Spoke] spoke_object
|
2758
2758
|
# @param [String] request_id
|
2759
2759
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
2760
|
-
# that if you must retry your request, the server
|
2761
|
-
#
|
2762
|
-
#
|
2763
|
-
#
|
2760
|
+
# that if you must retry your request, the server knows to ignore the request if
|
2761
|
+
# it has already been completed. The server guarantees that a request doesn't
|
2762
|
+
# result in creation of duplicate commitments for at least 60 minutes. For
|
2763
|
+
# example, consider a situation where you make an initial request and the
|
2764
2764
|
# request times out. If you make the request again with the same request ID, the
|
2765
2765
|
# server can check to see whether the original operation was received. If it was,
|
2766
2766
|
# the server ignores the second request. This behavior prevents clients from
|
@@ -2805,10 +2805,10 @@ module Google
|
|
2805
2805
|
# Required. The name of the spoke to delete.
|
2806
2806
|
# @param [String] request_id
|
2807
2807
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
2808
|
-
# that if you must retry your request, the server
|
2809
|
-
#
|
2810
|
-
#
|
2811
|
-
#
|
2808
|
+
# that if you must retry your request, the server knows to ignore the request if
|
2809
|
+
# it has already been completed. The server guarantees that a request doesn't
|
2810
|
+
# result in creation of duplicate commitments for at least 60 minutes. For
|
2811
|
+
# example, consider a situation where you make an initial request and the
|
2812
2812
|
# request times out. If you make the request again with the same request ID, the
|
2813
2813
|
# server can check to see whether the original operation was received. If it was,
|
2814
2814
|
# the server ignores the second request. This behavior prevents clients from
|
@@ -2969,10 +2969,10 @@ module Google
|
|
2969
2969
|
# @param [Google::Apis::NetworkconnectivityV1::Spoke] spoke_object
|
2970
2970
|
# @param [String] request_id
|
2971
2971
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
2972
|
-
# that if you must retry your request, the server
|
2973
|
-
#
|
2974
|
-
#
|
2975
|
-
#
|
2972
|
+
# that if you must retry your request, the server knows to ignore the request if
|
2973
|
+
# it has already been completed. The server guarantees that a request doesn't
|
2974
|
+
# result in creation of duplicate commitments for at least 60 minutes. For
|
2975
|
+
# example, consider a situation where you make an initial request and the
|
2976
2976
|
# request times out. If you make the request again with the same request ID, the
|
2977
2977
|
# server can check to see whether the original operation was received. If it was,
|
2978
2978
|
# the server ignores the second request. This behavior prevents clients from
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkconnectivity_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.34.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-10-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkconnectivity_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkconnectivity_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkconnectivity_v1/v0.34.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkconnectivity_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|