google-apis-serviceusage_v1 0.55.0 → 0.57.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: 9ec187df46e45d5f694b0d80035c6ae140e0335681c182c0da563bf172984180
|
4
|
+
data.tar.gz: 19bfaf0a9c5df278cd209c9e8bd8852e4db016b68dc3aa4d69461bf95a4eaf27
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf0e84b44fa41c8960f24c6378304d99aa918980691eafa121cca7ad6f03cd1b7eec812f82721d23dd5e301093a3eb86cbc9e085268e662c645ab2dcd8d6cc12
|
7
|
+
data.tar.gz: 10534bcf589d692ec850de7c590614a158e38cd7e1945f8e5ecfb0b58d1e82c85c14d97cb048d9d2aaefe23363a86fb9d9da873fb4126ef5382edbac5aaf61a7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-serviceusage_v1
|
2
2
|
|
3
|
+
### v0.57.0 (2024-09-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240919
|
6
|
+
|
7
|
+
### v0.56.0 (2024-09-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240905
|
10
|
+
|
3
11
|
### v0.55.0 (2024-08-18)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240811
|
@@ -901,6 +901,12 @@ module Google
|
|
901
901
|
# @return [String]
|
902
902
|
attr_accessor :reference_docs_uri
|
903
903
|
|
904
|
+
# This message is used to configure the generation of a subset of the RPCs in a
|
905
|
+
# service for client libraries.
|
906
|
+
# Corresponds to the JSON property `selectiveGapicGeneration`
|
907
|
+
# @return [Google::Apis::ServiceusageV1::SelectiveGapicGeneration]
|
908
|
+
attr_accessor :selective_gapic_generation
|
909
|
+
|
904
910
|
def initialize(**args)
|
905
911
|
update!(**args)
|
906
912
|
end
|
@@ -909,6 +915,7 @@ module Google
|
|
909
915
|
def update!(**args)
|
910
916
|
@destinations = args[:destinations] if args.key?(:destinations)
|
911
917
|
@reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri)
|
918
|
+
@selective_gapic_generation = args[:selective_gapic_generation] if args.key?(:selective_gapic_generation)
|
912
919
|
end
|
913
920
|
end
|
914
921
|
|
@@ -1707,6 +1714,30 @@ module Google
|
|
1707
1714
|
end
|
1708
1715
|
end
|
1709
1716
|
|
1717
|
+
# Experimental features to be included during client library generation. These
|
1718
|
+
# fields will be deprecated once the feature graduates and is enabled by default.
|
1719
|
+
class ExperimentalFeatures
|
1720
|
+
include Google::Apis::Core::Hashable
|
1721
|
+
|
1722
|
+
# Enables generation of asynchronous REST clients if `rest` transport is enabled.
|
1723
|
+
# By default, asynchronous REST clients will not be generated. This feature
|
1724
|
+
# will be enabled by default 1 month after launching the feature in preview
|
1725
|
+
# packages.
|
1726
|
+
# Corresponds to the JSON property `restAsyncIoEnabled`
|
1727
|
+
# @return [Boolean]
|
1728
|
+
attr_accessor :rest_async_io_enabled
|
1729
|
+
alias_method :rest_async_io_enabled?, :rest_async_io_enabled
|
1730
|
+
|
1731
|
+
def initialize(**args)
|
1732
|
+
update!(**args)
|
1733
|
+
end
|
1734
|
+
|
1735
|
+
# Update properties of this object
|
1736
|
+
def update!(**args)
|
1737
|
+
@rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
|
1738
|
+
end
|
1739
|
+
end
|
1740
|
+
|
1710
1741
|
# A single field of a message type.
|
1711
1742
|
class Field
|
1712
1743
|
include Google::Apis::Core::Hashable
|
@@ -3553,6 +3584,11 @@ module Google
|
|
3553
3584
|
# @return [String]
|
3554
3585
|
attr_accessor :sample_period
|
3555
3586
|
|
3587
|
+
# The scope of the timeseries data of the metric.
|
3588
|
+
# Corresponds to the JSON property `timeSeriesResourceHierarchyLevel`
|
3589
|
+
# @return [Array<String>]
|
3590
|
+
attr_accessor :time_series_resource_hierarchy_level
|
3591
|
+
|
3556
3592
|
def initialize(**args)
|
3557
3593
|
update!(**args)
|
3558
3594
|
end
|
@@ -3562,6 +3598,7 @@ module Google
|
|
3562
3598
|
@ingest_delay = args[:ingest_delay] if args.key?(:ingest_delay)
|
3563
3599
|
@launch_stage = args[:launch_stage] if args.key?(:launch_stage)
|
3564
3600
|
@sample_period = args[:sample_period] if args.key?(:sample_period)
|
3601
|
+
@time_series_resource_hierarchy_level = args[:time_series_resource_hierarchy_level] if args.key?(:time_series_resource_hierarchy_level)
|
3565
3602
|
end
|
3566
3603
|
end
|
3567
3604
|
|
@@ -4128,6 +4165,12 @@ module Google
|
|
4128
4165
|
# @return [Google::Apis::ServiceusageV1::CommonLanguageSettings]
|
4129
4166
|
attr_accessor :common
|
4130
4167
|
|
4168
|
+
# Experimental features to be included during client library generation. These
|
4169
|
+
# fields will be deprecated once the feature graduates and is enabled by default.
|
4170
|
+
# Corresponds to the JSON property `experimentalFeatures`
|
4171
|
+
# @return [Google::Apis::ServiceusageV1::ExperimentalFeatures]
|
4172
|
+
attr_accessor :experimental_features
|
4173
|
+
|
4131
4174
|
def initialize(**args)
|
4132
4175
|
update!(**args)
|
4133
4176
|
end
|
@@ -4135,6 +4178,7 @@ module Google
|
|
4135
4178
|
# Update properties of this object
|
4136
4179
|
def update!(**args)
|
4137
4180
|
@common = args[:common] if args.key?(:common)
|
4181
|
+
@experimental_features = args[:experimental_features] if args.key?(:experimental_features)
|
4138
4182
|
end
|
4139
4183
|
end
|
4140
4184
|
|
@@ -4423,6 +4467,27 @@ module Google
|
|
4423
4467
|
end
|
4424
4468
|
end
|
4425
4469
|
|
4470
|
+
# This message is used to configure the generation of a subset of the RPCs in a
|
4471
|
+
# service for client libraries.
|
4472
|
+
class SelectiveGapicGeneration
|
4473
|
+
include Google::Apis::Core::Hashable
|
4474
|
+
|
4475
|
+
# An allowlist of the fully qualified names of RPCs that should be included on
|
4476
|
+
# public client surfaces.
|
4477
|
+
# Corresponds to the JSON property `methods`
|
4478
|
+
# @return [Array<String>]
|
4479
|
+
attr_accessor :methods_prop
|
4480
|
+
|
4481
|
+
def initialize(**args)
|
4482
|
+
update!(**args)
|
4483
|
+
end
|
4484
|
+
|
4485
|
+
# Update properties of this object
|
4486
|
+
def update!(**args)
|
4487
|
+
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
4488
|
+
end
|
4489
|
+
end
|
4490
|
+
|
4426
4491
|
# Service identity for a service. This is the identity that service producer
|
4427
4492
|
# should use to access consumer resources.
|
4428
4493
|
class ServiceIdentity
|
@@ -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.57.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 = "20240919"
|
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
|
|
@@ -646,6 +652,12 @@ module Google
|
|
646
652
|
include Google::Apis::Core::JsonObjectSupport
|
647
653
|
end
|
648
654
|
|
655
|
+
class SelectiveGapicGeneration
|
656
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
657
|
+
|
658
|
+
include Google::Apis::Core::JsonObjectSupport
|
659
|
+
end
|
660
|
+
|
649
661
|
class ServiceIdentity
|
650
662
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
651
663
|
|
@@ -957,6 +969,8 @@ module Google
|
|
957
969
|
class Representation < Google::Apis::Core::JsonRepresentation
|
958
970
|
collection :destinations, as: 'destinations'
|
959
971
|
property :reference_docs_uri, as: 'referenceDocsUri'
|
972
|
+
property :selective_gapic_generation, as: 'selectiveGapicGeneration', class: Google::Apis::ServiceusageV1::SelectiveGapicGeneration, decorator: Google::Apis::ServiceusageV1::SelectiveGapicGeneration::Representation
|
973
|
+
|
960
974
|
end
|
961
975
|
end
|
962
976
|
|
@@ -1173,6 +1187,13 @@ module Google
|
|
1173
1187
|
end
|
1174
1188
|
end
|
1175
1189
|
|
1190
|
+
class ExperimentalFeatures
|
1191
|
+
# @private
|
1192
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1193
|
+
property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
|
1194
|
+
end
|
1195
|
+
end
|
1196
|
+
|
1176
1197
|
class Field
|
1177
1198
|
# @private
|
1178
1199
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1585,6 +1606,7 @@ module Google
|
|
1585
1606
|
property :ingest_delay, as: 'ingestDelay'
|
1586
1607
|
property :launch_stage, as: 'launchStage'
|
1587
1608
|
property :sample_period, as: 'samplePeriod'
|
1609
|
+
collection :time_series_resource_hierarchy_level, as: 'timeSeriesResourceHierarchyLevel'
|
1588
1610
|
end
|
1589
1611
|
end
|
1590
1612
|
|
@@ -1719,6 +1741,8 @@ module Google
|
|
1719
1741
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1720
1742
|
property :common, as: 'common', class: Google::Apis::ServiceusageV1::CommonLanguageSettings, decorator: Google::Apis::ServiceusageV1::CommonLanguageSettings::Representation
|
1721
1743
|
|
1744
|
+
property :experimental_features, as: 'experimentalFeatures', class: Google::Apis::ServiceusageV1::ExperimentalFeatures, decorator: Google::Apis::ServiceusageV1::ExperimentalFeatures::Representation
|
1745
|
+
|
1722
1746
|
end
|
1723
1747
|
end
|
1724
1748
|
|
@@ -1782,6 +1806,13 @@ module Google
|
|
1782
1806
|
end
|
1783
1807
|
end
|
1784
1808
|
|
1809
|
+
class SelectiveGapicGeneration
|
1810
|
+
# @private
|
1811
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1812
|
+
collection :methods_prop, as: 'methods'
|
1813
|
+
end
|
1814
|
+
end
|
1815
|
+
|
1785
1816
|
class ServiceIdentity
|
1786
1817
|
# @private
|
1787
1818
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.57.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-29 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.57.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: []
|