google-apis-servicemanagement_v1 0.6.0 → 0.11.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/servicemanagement_v1.rb +1 -1
- data/lib/google/apis/servicemanagement_v1/classes.rb +79 -46
- data/lib/google/apis/servicemanagement_v1/gem_version.rb +3 -3
- data/lib/google/apis/servicemanagement_v1/representations.rb +14 -2
- 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: e6c9513c1f20165063cf84ae9269fd4b646de5eb3340132ee62d0c4201437fdf
|
4
|
+
data.tar.gz: 7883e5933d71022cb5c9092ecfaa0f7d6267fecb03e0d254fccf4930c33b023f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 150e6746b37e66990dc47c40e6a58314c7015cab95319528d814d4f1a0aa8fced8c7d8e6c0c91408c659429820937a929fff333336794413d9b670a999876d1a
|
7
|
+
data.tar.gz: 549dd18585d6a2a129f7c1809d6a03a62f1a781db59f0ea0997009338ac0e69aeb2a30861e2be98408db043c6c7a24817572d4656bbcd7c570e2bf884d10c63b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-servicemanagement_v1
|
2
2
|
|
3
|
+
### v0.11.0 (2021-06-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210604
|
6
|
+
* Regenerated using generator version 0.3.0
|
7
|
+
|
8
|
+
### v0.10.0 (2021-05-25)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20210521
|
11
|
+
|
12
|
+
### v0.9.0 (2021-05-20)
|
13
|
+
|
14
|
+
* Unspecified changes
|
15
|
+
|
16
|
+
### v0.8.0 (2021-05-08)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210430
|
19
|
+
|
20
|
+
### v0.7.0 (2021-03-30)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210326
|
23
|
+
|
3
24
|
### v0.6.0 (2021-03-23)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210319
|
@@ -31,7 +31,7 @@ module Google
|
|
31
31
|
# This is NOT the gem version.
|
32
32
|
VERSION = 'V1'
|
33
33
|
|
34
|
-
#
|
34
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
35
35
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
36
36
|
|
37
37
|
# View your data across Google Cloud Platform services
|
@@ -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)
|
@@ -1151,26 +1146,21 @@ module Google
|
|
1151
1146
|
end
|
1152
1147
|
end
|
1153
1148
|
|
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
|
-
#
|
1149
|
+
# `Endpoint` describes a network address of a service that serves a set of APIs.
|
1150
|
+
# It is commonly known as a service endpoint. A service may expose any number of
|
1151
|
+
# service endpoints, and all service endpoints share the same service definition,
|
1152
|
+
# such as quota limits and monitoring metrics. Example: type: google.api.
|
1153
|
+
# Service name: library-example.googleapis.com endpoints: # Declares network
|
1154
|
+
# address `https://library-example.googleapis.com` # for service `library-
|
1155
|
+
# example.googleapis.com`. The `https` scheme # is implicit for all service
|
1156
|
+
# endpoints. Other schemes may be # supported in the future. - name: library-
|
1157
|
+
# example.googleapis.com allow_cors: false - name: content-staging-library-
|
1158
|
+
# example.googleapis.com # Allows HTTP OPTIONS calls to be passed to the API
|
1159
|
+
# frontend, for it # to decide whether the subsequent cross-origin request is
|
1160
|
+
# allowed # to proceed. allow_cors: true
|
1164
1161
|
class Endpoint
|
1165
1162
|
include Google::Apis::Core::Hashable
|
1166
1163
|
|
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
1164
|
# Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing),
|
1175
1165
|
# aka cross-domain traffic, would allow the backends served from this endpoint
|
1176
1166
|
# to receive and respond to HTTP OPTIONS requests. The response will be used by
|
@@ -1200,7 +1190,6 @@ module Google
|
|
1200
1190
|
|
1201
1191
|
# Update properties of this object
|
1202
1192
|
def update!(**args)
|
1203
|
-
@aliases = args[:aliases] if args.key?(:aliases)
|
1204
1193
|
@allow_cors = args[:allow_cors] if args.key?(:allow_cors)
|
1205
1194
|
@name = args[:name] if args.key?(:name)
|
1206
1195
|
@target = args[:target] if args.key?(:target)
|
@@ -2667,6 +2656,41 @@ module Google
|
|
2667
2656
|
end
|
2668
2657
|
end
|
2669
2658
|
|
2659
|
+
# A message representing the message types used by a long-running operation.
|
2660
|
+
# Example: rpc Export(ExportRequest) returns (google.longrunning.Operation) `
|
2661
|
+
# option (google.longrunning.operation_info) = ` response_type: "ExportResponse"
|
2662
|
+
# metadata_type: "ExportMetadata" `; `
|
2663
|
+
class OperationInfo
|
2664
|
+
include Google::Apis::Core::Hashable
|
2665
|
+
|
2666
|
+
# Required. The message name of the metadata type for this long-running
|
2667
|
+
# operation. If the response is in a different package from the rpc, a fully-
|
2668
|
+
# qualified message name must be used (e.g. `google.protobuf.Struct`). Note:
|
2669
|
+
# Altering this value constitutes a breaking change.
|
2670
|
+
# Corresponds to the JSON property `metadataType`
|
2671
|
+
# @return [String]
|
2672
|
+
attr_accessor :metadata_type
|
2673
|
+
|
2674
|
+
# Required. The message name of the primary return type for this long-running
|
2675
|
+
# operation. This type will be used to deserialize the LRO's response. If the
|
2676
|
+
# response is in a different package from the rpc, a fully-qualified message
|
2677
|
+
# name must be used (e.g. `google.protobuf.Struct`). Note: Altering this value
|
2678
|
+
# constitutes a breaking change.
|
2679
|
+
# Corresponds to the JSON property `responseType`
|
2680
|
+
# @return [String]
|
2681
|
+
attr_accessor :response_type
|
2682
|
+
|
2683
|
+
def initialize(**args)
|
2684
|
+
update!(**args)
|
2685
|
+
end
|
2686
|
+
|
2687
|
+
# Update properties of this object
|
2688
|
+
def update!(**args)
|
2689
|
+
@metadata_type = args[:metadata_type] if args.key?(:metadata_type)
|
2690
|
+
@response_type = args[:response_type] if args.key?(:response_type)
|
2691
|
+
end
|
2692
|
+
end
|
2693
|
+
|
2670
2694
|
# The metadata associated with a long running operation resource.
|
2671
2695
|
class OperationMetadata
|
2672
2696
|
include Google::Apis::Core::Hashable
|
@@ -3126,13 +3150,16 @@ module Google
|
|
3126
3150
|
end
|
3127
3151
|
end
|
3128
3152
|
|
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
|
-
#
|
3153
|
+
# `Service` is the root object of Google API service configuration (service
|
3154
|
+
# config). It describes the basic information about a logical service, such as
|
3155
|
+
# the service name and the user-facing title, and delegates other aspects to sub-
|
3156
|
+
# sections. Each sub-section is either a proto message or a repeated proto
|
3157
|
+
# message that configures a specific aspect, such as auth. For more information,
|
3158
|
+
# see each proto message definition. Example: type: google.api.Service name:
|
3159
|
+
# calendar.googleapis.com title: Google Calendar API apis: - name: google.
|
3160
|
+
# calendar.v3.Calendar visibility: rules: - selector: "google.calendar.v3.*"
|
3161
|
+
# restriction: PREVIEW backend: rules: - selector: "google.calendar.v3.*"
|
3162
|
+
# address: calendar.example.com authentication: providers: - id:
|
3136
3163
|
# google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs
|
3137
3164
|
# issuer: https://securetoken.google.com rules: - selector: "*" requirements:
|
3138
3165
|
# provider_id: google_calendar_auth
|
@@ -3148,11 +3175,13 @@ module Google
|
|
3148
3175
|
# @return [Array<Google::Apis::ServicemanagementV1::Api>]
|
3149
3176
|
attr_accessor :apis
|
3150
3177
|
|
3151
|
-
# `Authentication` defines the authentication configuration for
|
3152
|
-
#
|
3178
|
+
# `Authentication` defines the authentication configuration for API methods
|
3179
|
+
# provided by an API service. Example: name: calendar.googleapis.com
|
3153
3180
|
# authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
|
3154
3181
|
# googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: -
|
3155
|
-
# selector: "*" requirements: provider_id: google_calendar_auth
|
3182
|
+
# selector: "*" requirements: provider_id: google_calendar_auth - selector:
|
3183
|
+
# google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
|
3184
|
+
# auth/calendar.read
|
3156
3185
|
# Corresponds to the JSON property `authentication`
|
3157
3186
|
# @return [Google::Apis::ServicemanagementV1::Authentication]
|
3158
3187
|
attr_accessor :authentication
|
@@ -3181,7 +3210,8 @@ module Google
|
|
3181
3210
|
# @return [Google::Apis::ServicemanagementV1::Billing]
|
3182
3211
|
attr_accessor :billing
|
3183
3212
|
|
3184
|
-
#
|
3213
|
+
# Obsolete. Do not use. This field has no semantic meaning. The service config
|
3214
|
+
# compiler always sets this field to `3`.
|
3185
3215
|
# Corresponds to the JSON property `configVersion`
|
3186
3216
|
# @return [Fixnum]
|
3187
3217
|
attr_accessor :config_version
|
@@ -3636,13 +3666,16 @@ module Google
|
|
3636
3666
|
class SubmitConfigSourceResponse
|
3637
3667
|
include Google::Apis::Core::Hashable
|
3638
3668
|
|
3639
|
-
# `Service` is the root object of Google service configuration
|
3640
|
-
# describes basic information about a service, such as
|
3641
|
-
# and delegates other aspects to sub-
|
3642
|
-
#
|
3643
|
-
#
|
3644
|
-
# google.api.Service name:
|
3645
|
-
#
|
3669
|
+
# `Service` is the root object of Google API service configuration (service
|
3670
|
+
# config). It describes the basic information about a logical service, such as
|
3671
|
+
# the service name and the user-facing title, and delegates other aspects to sub-
|
3672
|
+
# sections. Each sub-section is either a proto message or a repeated proto
|
3673
|
+
# message that configures a specific aspect, such as auth. For more information,
|
3674
|
+
# see each proto message definition. Example: type: google.api.Service name:
|
3675
|
+
# calendar.googleapis.com title: Google Calendar API apis: - name: google.
|
3676
|
+
# calendar.v3.Calendar visibility: rules: - selector: "google.calendar.v3.*"
|
3677
|
+
# restriction: PREVIEW backend: rules: - selector: "google.calendar.v3.*"
|
3678
|
+
# address: calendar.example.com authentication: providers: - id:
|
3646
3679
|
# google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs
|
3647
3680
|
# issuer: https://securetoken.google.com rules: - selector: "*" requirements:
|
3648
3681
|
# 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.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210604"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -388,6 +388,12 @@ module Google
|
|
388
388
|
include Google::Apis::Core::JsonObjectSupport
|
389
389
|
end
|
390
390
|
|
391
|
+
class OperationInfo
|
392
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
|
+
|
394
|
+
include Google::Apis::Core::JsonObjectSupport
|
395
|
+
end
|
396
|
+
|
391
397
|
class OperationMetadata
|
392
398
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
399
|
|
@@ -643,7 +649,6 @@ module Google
|
|
643
649
|
property :deadline, as: 'deadline'
|
644
650
|
property :disable_auth, as: 'disableAuth'
|
645
651
|
property :jwt_audience, as: 'jwtAudience'
|
646
|
-
property :min_deadline, as: 'minDeadline'
|
647
652
|
property :operation_deadline, as: 'operationDeadline'
|
648
653
|
property :path_translation, as: 'pathTranslation'
|
649
654
|
property :protocol, as: 'protocol'
|
@@ -820,7 +825,6 @@ module Google
|
|
820
825
|
class Endpoint
|
821
826
|
# @private
|
822
827
|
class Representation < Google::Apis::Core::JsonRepresentation
|
823
|
-
collection :aliases, as: 'aliases'
|
824
828
|
property :allow_cors, as: 'allowCors'
|
825
829
|
property :name, as: 'name'
|
826
830
|
property :target, as: 'target'
|
@@ -1147,6 +1151,14 @@ module Google
|
|
1147
1151
|
end
|
1148
1152
|
end
|
1149
1153
|
|
1154
|
+
class OperationInfo
|
1155
|
+
# @private
|
1156
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1157
|
+
property :metadata_type, as: 'metadataType'
|
1158
|
+
property :response_type, as: 'responseType'
|
1159
|
+
end
|
1160
|
+
end
|
1161
|
+
|
1150
1162
|
class OperationMetadata
|
1151
1163
|
# @private
|
1152
1164
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -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.11.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-06-14 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.11.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
|