google-apis-serviceusage_v1beta1 0.32.0 → 0.33.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/serviceusage_v1beta1/classes.rb +12 -0
- data/lib/google/apis/serviceusage_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/serviceusage_v1beta1/representations.rb +2 -0
- data/lib/google/apis/serviceusage_v1beta1/service.rb +1 -7
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0e575b9c462659782789b454e938bedaf34c460b110aa2ace4873c4f96bd9178
|
|
4
|
+
data.tar.gz: b87e134bed505741219f6ea0b7fbfb4ce90d0776661306f6f3c81ee1ac4d43be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a018dc72ad4a8a3210f51cd6485a9d1804a0c0c4e3414511242944da6c92b77ffab3832b7ef4924cd903978c3f9c5f5c7379bb952339206fd4428945eb243cb
|
|
7
|
+
data.tar.gz: e7af70e3e89d05d0831b4a061329d34c2ebeccb762854754e29f454bf7847f09e13338c09b9e3da01f51e2588b4e2a6001d1c062c18e0327dab4d6e942023c5b
|
data/CHANGELOG.md
CHANGED
|
@@ -1409,6 +1409,11 @@ module Google
|
|
|
1409
1409
|
class Enum
|
|
1410
1410
|
include Google::Apis::Core::Hashable
|
|
1411
1411
|
|
|
1412
|
+
# The source edition string, only valid when syntax is SYNTAX_EDITIONS.
|
|
1413
|
+
# Corresponds to the JSON property `edition`
|
|
1414
|
+
# @return [String]
|
|
1415
|
+
attr_accessor :edition
|
|
1416
|
+
|
|
1412
1417
|
# Enum value definitions.
|
|
1413
1418
|
# Corresponds to the JSON property `enumvalue`
|
|
1414
1419
|
# @return [Array<Google::Apis::ServiceusageV1beta1::EnumValue>]
|
|
@@ -1441,6 +1446,7 @@ module Google
|
|
|
1441
1446
|
|
|
1442
1447
|
# Update properties of this object
|
|
1443
1448
|
def update!(**args)
|
|
1449
|
+
@edition = args[:edition] if args.key?(:edition)
|
|
1444
1450
|
@enumvalue = args[:enumvalue] if args.key?(:enumvalue)
|
|
1445
1451
|
@name = args[:name] if args.key?(:name)
|
|
1446
1452
|
@options = args[:options] if args.key?(:options)
|
|
@@ -4566,6 +4572,11 @@ module Google
|
|
|
4566
4572
|
class Type
|
|
4567
4573
|
include Google::Apis::Core::Hashable
|
|
4568
4574
|
|
|
4575
|
+
# The source edition string, only valid when syntax is SYNTAX_EDITIONS.
|
|
4576
|
+
# Corresponds to the JSON property `edition`
|
|
4577
|
+
# @return [String]
|
|
4578
|
+
attr_accessor :edition
|
|
4579
|
+
|
|
4569
4580
|
# The list of fields.
|
|
4570
4581
|
# Corresponds to the JSON property `fields`
|
|
4571
4582
|
# @return [Array<Google::Apis::ServiceusageV1beta1::Field>]
|
|
@@ -4603,6 +4614,7 @@ module Google
|
|
|
4603
4614
|
|
|
4604
4615
|
# Update properties of this object
|
|
4605
4616
|
def update!(**args)
|
|
4617
|
+
@edition = args[:edition] if args.key?(:edition)
|
|
4606
4618
|
@fields = args[:fields] if args.key?(:fields)
|
|
4607
4619
|
@name = args[:name] if args.key?(:name)
|
|
4608
4620
|
@oneofs = args[:oneofs] if args.key?(:oneofs)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ServiceusageV1beta1
|
|
18
18
|
# Version of the google-apis-serviceusage_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.33.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
|
|
@@ -1034,6 +1034,7 @@ module Google
|
|
|
1034
1034
|
class Enum
|
|
1035
1035
|
# @private
|
|
1036
1036
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1037
|
+
property :edition, as: 'edition'
|
|
1037
1038
|
collection :enumvalue, as: 'enumvalue', class: Google::Apis::ServiceusageV1beta1::EnumValue, decorator: Google::Apis::ServiceusageV1beta1::EnumValue::Representation
|
|
1038
1039
|
|
|
1039
1040
|
property :name, as: 'name'
|
|
@@ -1761,6 +1762,7 @@ module Google
|
|
|
1761
1762
|
class Type
|
|
1762
1763
|
# @private
|
|
1763
1764
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1765
|
+
property :edition, as: 'edition'
|
|
1764
1766
|
collection :fields, as: 'fields', class: Google::Apis::ServiceusageV1beta1::Field, decorator: Google::Apis::ServiceusageV1beta1::Field::Representation
|
|
1765
1767
|
|
|
1766
1768
|
property :name, as: 'name'
|
|
@@ -83,13 +83,7 @@ module Google
|
|
|
83
83
|
end
|
|
84
84
|
|
|
85
85
|
# Lists operations that match the specified filter in the request. If the server
|
|
86
|
-
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
|
87
|
-
# binding allows API services to override the binding to use different resource
|
|
88
|
-
# name schemes, such as `users/*/operations`. To override the binding, API
|
|
89
|
-
# services can add a binding such as `"/v1/`name=users/*`/operations"` to their
|
|
90
|
-
# service configuration. For backwards compatibility, the default name includes
|
|
91
|
-
# the operations collection id, however overriding users must ensure the name
|
|
92
|
-
# binding is the parent resource, without the operations collection id.
|
|
86
|
+
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
|
93
87
|
# @param [String] filter
|
|
94
88
|
# The standard list filter.
|
|
95
89
|
# @param [String] name
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-serviceusage_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.33.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_v1beta1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.33.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1beta1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|