google-apis-servicemanagement_v1 0.7.0 → 0.12.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: f3d5622ee1384143838e0aa4631740c16f7daf3ff41edf3870d65fdea61eb179
4
- data.tar.gz: 50cd5278a4105e11f7247b6b1a51c0f865ad88c4d6ffdaf13a429ec1d23b61fd
3
+ metadata.gz: 2e32ee086ec9595a247313fba2d67e852348debf7a69d87edc0ac08d9474787d
4
+ data.tar.gz: e538c5f1272d2c8190754ab6529232dd64131d3cfb743d48c2bba653c2d67c4d
5
5
  SHA512:
6
- metadata.gz: 3cd3c11de118713d2d641da7f5996e5c95519e5bfc1208d3c5fc870c02ff010c0321e5db10a49417e1a922c615b8716a02a508860e414ffe6de09216fe4e7d45
7
- data.tar.gz: 69ac60b9c3af8fa752cd716dac99f4e211327d39777f097c6d59e7a1529a71a1516e1d985c1d1375740beeb2ac9f152dc1f3d49e6e8be9eefd7224b1ebfebaf2
6
+ metadata.gz: ea884978ab2078102163ca8e0c7f61c2c7103ffe245ab44ddb5eb6b7de625ba3f749849ff00f239346a757cfcc6f15c187e66892ee9e0eddc7cbc3b14387859f
7
+ data.tar.gz: 9ea1e05b7c4f8fc9d6f0dfb4111d33ece1882387fe10a04878f60d4fc1440d8270627e52a857ae26f970104c6821cc5c749b9c1fdb50285616861805f29197af
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-servicemanagement_v1
2
2
 
3
+ ### v0.12.0 (2021-06-24)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.11.0 (2021-06-09)
8
+
9
+ * Regenerated from discovery document revision 20210604
10
+ * Regenerated using generator version 0.3.0
11
+
12
+ ### v0.10.0 (2021-05-25)
13
+
14
+ * Regenerated from discovery document revision 20210521
15
+
16
+ ### v0.9.0 (2021-05-20)
17
+
18
+ * Unspecified changes
19
+
20
+ ### v0.8.0 (2021-05-08)
21
+
22
+ * Regenerated from discovery document revision 20210430
23
+
3
24
  ### v0.7.0 (2021-03-30)
4
25
 
5
26
  * 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
 
@@ -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 endpoint of a service that serves a set of APIs.
1155
- # It is commonly known as a service endpoint. A service may expose any number
1156
- # of service endpoints, and all service endpoints share the same service
1157
- # definition, such as quota limits and monitoring metrics. Example service
1158
- # configuration: name: library-example.googleapis.com endpoints: # Below entry
1159
- # makes 'google.example.library.v1.Library' # API be served from endpoint
1160
- # address library-example.googleapis.com. # It also allows HTTP OPTIONS calls to
1161
- # be passed to the backend, for # it to decide whether the subsequent cross-
1162
- # origin request is # allowed to proceed. - name: library-example.googleapis.com
1163
- # allow_cors: true
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 schema. It
3130
- # describes basic information about a service, such as the name and the title,
3131
- # and delegates other aspects to sub-sections. Each sub-section is either a
3132
- # proto message or a repeated proto message that configures a specific aspect,
3133
- # such as auth. See each proto message definition for details. Example: type:
3134
- # google.api.Service name: calendar.googleapis.com title: Google Calendar API
3135
- # apis: - name: google.calendar.v3.Calendar authentication: providers: - id:
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 an API. Example
3152
- # for an API targeted for external use: name: calendar.googleapis.com
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
@@ -3637,13 +3666,16 @@ module Google
3637
3666
  class SubmitConfigSourceResponse
3638
3667
  include Google::Apis::Core::Hashable
3639
3668
 
3640
- # `Service` is the root object of Google service configuration schema. It
3641
- # describes basic information about a service, such as the name and the title,
3642
- # and delegates other aspects to sub-sections. Each sub-section is either a
3643
- # proto message or a repeated proto message that configures a specific aspect,
3644
- # such as auth. See each proto message definition for details. Example: type:
3645
- # google.api.Service name: calendar.googleapis.com title: Google Calendar API
3646
- # apis: - name: google.calendar.v3.Calendar authentication: providers: - id:
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:
3647
3679
  # google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs
3648
3680
  # issuer: https://securetoken.google.com rules: - selector: "*" requirements:
3649
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.7.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.2.0"
22
+ GENERATOR_VERSION = "0.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210326"
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. **BETA:** If the caller specifies the `consumer_id`, it
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,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicemanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.12.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-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.3'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.3'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for Service Management API V1. Simple
28
34
  REST clients are Ruby client libraries that provide access to Google services via
29
35
  their HTTP REST API endpoints. These libraries are generated and updated automatically
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  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.7.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.12.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicemanagement_v1
57
63
  post_install_message:
58
64
  rdoc_options: []
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
75
  - !ruby/object:Gem::Version
70
76
  version: '0'
71
77
  requirements: []
72
- rubygems_version: 3.2.13
78
+ rubygems_version: 3.2.17
73
79
  signing_key:
74
80
  specification_version: 4
75
81
  summary: Simple REST client for Service Management API V1