google-apis-composer_v1beta1 0.53.0 → 0.54.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 +4 -0
- data/lib/google/apis/composer_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/composer_v1beta1/service.rb +64 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 29e2286a22e7cd81d4b6388ffede1bae7b26ab95669f30dc2a641bdea4a3a5e1
|
|
4
|
+
data.tar.gz: 1553f3e77491577aef2e7c7c0cf98d0eb29b03a4ef39d998bcfb2f234f8fa725
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 504c5b6770edf9a904eadbe294d4d13f52e15fef4fea08577a3fb97ed16a048121c3d84c0950612dc694d1968edcb229afbe4db150c742b3eae25f4dfc59ef93
|
|
7
|
+
data.tar.gz: bb82de81f07e4dea1a59ff1aec3e20264b0f87bf6e5a6b5760aa6325f72616e21e5a0f85bc7209c8bd6dab92ed7f8ecde97352e16d4547c188bb21fbd40159ad
|
data/CHANGELOG.md
CHANGED
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ComposerV1beta1
|
|
18
18
|
# Version of the google-apis-composer_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.54.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 = "20251104"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -612,6 +612,70 @@ module Google
|
|
|
612
612
|
execute_or_queue_command(command, &block)
|
|
613
613
|
end
|
|
614
614
|
|
|
615
|
+
# Start a new task analysis operation.
|
|
616
|
+
# @param [String] task_instance
|
|
617
|
+
# Required. Fully qualified task instance resource name in the form: projects/`
|
|
618
|
+
# project`/locations/`location`/environments/`environment`/dags/`dag`/dagRuns/`
|
|
619
|
+
# dag_run`/taskInstances/`task_instance_with_optional_map_index`
|
|
620
|
+
# @param [String] fields
|
|
621
|
+
# Selector specifying which fields to include in a partial response.
|
|
622
|
+
# @param [String] quota_user
|
|
623
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
624
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
625
|
+
# @param [Google::Apis::RequestOptions] options
|
|
626
|
+
# Request-specific options
|
|
627
|
+
#
|
|
628
|
+
# @yield [result, err] Result & error if block supplied
|
|
629
|
+
# @yieldparam result [Google::Apis::ComposerV1beta1::Operation] parsed result object
|
|
630
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
631
|
+
#
|
|
632
|
+
# @return [Google::Apis::ComposerV1beta1::Operation]
|
|
633
|
+
#
|
|
634
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
635
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
636
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
637
|
+
def analyze_task_instance_task(task_instance, fields: nil, quota_user: nil, options: nil, &block)
|
|
638
|
+
command = make_simple_command(:post, 'v1beta1/{+taskInstance}:analyzeTask', options)
|
|
639
|
+
command.response_representation = Google::Apis::ComposerV1beta1::Operation::Representation
|
|
640
|
+
command.response_class = Google::Apis::ComposerV1beta1::Operation
|
|
641
|
+
command.params['taskInstance'] = task_instance unless task_instance.nil?
|
|
642
|
+
command.query['fields'] = fields unless fields.nil?
|
|
643
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
644
|
+
execute_or_queue_command(command, &block)
|
|
645
|
+
end
|
|
646
|
+
|
|
647
|
+
# Retrieve task analysis operation for a task instance if it exists.
|
|
648
|
+
# @param [String] task_instance
|
|
649
|
+
# Required. Fully qualified task instance resource name in the form: projects/`
|
|
650
|
+
# project`/locations/`location`/environments/`environment`/dags/`dag`/dagRuns/`
|
|
651
|
+
# dag_run`/taskInstances/`task_instance_with_optional_map_index`
|
|
652
|
+
# @param [String] fields
|
|
653
|
+
# Selector specifying which fields to include in a partial response.
|
|
654
|
+
# @param [String] quota_user
|
|
655
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
656
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
657
|
+
# @param [Google::Apis::RequestOptions] options
|
|
658
|
+
# Request-specific options
|
|
659
|
+
#
|
|
660
|
+
# @yield [result, err] Result & error if block supplied
|
|
661
|
+
# @yieldparam result [Google::Apis::ComposerV1beta1::Operation] parsed result object
|
|
662
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
663
|
+
#
|
|
664
|
+
# @return [Google::Apis::ComposerV1beta1::Operation]
|
|
665
|
+
#
|
|
666
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
667
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
668
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
669
|
+
def get_project_location_environment_dag_dag_run_task_instance_analyze_task_operation(task_instance, fields: nil, quota_user: nil, options: nil, &block)
|
|
670
|
+
command = make_simple_command(:get, 'v1beta1/{+taskInstance}:getAnalyzeTaskOperation', options)
|
|
671
|
+
command.response_representation = Google::Apis::ComposerV1beta1::Operation::Representation
|
|
672
|
+
command.response_class = Google::Apis::ComposerV1beta1::Operation
|
|
673
|
+
command.params['taskInstance'] = task_instance unless task_instance.nil?
|
|
674
|
+
command.query['fields'] = fields unless fields.nil?
|
|
675
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
676
|
+
execute_or_queue_command(command, &block)
|
|
677
|
+
end
|
|
678
|
+
|
|
615
679
|
# Creates a user workloads ConfigMap. This method is supported for Cloud
|
|
616
680
|
# Composer environments in versions composer-3-airflow-*.*.*-build.* and newer.
|
|
617
681
|
# @param [String] parent
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-composer_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.54.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-composer_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.54.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-composer_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|