google-apis-cloudscheduler_v1 0.40.0 → 0.41.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 42f1c32afa1bc53fdb3cc9504e909c86879baa88f9f248621688f9857aaddde3
|
4
|
+
data.tar.gz: 00752a5234a378fdb274adc84c3a7ce200602351e4710bb063fe3802deaeffe4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea74ac8dd1aa3249c1602bdc0a300560c73ce347e09c84fff47f819b90d27d1846e94acf44ed7db2862eccb9e34e5c080e8689e0ce48da843193b40eaf6063cc
|
7
|
+
data.tar.gz: 0dba18a6a9b8db14bf99c6a08d42f5d6a37998067e0bc284016cbe102e1cc45fc6f97c2da7bfc95accda4968f2301fa556fc9241db0ed320f9a08388c4ee8659
|
data/CHANGELOG.md
CHANGED
@@ -524,6 +524,13 @@ module Google
|
|
524
524
|
# @return [Array<Google::Apis::CloudschedulerV1::Operation>]
|
525
525
|
attr_accessor :operations
|
526
526
|
|
527
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
528
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
529
|
+
# when attempting to list all resources across all supported locations.
|
530
|
+
# Corresponds to the JSON property `unreachable`
|
531
|
+
# @return [Array<String>]
|
532
|
+
attr_accessor :unreachable
|
533
|
+
|
527
534
|
def initialize(**args)
|
528
535
|
update!(**args)
|
529
536
|
end
|
@@ -532,6 +539,7 @@ module Google
|
|
532
539
|
def update!(**args)
|
533
540
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
534
541
|
@operations = args[:operations] if args.key?(:operations)
|
542
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
535
543
|
end
|
536
544
|
end
|
537
545
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudschedulerV1
|
18
18
|
# Version of the google-apis-cloudscheduler_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.41.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250925"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -246,6 +246,7 @@ module Google
|
|
246
246
|
property :next_page_token, as: 'nextPageToken'
|
247
247
|
collection :operations, as: 'operations', class: Google::Apis::CloudschedulerV1::Operation, decorator: Google::Apis::CloudschedulerV1::Operation::Representation
|
248
248
|
|
249
|
+
collection :unreachable, as: 'unreachable'
|
249
250
|
end
|
250
251
|
end
|
251
252
|
|
@@ -537,6 +537,13 @@ module Google
|
|
537
537
|
# The standard list page size.
|
538
538
|
# @param [String] page_token
|
539
539
|
# The standard list page token.
|
540
|
+
# @param [Boolean] return_partial_success
|
541
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
542
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
543
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
544
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
545
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
546
|
+
# explicitly documented otherwise in service or product specific documentation.
|
540
547
|
# @param [String] fields
|
541
548
|
# Selector specifying which fields to include in a partial response.
|
542
549
|
# @param [String] quota_user
|
@@ -554,7 +561,7 @@ module Google
|
|
554
561
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
555
562
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
556
563
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
557
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
564
|
+
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
558
565
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
559
566
|
command.response_representation = Google::Apis::CloudschedulerV1::ListOperationsResponse::Representation
|
560
567
|
command.response_class = Google::Apis::CloudschedulerV1::ListOperationsResponse
|
@@ -562,6 +569,7 @@ module Google
|
|
562
569
|
command.query['filter'] = filter unless filter.nil?
|
563
570
|
command.query['pageSize'] = page_size unless page_size.nil?
|
564
571
|
command.query['pageToken'] = page_token unless page_token.nil?
|
572
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
565
573
|
command.query['fields'] = fields unless fields.nil?
|
566
574
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
567
575
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudscheduler_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.41.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudscheduler_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudscheduler_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudscheduler_v1/v0.41.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudscheduler_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|