google-apis-servicenetworking_v1 0.63.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b8b8763c4f6a6ff2f73b09fe641330b065c704861ee6965c0485c5bd69ff3e0
|
4
|
+
data.tar.gz: bf981edf0460ae199e1d240b87dbf1b06f50c5139468eb9f76d3ac1a42baf83d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 541821202c5cb7b326b74a2a008484226bbb131981fde08e5be21e3a9e2d34940fea030d1d23cddd58d709ad9fc334eed2c5254750d9b3f49130ae921da19700
|
7
|
+
data.tar.gz: 399a5a3cd50d97e8e1213584962af24b49f20bc346650f906be918beedf29a4168461cb89af98ca7a9e63f1f7522f48f2ac11276c7e6f4faa15b07f697c9fdd1
|
data/CHANGELOG.md
CHANGED
@@ -1958,6 +1958,30 @@ module Google
|
|
1958
1958
|
end
|
1959
1959
|
end
|
1960
1960
|
|
1961
|
+
# Experimental features to be included during client library generation. These
|
1962
|
+
# fields will be deprecated once the feature graduates and is enabled by default.
|
1963
|
+
class ExperimentalFeatures
|
1964
|
+
include Google::Apis::Core::Hashable
|
1965
|
+
|
1966
|
+
# Enables generation of asynchronous REST clients if `rest` transport is enabled.
|
1967
|
+
# By default, asynchronous REST clients will not be generated. This feature
|
1968
|
+
# will be enabled by default 1 month after launching the feature in preview
|
1969
|
+
# packages.
|
1970
|
+
# Corresponds to the JSON property `restAsyncIoEnabled`
|
1971
|
+
# @return [Boolean]
|
1972
|
+
attr_accessor :rest_async_io_enabled
|
1973
|
+
alias_method :rest_async_io_enabled?, :rest_async_io_enabled
|
1974
|
+
|
1975
|
+
def initialize(**args)
|
1976
|
+
update!(**args)
|
1977
|
+
end
|
1978
|
+
|
1979
|
+
# Update properties of this object
|
1980
|
+
def update!(**args)
|
1981
|
+
@rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
|
1982
|
+
end
|
1983
|
+
end
|
1984
|
+
|
1961
1985
|
# A single field of a message type.
|
1962
1986
|
class Field
|
1963
1987
|
include Google::Apis::Core::Hashable
|
@@ -3156,6 +3180,11 @@ module Google
|
|
3156
3180
|
# @return [String]
|
3157
3181
|
attr_accessor :sample_period
|
3158
3182
|
|
3183
|
+
# The scope of the timeseries data of the metric.
|
3184
|
+
# Corresponds to the JSON property `timeSeriesResourceHierarchyLevel`
|
3185
|
+
# @return [Array<String>]
|
3186
|
+
attr_accessor :time_series_resource_hierarchy_level
|
3187
|
+
|
3159
3188
|
def initialize(**args)
|
3160
3189
|
update!(**args)
|
3161
3190
|
end
|
@@ -3165,6 +3194,7 @@ module Google
|
|
3165
3194
|
@ingest_delay = args[:ingest_delay] if args.key?(:ingest_delay)
|
3166
3195
|
@launch_stage = args[:launch_stage] if args.key?(:launch_stage)
|
3167
3196
|
@sample_period = args[:sample_period] if args.key?(:sample_period)
|
3197
|
+
@time_series_resource_hierarchy_level = args[:time_series_resource_hierarchy_level] if args.key?(:time_series_resource_hierarchy_level)
|
3168
3198
|
end
|
3169
3199
|
end
|
3170
3200
|
|
@@ -3803,6 +3833,12 @@ module Google
|
|
3803
3833
|
# @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
|
3804
3834
|
attr_accessor :common
|
3805
3835
|
|
3836
|
+
# Experimental features to be included during client library generation. These
|
3837
|
+
# fields will be deprecated once the feature graduates and is enabled by default.
|
3838
|
+
# Corresponds to the JSON property `experimentalFeatures`
|
3839
|
+
# @return [Google::Apis::ServicenetworkingV1::ExperimentalFeatures]
|
3840
|
+
attr_accessor :experimental_features
|
3841
|
+
|
3806
3842
|
def initialize(**args)
|
3807
3843
|
update!(**args)
|
3808
3844
|
end
|
@@ -3810,6 +3846,7 @@ module Google
|
|
3810
3846
|
# Update properties of this object
|
3811
3847
|
def update!(**args)
|
3812
3848
|
@common = args[:common] if args.key?(:common)
|
3849
|
+
@experimental_features = args[:experimental_features] if args.key?(:experimental_features)
|
3813
3850
|
end
|
3814
3851
|
end
|
3815
3852
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicenetworkingV1
|
18
18
|
# Version of the google-apis-servicenetworking_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.64.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240825"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -310,6 +310,12 @@ module Google
|
|
310
310
|
include Google::Apis::Core::JsonObjectSupport
|
311
311
|
end
|
312
312
|
|
313
|
+
class ExperimentalFeatures
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
|
+
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
317
|
+
end
|
318
|
+
|
313
319
|
class Field
|
314
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
321
|
|
@@ -1246,6 +1252,13 @@ module Google
|
|
1246
1252
|
end
|
1247
1253
|
end
|
1248
1254
|
|
1255
|
+
class ExperimentalFeatures
|
1256
|
+
# @private
|
1257
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1258
|
+
property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
|
1259
|
+
end
|
1260
|
+
end
|
1261
|
+
|
1249
1262
|
class Field
|
1250
1263
|
# @private
|
1251
1264
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1513,6 +1526,7 @@ module Google
|
|
1513
1526
|
property :ingest_delay, as: 'ingestDelay'
|
1514
1527
|
property :launch_stage, as: 'launchStage'
|
1515
1528
|
property :sample_period, as: 'samplePeriod'
|
1529
|
+
collection :time_series_resource_hierarchy_level, as: 'timeSeriesResourceHierarchyLevel'
|
1516
1530
|
end
|
1517
1531
|
end
|
1518
1532
|
|
@@ -1668,6 +1682,8 @@ module Google
|
|
1668
1682
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1669
1683
|
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
|
1670
1684
|
|
1685
|
+
property :experimental_features, as: 'experimentalFeatures', class: Google::Apis::ServicenetworkingV1::ExperimentalFeatures, decorator: Google::Apis::ServicenetworkingV1::ExperimentalFeatures::Representation
|
1686
|
+
|
1671
1687
|
end
|
1672
1688
|
end
|
1673
1689
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicenetworking_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.64.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: 2024-
|
11
|
+
date: 2024-09-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-servicenetworking_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.64.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|