google-apis-serviceusage_v1 0.59.0 → 0.60.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: e47fc183b125945903ac857c2b2faefe525499e8b038d48147a14028ca2fd550
|
|
4
|
+
data.tar.gz: a27b0f64acd5978276ea043d7a5f1a8ca9ea8dc9f7ff35c69f4cb876325b1d8d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d16153e1e445a55d1e9a62ca487196a8cf05e3d49f980da70c57584e93bba0e5bfb14e8a8ad6d08b713159ad1c6c76fb0c4e715f2c29ac3e9a21b75679401d8f
|
|
7
|
+
data.tar.gz: 9f343fb2b811576c4f351b34bc0209039c38a884b39151a80d3a36944e5c35a2365905ece27a38a7e2405582790cc635f9da58afee10be1f1414a5f83b61c27e
|
data/CHANGELOG.md
CHANGED
|
@@ -1719,6 +1719,14 @@ module Google
|
|
|
1719
1719
|
class ExperimentalFeatures
|
|
1720
1720
|
include Google::Apis::Core::Hashable
|
|
1721
1721
|
|
|
1722
|
+
# Enables generation of protobuf code using new types that are more Pythonic
|
|
1723
|
+
# which are included in `protobuf>=5.29.x`. This feature will be enabled by
|
|
1724
|
+
# default 1 month after launching the feature in preview packages.
|
|
1725
|
+
# Corresponds to the JSON property `protobufPythonicTypesEnabled`
|
|
1726
|
+
# @return [Boolean]
|
|
1727
|
+
attr_accessor :protobuf_pythonic_types_enabled
|
|
1728
|
+
alias_method :protobuf_pythonic_types_enabled?, :protobuf_pythonic_types_enabled
|
|
1729
|
+
|
|
1722
1730
|
# Enables generation of asynchronous REST clients if `rest` transport is enabled.
|
|
1723
1731
|
# By default, asynchronous REST clients will not be generated. This feature
|
|
1724
1732
|
# will be enabled by default 1 month after launching the feature in preview
|
|
@@ -1734,6 +1742,7 @@ module Google
|
|
|
1734
1742
|
|
|
1735
1743
|
# Update properties of this object
|
|
1736
1744
|
def update!(**args)
|
|
1745
|
+
@protobuf_pythonic_types_enabled = args[:protobuf_pythonic_types_enabled] if args.key?(:protobuf_pythonic_types_enabled)
|
|
1737
1746
|
@rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
|
|
1738
1747
|
end
|
|
1739
1748
|
end
|
|
@@ -1906,6 +1915,13 @@ module Google
|
|
|
1906
1915
|
# @return [Google::Apis::ServiceusageV1::CommonLanguageSettings]
|
|
1907
1916
|
attr_accessor :common
|
|
1908
1917
|
|
|
1918
|
+
# Map of service names to renamed services. Keys are the package relative
|
|
1919
|
+
# service names and values are the name to be used for the service client and
|
|
1920
|
+
# call options. publishing: go_settings: renamed_services: Publisher: TopicAdmin
|
|
1921
|
+
# Corresponds to the JSON property `renamedServices`
|
|
1922
|
+
# @return [Hash<String,String>]
|
|
1923
|
+
attr_accessor :renamed_services
|
|
1924
|
+
|
|
1909
1925
|
def initialize(**args)
|
|
1910
1926
|
update!(**args)
|
|
1911
1927
|
end
|
|
@@ -1913,6 +1929,7 @@ module Google
|
|
|
1913
1929
|
# Update properties of this object
|
|
1914
1930
|
def update!(**args)
|
|
1915
1931
|
@common = args[:common] if args.key?(:common)
|
|
1932
|
+
@renamed_services = args[:renamed_services] if args.key?(:renamed_services)
|
|
1916
1933
|
end
|
|
1917
1934
|
end
|
|
1918
1935
|
|
|
@@ -4515,11 +4532,11 @@ module Google
|
|
|
4515
4532
|
# @return [String]
|
|
4516
4533
|
attr_accessor :name
|
|
4517
4534
|
|
|
4518
|
-
# Specify the unit of the quota limit. It uses the same syntax as
|
|
4519
|
-
# The supported unit kinds are determined by the quota
|
|
4520
|
-
# some examples: * "1/min/`project`" for quota per
|
|
4521
|
-
# order of unit components is insignificant. The "
|
|
4522
|
-
# required to follow the metric unit syntax.
|
|
4535
|
+
# Specify the unit of the quota limit. It uses the same syntax as
|
|
4536
|
+
# MetricDescriptor.unit. The supported unit kinds are determined by the quota
|
|
4537
|
+
# backend system. Here are some examples: * "1/min/`project`" for quota per
|
|
4538
|
+
# minute per project. Note: the order of unit components is insignificant. The "
|
|
4539
|
+
# 1" at the beginning is required to follow the metric unit syntax.
|
|
4523
4540
|
# Corresponds to the JSON property `unit`
|
|
4524
4541
|
# @return [String]
|
|
4525
4542
|
attr_accessor :unit
|
|
@@ -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.60.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20241115"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1238,6 +1238,7 @@ module Google
|
|
|
1238
1238
|
class ExperimentalFeatures
|
|
1239
1239
|
# @private
|
|
1240
1240
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1241
|
+
property :protobuf_pythonic_types_enabled, as: 'protobufPythonicTypesEnabled'
|
|
1241
1242
|
property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
|
|
1242
1243
|
end
|
|
1243
1244
|
end
|
|
@@ -1288,6 +1289,7 @@ module Google
|
|
|
1288
1289
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1289
1290
|
property :common, as: 'common', class: Google::Apis::ServiceusageV1::CommonLanguageSettings, decorator: Google::Apis::ServiceusageV1::CommonLanguageSettings::Representation
|
|
1290
1291
|
|
|
1292
|
+
hash :renamed_services, as: 'renamedServices'
|
|
1291
1293
|
end
|
|
1292
1294
|
end
|
|
1293
1295
|
|
|
@@ -59,8 +59,8 @@ module Google
|
|
|
59
59
|
# Clients can use Operations.GetOperation or other methods to check whether the
|
|
60
60
|
# cancellation succeeded or whether the operation completed despite cancellation.
|
|
61
61
|
# On successful cancellation, the operation is not deleted; instead, it becomes
|
|
62
|
-
# an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
63
|
-
# corresponding to `Code.CANCELLED`.
|
|
62
|
+
# an operation with an Operation.error value with a google.rpc.Status.code of `1`
|
|
63
|
+
# , corresponding to `Code.CANCELLED`.
|
|
64
64
|
# @param [String] name
|
|
65
65
|
# The name of the operation resource to be cancelled.
|
|
66
66
|
# @param [Google::Apis::ServiceusageV1::CancelOperationRequest] cancel_operation_request_object
|
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.60.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: 2024-
|
|
11
|
+
date: 2024-12-04 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.60.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: []
|
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
|
-
rubygems_version: 3.5.
|
|
78
|
+
rubygems_version: 3.5.22
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Service Usage API V1
|