google-apis-serviceconsumermanagement_v1 0.2.0 → 0.7.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 +45 -35
- data/lib/google/apis/serviceconsumermanagement_v1/gem_version.rb +3 -3
- data/lib/google/apis/serviceconsumermanagement_v1/representations.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c210657ba4807a244a5ea8b5c95a6eb1c0e1c144d870379e6df36db29c70fed6
|
4
|
+
data.tar.gz: 28e8ff8bd2a745dd543ccfb93979bf1ce611ff7fd6b5b40e22fc2828e2f5e40d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec51a7224af2614e94879b391e1189987dfadff66a63d2026ffb25eaffaf26acd32fb425f5d71a12a72378e9fafcf44b3374bc502c0792ecb89a84790a7b4a70
|
7
|
+
data.tar.gz: 0d49d9ac2eca52c50139f0b1d86949229382f1e3bc44dd6112ef3156a691ad4dcc7e628afb1918b6c87ddd009d717dc60ad19cb408af6fd719f517084c68148a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
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
|
+
|
7
|
+
### v0.6.0 (2021-03-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210326
|
10
|
+
|
11
|
+
### v0.5.0 (2021-03-23)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210319
|
14
|
+
* Regenerated using generator version 0.2.0
|
15
|
+
|
16
|
+
### v0.4.0 (2021-03-04)
|
17
|
+
|
18
|
+
* Unspecified changes
|
19
|
+
|
20
|
+
### v0.3.0 (2021-02-19)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210217
|
23
|
+
|
3
24
|
### v0.2.0 (2021-02-02)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210131
|
@@ -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
|
|
@@ -956,26 +958,21 @@ module Google
|
|
956
958
|
end
|
957
959
|
end
|
958
960
|
|
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
|
-
#
|
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,16 +2492,19 @@ module Google
|
|
2496
2492
|
end
|
2497
2493
|
end
|
2498
2494
|
|
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
|
-
#
|
2505
|
-
# Google Calendar API apis: - name: google.
|
2506
|
-
#
|
2507
|
-
#
|
2508
|
-
#
|
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:
|
2505
|
+
# google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs
|
2506
|
+
# issuer: https://securetoken.google.com rules: - selector: "*" requirements:
|
2507
|
+
# provider_id: google_calendar_auth
|
2509
2508
|
class Service
|
2510
2509
|
include Google::Apis::Core::Hashable
|
2511
2510
|
|
@@ -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
|
2522
|
-
#
|
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
|
@@ -2551,7 +2552,8 @@ module Google
|
|
2551
2552
|
# @return [Google::Apis::ServiceconsumermanagementV1::Billing]
|
2552
2553
|
attr_accessor :billing
|
2553
2554
|
|
2554
|
-
#
|
2555
|
+
# Obsolete. Do not use. This field has no semantic meaning. The service config
|
2556
|
+
# compiler always sets this field to `3`.
|
2555
2557
|
# Corresponds to the JSON property `configVersion`
|
2556
2558
|
# @return [Fixnum]
|
2557
2559
|
attr_accessor :config_version
|
@@ -3678,6 +3680,13 @@ module Google
|
|
3678
3680
|
# @return [String]
|
3679
3681
|
attr_accessor :name
|
3680
3682
|
|
3683
|
+
# The Default Identity tag. If specified when creating the account, the tag must
|
3684
|
+
# be present in activation_grants. If not specified when creating the account,
|
3685
|
+
# the tag is set to the tag specified in activation_grants.
|
3686
|
+
# Corresponds to the JSON property `tag`
|
3687
|
+
# @return [String]
|
3688
|
+
attr_accessor :tag
|
3689
|
+
|
3681
3690
|
# The unique and stable id of the default identity.
|
3682
3691
|
# Corresponds to the JSON property `uniqueId`
|
3683
3692
|
# @return [String]
|
@@ -3691,6 +3700,7 @@ module Google
|
|
3691
3700
|
def update!(**args)
|
3692
3701
|
@email = args[:email] if args.key?(:email)
|
3693
3702
|
@name = args[:name] if args.key?(:name)
|
3703
|
+
@tag = args[:tag] if args.key?(:tag)
|
3694
3704
|
@unique_id = args[:unique_id] if args.key?(:unique_id)
|
3695
3705
|
end
|
3696
3706
|
end
|
@@ -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.7.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 = "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'
|
@@ -1407,6 +1406,7 @@ module Google
|
|
1407
1406
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1408
1407
|
property :email, as: 'email'
|
1409
1408
|
property :name, as: 'name'
|
1409
|
+
property :tag, as: 'tag'
|
1410
1410
|
property :unique_id, as: 'uniqueId'
|
1411
1411
|
end
|
1412
1412
|
end
|
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.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-
|
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.
|
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: []
|
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
62
|
requirements:
|
63
63
|
- - ">="
|
64
64
|
- !ruby/object:Gem::Version
|
65
|
-
version: '2.
|
65
|
+
version: '2.5'
|
66
66
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
68
|
- - ">="
|
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
|