google-apis-checks_v1alpha 0.10.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 +5 -0
- data/lib/google/apis/checks_v1alpha/gem_version.rb +3 -3
- data/lib/google/apis/checks_v1alpha/service.rb +31 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7e06fd4215876cbeb8ce475612ed78de1fb9d50712326038d2be2d25713a995
|
4
|
+
data.tar.gz: fbd2d53c38b83eab94f7498ab01b17bdfeaba09ac4b499cde4a2b61e1f008b26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 797aead9a138fc19ed03c365b1c9a1231dc59e1ba3d77fe33927fd4dba10a2ccb34c53cd755fa0246c95f26b015943ecefd60ac18005881045dde4bfdc28976c
|
7
|
+
data.tar.gz: 7d4570f1b9b23822fbac5a4ce5a3a4a7e773b8750e244d191e9615b262512d6ae7c12dab16f63a9a8e7d966a7333f3372729aae895bf1147fc213bdba109088b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-checks_v1alpha
|
2
2
|
|
3
|
+
### v0.11.0 (2024-09-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240904
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.10.0 (2024-05-19)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240424
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ChecksV1alpha
|
18
18
|
# Version of the google-apis-checks_v1alpha 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.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240904"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -396,6 +396,37 @@ module Google
|
|
396
396
|
execute_or_queue_command(command, &block)
|
397
397
|
end
|
398
398
|
|
399
|
+
# Gets the latest state of a long-running operation. Clients can use this method
|
400
|
+
# to poll the operation result at intervals as recommended by the API service.
|
401
|
+
# @param [String] name
|
402
|
+
# The name of the operation resource.
|
403
|
+
# @param [String] fields
|
404
|
+
# Selector specifying which fields to include in a partial response.
|
405
|
+
# @param [String] quota_user
|
406
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
407
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
408
|
+
# @param [Google::Apis::RequestOptions] options
|
409
|
+
# Request-specific options
|
410
|
+
#
|
411
|
+
# @yield [result, err] Result & error if block supplied
|
412
|
+
# @yieldparam result [Google::Apis::ChecksV1alpha::Operation] parsed result object
|
413
|
+
# @yieldparam err [StandardError] error object if request failed
|
414
|
+
#
|
415
|
+
# @return [Google::Apis::ChecksV1alpha::Operation]
|
416
|
+
#
|
417
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
418
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
419
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
420
|
+
def get_account_repo_operation(name, fields: nil, quota_user: nil, options: nil, &block)
|
421
|
+
command = make_simple_command(:get, 'v1alpha/{+name}', options)
|
422
|
+
command.response_representation = Google::Apis::ChecksV1alpha::Operation::Representation
|
423
|
+
command.response_class = Google::Apis::ChecksV1alpha::Operation
|
424
|
+
command.params['name'] = name unless name.nil?
|
425
|
+
command.query['fields'] = fields unless fields.nil?
|
426
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
427
|
+
execute_or_queue_command(command, &block)
|
428
|
+
end
|
429
|
+
|
399
430
|
# Analyzes the uploaded app bundle and returns a google.longrunning.Operation
|
400
431
|
# containing the generated Report. ## Example (upload only) Send a regular POST
|
401
432
|
# request with the header `X-Goog-Upload-Protocol: raw`. ``` POST https://checks.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-checks_v1alpha
|
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: 2024-
|
11
|
+
date: 2024-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-checks_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-checks_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-checks_v1alpha/v0.11.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-checks_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|