google-apis-serviceusage_v1 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: 1356c00f4580d731c7b87f4840f3795592e8c22db31ab9cdeec82da2968daf5d
|
4
|
+
data.tar.gz: b7aae6b9ae4ea8185559dce371ec41a13663adb544da18d93367e33e07926363
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38c60c66d2ce865babe000089bbbff9fffef1076ae99bb5044f44b3528644c19f3c7b08c7cd13096add8cff0d9b8b74f9e0063b16e68398b767d87db88f06136
|
7
|
+
data.tar.gz: 1771d9b76a7d9032a6b25ec78b5f5cee00223d6747e92ba108c60bf080b871da63e47e7d1b06f60a8f54dbf4b87d52cb3738a0f63a46d4b31866e885a38b7210
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-serviceusage_v1
|
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)
|
@@ -1320,9 +1356,8 @@ module Google
|
|
1320
1356
|
# @return [Array<Google::Apis::ServiceusageV1::DocumentationRule>]
|
1321
1357
|
attr_accessor :rules
|
1322
1358
|
|
1323
|
-
# Specifies section and content to override boilerplate content
|
1324
|
-
#
|
1325
|
-
# client_libraries
|
1359
|
+
# Specifies section and content to override the boilerplate content. Currently
|
1360
|
+
# overrides following sections: 1. rest.service.client_libraries
|
1326
1361
|
# Corresponds to the JSON property `sectionOverrides`
|
1327
1362
|
# @return [Array<Google::Apis::ServiceusageV1::Page>]
|
1328
1363
|
attr_accessor :section_overrides
|
@@ -1376,7 +1411,7 @@ module Google
|
|
1376
1411
|
attr_accessor :description
|
1377
1412
|
|
1378
1413
|
# String of comma or space separated case-sensitive words for which method/field
|
1379
|
-
# name replacement will be disabled
|
1414
|
+
# name replacement will be disabled.
|
1380
1415
|
# Corresponds to the JSON property `disableReplacementWords`
|
1381
1416
|
# @return [String]
|
1382
1417
|
attr_accessor :disable_replacement_words
|
@@ -1743,6 +1778,15 @@ module Google
|
|
1743
1778
|
attr_accessor :rest_async_io_enabled
|
1744
1779
|
alias_method :rest_async_io_enabled?, :rest_async_io_enabled
|
1745
1780
|
|
1781
|
+
# Disables generation of an unversioned Python package for this client library.
|
1782
|
+
# This means that the module names will need to be versioned in import
|
1783
|
+
# statements. For example `import google.cloud.library_v2` instead of `import
|
1784
|
+
# google.cloud.library`.
|
1785
|
+
# Corresponds to the JSON property `unversionedPackageDisabled`
|
1786
|
+
# @return [Boolean]
|
1787
|
+
attr_accessor :unversioned_package_disabled
|
1788
|
+
alias_method :unversioned_package_disabled?, :unversioned_package_disabled
|
1789
|
+
|
1746
1790
|
def initialize(**args)
|
1747
1791
|
update!(**args)
|
1748
1792
|
end
|
@@ -1751,6 +1795,7 @@ module Google
|
|
1751
1795
|
def update!(**args)
|
1752
1796
|
@protobuf_pythonic_types_enabled = args[:protobuf_pythonic_types_enabled] if args.key?(:protobuf_pythonic_types_enabled)
|
1753
1797
|
@rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
|
1798
|
+
@unversioned_package_disabled = args[:unversioned_package_disabled] if args.key?(:unversioned_package_disabled)
|
1754
1799
|
end
|
1755
1800
|
end
|
1756
1801
|
|
@@ -1965,6 +2010,14 @@ module Google
|
|
1965
2010
|
# @return [Array<Google::Apis::ServiceusageV1::Api>]
|
1966
2011
|
attr_accessor :apis
|
1967
2012
|
|
2013
|
+
# Configuration aspects. This is a repeated field to allow multiple aspects to
|
2014
|
+
# be configured. The kind field in each ConfigAspect specifies the type of
|
2015
|
+
# aspect. The spec field contains the configuration for that aspect. The schema
|
2016
|
+
# for the spec field is defined by the backend service owners.
|
2017
|
+
# Corresponds to the JSON property `aspects`
|
2018
|
+
# @return [Array<Google::Apis::ServiceusageV1::Aspect>]
|
2019
|
+
attr_accessor :aspects
|
2020
|
+
|
1968
2021
|
# `Authentication` defines the authentication configuration for API methods
|
1969
2022
|
# provided by an API service. Example: name: calendar.googleapis.com
|
1970
2023
|
# authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
|
@@ -2244,6 +2297,7 @@ module Google
|
|
2244
2297
|
# Update properties of this object
|
2245
2298
|
def update!(**args)
|
2246
2299
|
@apis = args[:apis] if args.key?(:apis)
|
2300
|
+
@aspects = args[:aspects] if args.key?(:aspects)
|
2247
2301
|
@authentication = args[:authentication] if args.key?(:authentication)
|
2248
2302
|
@backend = args[:backend] if args.key?(:backend)
|
2249
2303
|
@billing = args[:billing] if args.key?(:billing)
|
@@ -2629,9 +2683,9 @@ module Google
|
|
2629
2683
|
include Google::Apis::Core::Hashable
|
2630
2684
|
|
2631
2685
|
# An analysis result including blockers and warnings.
|
2632
|
-
# Corresponds to the JSON property `
|
2686
|
+
# Corresponds to the JSON property `analysisResult`
|
2633
2687
|
# @return [Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaAnalysisResult]
|
2634
|
-
attr_accessor :
|
2688
|
+
attr_accessor :analysis_result
|
2635
2689
|
|
2636
2690
|
# Output only. The type of analysis.
|
2637
2691
|
# Corresponds to the JSON property `analysisType`
|
@@ -2656,7 +2710,7 @@ module Google
|
|
2656
2710
|
|
2657
2711
|
# Update properties of this object
|
2658
2712
|
def update!(**args)
|
2659
|
-
@
|
2713
|
+
@analysis_result = args[:analysis_result] if args.key?(:analysis_result)
|
2660
2714
|
@analysis_type = args[:analysis_type] if args.key?(:analysis_type)
|
2661
2715
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2662
2716
|
@service = args[:service] if args.key?(:service)
|
@@ -3096,6 +3150,18 @@ module Google
|
|
3096
3150
|
# @return [String]
|
3097
3151
|
attr_accessor :impact_type
|
3098
3152
|
|
3153
|
+
# The parent resource that the analysis is based on and the service name that
|
3154
|
+
# the analysis is for. Example: `projects/100/services/compute.googleapis.com`,
|
3155
|
+
# folders/101/services/compute.googleapis.com` and `organizations/102/services/
|
3156
|
+
# compute.googleapis.com`. Usually, the parent resource here is same as the
|
3157
|
+
# parent resource of the analyzed policy. However, for some analysis types, the
|
3158
|
+
# parent can be different. For example, for resource existence analysis, if the
|
3159
|
+
# parent resource of the analyzed policy is a folder or an organization, the
|
3160
|
+
# parent resource here can still be the project that contains the resources.
|
3161
|
+
# Corresponds to the JSON property `parent`
|
3162
|
+
# @return [String]
|
3163
|
+
attr_accessor :parent
|
3164
|
+
|
3099
3165
|
def initialize(**args)
|
3100
3166
|
update!(**args)
|
3101
3167
|
end
|
@@ -3104,6 +3170,7 @@ module Google
|
|
3104
3170
|
def update!(**args)
|
3105
3171
|
@detail = args[:detail] if args.key?(:detail)
|
3106
3172
|
@impact_type = args[:impact_type] if args.key?(:impact_type)
|
3173
|
+
@parent = args[:parent] if args.key?(:parent)
|
3107
3174
|
end
|
3108
3175
|
end
|
3109
3176
|
|
@@ -4250,7 +4317,7 @@ module Google
|
|
4250
4317
|
class Page
|
4251
4318
|
include Google::Apis::Core::Hashable
|
4252
4319
|
|
4253
|
-
# The Markdown content of the page. You can use (== include `path` ==) to
|
4320
|
+
# The Markdown content of the page. You can use ```(== include `path` ==)``` to
|
4254
4321
|
# include content from a Markdown file. The content can be used to produce the
|
4255
4322
|
# documentation page such as HTML format page.
|
4256
4323
|
# Corresponds to the JSON property `content`
|
@@ -4713,6 +4780,17 @@ module Google
|
|
4713
4780
|
class SelectiveGapicGeneration
|
4714
4781
|
include Google::Apis::Core::Hashable
|
4715
4782
|
|
4783
|
+
# Setting this to true indicates to the client generators that methods that
|
4784
|
+
# would be excluded from the generation should instead be generated in a way
|
4785
|
+
# that indicates these methods should not be consumed by end users. How this is
|
4786
|
+
# expressed is up to individual language implementations to decide. Some
|
4787
|
+
# examples may be: added annotations, obfuscated identifiers, or other language
|
4788
|
+
# idiomatic patterns.
|
4789
|
+
# Corresponds to the JSON property `generateOmittedAsInternal`
|
4790
|
+
# @return [Boolean]
|
4791
|
+
attr_accessor :generate_omitted_as_internal
|
4792
|
+
alias_method :generate_omitted_as_internal?, :generate_omitted_as_internal
|
4793
|
+
|
4716
4794
|
# An allowlist of the fully qualified names of RPCs that should be included on
|
4717
4795
|
# public client surfaces.
|
4718
4796
|
# Corresponds to the JSON property `methods`
|
@@ -4725,6 +4803,7 @@ module Google
|
|
4725
4803
|
|
4726
4804
|
# Update properties of this object
|
4727
4805
|
def update!(**args)
|
4806
|
+
@generate_omitted_as_internal = args[:generate_omitted_as_internal] if args.key?(:generate_omitted_as_internal)
|
4728
4807
|
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
4729
4808
|
end
|
4730
4809
|
end
|
@@ -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.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
|
|
@@ -856,6 +862,14 @@ module Google
|
|
856
862
|
end
|
857
863
|
end
|
858
864
|
|
865
|
+
class Aspect
|
866
|
+
# @private
|
867
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
868
|
+
property :kind, as: 'kind'
|
869
|
+
hash :spec, as: 'spec'
|
870
|
+
end
|
871
|
+
end
|
872
|
+
|
859
873
|
class AuthProvider
|
860
874
|
# @private
|
861
875
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -914,6 +928,7 @@ module Google
|
|
914
928
|
property :deadline, as: 'deadline'
|
915
929
|
property :disable_auth, as: 'disableAuth'
|
916
930
|
property :jwt_audience, as: 'jwtAudience'
|
931
|
+
property :load_balancing_policy, as: 'loadBalancingPolicy'
|
917
932
|
property :min_deadline, as: 'minDeadline'
|
918
933
|
property :operation_deadline, as: 'operationDeadline'
|
919
934
|
hash :overrides_by_request_protocol, as: 'overridesByRequestProtocol', class: Google::Apis::ServiceusageV1::BackendRule, decorator: Google::Apis::ServiceusageV1::BackendRule::Representation
|
@@ -1241,6 +1256,7 @@ module Google
|
|
1241
1256
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1242
1257
|
property :protobuf_pythonic_types_enabled, as: 'protobufPythonicTypesEnabled'
|
1243
1258
|
property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
|
1259
|
+
property :unversioned_package_disabled, as: 'unversionedPackageDisabled'
|
1244
1260
|
end
|
1245
1261
|
end
|
1246
1262
|
|
@@ -1299,6 +1315,8 @@ module Google
|
|
1299
1315
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1300
1316
|
collection :apis, as: 'apis', class: Google::Apis::ServiceusageV1::Api, decorator: Google::Apis::ServiceusageV1::Api::Representation
|
1301
1317
|
|
1318
|
+
collection :aspects, as: 'aspects', class: Google::Apis::ServiceusageV1::Aspect, decorator: Google::Apis::ServiceusageV1::Aspect::Representation
|
1319
|
+
|
1302
1320
|
property :authentication, as: 'authentication', class: Google::Apis::ServiceusageV1::Authentication, decorator: Google::Apis::ServiceusageV1::Authentication::Representation
|
1303
1321
|
|
1304
1322
|
property :backend, as: 'backend', class: Google::Apis::ServiceusageV1::Backend, decorator: Google::Apis::ServiceusageV1::Backend::Representation
|
@@ -1439,7 +1457,7 @@ module Google
|
|
1439
1457
|
class GoogleApiServiceusageV2betaAnalysis
|
1440
1458
|
# @private
|
1441
1459
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1442
|
-
property :
|
1460
|
+
property :analysis_result, as: 'analysisResult', class: Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaAnalysisResult, decorator: Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaAnalysisResult::Representation
|
1443
1461
|
|
1444
1462
|
property :analysis_type, as: 'analysisType'
|
1445
1463
|
property :display_name, as: 'displayName'
|
@@ -1537,6 +1555,7 @@ module Google
|
|
1537
1555
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1538
1556
|
property :detail, as: 'detail'
|
1539
1557
|
property :impact_type, as: 'impactType'
|
1558
|
+
property :parent, as: 'parent'
|
1540
1559
|
end
|
1541
1560
|
end
|
1542
1561
|
|
@@ -1929,6 +1948,7 @@ module Google
|
|
1929
1948
|
class SelectiveGapicGeneration
|
1930
1949
|
# @private
|
1931
1950
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1951
|
+
property :generate_omitted_as_internal, as: 'generateOmittedAsInternal'
|
1932
1952
|
collection :methods_prop, as: 'methods'
|
1933
1953
|
end
|
1934
1954
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.63.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1
|
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 V1
|
82
79
|
test_files: []
|