google-apis-serviceusage_v1 0.6.0 → 0.7.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: 50ed8429811477ebb8a048648f626a886294d2a886c8db1da711e58df7958ded
4
- data.tar.gz: dc5a92c15ea03275a8260b67ab0016b35ec6a248caa0a356018d84e600360042
3
+ metadata.gz: c1a4655ad03f455d1c95b30a42f8ab2dcf9ea889ea77a04c69c16416c053b9eb
4
+ data.tar.gz: 707c56eea0ffc71a7ae2c87c1ad3ecc4ec011cbc596e103ff01ee4c8ce26bf54
5
5
  SHA512:
6
- metadata.gz: d93ccb7185b87f6b02ead6a198d1a6a94eb4c955f217fa72a38ec7178dff890f97ef743800659c67b6dba4f20b696a78cdbd3193bc243a296383386020581de2
7
- data.tar.gz: 54105e574e09a78ffb517aecf298d888f0d07279cafb04696f3da4f758d6ba9b5a89b75617e0a2c409b5d8eac95819a57c4ae5aeba404c5d5668462e56e00a5d
6
+ metadata.gz: '091807d4c296af3bec50f3a76c5c9d0409192c8b6fcf42426a7ab6fc3f511f770f52e5f49542dd14d3d448f3b683e186c81f3acf25b0a24033530e85c04f6e33'
7
+ data.tar.gz: 28f79a8296cee67f69bd1ad143bd4b101c24bdf88d2fae875ae6ebbba60814d5955fa0b084010c9104252c8912901babe52ab31f661fcf4f451a1ace88690726
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-serviceusage_v1
2
2
 
3
+ ### v0.7.0 (2021-05-08)
4
+
5
+ * Regenerated from discovery document revision 20210501
6
+
3
7
  ### v0.6.0 (2021-03-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20210326
@@ -27,19 +27,19 @@ module Google
27
27
  include Google::Apis::Core::Hashable
28
28
 
29
29
  # The cloud resource container at which the quota policy is created. The format
30
- # is `container_type`/`container_number`
30
+ # is ``container_type`/`container_number``
31
31
  # Corresponds to the JSON property `container`
32
32
  # @return [String]
33
33
  attr_accessor :container
34
34
 
35
35
  # If this map is nonempty, then this policy applies only to specific values for
36
36
  # dimensions defined in the limit unit. For example, an policy on a limit with
37
- # the unit 1/`project`/`region` could contain an entry with the key "region" and
38
- # the value "us-east-1"; the policy is only applied to quota consumed in that
39
- # region. This map has the following restrictions: * If "region" appears as a
40
- # key, its value must be a valid Cloud region. * If "zone" appears as a key, its
41
- # value must be a valid Cloud zone. * Keys other than "region" or "zone" are not
42
- # valid.
37
+ # the unit `1/`project`/`region`` could contain an entry with the key `region`
38
+ # and the value `us-east-1`; the policy is only applied to quota consumed in
39
+ # that region. This map has the following restrictions: * If `region` appears as
40
+ # a key, its value must be a valid Cloud region. * If `zone` appears as a key,
41
+ # its value must be a valid Cloud zone. * Keys other than `region` or `zone` are
42
+ # not valid.
43
43
  # Corresponds to the JSON property `dimensions`
44
44
  # @return [Hash<String,String>]
45
45
  attr_accessor :dimensions
@@ -273,11 +273,13 @@ module Google
273
273
  end
274
274
  end
275
275
 
276
- # `Authentication` defines the authentication configuration for an API. Example
277
- # for an API targeted for external use: name: calendar.googleapis.com
276
+ # `Authentication` defines the authentication configuration for API methods
277
+ # provided by an API service. Example: name: calendar.googleapis.com
278
278
  # authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
279
279
  # googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: -
280
- # selector: "*" requirements: provider_id: google_calendar_auth
280
+ # selector: "*" requirements: provider_id: google_calendar_auth - selector:
281
+ # google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
282
+ # auth/calendar.read
281
283
  class Authentication
282
284
  include Google::Apis::Core::Hashable
283
285
 
@@ -756,6 +758,21 @@ module Google
756
758
  end
757
759
  end
758
760
 
761
+ # Metadata message that provides information such as progress, partial failures,
762
+ # and similar information on each GetOperation call of LRO returned by
763
+ # CreateAdminQuotaPolicy.
764
+ class CreateAdminQuotaPolicyMetadata
765
+ include Google::Apis::Core::Hashable
766
+
767
+ def initialize(**args)
768
+ update!(**args)
769
+ end
770
+
771
+ # Update properties of this object
772
+ def update!(**args)
773
+ end
774
+ end
775
+
759
776
  # Customize service error responses. For example, list any service specific
760
777
  # protobuf types that can appear in error detail lists of error responses.
761
778
  # Example: custom_error: types: - google.foo.v1.CustomError - google.foo.v1.
@@ -838,6 +855,21 @@ module Google
838
855
  end
839
856
  end
840
857
 
858
+ # Metadata message that provides information such as progress, partial failures,
859
+ # and similar information on each GetOperation call of LRO returned by
860
+ # DeleteAdminQuotaPolicy.
861
+ class DeleteAdminQuotaPolicyMetadata
862
+ include Google::Apis::Core::Hashable
863
+
864
+ def initialize(**args)
865
+ update!(**args)
866
+ end
867
+
868
+ # Update properties of this object
869
+ def update!(**args)
870
+ end
871
+ end
872
+
841
873
  # Request message for the `DisableService` method.
842
874
  class DisableServiceRequest
843
875
  include Google::Apis::Core::Hashable
@@ -1082,26 +1114,21 @@ module Google
1082
1114
  end
1083
1115
  end
1084
1116
 
1085
- # `Endpoint` describes a network endpoint of a service that serves a set of APIs.
1086
- # It is commonly known as a service endpoint. A service may expose any number
1087
- # of service endpoints, and all service endpoints share the same service
1088
- # definition, such as quota limits and monitoring metrics. Example service
1089
- # configuration: name: library-example.googleapis.com endpoints: # Below entry
1090
- # makes 'google.example.library.v1.Library' # API be served from endpoint
1091
- # address library-example.googleapis.com. # It also allows HTTP OPTIONS calls to
1092
- # be passed to the backend, for # it to decide whether the subsequent cross-
1093
- # origin request is # allowed to proceed. - name: library-example.googleapis.com
1094
- # allow_cors: true
1117
+ # `Endpoint` describes a network address of a service that serves a set of APIs.
1118
+ # It is commonly known as a service endpoint. A service may expose any number of
1119
+ # service endpoints, and all service endpoints share the same service definition,
1120
+ # such as quota limits and monitoring metrics. Example: type: google.api.
1121
+ # Service name: library-example.googleapis.com endpoints: # Declares network
1122
+ # address `https://library-example.googleapis.com` # for service `library-
1123
+ # example.googleapis.com`. The `https` scheme # is implicit for all service
1124
+ # endpoints. Other schemes may be # supported in the future. - name: library-
1125
+ # example.googleapis.com allow_cors: false - name: content-staging-library-
1126
+ # example.googleapis.com # Allows HTTP OPTIONS calls to be passed to the API
1127
+ # frontend, for it # to decide whether the subsequent cross-origin request is
1128
+ # allowed # to proceed. allow_cors: true
1095
1129
  class Endpoint
1096
1130
  include Google::Apis::Core::Hashable
1097
1131
 
1098
- # DEPRECATED: This field is no longer supported. Instead of using aliases,
1099
- # please specify multiple google.api.Endpoint for each of the intended aliases.
1100
- # Additional names that this endpoint will be hosted on.
1101
- # Corresponds to the JSON property `aliases`
1102
- # @return [Array<String>]
1103
- attr_accessor :aliases
1104
-
1105
1132
  # Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing),
1106
1133
  # aka cross-domain traffic, would allow the backends served from this endpoint
1107
1134
  # to receive and respond to HTTP OPTIONS requests. The response will be used by
@@ -1131,7 +1158,6 @@ module Google
1131
1158
 
1132
1159
  # Update properties of this object
1133
1160
  def update!(**args)
1134
- @aliases = args[:aliases] if args.key?(:aliases)
1135
1161
  @allow_cors = args[:allow_cors] if args.key?(:allow_cors)
1136
1162
  @name = args[:name] if args.key?(:name)
1137
1163
  @target = args[:target] if args.key?(:target)
@@ -1289,6 +1315,19 @@ module Google
1289
1315
  end
1290
1316
  end
1291
1317
 
1318
+ # Metadata for the `GetServiceIdentity` method.
1319
+ class GetServiceIdentityMetadata
1320
+ include Google::Apis::Core::Hashable
1321
+
1322
+ def initialize(**args)
1323
+ update!(**args)
1324
+ end
1325
+
1326
+ # Update properties of this object
1327
+ def update!(**args)
1328
+ end
1329
+ end
1330
+
1292
1331
  # Response message for getting service identity.
1293
1332
  class GetServiceIdentityResponse
1294
1333
  include Google::Apis::Core::Hashable
@@ -1315,13 +1354,16 @@ module Google
1315
1354
  end
1316
1355
  end
1317
1356
 
1318
- # `Service` is the root object of Google service configuration schema. It
1319
- # describes basic information about a service, such as the name and the title,
1320
- # and delegates other aspects to sub-sections. Each sub-section is either a
1321
- # proto message or a repeated proto message that configures a specific aspect,
1322
- # such as auth. See each proto message definition for details. Example: type:
1323
- # google.api.Service name: calendar.googleapis.com title: Google Calendar API
1324
- # apis: - name: google.calendar.v3.Calendar authentication: providers: - id:
1357
+ # `Service` is the root object of Google API service configuration (service
1358
+ # config). It describes the basic information about a logical service, such as
1359
+ # the service name and the user-facing title, and delegates other aspects to sub-
1360
+ # sections. Each sub-section is either a proto message or a repeated proto
1361
+ # message that configures a specific aspect, such as auth. For more information,
1362
+ # see each proto message definition. Example: type: google.api.Service name:
1363
+ # calendar.googleapis.com title: Google Calendar API apis: - name: google.
1364
+ # calendar.v3.Calendar visibility: rules: - selector: "google.calendar.v3.*"
1365
+ # restriction: PREVIEW backend: rules: - selector: "google.calendar.v3.*"
1366
+ # address: calendar.example.com authentication: providers: - id:
1325
1367
  # google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs
1326
1368
  # issuer: https://securetoken.google.com rules: - selector: "*" requirements:
1327
1369
  # provider_id: google_calendar_auth
@@ -1337,11 +1379,13 @@ module Google
1337
1379
  # @return [Array<Google::Apis::ServiceusageV1::Api>]
1338
1380
  attr_accessor :apis
1339
1381
 
1340
- # `Authentication` defines the authentication configuration for an API. Example
1341
- # for an API targeted for external use: name: calendar.googleapis.com
1382
+ # `Authentication` defines the authentication configuration for API methods
1383
+ # provided by an API service. Example: name: calendar.googleapis.com
1342
1384
  # authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
1343
1385
  # googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: -
1344
- # selector: "*" requirements: provider_id: google_calendar_auth
1386
+ # selector: "*" requirements: provider_id: google_calendar_auth - selector:
1387
+ # google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
1388
+ # auth/calendar.read
1345
1389
  # Corresponds to the JSON property `authentication`
1346
1390
  # @return [Google::Apis::ServiceusageV1::Authentication]
1347
1391
  attr_accessor :authentication
@@ -1703,11 +1747,13 @@ module Google
1703
1747
  # @return [Array<Google::Apis::ServiceusageV1::Api>]
1704
1748
  attr_accessor :apis
1705
1749
 
1706
- # `Authentication` defines the authentication configuration for an API. Example
1707
- # for an API targeted for external use: name: calendar.googleapis.com
1750
+ # `Authentication` defines the authentication configuration for API methods
1751
+ # provided by an API service. Example: name: calendar.googleapis.com
1708
1752
  # authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
1709
1753
  # googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: -
1710
- # selector: "*" requirements: provider_id: google_calendar_auth
1754
+ # selector: "*" requirements: provider_id: google_calendar_auth - selector:
1755
+ # google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
1756
+ # auth/calendar.read
1711
1757
  # Corresponds to the JSON property `authentication`
1712
1758
  # @return [Google::Apis::ServiceusageV1::Authentication]
1713
1759
  attr_accessor :authentication
@@ -2134,6 +2180,21 @@ module Google
2134
2180
  end
2135
2181
  end
2136
2182
 
2183
+ # Metadata message that provides information such as progress, partial failures,
2184
+ # and similar information on each GetOperation call of LRO returned by
2185
+ # ImportAdminOverrides.
2186
+ class ImportAdminOverridesMetadata
2187
+ include Google::Apis::Core::Hashable
2188
+
2189
+ def initialize(**args)
2190
+ update!(**args)
2191
+ end
2192
+
2193
+ # Update properties of this object
2194
+ def update!(**args)
2195
+ end
2196
+ end
2197
+
2137
2198
  # Response message for ImportAdminOverrides
2138
2199
  class ImportAdminOverridesResponse
2139
2200
  include Google::Apis::Core::Hashable
@@ -2153,6 +2214,21 @@ module Google
2153
2214
  end
2154
2215
  end
2155
2216
 
2217
+ # Metadata message that provides information such as progress, partial failures,
2218
+ # and similar information on each GetOperation call of LRO returned by
2219
+ # ImportAdminQuotaPolicies.
2220
+ class ImportAdminQuotaPoliciesMetadata
2221
+ include Google::Apis::Core::Hashable
2222
+
2223
+ def initialize(**args)
2224
+ update!(**args)
2225
+ end
2226
+
2227
+ # Update properties of this object
2228
+ def update!(**args)
2229
+ end
2230
+ end
2231
+
2156
2232
  # Response message for ImportAdminQuotaPolicies
2157
2233
  class ImportAdminQuotaPoliciesResponse
2158
2234
  include Google::Apis::Core::Hashable
@@ -2172,6 +2248,21 @@ module Google
2172
2248
  end
2173
2249
  end
2174
2250
 
2251
+ # Metadata message that provides information such as progress, partial failures,
2252
+ # and similar information on each GetOperation call of LRO returned by
2253
+ # ImportConsumerOverrides.
2254
+ class ImportConsumerOverridesMetadata
2255
+ include Google::Apis::Core::Hashable
2256
+
2257
+ def initialize(**args)
2258
+ update!(**args)
2259
+ end
2260
+
2261
+ # Update properties of this object
2262
+ def update!(**args)
2263
+ end
2264
+ end
2265
+
2175
2266
  # Response message for ImportConsumerOverrides
2176
2267
  class ImportConsumerOverridesResponse
2177
2268
  include Google::Apis::Core::Hashable
@@ -3233,25 +3324,25 @@ module Google
3233
3324
  class QuotaOverride
3234
3325
  include Google::Apis::Core::Hashable
3235
3326
 
3236
- # The resource name of the ancestor that requested the override. For example: "
3237
- # organizations/12345" or "folders/67890". Used by admin overrides only.
3327
+ # The resource name of the ancestor that requested the override. For example: `
3328
+ # organizations/12345` or `folders/67890`. Used by admin overrides only.
3238
3329
  # Corresponds to the JSON property `adminOverrideAncestor`
3239
3330
  # @return [String]
3240
3331
  attr_accessor :admin_override_ancestor
3241
3332
 
3242
3333
  # If this map is nonempty, then this override applies only to specific values
3243
3334
  # for dimensions defined in the limit unit. For example, an override on a limit
3244
- # with the unit 1/`project`/`region` could contain an entry with the key "region"
3245
- # and the value "us-east-1"; the override is only applied to quota consumed in
3246
- # that region. This map has the following restrictions: * Keys that are not
3247
- # defined in the limit's unit are not valid keys. Any string appearing in `
3248
- # brackets` in the unit (besides `project` or `user`) is a defined key. * "
3249
- # project" is not a valid key; the project is already specified in the parent
3250
- # resource name. * "user" is not a valid key; the API does not support quota
3251
- # overrides that apply only to a specific user. * If "region" appears as a key,
3252
- # its value must be a valid Cloud region. * If "zone" appears as a key, its
3253
- # value must be a valid Cloud zone. * If any valid key other than "region" or "
3254
- # zone" appears in the map, then all valid keys other than "region" or "zone"
3335
+ # with the unit `1/`project`/`region`` could contain an entry with the key `
3336
+ # region` and the value `us-east-1`; the override is only applied to quota
3337
+ # consumed in that region. This map has the following restrictions: * Keys that
3338
+ # are not defined in the limit's unit are not valid keys. Any string appearing
3339
+ # in ``brackets`` in the unit (besides ``project`` or ``user``) is a defined key.
3340
+ # * `project` is not a valid key; the project is already specified in the
3341
+ # parent resource name. * `user` is not a valid key; the API does not support
3342
+ # quota overrides that apply only to a specific user. * If `region` appears as a
3343
+ # key, its value must be a valid Cloud region. * If `zone` appears as a key, its
3344
+ # value must be a valid Cloud zone. * If any valid key other than `region` or `
3345
+ # zone` appears in the map, then all valid keys other than `region` or `zone`
3255
3346
  # must also appear in the map.
3256
3347
  # Corresponds to the JSON property `dimensions`
3257
3348
  # @return [Hash<String,String>]
@@ -3555,6 +3646,21 @@ module Google
3555
3646
  end
3556
3647
  end
3557
3648
 
3649
+ # Metadata message that provides information such as progress, partial failures,
3650
+ # and similar information on each GetOperation call of LRO returned by
3651
+ # UpdateAdminQuotaPolicy.
3652
+ class UpdateAdminQuotaPolicyMetadata
3653
+ include Google::Apis::Core::Hashable
3654
+
3655
+ def initialize(**args)
3656
+ update!(**args)
3657
+ end
3658
+
3659
+ # Update properties of this object
3660
+ def update!(**args)
3661
+ end
3662
+ end
3663
+
3558
3664
  # Configuration controlling usage of a service.
3559
3665
  class Usage
3560
3666
  include Google::Apis::Core::Hashable
@@ -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.6.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210326"
25
+ REVISION = "20210501"
26
26
  end
27
27
  end
28
28
  end
@@ -136,6 +136,12 @@ module Google
136
136
  include Google::Apis::Core::JsonObjectSupport
137
137
  end
138
138
 
139
+ class CreateAdminQuotaPolicyMetadata
140
+ class Representation < Google::Apis::Core::JsonRepresentation; end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
139
145
  class CustomError
140
146
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
147
 
@@ -154,6 +160,12 @@ module Google
154
160
  include Google::Apis::Core::JsonObjectSupport
155
161
  end
156
162
 
163
+ class DeleteAdminQuotaPolicyMetadata
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
157
169
  class DisableServiceRequest
158
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
171
 
@@ -226,6 +238,12 @@ module Google
226
238
  include Google::Apis::Core::JsonObjectSupport
227
239
  end
228
240
 
241
+ class GetServiceIdentityMetadata
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
229
247
  class GetServiceIdentityResponse
230
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
249
 
@@ -280,18 +298,36 @@ module Google
280
298
  include Google::Apis::Core::JsonObjectSupport
281
299
  end
282
300
 
301
+ class ImportAdminOverridesMetadata
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
283
307
  class ImportAdminOverridesResponse
284
308
  class Representation < Google::Apis::Core::JsonRepresentation; end
285
309
 
286
310
  include Google::Apis::Core::JsonObjectSupport
287
311
  end
288
312
 
313
+ class ImportAdminQuotaPoliciesMetadata
314
+ class Representation < Google::Apis::Core::JsonRepresentation; end
315
+
316
+ include Google::Apis::Core::JsonObjectSupport
317
+ end
318
+
289
319
  class ImportAdminQuotaPoliciesResponse
290
320
  class Representation < Google::Apis::Core::JsonRepresentation; end
291
321
 
292
322
  include Google::Apis::Core::JsonObjectSupport
293
323
  end
294
324
 
325
+ class ImportConsumerOverridesMetadata
326
+ class Representation < Google::Apis::Core::JsonRepresentation; end
327
+
328
+ include Google::Apis::Core::JsonObjectSupport
329
+ end
330
+
295
331
  class ImportConsumerOverridesResponse
296
332
  class Representation < Google::Apis::Core::JsonRepresentation; end
297
333
 
@@ -484,6 +520,12 @@ module Google
484
520
  include Google::Apis::Core::JsonObjectSupport
485
521
  end
486
522
 
523
+ class UpdateAdminQuotaPolicyMetadata
524
+ class Representation < Google::Apis::Core::JsonRepresentation; end
525
+
526
+ include Google::Apis::Core::JsonObjectSupport
527
+ end
528
+
487
529
  class Usage
488
530
  class Representation < Google::Apis::Core::JsonRepresentation; end
489
531
 
@@ -680,6 +722,12 @@ module Google
680
722
  end
681
723
  end
682
724
 
725
+ class CreateAdminQuotaPolicyMetadata
726
+ # @private
727
+ class Representation < Google::Apis::Core::JsonRepresentation
728
+ end
729
+ end
730
+
683
731
  class CustomError
684
732
  # @private
685
733
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -705,6 +753,12 @@ module Google
705
753
  end
706
754
  end
707
755
 
756
+ class DeleteAdminQuotaPolicyMetadata
757
+ # @private
758
+ class Representation < Google::Apis::Core::JsonRepresentation
759
+ end
760
+ end
761
+
708
762
  class DisableServiceRequest
709
763
  # @private
710
764
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -775,7 +829,6 @@ module Google
775
829
  class Endpoint
776
830
  # @private
777
831
  class Representation < Google::Apis::Core::JsonRepresentation
778
- collection :aliases, as: 'aliases'
779
832
  property :allow_cors, as: 'allowCors'
780
833
  property :name, as: 'name'
781
834
  property :target, as: 'target'
@@ -823,6 +876,12 @@ module Google
823
876
  end
824
877
  end
825
878
 
879
+ class GetServiceIdentityMetadata
880
+ # @private
881
+ class Representation < Google::Apis::Core::JsonRepresentation
882
+ end
883
+ end
884
+
826
885
  class GetServiceIdentityResponse
827
886
  # @private
828
887
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -973,6 +1032,12 @@ module Google
973
1032
  end
974
1033
  end
975
1034
 
1035
+ class ImportAdminOverridesMetadata
1036
+ # @private
1037
+ class Representation < Google::Apis::Core::JsonRepresentation
1038
+ end
1039
+ end
1040
+
976
1041
  class ImportAdminOverridesResponse
977
1042
  # @private
978
1043
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -981,6 +1046,12 @@ module Google
981
1046
  end
982
1047
  end
983
1048
 
1049
+ class ImportAdminQuotaPoliciesMetadata
1050
+ # @private
1051
+ class Representation < Google::Apis::Core::JsonRepresentation
1052
+ end
1053
+ end
1054
+
984
1055
  class ImportAdminQuotaPoliciesResponse
985
1056
  # @private
986
1057
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -989,6 +1060,12 @@ module Google
989
1060
  end
990
1061
  end
991
1062
 
1063
+ class ImportConsumerOverridesMetadata
1064
+ # @private
1065
+ class Representation < Google::Apis::Core::JsonRepresentation
1066
+ end
1067
+ end
1068
+
992
1069
  class ImportConsumerOverridesResponse
993
1070
  # @private
994
1071
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1305,6 +1382,12 @@ module Google
1305
1382
  end
1306
1383
  end
1307
1384
 
1385
+ class UpdateAdminQuotaPolicyMetadata
1386
+ # @private
1387
+ class Representation < Google::Apis::Core::JsonRepresentation
1388
+ end
1389
+ end
1390
+
1308
1391
  class Usage
1309
1392
  # @private
1310
1393
  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.6.0
4
+ version: 0.7.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: 2021-04-05 00:00:00.000000000 Z
11
+ date: 2021-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-serviceusage_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.6.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.7.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-serviceusage_v1
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.13
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Service Usage API V1