google-apis-serviceconsumermanagement_v1 0.39.0 → 0.41.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0287a051642060edc5060f687d995705989ba14e1ecddc403c3c1754b9f6f557'
|
4
|
+
data.tar.gz: 8edf78c7ba7d8c393ecd81ee4d46ca615a189e3e8a5815deb8f34aace04c55ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52292e98f7d316ff16ac329b824b54db902d11f5d22c521ed7adde542e752f957cadb80dff21129828863425d4a2c40c0e9dd57e7235c52c99f2480423b54a68
|
7
|
+
data.tar.gz: 64347cbd78c96cbb7c323016a79deb8c46205dd8e296fbd4208ab6e6d4aae68236888554dc42ea009db6f9e732911564018459fbcfce63e7263bde140d0843fe
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-serviceconsumermanagement_v1
|
2
2
|
|
3
|
+
### v0.41.0 (2023-12-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231210
|
6
|
+
|
7
|
+
### v0.40.0 (2023-12-03)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231128
|
10
|
+
|
3
11
|
### v0.39.0 (2023-08-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230806
|
@@ -2108,6 +2108,15 @@ module Google
|
|
2108
2108
|
class MethodSettings
|
2109
2109
|
include Google::Apis::Core::Hashable
|
2110
2110
|
|
2111
|
+
# List of top-level fields of the request message, that should be automatically
|
2112
|
+
# populated by the client libraries based on their (google.api.field_info).
|
2113
|
+
# format. Currently supported format: UUID4. Example of a YAML configuration:
|
2114
|
+
# publishing: method_settings: - selector: google.example.v1.ExampleService.
|
2115
|
+
# CreateExample auto_populated_fields: - request_id
|
2116
|
+
# Corresponds to the JSON property `autoPopulatedFields`
|
2117
|
+
# @return [Array<String>]
|
2118
|
+
attr_accessor :auto_populated_fields
|
2119
|
+
|
2111
2120
|
# Describes settings to use when generating API methods that use the long-
|
2112
2121
|
# running operation pattern. All default values below are from those used in the
|
2113
2122
|
# client library generators (e.g. [Java](https://github.com/googleapis/gapic-
|
@@ -2129,6 +2138,7 @@ module Google
|
|
2129
2138
|
|
2130
2139
|
# Update properties of this object
|
2131
2140
|
def update!(**args)
|
2141
|
+
@auto_populated_fields = args[:auto_populated_fields] if args.key?(:auto_populated_fields)
|
2132
2142
|
@long_running = args[:long_running] if args.key?(:long_running)
|
2133
2143
|
@selector = args[:selector] if args.key?(:selector)
|
2134
2144
|
end
|
@@ -2850,6 +2860,12 @@ module Google
|
|
2850
2860
|
# @return [String]
|
2851
2861
|
attr_accessor :proto_reference_documentation_uri
|
2852
2862
|
|
2863
|
+
# Optional link to REST reference documentation. Example: https://cloud.google.
|
2864
|
+
# com/pubsub/lite/docs/reference/rest
|
2865
|
+
# Corresponds to the JSON property `restReferenceDocumentationUri`
|
2866
|
+
# @return [String]
|
2867
|
+
attr_accessor :rest_reference_documentation_uri
|
2868
|
+
|
2853
2869
|
def initialize(**args)
|
2854
2870
|
update!(**args)
|
2855
2871
|
end
|
@@ -2866,6 +2882,7 @@ module Google
|
|
2866
2882
|
@new_issue_uri = args[:new_issue_uri] if args.key?(:new_issue_uri)
|
2867
2883
|
@organization = args[:organization] if args.key?(:organization)
|
2868
2884
|
@proto_reference_documentation_uri = args[:proto_reference_documentation_uri] if args.key?(:proto_reference_documentation_uri)
|
2885
|
+
@rest_reference_documentation_uri = args[:rest_reference_documentation_uri] if args.key?(:rest_reference_documentation_uri)
|
2869
2886
|
end
|
2870
2887
|
end
|
2871
2888
|
|
@@ -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.41.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 = "20231210"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1154,6 +1154,7 @@ module Google
|
|
1154
1154
|
class MethodSettings
|
1155
1155
|
# @private
|
1156
1156
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1157
|
+
collection :auto_populated_fields, as: 'autoPopulatedFields'
|
1157
1158
|
property :long_running, as: 'longRunning', class: Google::Apis::ServiceconsumermanagementV1::LongRunning, decorator: Google::Apis::ServiceconsumermanagementV1::LongRunning::Representation
|
1158
1159
|
|
1159
1160
|
property :selector, as: 'selector'
|
@@ -1311,6 +1312,7 @@ module Google
|
|
1311
1312
|
property :new_issue_uri, as: 'newIssueUri'
|
1312
1313
|
property :organization, as: 'organization'
|
1313
1314
|
property :proto_reference_documentation_uri, as: 'protoReferenceDocumentationUri'
|
1315
|
+
property :rest_reference_documentation_uri, as: 'restReferenceDocumentationUri'
|
1314
1316
|
end
|
1315
1317
|
end
|
1316
1318
|
|
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.41.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-12-17 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.41.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: []
|
@@ -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.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Service Consumer Management API V1
|