google-apis-serviceconsumermanagement_v1beta1 0.7.0 → 0.8.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: 34cc14d7ebd15a02e55f4aef970aeebd5f53d968786066398855d6e987875521
4
- data.tar.gz: eae87e57b8b926d354bf43557934c24ce78939c7ae4087409d5409adc6773c71
3
+ metadata.gz: 9544b552359a6d7a1e51de3ad59ce27451b78aaed9a4bd0c52d0a53691ded1d1
4
+ data.tar.gz: bacb4b6941f293d29a92fb3c57cf20ae0c4cad3eb510590a52c708cdccf1781b
5
5
  SHA512:
6
- metadata.gz: b47194ef29bb5cb417d2380ea3cc2b94d891d98f0bf4c2f0d975e535c6ca927f9952fe841b66ebfe6aaff47ababbed7f4f1e3051b0f041500024e8f3d6d43703
7
- data.tar.gz: 117ff6e5644d3f74042251f5f058dc0a0f12c8026cb73b4e1d4dc1da2991899cd2cb1461246d675e04c7aa02b426220fe58de194dcc707126720db4002ca5316
6
+ metadata.gz: 52b8ce74fdde29ac09f3e8c34e9123d54303e1194985a55da969a3a86ae79899d0c462d073b2f846c2aaa8f7d9f81b8aee2ec1968a6473636ae6cf15d54f65a0
7
+ data.tar.gz: 659f1878e77bd7e81d0f758baed413ba081d84ebe3eee249e47776866565c4751f2c4585914603fefd11d3ea8a6f0c0a8956168ffbee9abeccb886156c27f1bc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-serviceconsumermanagement_v1beta1
2
2
 
3
+ ### v0.8.0 (2021-05-08)
4
+
5
+ * Regenerated from discovery document revision 20210501
6
+
3
7
  ### v0.7.0 (2021-03-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20210326
@@ -208,11 +208,13 @@ module Google
208
208
  end
209
209
  end
210
210
 
211
- # `Authentication` defines the authentication configuration for an API. Example
212
- # for an API targeted for external use: name: calendar.googleapis.com
211
+ # `Authentication` defines the authentication configuration for API methods
212
+ # provided by an API service. Example: name: calendar.googleapis.com
213
213
  # authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
214
214
  # googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: -
215
- # selector: "*" requirements: provider_id: google_calendar_auth
215
+ # selector: "*" requirements: provider_id: google_calendar_auth - selector:
216
+ # google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
217
+ # auth/calendar.read
216
218
  class Authentication
217
219
  include Google::Apis::Core::Hashable
218
220
 
@@ -787,26 +789,21 @@ module Google
787
789
  end
788
790
  end
789
791
 
790
- # `Endpoint` describes a network endpoint of a service that serves a set of APIs.
791
- # It is commonly known as a service endpoint. A service may expose any number
792
- # of service endpoints, and all service endpoints share the same service
793
- # definition, such as quota limits and monitoring metrics. Example service
794
- # configuration: name: library-example.googleapis.com endpoints: # Below entry
795
- # makes 'google.example.library.v1.Library' # API be served from endpoint
796
- # address library-example.googleapis.com. # It also allows HTTP OPTIONS calls to
797
- # be passed to the backend, for # it to decide whether the subsequent cross-
798
- # origin request is # allowed to proceed. - name: library-example.googleapis.com
799
- # allow_cors: true
792
+ # `Endpoint` describes a network address of a service that serves a set of APIs.
793
+ # It is commonly known as a service endpoint. A service may expose any number of
794
+ # service endpoints, and all service endpoints share the same service definition,
795
+ # such as quota limits and monitoring metrics. Example: type: google.api.
796
+ # Service name: library-example.googleapis.com endpoints: # Declares network
797
+ # address `https://library-example.googleapis.com` # for service `library-
798
+ # example.googleapis.com`. The `https` scheme # is implicit for all service
799
+ # endpoints. Other schemes may be # supported in the future. - name: library-
800
+ # example.googleapis.com allow_cors: false - name: content-staging-library-
801
+ # example.googleapis.com # Allows HTTP OPTIONS calls to be passed to the API
802
+ # frontend, for it # to decide whether the subsequent cross-origin request is
803
+ # allowed # to proceed. allow_cors: true
800
804
  class Endpoint
801
805
  include Google::Apis::Core::Hashable
802
806
 
803
- # DEPRECATED: This field is no longer supported. Instead of using aliases,
804
- # please specify multiple google.api.Endpoint for each of the intended aliases.
805
- # Additional names that this endpoint will be hosted on.
806
- # Corresponds to the JSON property `aliases`
807
- # @return [Array<String>]
808
- attr_accessor :aliases
809
-
810
807
  # Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing),
811
808
  # aka cross-domain traffic, would allow the backends served from this endpoint
812
809
  # to receive and respond to HTTP OPTIONS requests. The response will be used by
@@ -836,7 +833,6 @@ module Google
836
833
 
837
834
  # Update properties of this object
838
835
  def update!(**args)
839
- @aliases = args[:aliases] if args.key?(:aliases)
840
836
  @allow_cors = args[:allow_cors] if args.key?(:allow_cors)
841
837
  @name = args[:name] if args.key?(:name)
842
838
  @target = args[:target] if args.key?(:target)
@@ -2205,13 +2201,16 @@ module Google
2205
2201
  end
2206
2202
  end
2207
2203
 
2208
- # `Service` is the root object of Google service configuration schema. It
2209
- # describes basic information about a service, such as the name and the title,
2210
- # and delegates other aspects to sub-sections. Each sub-section is either a
2211
- # proto message or a repeated proto message that configures a specific aspect,
2212
- # such as auth. See each proto message definition for details. Example: type:
2213
- # google.api.Service name: calendar.googleapis.com title: Google Calendar API
2214
- # apis: - name: google.calendar.v3.Calendar authentication: providers: - id:
2204
+ # `Service` is the root object of Google API service configuration (service
2205
+ # config). It describes the basic information about a logical service, such as
2206
+ # the service name and the user-facing title, and delegates other aspects to sub-
2207
+ # sections. Each sub-section is either a proto message or a repeated proto
2208
+ # message that configures a specific aspect, such as auth. For more information,
2209
+ # see each proto message definition. Example: type: google.api.Service name:
2210
+ # calendar.googleapis.com title: Google Calendar API apis: - name: google.
2211
+ # calendar.v3.Calendar visibility: rules: - selector: "google.calendar.v3.*"
2212
+ # restriction: PREVIEW backend: rules: - selector: "google.calendar.v3.*"
2213
+ # address: calendar.example.com authentication: providers: - id:
2215
2214
  # google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs
2216
2215
  # issuer: https://securetoken.google.com rules: - selector: "*" requirements:
2217
2216
  # provider_id: google_calendar_auth
@@ -2227,11 +2226,13 @@ module Google
2227
2226
  # @return [Array<Google::Apis::ServiceconsumermanagementV1beta1::Api>]
2228
2227
  attr_accessor :apis
2229
2228
 
2230
- # `Authentication` defines the authentication configuration for an API. Example
2231
- # for an API targeted for external use: name: calendar.googleapis.com
2229
+ # `Authentication` defines the authentication configuration for API methods
2230
+ # provided by an API service. Example: name: calendar.googleapis.com
2232
2231
  # authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
2233
2232
  # googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: -
2234
- # selector: "*" requirements: provider_id: google_calendar_auth
2233
+ # selector: "*" requirements: provider_id: google_calendar_auth - selector:
2234
+ # google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
2235
+ # auth/calendar.read
2235
2236
  # Corresponds to the JSON property `authentication`
2236
2237
  # @return [Google::Apis::ServiceconsumermanagementV1beta1::Authentication]
2237
2238
  attr_accessor :authentication
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceconsumermanagementV1beta1
18
18
  # Version of the google-apis-serviceconsumermanagement_v1beta1 gem
19
- GEM_VERSION = "0.7.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 = "20210326"
25
+ REVISION = "20210501"
26
26
  end
27
27
  end
28
28
  end
@@ -678,7 +678,6 @@ module Google
678
678
  class Endpoint
679
679
  # @private
680
680
  class Representation < Google::Apis::Core::JsonRepresentation
681
- collection :aliases, as: 'aliases'
682
681
  property :allow_cors, as: 'allowCors'
683
682
  property :name, as: 'name'
684
683
  property :target, as: 'target'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-serviceconsumermanagement_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.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-04-05 00:00:00.000000000 Z
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-serviceconsumermanagement_v1beta1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.7.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.8.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-serviceconsumermanagement_v1beta1
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.13
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Service Consumer Management API V1beta1