google-apis-servicemanagement_v1 0.7.0 → 0.8.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/servicemanagement_v1/classes.rb +42 -38
- data/lib/google/apis/servicemanagement_v1/gem_version.rb +2 -2
- data/lib/google/apis/servicemanagement_v1/representations.rb +0 -1
- data/lib/google/apis/servicemanagement_v1/service.rb +1 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6e0fe21afd059dd5c6f4fdee4cf1ad1079c72c337590ac7b8d00bba6d0379bb
|
4
|
+
data.tar.gz: b50ce1b0b38f93733a8350adb6da7c0b046def12427d7c35768c7acdb9a835b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a70dac878834441bac1f72bb2adbab62f9d4aa65626a058cdd7da7f1453b916ad8ff7209bde4b0f26251d53e623c213d52928d1d2c169c9664e6887f062c7ca
|
7
|
+
data.tar.gz: 0c73b883aa794cee8d6de35a51f1ddb18507aa85ea4e3a6b2f14f73d42920c9d7a24a961e8f5588f476ab1e2a8658ba992e8b795a6d7f2ee2db3aeb2de4fa7d9
|
data/CHANGELOG.md
CHANGED
@@ -300,11 +300,13 @@ module Google
|
|
300
300
|
end
|
301
301
|
end
|
302
302
|
|
303
|
-
# `Authentication` defines the authentication configuration for
|
304
|
-
#
|
303
|
+
# `Authentication` defines the authentication configuration for API methods
|
304
|
+
# provided by an API service. Example: name: calendar.googleapis.com
|
305
305
|
# authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
|
306
306
|
# googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: -
|
307
|
-
# selector: "*" requirements: provider_id: google_calendar_auth
|
307
|
+
# selector: "*" requirements: provider_id: google_calendar_auth - selector:
|
308
|
+
# google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
|
309
|
+
# auth/calendar.read
|
308
310
|
class Authentication
|
309
311
|
include Google::Apis::Core::Hashable
|
310
312
|
|
@@ -1151,26 +1153,21 @@ module Google
|
|
1151
1153
|
end
|
1152
1154
|
end
|
1153
1155
|
|
1154
|
-
# `Endpoint` describes a network
|
1155
|
-
# It is commonly known as a service endpoint. A service may expose any number
|
1156
|
-
#
|
1157
|
-
#
|
1158
|
-
#
|
1159
|
-
#
|
1160
|
-
#
|
1161
|
-
#
|
1162
|
-
#
|
1163
|
-
#
|
1156
|
+
# `Endpoint` describes a network address of a service that serves a set of APIs.
|
1157
|
+
# It is commonly known as a service endpoint. A service may expose any number of
|
1158
|
+
# service endpoints, and all service endpoints share the same service definition,
|
1159
|
+
# such as quota limits and monitoring metrics. Example: type: google.api.
|
1160
|
+
# Service name: library-example.googleapis.com endpoints: # Declares network
|
1161
|
+
# address `https://library-example.googleapis.com` # for service `library-
|
1162
|
+
# example.googleapis.com`. The `https` scheme # is implicit for all service
|
1163
|
+
# endpoints. Other schemes may be # supported in the future. - name: library-
|
1164
|
+
# example.googleapis.com allow_cors: false - name: content-staging-library-
|
1165
|
+
# example.googleapis.com # Allows HTTP OPTIONS calls to be passed to the API
|
1166
|
+
# frontend, for it # to decide whether the subsequent cross-origin request is
|
1167
|
+
# allowed # to proceed. allow_cors: true
|
1164
1168
|
class Endpoint
|
1165
1169
|
include Google::Apis::Core::Hashable
|
1166
1170
|
|
1167
|
-
# DEPRECATED: This field is no longer supported. Instead of using aliases,
|
1168
|
-
# please specify multiple google.api.Endpoint for each of the intended aliases.
|
1169
|
-
# Additional names that this endpoint will be hosted on.
|
1170
|
-
# Corresponds to the JSON property `aliases`
|
1171
|
-
# @return [Array<String>]
|
1172
|
-
attr_accessor :aliases
|
1173
|
-
|
1174
1171
|
# Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing),
|
1175
1172
|
# aka cross-domain traffic, would allow the backends served from this endpoint
|
1176
1173
|
# to receive and respond to HTTP OPTIONS requests. The response will be used by
|
@@ -1200,7 +1197,6 @@ module Google
|
|
1200
1197
|
|
1201
1198
|
# Update properties of this object
|
1202
1199
|
def update!(**args)
|
1203
|
-
@aliases = args[:aliases] if args.key?(:aliases)
|
1204
1200
|
@allow_cors = args[:allow_cors] if args.key?(:allow_cors)
|
1205
1201
|
@name = args[:name] if args.key?(:name)
|
1206
1202
|
@target = args[:target] if args.key?(:target)
|
@@ -3126,13 +3122,16 @@ module Google
|
|
3126
3122
|
end
|
3127
3123
|
end
|
3128
3124
|
|
3129
|
-
# `Service` is the root object of Google service configuration
|
3130
|
-
# describes basic information about a service, such as
|
3131
|
-
# and delegates other aspects to sub-
|
3132
|
-
#
|
3133
|
-
#
|
3134
|
-
# google.api.Service name:
|
3135
|
-
#
|
3125
|
+
# `Service` is the root object of Google API service configuration (service
|
3126
|
+
# config). It describes the basic information about a logical service, such as
|
3127
|
+
# the service name and the user-facing title, and delegates other aspects to sub-
|
3128
|
+
# sections. Each sub-section is either a proto message or a repeated proto
|
3129
|
+
# message that configures a specific aspect, such as auth. For more information,
|
3130
|
+
# see each proto message definition. Example: type: google.api.Service name:
|
3131
|
+
# calendar.googleapis.com title: Google Calendar API apis: - name: google.
|
3132
|
+
# calendar.v3.Calendar visibility: rules: - selector: "google.calendar.v3.*"
|
3133
|
+
# restriction: PREVIEW backend: rules: - selector: "google.calendar.v3.*"
|
3134
|
+
# address: calendar.example.com authentication: providers: - id:
|
3136
3135
|
# google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs
|
3137
3136
|
# issuer: https://securetoken.google.com rules: - selector: "*" requirements:
|
3138
3137
|
# provider_id: google_calendar_auth
|
@@ -3148,11 +3147,13 @@ module Google
|
|
3148
3147
|
# @return [Array<Google::Apis::ServicemanagementV1::Api>]
|
3149
3148
|
attr_accessor :apis
|
3150
3149
|
|
3151
|
-
# `Authentication` defines the authentication configuration for
|
3152
|
-
#
|
3150
|
+
# `Authentication` defines the authentication configuration for API methods
|
3151
|
+
# provided by an API service. Example: name: calendar.googleapis.com
|
3153
3152
|
# authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
|
3154
3153
|
# googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: -
|
3155
|
-
# selector: "*" requirements: provider_id: google_calendar_auth
|
3154
|
+
# selector: "*" requirements: provider_id: google_calendar_auth - selector:
|
3155
|
+
# google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
|
3156
|
+
# auth/calendar.read
|
3156
3157
|
# Corresponds to the JSON property `authentication`
|
3157
3158
|
# @return [Google::Apis::ServicemanagementV1::Authentication]
|
3158
3159
|
attr_accessor :authentication
|
@@ -3637,13 +3638,16 @@ module Google
|
|
3637
3638
|
class SubmitConfigSourceResponse
|
3638
3639
|
include Google::Apis::Core::Hashable
|
3639
3640
|
|
3640
|
-
# `Service` is the root object of Google service configuration
|
3641
|
-
# describes basic information about a service, such as
|
3642
|
-
# and delegates other aspects to sub-
|
3643
|
-
#
|
3644
|
-
#
|
3645
|
-
# google.api.Service name:
|
3646
|
-
#
|
3641
|
+
# `Service` is the root object of Google API service configuration (service
|
3642
|
+
# config). It describes the basic information about a logical service, such as
|
3643
|
+
# the service name and the user-facing title, and delegates other aspects to sub-
|
3644
|
+
# sections. Each sub-section is either a proto message or a repeated proto
|
3645
|
+
# message that configures a specific aspect, such as auth. For more information,
|
3646
|
+
# see each proto message definition. Example: type: google.api.Service name:
|
3647
|
+
# calendar.googleapis.com title: Google Calendar API apis: - name: google.
|
3648
|
+
# calendar.v3.Calendar visibility: rules: - selector: "google.calendar.v3.*"
|
3649
|
+
# restriction: PREVIEW backend: rules: - selector: "google.calendar.v3.*"
|
3650
|
+
# address: calendar.example.com authentication: providers: - id:
|
3647
3651
|
# google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs
|
3648
3652
|
# issuer: https://securetoken.google.com rules: - selector: "*" requirements:
|
3649
3653
|
# provider_id: google_calendar_auth
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicemanagementV1
|
18
18
|
# Version of the google-apis-servicemanagement_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210430"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -820,7 +820,6 @@ module Google
|
|
820
820
|
class Endpoint
|
821
821
|
# @private
|
822
822
|
class Representation < Google::Apis::Core::JsonRepresentation
|
823
|
-
collection :aliases, as: 'aliases'
|
824
823
|
property :allow_cors, as: 'allowCors'
|
825
824
|
property :name, as: 'name'
|
826
825
|
property :target, as: 'target'
|
@@ -345,9 +345,7 @@ module Google
|
|
345
345
|
|
346
346
|
# Lists managed services. Returns all public services. For authenticated users,
|
347
347
|
# also returns all services the calling user has "servicemanagement.services.get"
|
348
|
-
# permission for.
|
349
|
-
# returns only the services enabled on the consumer. The `consumer_id` must have
|
350
|
-
# the format of "project:`PROJECT-ID`".
|
348
|
+
# permission for.
|
351
349
|
# @param [String] consumer_id
|
352
350
|
# Include services consumed by the specified consumer. The Google Service
|
353
351
|
# Management implementation accepts the following forms: - project:
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicemanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.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-
|
11
|
+
date: 2021-05-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicemanagement_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.8.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicemanagement_v1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
72
|
+
rubygems_version: 3.2.17
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Service Management API V1
|