google-apis-serviceconsumermanagement_v1 0.6.0 → 0.7.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: c1f18828992c26124060a973f1ff00cfd1d37d083b27bf85558ff4c888d485cd
4
- data.tar.gz: 98e2c52dc6aaffad995ac925c276a1608893a3d5fca6fed5bb86e2af9d268634
3
+ metadata.gz: c210657ba4807a244a5ea8b5c95a6eb1c0e1c144d870379e6df36db29c70fed6
4
+ data.tar.gz: 28e8ff8bd2a745dd543ccfb93979bf1ce611ff7fd6b5b40e22fc2828e2f5e40d
5
5
  SHA512:
6
- metadata.gz: 19c284efd86b32f022e3934b208a945bbefb1437f747d253c87eee1f4fc71ab0833f2b72a1516526098fc4640b825f13f133cc13453e5d56e0d2daf3e27baa8b
7
- data.tar.gz: 539338e30260a822b709d7805bada921fd6405fb9505341e7a9cb4a676b85e73a5438f977c110c5c3b82708aeda0345628cca9c385c4255fb65fa52d1e220c61
6
+ metadata.gz: ec51a7224af2614e94879b391e1189987dfadff66a63d2026ffb25eaffaf26acd32fb425f5d71a12a72378e9fafcf44b3374bc502c0792ecb89a84790a7b4a70
7
+ data.tar.gz: 0d49d9ac2eca52c50139f0b1d86949229382f1e3bc44dd6112ef3156a691ad4dcc7e628afb1918b6c87ddd009d717dc60ad19cb408af6fd719f517084c68148a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-serviceconsumermanagement_v1
2
2
 
3
+ ### v0.7.0 (2021-05-08)
4
+
5
+ * Regenerated from discovery document revision 20210501
6
+
3
7
  ### v0.6.0 (2021-03-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20210326
@@ -300,11 +300,13 @@ module Google
300
300
  end
301
301
  end
302
302
 
303
- # `Authentication` defines the authentication configuration for an API. Example
304
- # for an API targeted for external use: name: calendar.googleapis.com
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
 
@@ -956,26 +958,21 @@ module Google
956
958
  end
957
959
  end
958
960
 
959
- # `Endpoint` describes a network endpoint of a service that serves a set of APIs.
960
- # It is commonly known as a service endpoint. A service may expose any number
961
- # of service endpoints, and all service endpoints share the same service
962
- # definition, such as quota limits and monitoring metrics. Example service
963
- # configuration: name: library-example.googleapis.com endpoints: # Below entry
964
- # makes 'google.example.library.v1.Library' # API be served from endpoint
965
- # address library-example.googleapis.com. # It also allows HTTP OPTIONS calls to
966
- # be passed to the backend, for # it to decide whether the subsequent cross-
967
- # origin request is # allowed to proceed. - name: library-example.googleapis.com
968
- # allow_cors: true
961
+ # `Endpoint` describes a network address of a service that serves a set of APIs.
962
+ # It is commonly known as a service endpoint. A service may expose any number of
963
+ # service endpoints, and all service endpoints share the same service definition,
964
+ # such as quota limits and monitoring metrics. Example: type: google.api.
965
+ # Service name: library-example.googleapis.com endpoints: # Declares network
966
+ # address `https://library-example.googleapis.com` # for service `library-
967
+ # example.googleapis.com`. The `https` scheme # is implicit for all service
968
+ # endpoints. Other schemes may be # supported in the future. - name: library-
969
+ # example.googleapis.com allow_cors: false - name: content-staging-library-
970
+ # example.googleapis.com # Allows HTTP OPTIONS calls to be passed to the API
971
+ # frontend, for it # to decide whether the subsequent cross-origin request is
972
+ # allowed # to proceed. allow_cors: true
969
973
  class Endpoint
970
974
  include Google::Apis::Core::Hashable
971
975
 
972
- # DEPRECATED: This field is no longer supported. Instead of using aliases,
973
- # please specify multiple google.api.Endpoint for each of the intended aliases.
974
- # Additional names that this endpoint will be hosted on.
975
- # Corresponds to the JSON property `aliases`
976
- # @return [Array<String>]
977
- attr_accessor :aliases
978
-
979
976
  # Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing),
980
977
  # aka cross-domain traffic, would allow the backends served from this endpoint
981
978
  # to receive and respond to HTTP OPTIONS requests. The response will be used by
@@ -1005,7 +1002,6 @@ module Google
1005
1002
 
1006
1003
  # Update properties of this object
1007
1004
  def update!(**args)
1008
- @aliases = args[:aliases] if args.key?(:aliases)
1009
1005
  @allow_cors = args[:allow_cors] if args.key?(:allow_cors)
1010
1006
  @name = args[:name] if args.key?(:name)
1011
1007
  @target = args[:target] if args.key?(:target)
@@ -2496,13 +2492,16 @@ module Google
2496
2492
  end
2497
2493
  end
2498
2494
 
2499
- # `Service` is the root object of Google service configuration schema. It
2500
- # describes basic information about a service, such as the name and the title,
2501
- # and delegates other aspects to sub-sections. Each sub-section is either a
2502
- # proto message or a repeated proto message that configures a specific aspect,
2503
- # such as auth. See each proto message definition for details. Example: type:
2504
- # google.api.Service name: calendar.googleapis.com title: Google Calendar API
2505
- # apis: - name: google.calendar.v3.Calendar authentication: providers: - id:
2495
+ # `Service` is the root object of Google API service configuration (service
2496
+ # config). It describes the basic information about a logical service, such as
2497
+ # the service name and the user-facing title, and delegates other aspects to sub-
2498
+ # sections. Each sub-section is either a proto message or a repeated proto
2499
+ # message that configures a specific aspect, such as auth. For more information,
2500
+ # see each proto message definition. Example: type: google.api.Service name:
2501
+ # calendar.googleapis.com title: Google Calendar API apis: - name: google.
2502
+ # calendar.v3.Calendar visibility: rules: - selector: "google.calendar.v3.*"
2503
+ # restriction: PREVIEW backend: rules: - selector: "google.calendar.v3.*"
2504
+ # address: calendar.example.com authentication: providers: - id:
2506
2505
  # google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs
2507
2506
  # issuer: https://securetoken.google.com rules: - selector: "*" requirements:
2508
2507
  # provider_id: google_calendar_auth
@@ -2518,11 +2517,13 @@ module Google
2518
2517
  # @return [Array<Google::Apis::ServiceconsumermanagementV1::Api>]
2519
2518
  attr_accessor :apis
2520
2519
 
2521
- # `Authentication` defines the authentication configuration for an API. Example
2522
- # for an API targeted for external use: name: calendar.googleapis.com
2520
+ # `Authentication` defines the authentication configuration for API methods
2521
+ # provided by an API service. Example: name: calendar.googleapis.com
2523
2522
  # authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
2524
2523
  # googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: -
2525
- # selector: "*" requirements: provider_id: google_calendar_auth
2524
+ # selector: "*" requirements: provider_id: google_calendar_auth - selector:
2525
+ # google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
2526
+ # auth/calendar.read
2526
2527
  # Corresponds to the JSON property `authentication`
2527
2528
  # @return [Google::Apis::ServiceconsumermanagementV1::Authentication]
2528
2529
  attr_accessor :authentication
@@ -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.6.0"
19
+ GEM_VERSION = "0.7.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
@@ -798,7 +798,6 @@ module Google
798
798
  class Endpoint
799
799
  # @private
800
800
  class Representation < Google::Apis::Core::JsonRepresentation
801
- collection :aliases, as: 'aliases'
802
801
  property :allow_cors, as: 'allowCors'
803
802
  property :name, as: 'name'
804
803
  property :target, as: 'target'
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.6.0
4
+ version: 0.7.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_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.6.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.7.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-serviceconsumermanagement_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.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 V1