Package not found. Please check the package name and try again.
google-apis-serviceusage_v1 0.11.0 → 0.12.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/serviceusage_v1/classes.rb +20 -14
- data/lib/google/apis/serviceusage_v1/gem_version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be6484f07e9e6403185fc039be8bb06d615671232140ffb24f8429c3eee1a2ca
|
|
4
|
+
data.tar.gz: e4137fbfbd3e8f91606965684232f2ea4863ba7a37fdffda76e89baa9f879e65
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 982cb177f03fa60ad070d0be753c04edea19c37047cca6d8e4ac433519af46cd9a6df17b7d5ce5c4d5718b9fe93d9faad34d234b5972afe5f775f645ed0222f8
|
|
7
|
+
data.tar.gz: 59fb1d073e7bcb2a2464573aa73b2463aacb9bbdd5201f1f672eb99794f92e9d45a443110d5bd98995c978f9579539e825a87ba39540268ce464951753da56aa
|
data/CHANGELOG.md
CHANGED
|
@@ -974,7 +974,9 @@ module Google
|
|
|
974
974
|
# @return [String]
|
|
975
975
|
attr_accessor :service_root_url
|
|
976
976
|
|
|
977
|
-
# A short
|
|
977
|
+
# A short description of what the service does. The summary must be plain text.
|
|
978
|
+
# It becomes the overview of the service displayed in Google Cloud Console. NOTE:
|
|
979
|
+
# This field is equivalent to the standard field `description`.
|
|
978
980
|
# Corresponds to the JSON property `summary`
|
|
979
981
|
# @return [String]
|
|
980
982
|
attr_accessor :summary
|
|
@@ -1004,17 +1006,19 @@ module Google
|
|
|
1004
1006
|
# @return [String]
|
|
1005
1007
|
attr_accessor :deprecation_description
|
|
1006
1008
|
|
|
1007
|
-
#
|
|
1009
|
+
# The description is the comment in front of the selected proto element, such as
|
|
1010
|
+
# a message, a method, a 'service' definition, or a field.
|
|
1008
1011
|
# Corresponds to the JSON property `description`
|
|
1009
1012
|
# @return [String]
|
|
1010
1013
|
attr_accessor :description
|
|
1011
1014
|
|
|
1012
|
-
# The selector is a comma-separated list of patterns
|
|
1013
|
-
#
|
|
1014
|
-
#
|
|
1015
|
-
# qualified name, i.e. "foo.*
|
|
1016
|
-
#
|
|
1017
|
-
# applicable elements, the whole
|
|
1015
|
+
# The selector is a comma-separated list of patterns for any element such as a
|
|
1016
|
+
# method, a field, an enum value. Each pattern is a qualified name of the
|
|
1017
|
+
# element which may end in "*", indicating a wildcard. Wildcards are only
|
|
1018
|
+
# allowed at the end and for a whole component of the qualified name, i.e. "foo.*
|
|
1019
|
+
# " is ok, but not "foo.b*" or "foo.*.bar". A wildcard will match one or more
|
|
1020
|
+
# components. To specify a default for all applicable elements, the whole
|
|
1021
|
+
# pattern "*" is used.
|
|
1018
1022
|
# Corresponds to the JSON property `selector`
|
|
1019
1023
|
# @return [String]
|
|
1020
1024
|
attr_accessor :selector
|
|
@@ -1484,8 +1488,8 @@ module Google
|
|
|
1484
1488
|
|
|
1485
1489
|
# A list of all enum types included in this API service. Enums referenced
|
|
1486
1490
|
# directly or indirectly by the `apis` are automatically included. Enums which
|
|
1487
|
-
# are not referenced but shall be included should be listed here by name
|
|
1488
|
-
# Example: enums: - name: google.someapi.v1.SomeEnum
|
|
1491
|
+
# are not referenced but shall be included should be listed here by name by the
|
|
1492
|
+
# configuration author. Example: enums: - name: google.someapi.v1.SomeEnum
|
|
1489
1493
|
# Corresponds to the JSON property `enums`
|
|
1490
1494
|
# @return [Array<Google::Apis::ServiceusageV1::Enum>]
|
|
1491
1495
|
attr_accessor :enums
|
|
@@ -1618,7 +1622,8 @@ module Google
|
|
|
1618
1622
|
# @return [Array<Google::Apis::ServiceusageV1::Type>]
|
|
1619
1623
|
attr_accessor :system_types
|
|
1620
1624
|
|
|
1621
|
-
# The product title for this service
|
|
1625
|
+
# The product title for this service, it is the name displayed in Google Cloud
|
|
1626
|
+
# Console.
|
|
1622
1627
|
# Corresponds to the JSON property `title`
|
|
1623
1628
|
# @return [String]
|
|
1624
1629
|
attr_accessor :title
|
|
@@ -1626,8 +1631,8 @@ module Google
|
|
|
1626
1631
|
# A list of all proto message types included in this API service. Types
|
|
1627
1632
|
# referenced directly or indirectly by the `apis` are automatically included.
|
|
1628
1633
|
# Messages which are not referenced but shall be included, such as types used by
|
|
1629
|
-
# the `google.protobuf.Any` type, should be listed here by name
|
|
1630
|
-
# - name: google.protobuf.Int32
|
|
1634
|
+
# the `google.protobuf.Any` type, should be listed here by name by the
|
|
1635
|
+
# configuration author. Example: types: - name: google.protobuf.Int32
|
|
1631
1636
|
# Corresponds to the JSON property `types`
|
|
1632
1637
|
# @return [Array<Google::Apis::ServiceusageV1::Type>]
|
|
1633
1638
|
attr_accessor :types
|
|
@@ -3128,7 +3133,8 @@ module Google
|
|
|
3128
3133
|
include Google::Apis::Core::Hashable
|
|
3129
3134
|
|
|
3130
3135
|
# The Markdown content of the page. You can use (== include `path` ==) to
|
|
3131
|
-
# include content from a Markdown file.
|
|
3136
|
+
# include content from a Markdown file. The content can be used to produce the
|
|
3137
|
+
# documentation page such as HTML format page.
|
|
3132
3138
|
# Corresponds to the JSON property `content`
|
|
3133
3139
|
# @return [String]
|
|
3134
3140
|
attr_accessor :content
|
|
@@ -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.12.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210707"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
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.12.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-07-
|
|
11
|
+
date: 2021-07-12 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/master/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.12.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-serviceusage_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|