google-apis-serviceusage_v1 0.31.0 → 0.32.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: 7d62946258bc60603183b06d754dbaabe5e126c1a64680de98fc3ee077609e32
|
|
4
|
+
data.tar.gz: 46e89de43d302bd33a45a121f796393f24489887a1954804bf67a788ca9eb977
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f63c88a19e338064673453002d13958edf64d9a3e92242fdde1c15f6bca0ae2a8454b1c0ed8a340b8cb45072b715f096c6a880bebf8132845568fab07e7d799
|
|
7
|
+
data.tar.gz: 3dc04c04eb01bc0fa8c1d16bc404b9b4c6790d5840ee1392829fc18452eaa758de0fa62b8324064a931f6d7317a0d934afd6eb427927288ce92d4e6b19a4e6eb
|
data/CHANGELOG.md
CHANGED
|
@@ -1331,6 +1331,11 @@ module Google
|
|
|
1331
1331
|
class Enum
|
|
1332
1332
|
include Google::Apis::Core::Hashable
|
|
1333
1333
|
|
|
1334
|
+
# The source edition string, only valid when syntax is SYNTAX_EDITIONS.
|
|
1335
|
+
# Corresponds to the JSON property `edition`
|
|
1336
|
+
# @return [String]
|
|
1337
|
+
attr_accessor :edition
|
|
1338
|
+
|
|
1334
1339
|
# Enum value definitions.
|
|
1335
1340
|
# Corresponds to the JSON property `enumvalue`
|
|
1336
1341
|
# @return [Array<Google::Apis::ServiceusageV1::EnumValue>]
|
|
@@ -1363,6 +1368,7 @@ module Google
|
|
|
1363
1368
|
|
|
1364
1369
|
# Update properties of this object
|
|
1365
1370
|
def update!(**args)
|
|
1371
|
+
@edition = args[:edition] if args.key?(:edition)
|
|
1366
1372
|
@enumvalue = args[:enumvalue] if args.key?(:enumvalue)
|
|
1367
1373
|
@name = args[:name] if args.key?(:name)
|
|
1368
1374
|
@options = args[:options] if args.key?(:options)
|
|
@@ -4076,6 +4082,11 @@ module Google
|
|
|
4076
4082
|
class Type
|
|
4077
4083
|
include Google::Apis::Core::Hashable
|
|
4078
4084
|
|
|
4085
|
+
# The source edition string, only valid when syntax is SYNTAX_EDITIONS.
|
|
4086
|
+
# Corresponds to the JSON property `edition`
|
|
4087
|
+
# @return [String]
|
|
4088
|
+
attr_accessor :edition
|
|
4089
|
+
|
|
4079
4090
|
# The list of fields.
|
|
4080
4091
|
# Corresponds to the JSON property `fields`
|
|
4081
4092
|
# @return [Array<Google::Apis::ServiceusageV1::Field>]
|
|
@@ -4113,6 +4124,7 @@ module Google
|
|
|
4113
4124
|
|
|
4114
4125
|
# Update properties of this object
|
|
4115
4126
|
def update!(**args)
|
|
4127
|
+
@edition = args[:edition] if args.key?(:edition)
|
|
4116
4128
|
@fields = args[:fields] if args.key?(:fields)
|
|
4117
4129
|
@name = args[:name] if args.key?(:name)
|
|
4118
4130
|
@oneofs = args[:oneofs] if args.key?(:oneofs)
|
|
@@ -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.32.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230309"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -968,6 +968,7 @@ module Google
|
|
|
968
968
|
class Enum
|
|
969
969
|
# @private
|
|
970
970
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
971
|
+
property :edition, as: 'edition'
|
|
971
972
|
collection :enumvalue, as: 'enumvalue', class: Google::Apis::ServiceusageV1::EnumValue, decorator: Google::Apis::ServiceusageV1::EnumValue::Representation
|
|
972
973
|
|
|
973
974
|
property :name, as: 'name'
|
|
@@ -1590,6 +1591,7 @@ module Google
|
|
|
1590
1591
|
class Type
|
|
1591
1592
|
# @private
|
|
1592
1593
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1594
|
+
property :edition, as: 'edition'
|
|
1593
1595
|
collection :fields, as: 'fields', class: Google::Apis::ServiceusageV1::Field, decorator: Google::Apis::ServiceusageV1::Field::Representation
|
|
1594
1596
|
|
|
1595
1597
|
property :name, as: 'name'
|
|
@@ -156,13 +156,7 @@ module Google
|
|
|
156
156
|
end
|
|
157
157
|
|
|
158
158
|
# Lists operations that match the specified filter in the request. If the server
|
|
159
|
-
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
|
160
|
-
# binding allows API services to override the binding to use different resource
|
|
161
|
-
# name schemes, such as `users/*/operations`. To override the binding, API
|
|
162
|
-
# services can add a binding such as `"/v1/`name=users/*`/operations"` to their
|
|
163
|
-
# service configuration. For backwards compatibility, the default name includes
|
|
164
|
-
# the operations collection id, however overriding users must ensure the name
|
|
165
|
-
# binding is the parent resource, without the operations collection id.
|
|
159
|
+
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
|
166
160
|
# @param [String] filter
|
|
167
161
|
# The standard list filter.
|
|
168
162
|
# @param [String] name
|
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.32.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: 2023-03-
|
|
11
|
+
date: 2023-03-12 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.32.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: []
|