google-apis-servicenetworking_v1beta 0.17.0 → 0.20.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 74cd43c7f7d4b4a840d7e5d6e86779aac52c82e4e466797bf825b742fa8cd993
|
4
|
+
data.tar.gz: 43d824dd7b2de06bf19971dc4b31b9baac1ec63a3b92e1adf3f82d4ffa4f636a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be4db319939d6da14cdeeeb3761263405f2061e29a017690a100c0a271a166eb3bee7bea639a4a7252574e76327850b3325d20487228d6785e011e0901acdb6a
|
7
|
+
data.tar.gz: 0c0323d7bd3c31cc058111a6afd846122888f2abf1cd2d5db3142cbb1812e6e38c1e9a6abef82677e1628decd7c77abe89d84151877891a3a151be9263e9ac36
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-servicenetworking_v1beta
|
2
2
|
|
3
|
+
### v0.20.0 (2022-06-03)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.5.0
|
6
|
+
|
7
|
+
### v0.19.0 (2022-05-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220513
|
10
|
+
|
11
|
+
### v0.18.0 (2022-04-27)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220425
|
14
|
+
|
3
15
|
### v0.17.0 (2022-04-12)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220406
|
@@ -753,6 +753,11 @@ module Google
|
|
753
753
|
# @return [Array<Google::Apis::ServicenetworkingV1beta::GoogleCloudServicenetworkingV1ConsumerConfigReservedRange>]
|
754
754
|
attr_accessor :reserved_ranges
|
755
755
|
|
756
|
+
# Output only. The IP ranges already in use by consumer or producer
|
757
|
+
# Corresponds to the JSON property `usedIpRanges`
|
758
|
+
# @return [Array<String>]
|
759
|
+
attr_accessor :used_ip_ranges
|
760
|
+
|
756
761
|
# Output only. Indicates whether the VPC Service Controls reference architecture
|
757
762
|
# is configured for the producer VPC host network.
|
758
763
|
# Corresponds to the JSON property `vpcScReferenceArchitectureEnabled`
|
@@ -776,6 +781,7 @@ module Google
|
|
776
781
|
@producer_import_subnet_routes_with_public_ip = args[:producer_import_subnet_routes_with_public_ip] if args.key?(:producer_import_subnet_routes_with_public_ip)
|
777
782
|
@producer_network = args[:producer_network] if args.key?(:producer_network)
|
778
783
|
@reserved_ranges = args[:reserved_ranges] if args.key?(:reserved_ranges)
|
784
|
+
@used_ip_ranges = args[:used_ip_ranges] if args.key?(:used_ip_ranges)
|
779
785
|
@vpc_sc_reference_architecture_enabled = args[:vpc_sc_reference_architecture_enabled] if args.key?(:vpc_sc_reference_architecture_enabled)
|
780
786
|
end
|
781
787
|
end
|
@@ -2214,6 +2220,15 @@ module Google
|
|
2214
2220
|
class MetricRule
|
2215
2221
|
include Google::Apis::Core::Hashable
|
2216
2222
|
|
2223
|
+
# Metrics to update when the selected methods are called. The key of the map is
|
2224
|
+
# the metric name, the value is the DynamicCostType to specify how to calculate
|
2225
|
+
# the cost from the request. The cost amount will be increased for the metric
|
2226
|
+
# against which the quota limits are defined. It is only implemented in CloudESF(
|
2227
|
+
# go/cloudesf)
|
2228
|
+
# Corresponds to the JSON property `dynamicMetricCosts`
|
2229
|
+
# @return [Hash<String,String>]
|
2230
|
+
attr_accessor :dynamic_metric_costs
|
2231
|
+
|
2217
2232
|
# Metrics to update when the selected methods are called, and the associated
|
2218
2233
|
# cost applied to each metric. The key of the map is the metric name, and the
|
2219
2234
|
# values are the amount increased for the metric against which the quota limits
|
@@ -2234,6 +2249,7 @@ module Google
|
|
2234
2249
|
|
2235
2250
|
# Update properties of this object
|
2236
2251
|
def update!(**args)
|
2252
|
+
@dynamic_metric_costs = args[:dynamic_metric_costs] if args.key?(:dynamic_metric_costs)
|
2237
2253
|
@metric_costs = args[:metric_costs] if args.key?(:metric_costs)
|
2238
2254
|
@selector = args[:selector] if args.key?(:selector)
|
2239
2255
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicenetworkingV1beta
|
18
18
|
# Version of the google-apis-servicenetworking_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.20.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.5.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220513"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -692,6 +692,7 @@ module Google
|
|
692
692
|
property :producer_network, as: 'producerNetwork'
|
693
693
|
collection :reserved_ranges, as: 'reservedRanges', class: Google::Apis::ServicenetworkingV1beta::GoogleCloudServicenetworkingV1ConsumerConfigReservedRange, decorator: Google::Apis::ServicenetworkingV1beta::GoogleCloudServicenetworkingV1ConsumerConfigReservedRange::Representation
|
694
694
|
|
695
|
+
collection :used_ip_ranges, as: 'usedIpRanges'
|
695
696
|
property :vpc_sc_reference_architecture_enabled, as: 'vpcScReferenceArchitectureEnabled'
|
696
697
|
end
|
697
698
|
end
|
@@ -1013,6 +1014,7 @@ module Google
|
|
1013
1014
|
class MetricRule
|
1014
1015
|
# @private
|
1015
1016
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1017
|
+
hash :dynamic_metric_costs, as: 'dynamicMetricCosts'
|
1016
1018
|
hash :metric_costs, as: 'metricCosts'
|
1017
1019
|
property :selector, as: 'selector'
|
1018
1020
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicenetworking_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.20.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: 2022-
|
11
|
+
date: 2022-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.5'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.5'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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-servicenetworking_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.20.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.14
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Service Networking API V1beta
|