google-apis-serviceconsumermanagement_v1 0.35.0 → 0.37.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: d3e63092721d62394c01aac3089887434919b21493a08ba7b04699273b12d3c8
|
4
|
+
data.tar.gz: ca7fdea78f4cc65535c9a6a376cb400b998f0d1fb68175de7d0d7a34e3a82f9b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 764a982e15599306aca283f9c0dc4d1c2df8e5329354fa978bc36208141edea7125f1cd6b954e36aff0882ee079cbe55087b1c0d176b0e0750ecb68ac90c4449
|
7
|
+
data.tar.gz: e55f9daecb1fcaec8c5d143fbb343633ba2275454c89dbf1583b59e34de13d43c007ad5ce893373fe0d24cb73f30c7f429c24ea5adac16b7c7c106bd1a0fa2e4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-serviceconsumermanagement_v1
|
2
2
|
|
3
|
+
### v0.37.0 (2023-06-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230611
|
6
|
+
|
7
|
+
### v0.36.0 (2023-04-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230426
|
10
|
+
|
3
11
|
### v0.35.0 (2023-04-16)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230412
|
@@ -961,7 +961,7 @@ module Google
|
|
961
961
|
# documentation: summary: > The Google Calendar API gives access to most
|
962
962
|
# calendar features. pages: - name: Overview content: (== include google/foo/
|
963
963
|
# overview.md ==) - name: Tutorial content: (== include google/foo/tutorial.md ==
|
964
|
-
# ) subpages
|
964
|
+
# ) subpages: - name: Java content: (== include google/foo/tutorial_java.md ==)
|
965
965
|
# rules: - selector: google.calendar.Calendar.Get description: > ... - selector:
|
966
966
|
# google.calendar.Calendar.Put description: > ... Documentation is provided in
|
967
967
|
# markdown syntax. In addition to standard markdown features, definition lists,
|
@@ -1011,6 +1011,13 @@ module Google
|
|
1011
1011
|
# @return [Array<Google::Apis::ServiceconsumermanagementV1::DocumentationRule>]
|
1012
1012
|
attr_accessor :rules
|
1013
1013
|
|
1014
|
+
# Specifies section and content to override boilerplate content provided by go/
|
1015
|
+
# api-docgen. Currently overrides following sections: 1. rest.service.
|
1016
|
+
# client_libraries
|
1017
|
+
# Corresponds to the JSON property `sectionOverrides`
|
1018
|
+
# @return [Array<Google::Apis::ServiceconsumermanagementV1::Page>]
|
1019
|
+
attr_accessor :section_overrides
|
1020
|
+
|
1014
1021
|
# Specifies the service root url if the default one (the service name from the
|
1015
1022
|
# yaml file) is not suitable. This can be seen in any fully specified service
|
1016
1023
|
# urls as well as sections that show a base that other urls are relative to.
|
@@ -1035,6 +1042,7 @@ module Google
|
|
1035
1042
|
@overview = args[:overview] if args.key?(:overview)
|
1036
1043
|
@pages = args[:pages] if args.key?(:pages)
|
1037
1044
|
@rules = args[:rules] if args.key?(:rules)
|
1045
|
+
@section_overrides = args[:section_overrides] if args.key?(:section_overrides)
|
1038
1046
|
@service_root_url = args[:service_root_url] if args.key?(:service_root_url)
|
1039
1047
|
@summary = args[:summary] if args.key?(:summary)
|
1040
1048
|
end
|
@@ -1057,6 +1065,12 @@ module Google
|
|
1057
1065
|
# @return [String]
|
1058
1066
|
attr_accessor :description
|
1059
1067
|
|
1068
|
+
# String of comma or space separated case-sensitive words for which method/field
|
1069
|
+
# name replacement will be disabled by go/api-docgen.
|
1070
|
+
# Corresponds to the JSON property `disableReplacementWords`
|
1071
|
+
# @return [String]
|
1072
|
+
attr_accessor :disable_replacement_words
|
1073
|
+
|
1060
1074
|
# The selector is a comma-separated list of patterns for any element such as a
|
1061
1075
|
# method, a field, an enum value. Each pattern is a qualified name of the
|
1062
1076
|
# element which may end in "*", indicating a wildcard. Wildcards are only
|
@@ -1076,6 +1090,7 @@ module Google
|
|
1076
1090
|
def update!(**args)
|
1077
1091
|
@deprecation_description = args[:deprecation_description] if args.key?(:deprecation_description)
|
1078
1092
|
@description = args[:description] if args.key?(:description)
|
1093
|
+
@disable_replacement_words = args[:disable_replacement_words] if args.key?(:disable_replacement_words)
|
1079
1094
|
@selector = args[:selector] if args.key?(:selector)
|
1080
1095
|
end
|
1081
1096
|
end
|
@@ -3110,7 +3125,7 @@ module Google
|
|
3110
3125
|
# documentation: summary: > The Google Calendar API gives access to most
|
3111
3126
|
# calendar features. pages: - name: Overview content: (== include google/foo/
|
3112
3127
|
# overview.md ==) - name: Tutorial content: (== include google/foo/tutorial.md ==
|
3113
|
-
# ) subpages
|
3128
|
+
# ) subpages: - name: Java content: (== include google/foo/tutorial_java.md ==)
|
3114
3129
|
# rules: - selector: google.calendar.Calendar.Get description: > ... - selector:
|
3115
3130
|
# google.calendar.Calendar.Put description: > ... Documentation is provided in
|
3116
3131
|
# markdown syntax. In addition to standard markdown features, definition lists,
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServiceconsumermanagementV1
|
18
18
|
# Version of the google-apis-serviceconsumermanagement_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.37.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230611"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -896,6 +896,8 @@ module Google
|
|
896
896
|
|
897
897
|
collection :rules, as: 'rules', class: Google::Apis::ServiceconsumermanagementV1::DocumentationRule, decorator: Google::Apis::ServiceconsumermanagementV1::DocumentationRule::Representation
|
898
898
|
|
899
|
+
collection :section_overrides, as: 'sectionOverrides', class: Google::Apis::ServiceconsumermanagementV1::Page, decorator: Google::Apis::ServiceconsumermanagementV1::Page::Representation
|
900
|
+
|
899
901
|
property :service_root_url, as: 'serviceRootUrl'
|
900
902
|
property :summary, as: 'summary'
|
901
903
|
end
|
@@ -906,6 +908,7 @@ module Google
|
|
906
908
|
class Representation < Google::Apis::Core::JsonRepresentation
|
907
909
|
property :deprecation_description, as: 'deprecationDescription'
|
908
910
|
property :description, as: 'description'
|
911
|
+
property :disable_replacement_words, as: 'disableReplacementWords'
|
909
912
|
property :selector, as: 'selector'
|
910
913
|
end
|
911
914
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-serviceconsumermanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.37.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: 2023-
|
11
|
+
date: 2023-06-25 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-serviceconsumermanagement_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.37.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|