google-apis-networkconnectivity_v1 0.27.0 → 0.29.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/networkconnectivity_v1/classes.rb +111 -38
- data/lib/google/apis/networkconnectivity_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkconnectivity_v1/representations.rb +19 -1
- data/lib/google/apis/networkconnectivity_v1/service.rb +71 -70
- 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: dde1dce0d8b8f7846e5cacddcefcbe6aa330fc3026210253699e944e2d4c709f
|
4
|
+
data.tar.gz: 98896c9d7a35b72ade9aacfe96832cc452b95beaf8dcd258b243d2bd3f019f69
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e1b72d18f431237d68ec1bee2027b477cb1174682f53178c1cd30dd2785cfc63148730ee4f1bd7ddb58ea17ff73434dc635ff0f8fd2596931826fadc103ec93
|
7
|
+
data.tar.gz: cbf11f8ee3b9f7dbb36fbb77a424e6565ce3e4a27a249077eb41f17d70d005b1cf2264f3abd78050aaca5bf3ad157f4ca4dff79955ed2ccb5fec07c08135a8e2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-networkconnectivity_v1
|
2
2
|
|
3
|
+
### v0.29.0 (2023-08-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230721
|
6
|
+
|
7
|
+
### v0.28.0 (2023-07-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230712
|
10
|
+
|
3
11
|
### v0.27.0 (2023-06-25)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230621
|
@@ -26,17 +26,17 @@ module Google
|
|
26
26
|
class AcceptSpokeRequest
|
27
27
|
include Google::Apis::Core::Hashable
|
28
28
|
|
29
|
-
# Optional. A
|
30
|
-
#
|
31
|
-
#
|
32
|
-
#
|
33
|
-
#
|
34
|
-
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
29
|
+
# Optional. A request ID to identify requests. Specify a unique request ID so
|
30
|
+
# that if you must retry your request, the server will know to ignore the
|
31
|
+
# request if it has already been completed. The server guarantees that a request
|
32
|
+
# doesn't result in creation of duplicate commitments for at least 60 minutes.
|
33
|
+
# For example, consider a situation where you make an initial request and the
|
34
|
+
# request times out. If you make the request again with the same request ID, the
|
35
|
+
# server can check to see whether the original operation was received. If it was,
|
36
|
+
# the server ignores the second request. This behavior prevents clients from
|
37
|
+
# mistakenly creating duplicate commitments. The request ID must be a valid UUID,
|
38
|
+
# with the exception that zero UUID is not supported (00000000-0000-0000-0000-
|
39
|
+
# 000000000000).
|
40
40
|
# Corresponds to the JSON property `requestId`
|
41
41
|
# @return [String]
|
42
42
|
attr_accessor :request_id
|
@@ -255,6 +255,18 @@ module Google
|
|
255
255
|
# @return [Google::Apis::NetworkconnectivityV1::GoogleRpcStatus]
|
256
256
|
attr_accessor :error
|
257
257
|
|
258
|
+
# Describes the cause of the error with structured details. Example of an error
|
259
|
+
# when contacting the "pubsub.googleapis.com" API when it is not enabled: ` "
|
260
|
+
# reason": "API_DISABLED" "domain": "googleapis.com" "metadata": ` "resource": "
|
261
|
+
# projects/123", "service": "pubsub.googleapis.com" ` ` This response indicates
|
262
|
+
# that the pubsub.googleapis.com API is not enabled. Example of an error that is
|
263
|
+
# returned when attempting to create a Spanner instance in a region that is out
|
264
|
+
# of stock: ` "reason": "STOCKOUT" "domain": "spanner.googleapis.com", "metadata"
|
265
|
+
# : ` "availableRegions": "us-central1,us-east2" ` `
|
266
|
+
# Corresponds to the JSON property `errorInfo`
|
267
|
+
# @return [Google::Apis::NetworkconnectivityV1::GoogleRpcErrorInfo]
|
268
|
+
attr_accessor :error_info
|
269
|
+
|
258
270
|
# The error type indicates whether the error is consumer facing, producer facing
|
259
271
|
# or system internal.
|
260
272
|
# Corresponds to the JSON property `errorType`
|
@@ -315,6 +327,7 @@ module Google
|
|
315
327
|
# Update properties of this object
|
316
328
|
def update!(**args)
|
317
329
|
@error = args[:error] if args.key?(:error)
|
330
|
+
@error_info = args[:error_info] if args.key?(:error_info)
|
318
331
|
@error_type = args[:error_type] if args.key?(:error_type)
|
319
332
|
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
320
333
|
@gce_operation = args[:gce_operation] if args.key?(:gce_operation)
|
@@ -497,6 +510,57 @@ module Google
|
|
497
510
|
end
|
498
511
|
end
|
499
512
|
|
513
|
+
# Describes the cause of the error with structured details. Example of an error
|
514
|
+
# when contacting the "pubsub.googleapis.com" API when it is not enabled: ` "
|
515
|
+
# reason": "API_DISABLED" "domain": "googleapis.com" "metadata": ` "resource": "
|
516
|
+
# projects/123", "service": "pubsub.googleapis.com" ` ` This response indicates
|
517
|
+
# that the pubsub.googleapis.com API is not enabled. Example of an error that is
|
518
|
+
# returned when attempting to create a Spanner instance in a region that is out
|
519
|
+
# of stock: ` "reason": "STOCKOUT" "domain": "spanner.googleapis.com", "metadata"
|
520
|
+
# : ` "availableRegions": "us-central1,us-east2" ` `
|
521
|
+
class GoogleRpcErrorInfo
|
522
|
+
include Google::Apis::Core::Hashable
|
523
|
+
|
524
|
+
# The logical grouping to which the "reason" belongs. The error domain is
|
525
|
+
# typically the registered service name of the tool or product that generates
|
526
|
+
# the error. Example: "pubsub.googleapis.com". If the error is generated by some
|
527
|
+
# common infrastructure, the error domain must be a globally unique value that
|
528
|
+
# identifies the infrastructure. For Google API infrastructure, the error domain
|
529
|
+
# is "googleapis.com".
|
530
|
+
# Corresponds to the JSON property `domain`
|
531
|
+
# @return [String]
|
532
|
+
attr_accessor :domain
|
533
|
+
|
534
|
+
# Additional structured details about this error. Keys should match /[a-zA-Z0-9-
|
535
|
+
# _]/ and be limited to 64 characters in length. When identifying the current
|
536
|
+
# value of an exceeded limit, the units should be contained in the key, not the
|
537
|
+
# value. For example, rather than `"instanceLimit": "100/request"`, should be
|
538
|
+
# returned as, `"instanceLimitPerRequest": "100"`, if the client exceeds the
|
539
|
+
# number of instances that can be created in a single (batch) request.
|
540
|
+
# Corresponds to the JSON property `metadata`
|
541
|
+
# @return [Hash<String,String>]
|
542
|
+
attr_accessor :metadata
|
543
|
+
|
544
|
+
# The reason of the error. This is a constant value that identifies the
|
545
|
+
# proximate cause of the error. Error reasons are unique within a particular
|
546
|
+
# domain of errors. This should be at most 63 characters and match a regular
|
547
|
+
# expression of `A-Z+[A-Z0-9]`, which represents UPPER_SNAKE_CASE.
|
548
|
+
# Corresponds to the JSON property `reason`
|
549
|
+
# @return [String]
|
550
|
+
attr_accessor :reason
|
551
|
+
|
552
|
+
def initialize(**args)
|
553
|
+
update!(**args)
|
554
|
+
end
|
555
|
+
|
556
|
+
# Update properties of this object
|
557
|
+
def update!(**args)
|
558
|
+
@domain = args[:domain] if args.key?(:domain)
|
559
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
560
|
+
@reason = args[:reason] if args.key?(:reason)
|
561
|
+
end
|
562
|
+
end
|
563
|
+
|
500
564
|
# The `Status` type defines a logical error model that is suitable for different
|
501
565
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
502
566
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -820,12 +884,12 @@ module Google
|
|
820
884
|
class LinkedVpcNetwork
|
821
885
|
include Google::Apis::Core::Hashable
|
822
886
|
|
823
|
-
# Optional. IP
|
887
|
+
# Optional. IP ranges encompassing the subnets to be excluded from peering.
|
824
888
|
# Corresponds to the JSON property `excludeExportRanges`
|
825
889
|
# @return [Array<String>]
|
826
890
|
attr_accessor :exclude_export_ranges
|
827
891
|
|
828
|
-
# Required. The URI of the VPC network resource
|
892
|
+
# Required. The URI of the VPC network resource.
|
829
893
|
# Corresponds to the JSON property `uri`
|
830
894
|
# @return [String]
|
831
895
|
attr_accessor :uri
|
@@ -1545,6 +1609,18 @@ module Google
|
|
1545
1609
|
# @return [Google::Apis::NetworkconnectivityV1::GoogleRpcStatus]
|
1546
1610
|
attr_accessor :error
|
1547
1611
|
|
1612
|
+
# Describes the cause of the error with structured details. Example of an error
|
1613
|
+
# when contacting the "pubsub.googleapis.com" API when it is not enabled: ` "
|
1614
|
+
# reason": "API_DISABLED" "domain": "googleapis.com" "metadata": ` "resource": "
|
1615
|
+
# projects/123", "service": "pubsub.googleapis.com" ` ` This response indicates
|
1616
|
+
# that the pubsub.googleapis.com API is not enabled. Example of an error that is
|
1617
|
+
# returned when attempting to create a Spanner instance in a region that is out
|
1618
|
+
# of stock: ` "reason": "STOCKOUT" "domain": "spanner.googleapis.com", "metadata"
|
1619
|
+
# : ` "availableRegions": "us-central1,us-east2" ` `
|
1620
|
+
# Corresponds to the JSON property `errorInfo`
|
1621
|
+
# @return [Google::Apis::NetworkconnectivityV1::GoogleRpcErrorInfo]
|
1622
|
+
attr_accessor :error_info
|
1623
|
+
|
1548
1624
|
# The error type indicates whether the error is consumer facing, producer facing
|
1549
1625
|
# or system internal.
|
1550
1626
|
# Corresponds to the JSON property `errorType`
|
@@ -1576,6 +1652,7 @@ module Google
|
|
1576
1652
|
@consumer_forwarding_rule = args[:consumer_forwarding_rule] if args.key?(:consumer_forwarding_rule)
|
1577
1653
|
@consumer_target_project = args[:consumer_target_project] if args.key?(:consumer_target_project)
|
1578
1654
|
@error = args[:error] if args.key?(:error)
|
1655
|
+
@error_info = args[:error_info] if args.key?(:error_info)
|
1579
1656
|
@error_type = args[:error_type] if args.key?(:error_type)
|
1580
1657
|
@gce_operation = args[:gce_operation] if args.key?(:gce_operation)
|
1581
1658
|
@psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
|
@@ -1587,22 +1664,23 @@ module Google
|
|
1587
1664
|
class RejectSpokeRequest
|
1588
1665
|
include Google::Apis::Core::Hashable
|
1589
1666
|
|
1590
|
-
# Optional. Additional
|
1667
|
+
# Optional. Additional information provided by the hub administrator in the `
|
1668
|
+
# RejectSpoke` call.
|
1591
1669
|
# Corresponds to the JSON property `details`
|
1592
1670
|
# @return [String]
|
1593
1671
|
attr_accessor :details
|
1594
1672
|
|
1595
|
-
# Optional. A
|
1596
|
-
#
|
1597
|
-
#
|
1598
|
-
#
|
1599
|
-
#
|
1600
|
-
#
|
1601
|
-
#
|
1602
|
-
#
|
1603
|
-
#
|
1604
|
-
#
|
1605
|
-
#
|
1673
|
+
# Optional. A request ID to identify requests. Specify a unique request ID so
|
1674
|
+
# that if you must retry your request, the server will know to ignore the
|
1675
|
+
# request if it has already been completed. The server guarantees that a request
|
1676
|
+
# doesn't result in creation of duplicate commitments for at least 60 minutes.
|
1677
|
+
# For example, consider a situation where you make an initial request and the
|
1678
|
+
# request times out. If you make the request again with the same request ID, the
|
1679
|
+
# server can check to see whether the original operation was received. If it was,
|
1680
|
+
# the server ignores the second request. This behavior prevents clients from
|
1681
|
+
# mistakenly creating duplicate commitments. The request ID must be a valid UUID,
|
1682
|
+
# with the exception that zero UUID is not supported (00000000-0000-0000-0000-
|
1683
|
+
# 000000000000).
|
1606
1684
|
# Corresponds to the JSON property `requestId`
|
1607
1685
|
# @return [String]
|
1608
1686
|
attr_accessor :request_id
|
@@ -1651,8 +1729,8 @@ module Google
|
|
1651
1729
|
# @return [String]
|
1652
1730
|
attr_accessor :location
|
1653
1731
|
|
1654
|
-
# Immutable. The name of the route. Route names must be unique.
|
1655
|
-
# following form: `projects/`project_number`/locations/global/hubs/`hub`/
|
1732
|
+
# Immutable. The name of the route. Route names must be unique. Route names use
|
1733
|
+
# the following form: `projects/`project_number`/locations/global/hubs/`hub`/
|
1656
1734
|
# routeTables/`route_table_id`/routes/`route_id``
|
1657
1735
|
# Corresponds to the JSON property `name`
|
1658
1736
|
# @return [String]
|
@@ -1683,7 +1761,7 @@ module Google
|
|
1683
1761
|
# Output only. The Google-generated UUID for the route. This value is unique
|
1684
1762
|
# across all Network Connectivity Center route resources. If a route is deleted
|
1685
1763
|
# and another with the same name is created, the new route is assigned a
|
1686
|
-
# different
|
1764
|
+
# different `uid`.
|
1687
1765
|
# Corresponds to the JSON property `uid`
|
1688
1766
|
# @return [String]
|
1689
1767
|
attr_accessor :uid
|
@@ -1735,7 +1813,7 @@ module Google
|
|
1735
1813
|
# @return [Hash<String,String>]
|
1736
1814
|
attr_accessor :labels
|
1737
1815
|
|
1738
|
-
# Immutable. The name of the route table. Route
|
1816
|
+
# Immutable. The name of the route table. Route table names must be unique. They
|
1739
1817
|
# use the following form: `projects/`project_number`/locations/global/hubs/`hub`/
|
1740
1818
|
# routeTables/`route_table_id``
|
1741
1819
|
# Corresponds to the JSON property `name`
|
@@ -1750,7 +1828,7 @@ module Google
|
|
1750
1828
|
# Output only. The Google-generated UUID for the route table. This value is
|
1751
1829
|
# unique across all route table resources. If a route table is deleted and
|
1752
1830
|
# another with the same name is created, the new route table is assigned a
|
1753
|
-
# different
|
1831
|
+
# different `uid`.
|
1754
1832
|
# Corresponds to the JSON property `uid`
|
1755
1833
|
# @return [String]
|
1756
1834
|
attr_accessor :uid
|
@@ -1873,11 +1951,6 @@ module Google
|
|
1873
1951
|
# @return [String]
|
1874
1952
|
attr_accessor :service_class
|
1875
1953
|
|
1876
|
-
# Output only. URIs of all Service Connection Maps using this service class.
|
1877
|
-
# Corresponds to the JSON property `serviceConnectionMaps`
|
1878
|
-
# @return [Array<String>]
|
1879
|
-
attr_accessor :service_connection_maps
|
1880
|
-
|
1881
1954
|
# Output only. Time when the ServiceClass was updated.
|
1882
1955
|
# Corresponds to the JSON property `updateTime`
|
1883
1956
|
# @return [String]
|
@@ -1895,7 +1968,6 @@ module Google
|
|
1895
1968
|
@labels = args[:labels] if args.key?(:labels)
|
1896
1969
|
@name = args[:name] if args.key?(:name)
|
1897
1970
|
@service_class = args[:service_class] if args.key?(:service_class)
|
1898
|
-
@service_connection_maps = args[:service_connection_maps] if args.key?(:service_connection_maps)
|
1899
1971
|
@update_time = args[:update_time] if args.key?(:update_time)
|
1900
1972
|
end
|
1901
1973
|
end
|
@@ -2277,7 +2349,8 @@ module Google
|
|
2277
2349
|
# @return [String]
|
2278
2350
|
attr_accessor :name
|
2279
2351
|
|
2280
|
-
# Output only. The reasons for current state of the spoke.
|
2352
|
+
# Output only. The reasons for current state of the spoke. Only present when the
|
2353
|
+
# spoke is in the `INACTIVE` state.
|
2281
2354
|
# Corresponds to the JSON property `reasons`
|
2282
2355
|
# @return [Array<Google::Apis::NetworkconnectivityV1::StateReason>]
|
2283
2356
|
attr_accessor :reasons
|
@@ -2294,7 +2367,7 @@ module Google
|
|
2294
2367
|
|
2295
2368
|
# Output only. The Google-generated UUID for the spoke. This value is unique
|
2296
2369
|
# across all spoke resources. If a spoke is deleted and another with the same
|
2297
|
-
# name is created, the new spoke is assigned a different unique_id
|
2370
|
+
# name is created, the new spoke is assigned a different `unique_id`.
|
2298
2371
|
# Corresponds to the JSON property `uniqueId`
|
2299
2372
|
# @return [String]
|
2300
2373
|
attr_accessor :unique_id
|
@@ -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.29.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 = "20230721"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -88,6 +88,12 @@ module Google
|
|
88
88
|
include Google::Apis::Core::JsonObjectSupport
|
89
89
|
end
|
90
90
|
|
91
|
+
class GoogleRpcErrorInfo
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
+
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
95
|
+
end
|
96
|
+
|
91
97
|
class GoogleRpcStatus
|
92
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
99
|
|
@@ -401,6 +407,8 @@ module Google
|
|
401
407
|
class Representation < Google::Apis::Core::JsonRepresentation
|
402
408
|
property :error, as: 'error', class: Google::Apis::NetworkconnectivityV1::GoogleRpcStatus, decorator: Google::Apis::NetworkconnectivityV1::GoogleRpcStatus::Representation
|
403
409
|
|
410
|
+
property :error_info, as: 'errorInfo', class: Google::Apis::NetworkconnectivityV1::GoogleRpcErrorInfo, decorator: Google::Apis::NetworkconnectivityV1::GoogleRpcErrorInfo::Representation
|
411
|
+
|
404
412
|
property :error_type, as: 'errorType'
|
405
413
|
property :forwarding_rule, as: 'forwardingRule'
|
406
414
|
property :gce_operation, as: 'gceOperation'
|
@@ -456,6 +464,15 @@ module Google
|
|
456
464
|
end
|
457
465
|
end
|
458
466
|
|
467
|
+
class GoogleRpcErrorInfo
|
468
|
+
# @private
|
469
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
470
|
+
property :domain, as: 'domain'
|
471
|
+
hash :metadata, as: 'metadata'
|
472
|
+
property :reason, as: 'reason'
|
473
|
+
end
|
474
|
+
end
|
475
|
+
|
459
476
|
class GoogleRpcStatus
|
460
477
|
# @private
|
461
478
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -720,6 +737,8 @@ module Google
|
|
720
737
|
property :consumer_target_project, as: 'consumerTargetProject'
|
721
738
|
property :error, as: 'error', class: Google::Apis::NetworkconnectivityV1::GoogleRpcStatus, decorator: Google::Apis::NetworkconnectivityV1::GoogleRpcStatus::Representation
|
722
739
|
|
740
|
+
property :error_info, as: 'errorInfo', class: Google::Apis::NetworkconnectivityV1::GoogleRpcErrorInfo, decorator: Google::Apis::NetworkconnectivityV1::GoogleRpcErrorInfo::Representation
|
741
|
+
|
723
742
|
property :error_type, as: 'errorType'
|
724
743
|
property :gce_operation, as: 'gceOperation'
|
725
744
|
property :psc_connection_id, as: 'pscConnectionId'
|
@@ -792,7 +811,6 @@ module Google
|
|
792
811
|
hash :labels, as: 'labels'
|
793
812
|
property :name, as: 'name'
|
794
813
|
property :service_class, as: 'serviceClass'
|
795
|
-
collection :service_connection_maps, as: 'serviceConnectionMaps'
|
796
814
|
property :update_time, as: 'updateTime'
|
797
815
|
end
|
798
816
|
end
|
@@ -129,17 +129,17 @@ module Google
|
|
129
129
|
# @param [String] hub_id
|
130
130
|
# Required. A unique identifier for the hub.
|
131
131
|
# @param [String] request_id
|
132
|
-
# Optional. A
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
#
|
139
|
-
#
|
140
|
-
#
|
141
|
-
#
|
142
|
-
#
|
132
|
+
# Optional. A request ID to identify requests. Specify a unique request ID so
|
133
|
+
# that if you must retry your request, the server will know to ignore the
|
134
|
+
# request if it has already been completed. The server guarantees that a request
|
135
|
+
# doesn't result in creation of duplicate commitments for at least 60 minutes.
|
136
|
+
# For example, consider a situation where you make an initial request and the
|
137
|
+
# request times out. If you make the request again with the same request ID, the
|
138
|
+
# server can check to see whether the original operation was received. If it was,
|
139
|
+
# the server ignores the second request. This behavior prevents clients from
|
140
|
+
# mistakenly creating duplicate commitments. The request ID must be a valid UUID,
|
141
|
+
# with the exception that zero UUID is not supported (00000000-0000-0000-0000-
|
142
|
+
# 000000000000).
|
143
143
|
# @param [String] fields
|
144
144
|
# Selector specifying which fields to include in a partial response.
|
145
145
|
# @param [String] quota_user
|
@@ -175,17 +175,17 @@ module Google
|
|
175
175
|
# @param [String] name
|
176
176
|
# Required. The name of the hub to delete.
|
177
177
|
# @param [String] request_id
|
178
|
-
# Optional. A
|
179
|
-
#
|
180
|
-
#
|
181
|
-
#
|
182
|
-
#
|
183
|
-
#
|
184
|
-
#
|
185
|
-
#
|
186
|
-
#
|
187
|
-
#
|
188
|
-
#
|
178
|
+
# Optional. A request ID to identify requests. Specify a unique request ID so
|
179
|
+
# that if you must retry your request, the server will know to ignore the
|
180
|
+
# request if it has already been completed. The server guarantees that a request
|
181
|
+
# doesn't result in creation of duplicate commitments for at least 60 minutes.
|
182
|
+
# For example, consider a situation where you make an initial request and the
|
183
|
+
# request times out. If you make the request again with the same request ID, the
|
184
|
+
# server can check to see whether the original operation was received. If it was,
|
185
|
+
# the server ignores the second request. This behavior prevents clients from
|
186
|
+
# mistakenly creating duplicate commitments. The request ID must be a valid UUID,
|
187
|
+
# with the exception that zero UUID is not supported (00000000-0000-0000-0000-
|
188
|
+
# 000000000000).
|
189
189
|
# @param [String] fields
|
190
190
|
# Selector specifying which fields to include in a partial response.
|
191
191
|
# @param [String] quota_user
|
@@ -352,7 +352,7 @@ module Google
|
|
352
352
|
# spoke_locations field is not populated, the list of results includes spokes in
|
353
353
|
# all locations.
|
354
354
|
# @param [String] view
|
355
|
-
# The view of the spoke to return. The view you use determines which spoke
|
355
|
+
# The view of the spoke to return. The view that you use determines which spoke
|
356
356
|
# fields are included in the response.
|
357
357
|
# @param [String] fields
|
358
358
|
# Selector specifying which fields to include in a partial response.
|
@@ -393,17 +393,17 @@ module Google
|
|
393
393
|
# following form: `projects/`project_number`/locations/global/hubs/`hub_id``
|
394
394
|
# @param [Google::Apis::NetworkconnectivityV1::Hub] hub_object
|
395
395
|
# @param [String] request_id
|
396
|
-
# Optional. A
|
397
|
-
#
|
398
|
-
#
|
399
|
-
#
|
400
|
-
#
|
401
|
-
#
|
402
|
-
#
|
403
|
-
#
|
404
|
-
#
|
405
|
-
#
|
406
|
-
#
|
396
|
+
# Optional. A request ID to identify requests. Specify a unique request ID so
|
397
|
+
# that if you must retry your request, the server will know to ignore the
|
398
|
+
# request if it has already been completed. The server guarantees that a request
|
399
|
+
# doesn't result in creation of duplicate commitments for at least 60 minutes.
|
400
|
+
# For example, consider a situation where you make an initial request and the
|
401
|
+
# request times out. If you make the request again with the same request ID, the
|
402
|
+
# server can check to see whether the original operation was received. If it was,
|
403
|
+
# the server ignores the second request. This behavior prevents clients from
|
404
|
+
# mistakenly creating duplicate commitments. The request ID must be a valid UUID,
|
405
|
+
# with the exception that zero UUID is not supported (00000000-0000-0000-0000-
|
406
|
+
# 000000000000).
|
407
407
|
# @param [String] update_mask
|
408
408
|
# Optional. In the case of an update to an existing hub, field mask is used to
|
409
409
|
# specify the fields to be overwritten. The fields specified in the update_mask
|
@@ -2450,17 +2450,17 @@ module Google
|
|
2450
2450
|
# Required. The parent resource.
|
2451
2451
|
# @param [Google::Apis::NetworkconnectivityV1::Spoke] spoke_object
|
2452
2452
|
# @param [String] request_id
|
2453
|
-
# Optional. A
|
2454
|
-
#
|
2455
|
-
#
|
2456
|
-
#
|
2457
|
-
#
|
2458
|
-
#
|
2459
|
-
#
|
2460
|
-
#
|
2461
|
-
#
|
2462
|
-
#
|
2463
|
-
#
|
2453
|
+
# Optional. A request ID to identify requests. Specify a unique request ID so
|
2454
|
+
# that if you must retry your request, the server will know to ignore the
|
2455
|
+
# request if it has already been completed. The server guarantees that a request
|
2456
|
+
# doesn't result in creation of duplicate commitments for at least 60 minutes.
|
2457
|
+
# For example, consider a situation where you make an initial request and the
|
2458
|
+
# request times out. If you make the request again with the same request ID, the
|
2459
|
+
# server can check to see whether the original operation was received. If it was,
|
2460
|
+
# the server ignores the second request. This behavior prevents clients from
|
2461
|
+
# mistakenly creating duplicate commitments. The request ID must be a valid UUID,
|
2462
|
+
# with the exception that zero UUID is not supported (00000000-0000-0000-0000-
|
2463
|
+
# 000000000000).
|
2464
2464
|
# @param [String] spoke_id
|
2465
2465
|
# Required. Unique id for the spoke to create.
|
2466
2466
|
# @param [String] fields
|
@@ -2498,17 +2498,17 @@ module Google
|
|
2498
2498
|
# @param [String] name
|
2499
2499
|
# Required. The name of the spoke to delete.
|
2500
2500
|
# @param [String] request_id
|
2501
|
-
# Optional. A
|
2502
|
-
#
|
2503
|
-
#
|
2504
|
-
#
|
2505
|
-
#
|
2506
|
-
#
|
2507
|
-
#
|
2508
|
-
#
|
2509
|
-
#
|
2510
|
-
#
|
2511
|
-
#
|
2501
|
+
# Optional. A request ID to identify requests. Specify a unique request ID so
|
2502
|
+
# that if you must retry your request, the server will know to ignore the
|
2503
|
+
# request if it has already been completed. The server guarantees that a request
|
2504
|
+
# doesn't result in creation of duplicate commitments for at least 60 minutes.
|
2505
|
+
# For example, consider a situation where you make an initial request and the
|
2506
|
+
# request times out. If you make the request again with the same request ID, the
|
2507
|
+
# server can check to see whether the original operation was received. If it was,
|
2508
|
+
# the server ignores the second request. This behavior prevents clients from
|
2509
|
+
# mistakenly creating duplicate commitments. The request ID must be a valid UUID,
|
2510
|
+
# with the exception that zero UUID is not supported (00000000-0000-0000-0000-
|
2511
|
+
# 000000000000).
|
2512
2512
|
# @param [String] fields
|
2513
2513
|
# Selector specifying which fields to include in a partial response.
|
2514
2514
|
# @param [String] quota_user
|
@@ -2662,17 +2662,17 @@ module Google
|
|
2662
2662
|
# `
|
2663
2663
|
# @param [Google::Apis::NetworkconnectivityV1::Spoke] spoke_object
|
2664
2664
|
# @param [String] request_id
|
2665
|
-
# Optional. A
|
2666
|
-
#
|
2667
|
-
#
|
2668
|
-
#
|
2669
|
-
#
|
2670
|
-
#
|
2671
|
-
#
|
2672
|
-
#
|
2673
|
-
#
|
2674
|
-
#
|
2675
|
-
#
|
2665
|
+
# Optional. A request ID to identify requests. Specify a unique request ID so
|
2666
|
+
# that if you must retry your request, the server will know to ignore the
|
2667
|
+
# request if it has already been completed. The server guarantees that a request
|
2668
|
+
# doesn't result in creation of duplicate commitments for at least 60 minutes.
|
2669
|
+
# For example, consider a situation where you make an initial request and the
|
2670
|
+
# request times out. If you make the request again with the same request ID, the
|
2671
|
+
# server can check to see whether the original operation was received. If it was,
|
2672
|
+
# the server ignores the second request. This behavior prevents clients from
|
2673
|
+
# mistakenly creating duplicate commitments. The request ID must be a valid UUID,
|
2674
|
+
# with the exception that zero UUID is not supported (00000000-0000-0000-0000-
|
2675
|
+
# 000000000000).
|
2676
2676
|
# @param [String] update_mask
|
2677
2677
|
# Optional. In the case of an update to an existing spoke, field mask is used to
|
2678
2678
|
# specify the fields to be overwritten. The fields specified in the update_mask
|
@@ -2710,9 +2710,10 @@ module Google
|
|
2710
2710
|
execute_or_queue_command(command, &block)
|
2711
2711
|
end
|
2712
2712
|
|
2713
|
-
#
|
2714
|
-
#
|
2715
|
-
#
|
2713
|
+
# Rejects a Network Connectivity Center spoke from being attached to the hub. If
|
2714
|
+
# the spoke was previously in the `ACTIVE` state, it transitions to the `
|
2715
|
+
# INACTIVE` state and is no longer able to connect to other spokes that are
|
2716
|
+
# attached to the hub.
|
2716
2717
|
# @param [String] name
|
2717
2718
|
# Required. The name of the spoke to reject.
|
2718
2719
|
# @param [Google::Apis::NetworkconnectivityV1::RejectSpokeRequest] reject_spoke_request_object
|
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.29.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-06
|
11
|
+
date: 2023-08-06 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.29.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: []
|