google-apis-networkconnectivity_v1 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/networkconnectivity_v1/classes.rb +19 -0
- data/lib/google/apis/networkconnectivity_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkconnectivity_v1/representations.rb +13 -0
- data/lib/google/apis/networkconnectivity_v1/service.rb +32 -23
- 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: 0b6840384190d00ac13b2759366977915afa7e0e9655b8f93a21fcd953942d5c
|
|
4
|
+
data.tar.gz: 6ae1b57a23438892f938f7cac05662583f1508bc5b7f5725dd307efeae8dccad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2d9244cdcdba8b1640b122095bcfc0e75f9fe06db9a03720c45418391ad07b8fd11746d266d7e264b5ee32057d8d94db9d78fdaa09d48df0a35003ebd9abc1a4
|
|
7
|
+
data.tar.gz: f3bcddd2809b56936575aa4cd4dc83edee648dc75107989bc7192bf3e06079989c8949f54414fc62a51e3f9cb1c67df15589c88b62afa7a6489dca88703e619e
|
data/CHANGELOG.md
CHANGED
|
@@ -674,6 +674,25 @@ module Google
|
|
|
674
674
|
end
|
|
675
675
|
end
|
|
676
676
|
|
|
677
|
+
# Metadata about locations
|
|
678
|
+
class LocationMetadata
|
|
679
|
+
include Google::Apis::Core::Hashable
|
|
680
|
+
|
|
681
|
+
# List of supported features
|
|
682
|
+
# Corresponds to the JSON property `locationFeatures`
|
|
683
|
+
# @return [Array<String>]
|
|
684
|
+
attr_accessor :location_features
|
|
685
|
+
|
|
686
|
+
def initialize(**args)
|
|
687
|
+
update!(**args)
|
|
688
|
+
end
|
|
689
|
+
|
|
690
|
+
# Update properties of this object
|
|
691
|
+
def update!(**args)
|
|
692
|
+
@location_features = args[:location_features] if args.key?(:location_features)
|
|
693
|
+
end
|
|
694
|
+
end
|
|
695
|
+
|
|
677
696
|
# Represents the metadata of the long-running operation.
|
|
678
697
|
class OperationMetadata
|
|
679
698
|
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.4.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20211113"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -124,6 +124,12 @@ module Google
|
|
|
124
124
|
include Google::Apis::Core::JsonObjectSupport
|
|
125
125
|
end
|
|
126
126
|
|
|
127
|
+
class LocationMetadata
|
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
129
|
+
|
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
131
|
+
end
|
|
132
|
+
|
|
127
133
|
class OperationMetadata
|
|
128
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
129
135
|
|
|
@@ -331,6 +337,13 @@ module Google
|
|
|
331
337
|
end
|
|
332
338
|
end
|
|
333
339
|
|
|
340
|
+
class LocationMetadata
|
|
341
|
+
# @private
|
|
342
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
343
|
+
collection :location_features, as: 'locationFeatures'
|
|
344
|
+
end
|
|
345
|
+
end
|
|
346
|
+
|
|
334
347
|
class OperationMetadata
|
|
335
348
|
# @private
|
|
336
349
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -127,7 +127,7 @@ module Google
|
|
|
127
127
|
# Required. The parent resource.
|
|
128
128
|
# @param [Google::Apis::NetworkconnectivityV1::Hub] hub_object
|
|
129
129
|
# @param [String] hub_id
|
|
130
|
-
#
|
|
130
|
+
# Required. A unique identifier for the hub.
|
|
131
131
|
# @param [String] request_id
|
|
132
132
|
# Optional. A unique request ID (optional). If you specify this ID, you can use
|
|
133
133
|
# it in cases when you need to retry your request. When you need to retry, this
|
|
@@ -250,13 +250,16 @@ module Google
|
|
|
250
250
|
# REQUIRED: The resource for which the policy is being requested. See the
|
|
251
251
|
# operation documentation for the appropriate value for this field.
|
|
252
252
|
# @param [Fixnum] options_requested_policy_version
|
|
253
|
-
# Optional. The policy
|
|
254
|
-
# 3. Requests specifying an invalid value will be
|
|
255
|
-
# policies with any conditional bindings must
|
|
256
|
-
#
|
|
257
|
-
# field unset.
|
|
258
|
-
#
|
|
259
|
-
#
|
|
253
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
|
254
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
|
255
|
+
# rejected. Requests for policies with any conditional role bindings must
|
|
256
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
|
257
|
+
# valid value or leave the field unset. The policy in the response might use the
|
|
258
|
+
# policy version that you specified, or it might use a lower policy version. For
|
|
259
|
+
# example, if you specify version 3, but the policy has no conditional role
|
|
260
|
+
# bindings, the response uses version 1. To learn which resources support
|
|
261
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
|
262
|
+
# google.com/iam/help/conditions/resource-policies).
|
|
260
263
|
# @param [String] fields
|
|
261
264
|
# Selector specifying which fields to include in a partial response.
|
|
262
265
|
# @param [String] quota_user
|
|
@@ -461,13 +464,16 @@ module Google
|
|
|
461
464
|
# REQUIRED: The resource for which the policy is being requested. See the
|
|
462
465
|
# operation documentation for the appropriate value for this field.
|
|
463
466
|
# @param [Fixnum] options_requested_policy_version
|
|
464
|
-
# Optional. The policy
|
|
465
|
-
# 3. Requests specifying an invalid value will be
|
|
466
|
-
# policies with any conditional bindings must
|
|
467
|
-
#
|
|
468
|
-
# field unset.
|
|
469
|
-
#
|
|
470
|
-
#
|
|
467
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
|
468
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
|
469
|
+
# rejected. Requests for policies with any conditional role bindings must
|
|
470
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
|
471
|
+
# valid value or leave the field unset. The policy in the response might use the
|
|
472
|
+
# policy version that you specified, or it might use a lower policy version. For
|
|
473
|
+
# example, if you specify version 3, but the policy has no conditional role
|
|
474
|
+
# bindings, the response uses version 1. To learn which resources support
|
|
475
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
|
476
|
+
# google.com/iam/help/conditions/resource-policies).
|
|
471
477
|
# @param [String] fields
|
|
472
478
|
# Selector specifying which fields to include in a partial response.
|
|
473
479
|
# @param [String] quota_user
|
|
@@ -737,7 +743,7 @@ module Google
|
|
|
737
743
|
# a valid UUID, with the exception that zero UUID is not supported (00000000-
|
|
738
744
|
# 0000-0000-0000-000000000000).
|
|
739
745
|
# @param [String] spoke_id
|
|
740
|
-
#
|
|
746
|
+
# Required. Unique id for the spoke to create.
|
|
741
747
|
# @param [String] fields
|
|
742
748
|
# Selector specifying which fields to include in a partial response.
|
|
743
749
|
# @param [String] quota_user
|
|
@@ -848,13 +854,16 @@ module Google
|
|
|
848
854
|
# REQUIRED: The resource for which the policy is being requested. See the
|
|
849
855
|
# operation documentation for the appropriate value for this field.
|
|
850
856
|
# @param [Fixnum] options_requested_policy_version
|
|
851
|
-
# Optional. The policy
|
|
852
|
-
# 3. Requests specifying an invalid value will be
|
|
853
|
-
# policies with any conditional bindings must
|
|
854
|
-
#
|
|
855
|
-
# field unset.
|
|
856
|
-
#
|
|
857
|
-
#
|
|
857
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
|
858
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
|
859
|
+
# rejected. Requests for policies with any conditional role bindings must
|
|
860
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
|
861
|
+
# valid value or leave the field unset. The policy in the response might use the
|
|
862
|
+
# policy version that you specified, or it might use a lower policy version. For
|
|
863
|
+
# example, if you specify version 3, but the policy has no conditional role
|
|
864
|
+
# bindings, the response uses version 1. To learn which resources support
|
|
865
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
|
866
|
+
# google.com/iam/help/conditions/resource-policies).
|
|
858
867
|
# @param [String] fields
|
|
859
868
|
# Selector specifying which fields to include in a partial response.
|
|
860
869
|
# @param [String] quota_user
|
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.4.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: 2021-
|
|
11
|
+
date: 2021-12-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.4.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: []
|