google-apis-serviceusage_v1beta1 0.61.0 → 0.63.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: 1b6e8e5d5a6d861bebfe8f012aa52bee0586a57b8cef26af1a21316e43ff52cd
|
4
|
+
data.tar.gz: 57732c423dd7e4793c14b26b858455b4464240bc3f119352091720ef7f7442f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abd2b20964414c361cb36d059f1829ece7d9ab3ef42b5b4f293ea58ddba46391d12f5f6ca5a210379a653035a4a4bef0c0ea161c61c518f45ba1447561a1db19
|
7
|
+
data.tar.gz: 51831bf4bb59b34991f65ac676129b85ef95eaeea47b430d4ef318438eba56463c39f2a57dd99ba1a917f8aa0b9de816736851248973c79bf6dd3540ac2b607c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-serviceusage_v1beta1
|
2
2
|
|
3
|
+
### v0.63.0 (2025-02-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250218
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
8
|
+
### v0.62.0 (2025-01-05)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20241219
|
11
|
+
|
3
12
|
### v0.61.0 (2024-12-15)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241205
|
@@ -302,6 +302,33 @@ module Google
|
|
302
302
|
end
|
303
303
|
end
|
304
304
|
|
305
|
+
# Aspect represents Generic aspect. It is used to configure an aspect without
|
306
|
+
# making direct changes to service.proto
|
307
|
+
class Aspect
|
308
|
+
include Google::Apis::Core::Hashable
|
309
|
+
|
310
|
+
# The type of this aspect configuration.
|
311
|
+
# Corresponds to the JSON property `kind`
|
312
|
+
# @return [String]
|
313
|
+
attr_accessor :kind
|
314
|
+
|
315
|
+
# Content of the configuration. The underlying schema should be defined by
|
316
|
+
# Aspect owners as protobuf message under `apiserving/configaspects/proto`.
|
317
|
+
# Corresponds to the JSON property `spec`
|
318
|
+
# @return [Hash<String,Object>]
|
319
|
+
attr_accessor :spec
|
320
|
+
|
321
|
+
def initialize(**args)
|
322
|
+
update!(**args)
|
323
|
+
end
|
324
|
+
|
325
|
+
# Update properties of this object
|
326
|
+
def update!(**args)
|
327
|
+
@kind = args[:kind] if args.key?(:kind)
|
328
|
+
@spec = args[:spec] if args.key?(:spec)
|
329
|
+
end
|
330
|
+
end
|
331
|
+
|
305
332
|
# Configuration for an authentication provider, including support for [JSON Web
|
306
333
|
# Token (JWT)](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32).
|
307
334
|
class AuthProvider
|
@@ -559,6 +586,14 @@ module Google
|
|
559
586
|
# @return [String]
|
560
587
|
attr_accessor :jwt_audience
|
561
588
|
|
589
|
+
# The load balancing policy used for connection to the application backend.
|
590
|
+
# Defined as an arbitrary string to accomondate custom load balancing policies
|
591
|
+
# supported by the underlying channel, but suggest most users use one of the
|
592
|
+
# standard policies, such as the default, "RoundRobin".
|
593
|
+
# Corresponds to the JSON property `loadBalancingPolicy`
|
594
|
+
# @return [String]
|
595
|
+
attr_accessor :load_balancing_policy
|
596
|
+
|
562
597
|
# Deprecated, do not use.
|
563
598
|
# Corresponds to the JSON property `minDeadline`
|
564
599
|
# @return [Float]
|
@@ -609,6 +644,7 @@ module Google
|
|
609
644
|
@deadline = args[:deadline] if args.key?(:deadline)
|
610
645
|
@disable_auth = args[:disable_auth] if args.key?(:disable_auth)
|
611
646
|
@jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
|
647
|
+
@load_balancing_policy = args[:load_balancing_policy] if args.key?(:load_balancing_policy)
|
612
648
|
@min_deadline = args[:min_deadline] if args.key?(:min_deadline)
|
613
649
|
@operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
|
614
650
|
@overrides_by_request_protocol = args[:overrides_by_request_protocol] if args.key?(:overrides_by_request_protocol)
|
@@ -1398,9 +1434,8 @@ module Google
|
|
1398
1434
|
# @return [Array<Google::Apis::ServiceusageV1beta1::DocumentationRule>]
|
1399
1435
|
attr_accessor :rules
|
1400
1436
|
|
1401
|
-
# Specifies section and content to override boilerplate content
|
1402
|
-
#
|
1403
|
-
# client_libraries
|
1437
|
+
# Specifies section and content to override the boilerplate content. Currently
|
1438
|
+
# overrides following sections: 1. rest.service.client_libraries
|
1404
1439
|
# Corresponds to the JSON property `sectionOverrides`
|
1405
1440
|
# @return [Array<Google::Apis::ServiceusageV1beta1::Page>]
|
1406
1441
|
attr_accessor :section_overrides
|
@@ -1454,7 +1489,7 @@ module Google
|
|
1454
1489
|
attr_accessor :description
|
1455
1490
|
|
1456
1491
|
# String of comma or space separated case-sensitive words for which method/field
|
1457
|
-
# name replacement will be disabled
|
1492
|
+
# name replacement will be disabled.
|
1458
1493
|
# Corresponds to the JSON property `disableReplacementWords`
|
1459
1494
|
# @return [String]
|
1460
1495
|
attr_accessor :disable_replacement_words
|
@@ -1821,6 +1856,15 @@ module Google
|
|
1821
1856
|
attr_accessor :rest_async_io_enabled
|
1822
1857
|
alias_method :rest_async_io_enabled?, :rest_async_io_enabled
|
1823
1858
|
|
1859
|
+
# Disables generation of an unversioned Python package for this client library.
|
1860
|
+
# This means that the module names will need to be versioned in import
|
1861
|
+
# statements. For example `import google.cloud.library_v2` instead of `import
|
1862
|
+
# google.cloud.library`.
|
1863
|
+
# Corresponds to the JSON property `unversionedPackageDisabled`
|
1864
|
+
# @return [Boolean]
|
1865
|
+
attr_accessor :unversioned_package_disabled
|
1866
|
+
alias_method :unversioned_package_disabled?, :unversioned_package_disabled
|
1867
|
+
|
1824
1868
|
def initialize(**args)
|
1825
1869
|
update!(**args)
|
1826
1870
|
end
|
@@ -1829,6 +1873,7 @@ module Google
|
|
1829
1873
|
def update!(**args)
|
1830
1874
|
@protobuf_pythonic_types_enabled = args[:protobuf_pythonic_types_enabled] if args.key?(:protobuf_pythonic_types_enabled)
|
1831
1875
|
@rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
|
1876
|
+
@unversioned_package_disabled = args[:unversioned_package_disabled] if args.key?(:unversioned_package_disabled)
|
1832
1877
|
end
|
1833
1878
|
end
|
1834
1879
|
|
@@ -2043,6 +2088,14 @@ module Google
|
|
2043
2088
|
# @return [Array<Google::Apis::ServiceusageV1beta1::Api>]
|
2044
2089
|
attr_accessor :apis
|
2045
2090
|
|
2091
|
+
# Configuration aspects. This is a repeated field to allow multiple aspects to
|
2092
|
+
# be configured. The kind field in each ConfigAspect specifies the type of
|
2093
|
+
# aspect. The spec field contains the configuration for that aspect. The schema
|
2094
|
+
# for the spec field is defined by the backend service owners.
|
2095
|
+
# Corresponds to the JSON property `aspects`
|
2096
|
+
# @return [Array<Google::Apis::ServiceusageV1beta1::Aspect>]
|
2097
|
+
attr_accessor :aspects
|
2098
|
+
|
2046
2099
|
# `Authentication` defines the authentication configuration for API methods
|
2047
2100
|
# provided by an API service. Example: name: calendar.googleapis.com
|
2048
2101
|
# authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
|
@@ -2322,6 +2375,7 @@ module Google
|
|
2322
2375
|
# Update properties of this object
|
2323
2376
|
def update!(**args)
|
2324
2377
|
@apis = args[:apis] if args.key?(:apis)
|
2378
|
+
@aspects = args[:aspects] if args.key?(:aspects)
|
2325
2379
|
@authentication = args[:authentication] if args.key?(:authentication)
|
2326
2380
|
@backend = args[:backend] if args.key?(:backend)
|
2327
2381
|
@billing = args[:billing] if args.key?(:billing)
|
@@ -2707,9 +2761,9 @@ module Google
|
|
2707
2761
|
include Google::Apis::Core::Hashable
|
2708
2762
|
|
2709
2763
|
# An analysis result including blockers and warnings.
|
2710
|
-
# Corresponds to the JSON property `
|
2764
|
+
# Corresponds to the JSON property `analysisResult`
|
2711
2765
|
# @return [Google::Apis::ServiceusageV1beta1::GoogleApiServiceusageV2betaAnalysisResult]
|
2712
|
-
attr_accessor :
|
2766
|
+
attr_accessor :analysis_result
|
2713
2767
|
|
2714
2768
|
# Output only. The type of analysis.
|
2715
2769
|
# Corresponds to the JSON property `analysisType`
|
@@ -2734,7 +2788,7 @@ module Google
|
|
2734
2788
|
|
2735
2789
|
# Update properties of this object
|
2736
2790
|
def update!(**args)
|
2737
|
-
@
|
2791
|
+
@analysis_result = args[:analysis_result] if args.key?(:analysis_result)
|
2738
2792
|
@analysis_type = args[:analysis_type] if args.key?(:analysis_type)
|
2739
2793
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2740
2794
|
@service = args[:service] if args.key?(:service)
|
@@ -3174,6 +3228,18 @@ module Google
|
|
3174
3228
|
# @return [String]
|
3175
3229
|
attr_accessor :impact_type
|
3176
3230
|
|
3231
|
+
# The parent resource that the analysis is based on and the service name that
|
3232
|
+
# the analysis is for. Example: `projects/100/services/compute.googleapis.com`,
|
3233
|
+
# folders/101/services/compute.googleapis.com` and `organizations/102/services/
|
3234
|
+
# compute.googleapis.com`. Usually, the parent resource here is same as the
|
3235
|
+
# parent resource of the analyzed policy. However, for some analysis types, the
|
3236
|
+
# parent can be different. For example, for resource existence analysis, if the
|
3237
|
+
# parent resource of the analyzed policy is a folder or an organization, the
|
3238
|
+
# parent resource here can still be the project that contains the resources.
|
3239
|
+
# Corresponds to the JSON property `parent`
|
3240
|
+
# @return [String]
|
3241
|
+
attr_accessor :parent
|
3242
|
+
|
3177
3243
|
def initialize(**args)
|
3178
3244
|
update!(**args)
|
3179
3245
|
end
|
@@ -3182,6 +3248,7 @@ module Google
|
|
3182
3248
|
def update!(**args)
|
3183
3249
|
@detail = args[:detail] if args.key?(:detail)
|
3184
3250
|
@impact_type = args[:impact_type] if args.key?(:impact_type)
|
3251
|
+
@parent = args[:parent] if args.key?(:parent)
|
3185
3252
|
end
|
3186
3253
|
end
|
3187
3254
|
|
@@ -4506,7 +4573,7 @@ module Google
|
|
4506
4573
|
class Page
|
4507
4574
|
include Google::Apis::Core::Hashable
|
4508
4575
|
|
4509
|
-
# The Markdown content of the page. You can use (== include `path` ==) to
|
4576
|
+
# The Markdown content of the page. You can use ```(== include `path` ==)``` to
|
4510
4577
|
# include content from a Markdown file. The content can be used to produce the
|
4511
4578
|
# documentation page such as HTML format page.
|
4512
4579
|
# Corresponds to the JSON property `content`
|
@@ -5129,6 +5196,17 @@ module Google
|
|
5129
5196
|
class SelectiveGapicGeneration
|
5130
5197
|
include Google::Apis::Core::Hashable
|
5131
5198
|
|
5199
|
+
# Setting this to true indicates to the client generators that methods that
|
5200
|
+
# would be excluded from the generation should instead be generated in a way
|
5201
|
+
# that indicates these methods should not be consumed by end users. How this is
|
5202
|
+
# expressed is up to individual language implementations to decide. Some
|
5203
|
+
# examples may be: added annotations, obfuscated identifiers, or other language
|
5204
|
+
# idiomatic patterns.
|
5205
|
+
# Corresponds to the JSON property `generateOmittedAsInternal`
|
5206
|
+
# @return [Boolean]
|
5207
|
+
attr_accessor :generate_omitted_as_internal
|
5208
|
+
alias_method :generate_omitted_as_internal?, :generate_omitted_as_internal
|
5209
|
+
|
5132
5210
|
# An allowlist of the fully qualified names of RPCs that should be included on
|
5133
5211
|
# public client surfaces.
|
5134
5212
|
# Corresponds to the JSON property `methods`
|
@@ -5141,6 +5219,7 @@ module Google
|
|
5141
5219
|
|
5142
5220
|
# Update properties of this object
|
5143
5221
|
def update!(**args)
|
5222
|
+
@generate_omitted_as_internal = args[:generate_omitted_as_internal] if args.key?(:generate_omitted_as_internal)
|
5144
5223
|
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
5145
5224
|
end
|
5146
5225
|
end
|
@@ -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.63.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250218"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -70,6 +70,12 @@ module Google
|
|
70
70
|
include Google::Apis::Core::JsonObjectSupport
|
71
71
|
end
|
72
72
|
|
73
|
+
class Aspect
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
73
79
|
class AuthProvider
|
74
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
81
|
|
@@ -922,6 +928,14 @@ module Google
|
|
922
928
|
end
|
923
929
|
end
|
924
930
|
|
931
|
+
class Aspect
|
932
|
+
# @private
|
933
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
934
|
+
property :kind, as: 'kind'
|
935
|
+
hash :spec, as: 'spec'
|
936
|
+
end
|
937
|
+
end
|
938
|
+
|
925
939
|
class AuthProvider
|
926
940
|
# @private
|
927
941
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -980,6 +994,7 @@ module Google
|
|
980
994
|
property :deadline, as: 'deadline'
|
981
995
|
property :disable_auth, as: 'disableAuth'
|
982
996
|
property :jwt_audience, as: 'jwtAudience'
|
997
|
+
property :load_balancing_policy, as: 'loadBalancingPolicy'
|
983
998
|
property :min_deadline, as: 'minDeadline'
|
984
999
|
property :operation_deadline, as: 'operationDeadline'
|
985
1000
|
hash :overrides_by_request_protocol, as: 'overridesByRequestProtocol', class: Google::Apis::ServiceusageV1beta1::BackendRule, decorator: Google::Apis::ServiceusageV1beta1::BackendRule::Representation
|
@@ -1319,6 +1334,7 @@ module Google
|
|
1319
1334
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1320
1335
|
property :protobuf_pythonic_types_enabled, as: 'protobufPythonicTypesEnabled'
|
1321
1336
|
property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
|
1337
|
+
property :unversioned_package_disabled, as: 'unversionedPackageDisabled'
|
1322
1338
|
end
|
1323
1339
|
end
|
1324
1340
|
|
@@ -1377,6 +1393,8 @@ module Google
|
|
1377
1393
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1378
1394
|
collection :apis, as: 'apis', class: Google::Apis::ServiceusageV1beta1::Api, decorator: Google::Apis::ServiceusageV1beta1::Api::Representation
|
1379
1395
|
|
1396
|
+
collection :aspects, as: 'aspects', class: Google::Apis::ServiceusageV1beta1::Aspect, decorator: Google::Apis::ServiceusageV1beta1::Aspect::Representation
|
1397
|
+
|
1380
1398
|
property :authentication, as: 'authentication', class: Google::Apis::ServiceusageV1beta1::Authentication, decorator: Google::Apis::ServiceusageV1beta1::Authentication::Representation
|
1381
1399
|
|
1382
1400
|
property :backend, as: 'backend', class: Google::Apis::ServiceusageV1beta1::Backend, decorator: Google::Apis::ServiceusageV1beta1::Backend::Representation
|
@@ -1517,7 +1535,7 @@ module Google
|
|
1517
1535
|
class GoogleApiServiceusageV2betaAnalysis
|
1518
1536
|
# @private
|
1519
1537
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1520
|
-
property :
|
1538
|
+
property :analysis_result, as: 'analysisResult', class: Google::Apis::ServiceusageV1beta1::GoogleApiServiceusageV2betaAnalysisResult, decorator: Google::Apis::ServiceusageV1beta1::GoogleApiServiceusageV2betaAnalysisResult::Representation
|
1521
1539
|
|
1522
1540
|
property :analysis_type, as: 'analysisType'
|
1523
1541
|
property :display_name, as: 'displayName'
|
@@ -1615,6 +1633,7 @@ module Google
|
|
1615
1633
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1616
1634
|
property :detail, as: 'detail'
|
1617
1635
|
property :impact_type, as: 'impactType'
|
1636
|
+
property :parent, as: 'parent'
|
1618
1637
|
end
|
1619
1638
|
end
|
1620
1639
|
|
@@ -2100,6 +2119,7 @@ module Google
|
|
2100
2119
|
class SelectiveGapicGeneration
|
2101
2120
|
# @private
|
2102
2121
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2122
|
+
property :generate_omitted_as_internal, as: 'generateOmittedAsInternal'
|
2103
2123
|
collection :methods_prop, as: 'methods'
|
2104
2124
|
end
|
2105
2125
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.63.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.63.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1beta1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Service Usage API V1beta1
|
82
79
|
test_files: []
|