google-apis-serviceusage_v1 0.31.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 18cfc0d8145a3a62071cfdffcde54b1fbf0b56862b95877e170ec3b0fdd3e422
|
4
|
+
data.tar.gz: 81f5e5d1dd5306ee40dbd7cdbc987c2ae5dbda6bde140066c8afa988d705ad48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91e0f73720928121490fae1b503f68f080fb67787e5575e96d393748e990674c000ee50e1ebca11ae58c9c702baef11d62b301b69a603461ed77b389bbf63ece
|
7
|
+
data.tar.gz: 26aed5731205154e52d1c9f0cdf574a71e91389f9c110b02fd7f32cb874536853a43e7a2b90407e4cf8a5f45585facaf72c8b212f00cdf54eedb750a53eb0696
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-serviceusage_v1
|
2
2
|
|
3
|
+
### v0.33.0 (2023-04-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230329
|
6
|
+
|
7
|
+
### v0.32.0 (2023-03-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230309
|
10
|
+
|
3
11
|
### v0.31.0 (2023-03-05)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230226
|
@@ -719,7 +719,9 @@ module Google
|
|
719
719
|
# @return [Google::Apis::ServiceusageV1::RubySettings]
|
720
720
|
attr_accessor :ruby_settings
|
721
721
|
|
722
|
-
# Version of the API to apply these settings to.
|
722
|
+
# Version of the API to apply these settings to. This is the full protobuf
|
723
|
+
# package for the API, ending in the version element. Examples: "google.cloud.
|
724
|
+
# speech.v1" and "google.spanner.admin.database.v1".
|
723
725
|
# Corresponds to the JSON property `version`
|
724
726
|
# @return [String]
|
725
727
|
attr_accessor :version
|
@@ -1184,6 +1186,42 @@ module Google
|
|
1184
1186
|
# @return [Google::Apis::ServiceusageV1::CommonLanguageSettings]
|
1185
1187
|
attr_accessor :common
|
1186
1188
|
|
1189
|
+
# Namespaces which must be aliased in snippets due to a known (but non-generator-
|
1190
|
+
# predictable) naming collision
|
1191
|
+
# Corresponds to the JSON property `forcedNamespaceAliases`
|
1192
|
+
# @return [Array<String>]
|
1193
|
+
attr_accessor :forced_namespace_aliases
|
1194
|
+
|
1195
|
+
# Method signatures (in the form "service.method(signature)") which are provided
|
1196
|
+
# separately, so shouldn't be generated. Snippets *calling* these methods are
|
1197
|
+
# still generated, however.
|
1198
|
+
# Corresponds to the JSON property `handwrittenSignatures`
|
1199
|
+
# @return [Array<String>]
|
1200
|
+
attr_accessor :handwritten_signatures
|
1201
|
+
|
1202
|
+
# List of full resource types to ignore during generation. This is typically
|
1203
|
+
# used for API-specific Location resources, which should be handled by the
|
1204
|
+
# generator as if they were actually the common Location resources. Example
|
1205
|
+
# entry: "documentai.googleapis.com/Location"
|
1206
|
+
# Corresponds to the JSON property `ignoredResources`
|
1207
|
+
# @return [Array<String>]
|
1208
|
+
attr_accessor :ignored_resources
|
1209
|
+
|
1210
|
+
# Map from full resource types to the effective short name for the resource.
|
1211
|
+
# This is used when otherwise resource named from different services would cause
|
1212
|
+
# naming collisions. Example entry: "datalabeling.googleapis.com/Dataset": "
|
1213
|
+
# DataLabelingDataset"
|
1214
|
+
# Corresponds to the JSON property `renamedResources`
|
1215
|
+
# @return [Hash<String,String>]
|
1216
|
+
attr_accessor :renamed_resources
|
1217
|
+
|
1218
|
+
# Map from original service names to renamed versions. This is used when the
|
1219
|
+
# default generated types would cause a naming conflict. (Neither name is fully-
|
1220
|
+
# qualified.) Example: Subscriber to SubscriberServiceApi.
|
1221
|
+
# Corresponds to the JSON property `renamedServices`
|
1222
|
+
# @return [Hash<String,String>]
|
1223
|
+
attr_accessor :renamed_services
|
1224
|
+
|
1187
1225
|
def initialize(**args)
|
1188
1226
|
update!(**args)
|
1189
1227
|
end
|
@@ -1191,6 +1229,11 @@ module Google
|
|
1191
1229
|
# Update properties of this object
|
1192
1230
|
def update!(**args)
|
1193
1231
|
@common = args[:common] if args.key?(:common)
|
1232
|
+
@forced_namespace_aliases = args[:forced_namespace_aliases] if args.key?(:forced_namespace_aliases)
|
1233
|
+
@handwritten_signatures = args[:handwritten_signatures] if args.key?(:handwritten_signatures)
|
1234
|
+
@ignored_resources = args[:ignored_resources] if args.key?(:ignored_resources)
|
1235
|
+
@renamed_resources = args[:renamed_resources] if args.key?(:renamed_resources)
|
1236
|
+
@renamed_services = args[:renamed_services] if args.key?(:renamed_services)
|
1194
1237
|
end
|
1195
1238
|
end
|
1196
1239
|
|
@@ -1331,6 +1374,11 @@ module Google
|
|
1331
1374
|
class Enum
|
1332
1375
|
include Google::Apis::Core::Hashable
|
1333
1376
|
|
1377
|
+
# The source edition string, only valid when syntax is SYNTAX_EDITIONS.
|
1378
|
+
# Corresponds to the JSON property `edition`
|
1379
|
+
# @return [String]
|
1380
|
+
attr_accessor :edition
|
1381
|
+
|
1334
1382
|
# Enum value definitions.
|
1335
1383
|
# Corresponds to the JSON property `enumvalue`
|
1336
1384
|
# @return [Array<Google::Apis::ServiceusageV1::EnumValue>]
|
@@ -1363,6 +1411,7 @@ module Google
|
|
1363
1411
|
|
1364
1412
|
# Update properties of this object
|
1365
1413
|
def update!(**args)
|
1414
|
+
@edition = args[:edition] if args.key?(:edition)
|
1366
1415
|
@enumvalue = args[:enumvalue] if args.key?(:enumvalue)
|
1367
1416
|
@name = args[:name] if args.key?(:name)
|
1368
1417
|
@options = args[:options] if args.key?(:options)
|
@@ -3109,7 +3158,7 @@ module Google
|
|
3109
3158
|
# AccessControl The mixin construct implies that all methods in `AccessControl`
|
3110
3159
|
# are also declared with same name and request/response types in `Storage`. A
|
3111
3160
|
# documentation generator or annotation processor will see the effective `
|
3112
|
-
# Storage.GetAcl` method after
|
3161
|
+
# Storage.GetAcl` method after inherting documentation and annotations as
|
3113
3162
|
# follows: service Storage ` // Get the underlying ACL object. rpc GetAcl(
|
3114
3163
|
# GetAclRequest) returns (Acl) ` option (google.api.http).get = "/v2/`resource=**
|
3115
3164
|
# `:getAcl"; ` ... ` Note how the version in the path pattern changed from `v1`
|
@@ -4076,6 +4125,11 @@ module Google
|
|
4076
4125
|
class Type
|
4077
4126
|
include Google::Apis::Core::Hashable
|
4078
4127
|
|
4128
|
+
# The source edition string, only valid when syntax is SYNTAX_EDITIONS.
|
4129
|
+
# Corresponds to the JSON property `edition`
|
4130
|
+
# @return [String]
|
4131
|
+
attr_accessor :edition
|
4132
|
+
|
4079
4133
|
# The list of fields.
|
4080
4134
|
# Corresponds to the JSON property `fields`
|
4081
4135
|
# @return [Array<Google::Apis::ServiceusageV1::Field>]
|
@@ -4113,6 +4167,7 @@ module Google
|
|
4113
4167
|
|
4114
4168
|
# Update properties of this object
|
4115
4169
|
def update!(**args)
|
4170
|
+
@edition = args[:edition] if args.key?(:edition)
|
4116
4171
|
@fields = args[:fields] if args.key?(:fields)
|
4117
4172
|
@name = args[:name] if args.key?(:name)
|
4118
4173
|
@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.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 = "20230329"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -924,6 +924,11 @@ module Google
|
|
924
924
|
class Representation < Google::Apis::Core::JsonRepresentation
|
925
925
|
property :common, as: 'common', class: Google::Apis::ServiceusageV1::CommonLanguageSettings, decorator: Google::Apis::ServiceusageV1::CommonLanguageSettings::Representation
|
926
926
|
|
927
|
+
collection :forced_namespace_aliases, as: 'forcedNamespaceAliases'
|
928
|
+
collection :handwritten_signatures, as: 'handwrittenSignatures'
|
929
|
+
collection :ignored_resources, as: 'ignoredResources'
|
930
|
+
hash :renamed_resources, as: 'renamedResources'
|
931
|
+
hash :renamed_services, as: 'renamedServices'
|
927
932
|
end
|
928
933
|
end
|
929
934
|
|
@@ -968,6 +973,7 @@ module Google
|
|
968
973
|
class Enum
|
969
974
|
# @private
|
970
975
|
class Representation < Google::Apis::Core::JsonRepresentation
|
976
|
+
property :edition, as: 'edition'
|
971
977
|
collection :enumvalue, as: 'enumvalue', class: Google::Apis::ServiceusageV1::EnumValue, decorator: Google::Apis::ServiceusageV1::EnumValue::Representation
|
972
978
|
|
973
979
|
property :name, as: 'name'
|
@@ -1590,6 +1596,7 @@ module Google
|
|
1590
1596
|
class Type
|
1591
1597
|
# @private
|
1592
1598
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1599
|
+
property :edition, as: 'edition'
|
1593
1600
|
collection :fields, as: 'fields', class: Google::Apis::ServiceusageV1::Field, decorator: Google::Apis::ServiceusageV1::Field::Representation
|
1594
1601
|
|
1595
1602
|
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.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-
|
11
|
+
date: 2023-04-02 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.33.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: []
|