google-apis-serviceconsumermanagement_v1 0.4.0 → 0.9.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 +21 -0
- data/lib/google/apis/serviceconsumermanagement_v1.rb +1 -1
- data/lib/google/apis/serviceconsumermanagement_v1/classes.rb +34 -39
- data/lib/google/apis/serviceconsumermanagement_v1/gem_version.rb +3 -3
- data/lib/google/apis/serviceconsumermanagement_v1/representations.rb +0 -2
- 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: 0055f318613613854954d11cbf584712cf87790bdca7ef6cc6c850fa220dfbf2
|
4
|
+
data.tar.gz: 250de883ae440435dbb3783ddff57ced985c432c83f6abdb363c6f18a20c90cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e695dfdb05e6a2ecd97d2c0275fe9390a50cc1b84acad4ff48d590ba6d5629c641f3a7bedd3736f22d7adb818b6e0637a079197c3107188aa9789afe718b561f
|
7
|
+
data.tar.gz: 7e6b6152ec2d931da6b0ce6c7785e3b0fbb0bf8e0667adf873f87b8440bdb64767ac33d10054167415c1a54caa63a31599bdac35008d3f807f13a34200e0339c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-serviceconsumermanagement_v1
|
2
2
|
|
3
|
+
### v0.9.0 (2021-05-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210525
|
6
|
+
|
7
|
+
### v0.8.0 (2021-05-20)
|
8
|
+
|
9
|
+
* Unspecified changes
|
10
|
+
|
11
|
+
### v0.7.0 (2021-05-08)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210501
|
14
|
+
|
15
|
+
### v0.6.0 (2021-03-30)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210326
|
18
|
+
|
19
|
+
### v0.5.0 (2021-03-23)
|
20
|
+
|
21
|
+
* Regenerated from discovery document revision 20210319
|
22
|
+
* Regenerated using generator version 0.2.0
|
23
|
+
|
3
24
|
### v0.4.0 (2021-03-04)
|
4
25
|
|
5
26
|
* Unspecified changes
|
@@ -29,7 +29,7 @@ module Google
|
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1'
|
31
31
|
|
32
|
-
#
|
32
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
33
33
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
34
34
|
end
|
35
35
|
end
|
@@ -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
|
|
@@ -443,12 +445,6 @@ module Google
|
|
443
445
|
# @return [String]
|
444
446
|
attr_accessor :jwt_audience
|
445
447
|
|
446
|
-
# Minimum deadline in seconds needed for this method. Calls having deadline
|
447
|
-
# value lower than this will be rejected.
|
448
|
-
# Corresponds to the JSON property `minDeadline`
|
449
|
-
# @return [Float]
|
450
|
-
attr_accessor :min_deadline
|
451
|
-
|
452
448
|
# The number of seconds to wait for the completion of a long running operation.
|
453
449
|
# The default is no deadline.
|
454
450
|
# Corresponds to the JSON property `operationDeadline`
|
@@ -489,7 +485,6 @@ module Google
|
|
489
485
|
@deadline = args[:deadline] if args.key?(:deadline)
|
490
486
|
@disable_auth = args[:disable_auth] if args.key?(:disable_auth)
|
491
487
|
@jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
|
492
|
-
@min_deadline = args[:min_deadline] if args.key?(:min_deadline)
|
493
488
|
@operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
|
494
489
|
@path_translation = args[:path_translation] if args.key?(:path_translation)
|
495
490
|
@protocol = args[:protocol] if args.key?(:protocol)
|
@@ -956,26 +951,21 @@ module Google
|
|
956
951
|
end
|
957
952
|
end
|
958
953
|
|
959
|
-
# `Endpoint` describes a network
|
960
|
-
# It is commonly known as a service endpoint. A service may expose any number
|
961
|
-
#
|
962
|
-
#
|
963
|
-
#
|
964
|
-
#
|
965
|
-
#
|
966
|
-
#
|
967
|
-
#
|
968
|
-
#
|
954
|
+
# `Endpoint` describes a network address of a service that serves a set of APIs.
|
955
|
+
# It is commonly known as a service endpoint. A service may expose any number of
|
956
|
+
# service endpoints, and all service endpoints share the same service definition,
|
957
|
+
# such as quota limits and monitoring metrics. Example: type: google.api.
|
958
|
+
# Service name: library-example.googleapis.com endpoints: # Declares network
|
959
|
+
# address `https://library-example.googleapis.com` # for service `library-
|
960
|
+
# example.googleapis.com`. The `https` scheme # is implicit for all service
|
961
|
+
# endpoints. Other schemes may be # supported in the future. - name: library-
|
962
|
+
# example.googleapis.com allow_cors: false - name: content-staging-library-
|
963
|
+
# example.googleapis.com # Allows HTTP OPTIONS calls to be passed to the API
|
964
|
+
# frontend, for it # to decide whether the subsequent cross-origin request is
|
965
|
+
# allowed # to proceed. allow_cors: true
|
969
966
|
class Endpoint
|
970
967
|
include Google::Apis::Core::Hashable
|
971
968
|
|
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
969
|
# Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing),
|
980
970
|
# aka cross-domain traffic, would allow the backends served from this endpoint
|
981
971
|
# to receive and respond to HTTP OPTIONS requests. The response will be used by
|
@@ -1005,7 +995,6 @@ module Google
|
|
1005
995
|
|
1006
996
|
# Update properties of this object
|
1007
997
|
def update!(**args)
|
1008
|
-
@aliases = args[:aliases] if args.key?(:aliases)
|
1009
998
|
@allow_cors = args[:allow_cors] if args.key?(:allow_cors)
|
1010
999
|
@name = args[:name] if args.key?(:name)
|
1011
1000
|
@target = args[:target] if args.key?(:target)
|
@@ -2496,13 +2485,16 @@ module Google
|
|
2496
2485
|
end
|
2497
2486
|
end
|
2498
2487
|
|
2499
|
-
# `Service` is the root object of Google service configuration
|
2500
|
-
# describes basic information about a service, such as
|
2501
|
-
# and delegates other aspects to sub-
|
2502
|
-
#
|
2503
|
-
#
|
2504
|
-
# google.api.Service name:
|
2505
|
-
#
|
2488
|
+
# `Service` is the root object of Google API service configuration (service
|
2489
|
+
# config). It describes the basic information about a logical service, such as
|
2490
|
+
# the service name and the user-facing title, and delegates other aspects to sub-
|
2491
|
+
# sections. Each sub-section is either a proto message or a repeated proto
|
2492
|
+
# message that configures a specific aspect, such as auth. For more information,
|
2493
|
+
# see each proto message definition. Example: type: google.api.Service name:
|
2494
|
+
# calendar.googleapis.com title: Google Calendar API apis: - name: google.
|
2495
|
+
# calendar.v3.Calendar visibility: rules: - selector: "google.calendar.v3.*"
|
2496
|
+
# restriction: PREVIEW backend: rules: - selector: "google.calendar.v3.*"
|
2497
|
+
# address: calendar.example.com authentication: providers: - id:
|
2506
2498
|
# google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs
|
2507
2499
|
# issuer: https://securetoken.google.com rules: - selector: "*" requirements:
|
2508
2500
|
# provider_id: google_calendar_auth
|
@@ -2518,11 +2510,13 @@ module Google
|
|
2518
2510
|
# @return [Array<Google::Apis::ServiceconsumermanagementV1::Api>]
|
2519
2511
|
attr_accessor :apis
|
2520
2512
|
|
2521
|
-
# `Authentication` defines the authentication configuration for
|
2522
|
-
#
|
2513
|
+
# `Authentication` defines the authentication configuration for API methods
|
2514
|
+
# provided by an API service. Example: name: calendar.googleapis.com
|
2523
2515
|
# authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
|
2524
2516
|
# googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: -
|
2525
|
-
# selector: "*" requirements: provider_id: google_calendar_auth
|
2517
|
+
# selector: "*" requirements: provider_id: google_calendar_auth - selector:
|
2518
|
+
# google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
|
2519
|
+
# auth/calendar.read
|
2526
2520
|
# Corresponds to the JSON property `authentication`
|
2527
2521
|
# @return [Google::Apis::ServiceconsumermanagementV1::Authentication]
|
2528
2522
|
attr_accessor :authentication
|
@@ -2551,7 +2545,8 @@ module Google
|
|
2551
2545
|
# @return [Google::Apis::ServiceconsumermanagementV1::Billing]
|
2552
2546
|
attr_accessor :billing
|
2553
2547
|
|
2554
|
-
#
|
2548
|
+
# Obsolete. Do not use. This field has no semantic meaning. The service config
|
2549
|
+
# compiler always sets this field to `3`.
|
2555
2550
|
# Corresponds to the JSON property `configVersion`
|
2556
2551
|
# @return [Fixnum]
|
2557
2552
|
attr_accessor :config_version
|
@@ -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.9.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210525"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -664,7 +664,6 @@ module Google
|
|
664
664
|
property :deadline, as: 'deadline'
|
665
665
|
property :disable_auth, as: 'disableAuth'
|
666
666
|
property :jwt_audience, as: 'jwtAudience'
|
667
|
-
property :min_deadline, as: 'minDeadline'
|
668
667
|
property :operation_deadline, as: 'operationDeadline'
|
669
668
|
property :path_translation, as: 'pathTranslation'
|
670
669
|
property :protocol, as: 'protocol'
|
@@ -798,7 +797,6 @@ module Google
|
|
798
797
|
class Endpoint
|
799
798
|
# @private
|
800
799
|
class Representation < Google::Apis::Core::JsonRepresentation
|
801
|
-
collection :aliases, as: 'aliases'
|
802
800
|
property :allow_cors, as: 'allowCors'
|
803
801
|
property :name, as: 'name'
|
804
802
|
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.
|
4
|
+
version: 0.9.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-31 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.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.9.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.
|
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
|