google-apis-serviceusage_v1 0.55.0 → 0.56.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: 8d5cbb97f7f74e6da32128669f4d7527974657e4e71eec3b1a878390fdabc9e4
|
4
|
+
data.tar.gz: c5bc28a71bd3f56fed437e7f628e015fb1a5a8e8337bd51bffa43c56c91511d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cfad87d7aaf7427e51a6c1aff34b0a9a092b20b752f7815c358d009b8c69a66921ada55915530ee3b4f4b631541896de5605f1898c61db82b65d6f12383ace6a
|
7
|
+
data.tar.gz: 9065d3c0b4fa9c06c8c6aa12d26baf67275b9f6cbb7ba57280cdd8e925f7c4f4b4d5bf4d3ca91bbd25f260d34a2559f892bc3560c2fad271630d71c2aae2f46e
|
data/CHANGELOG.md
CHANGED
@@ -1707,6 +1707,30 @@ module Google
|
|
1707
1707
|
end
|
1708
1708
|
end
|
1709
1709
|
|
1710
|
+
# Experimental features to be included during client library generation. These
|
1711
|
+
# fields will be deprecated once the feature graduates and is enabled by default.
|
1712
|
+
class ExperimentalFeatures
|
1713
|
+
include Google::Apis::Core::Hashable
|
1714
|
+
|
1715
|
+
# Enables generation of asynchronous REST clients if `rest` transport is enabled.
|
1716
|
+
# By default, asynchronous REST clients will not be generated. This feature
|
1717
|
+
# will be enabled by default 1 month after launching the feature in preview
|
1718
|
+
# packages.
|
1719
|
+
# Corresponds to the JSON property `restAsyncIoEnabled`
|
1720
|
+
# @return [Boolean]
|
1721
|
+
attr_accessor :rest_async_io_enabled
|
1722
|
+
alias_method :rest_async_io_enabled?, :rest_async_io_enabled
|
1723
|
+
|
1724
|
+
def initialize(**args)
|
1725
|
+
update!(**args)
|
1726
|
+
end
|
1727
|
+
|
1728
|
+
# Update properties of this object
|
1729
|
+
def update!(**args)
|
1730
|
+
@rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
|
1731
|
+
end
|
1732
|
+
end
|
1733
|
+
|
1710
1734
|
# A single field of a message type.
|
1711
1735
|
class Field
|
1712
1736
|
include Google::Apis::Core::Hashable
|
@@ -3553,6 +3577,11 @@ module Google
|
|
3553
3577
|
# @return [String]
|
3554
3578
|
attr_accessor :sample_period
|
3555
3579
|
|
3580
|
+
# The scope of the timeseries data of the metric.
|
3581
|
+
# Corresponds to the JSON property `timeSeriesResourceHierarchyLevel`
|
3582
|
+
# @return [Array<String>]
|
3583
|
+
attr_accessor :time_series_resource_hierarchy_level
|
3584
|
+
|
3556
3585
|
def initialize(**args)
|
3557
3586
|
update!(**args)
|
3558
3587
|
end
|
@@ -3562,6 +3591,7 @@ module Google
|
|
3562
3591
|
@ingest_delay = args[:ingest_delay] if args.key?(:ingest_delay)
|
3563
3592
|
@launch_stage = args[:launch_stage] if args.key?(:launch_stage)
|
3564
3593
|
@sample_period = args[:sample_period] if args.key?(:sample_period)
|
3594
|
+
@time_series_resource_hierarchy_level = args[:time_series_resource_hierarchy_level] if args.key?(:time_series_resource_hierarchy_level)
|
3565
3595
|
end
|
3566
3596
|
end
|
3567
3597
|
|
@@ -4128,6 +4158,12 @@ module Google
|
|
4128
4158
|
# @return [Google::Apis::ServiceusageV1::CommonLanguageSettings]
|
4129
4159
|
attr_accessor :common
|
4130
4160
|
|
4161
|
+
# Experimental features to be included during client library generation. These
|
4162
|
+
# fields will be deprecated once the feature graduates and is enabled by default.
|
4163
|
+
# Corresponds to the JSON property `experimentalFeatures`
|
4164
|
+
# @return [Google::Apis::ServiceusageV1::ExperimentalFeatures]
|
4165
|
+
attr_accessor :experimental_features
|
4166
|
+
|
4131
4167
|
def initialize(**args)
|
4132
4168
|
update!(**args)
|
4133
4169
|
end
|
@@ -4135,6 +4171,7 @@ module Google
|
|
4135
4171
|
# Update properties of this object
|
4136
4172
|
def update!(**args)
|
4137
4173
|
@common = args[:common] if args.key?(:common)
|
4174
|
+
@experimental_features = args[:experimental_features] if args.key?(:experimental_features)
|
4138
4175
|
end
|
4139
4176
|
end
|
4140
4177
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServiceusageV1
|
18
18
|
# Version of the google-apis-serviceusage_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.56.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 = "20240905"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -304,6 +304,12 @@ module Google
|
|
304
304
|
include Google::Apis::Core::JsonObjectSupport
|
305
305
|
end
|
306
306
|
|
307
|
+
class ExperimentalFeatures
|
308
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
|
+
|
310
|
+
include Google::Apis::Core::JsonObjectSupport
|
311
|
+
end
|
312
|
+
|
307
313
|
class Field
|
308
314
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
315
|
|
@@ -1173,6 +1179,13 @@ module Google
|
|
1173
1179
|
end
|
1174
1180
|
end
|
1175
1181
|
|
1182
|
+
class ExperimentalFeatures
|
1183
|
+
# @private
|
1184
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1185
|
+
property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
|
1186
|
+
end
|
1187
|
+
end
|
1188
|
+
|
1176
1189
|
class Field
|
1177
1190
|
# @private
|
1178
1191
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1585,6 +1598,7 @@ module Google
|
|
1585
1598
|
property :ingest_delay, as: 'ingestDelay'
|
1586
1599
|
property :launch_stage, as: 'launchStage'
|
1587
1600
|
property :sample_period, as: 'samplePeriod'
|
1601
|
+
collection :time_series_resource_hierarchy_level, as: 'timeSeriesResourceHierarchyLevel'
|
1588
1602
|
end
|
1589
1603
|
end
|
1590
1604
|
|
@@ -1719,6 +1733,8 @@ module Google
|
|
1719
1733
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1720
1734
|
property :common, as: 'common', class: Google::Apis::ServiceusageV1::CommonLanguageSettings, decorator: Google::Apis::ServiceusageV1::CommonLanguageSettings::Representation
|
1721
1735
|
|
1736
|
+
property :experimental_features, as: 'experimentalFeatures', class: Google::Apis::ServiceusageV1::ExperimentalFeatures, decorator: Google::Apis::ServiceusageV1::ExperimentalFeatures::Representation
|
1737
|
+
|
1722
1738
|
end
|
1723
1739
|
end
|
1724
1740
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-serviceusage_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.56.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-15 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-serviceusage_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.56.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|