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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1c0ccf11bdb236ad67c820e9a9db82d5d5570536390abb0155471a66598ad559
4
- data.tar.gz: 704a371a3ab1e740c823ba3dff7550f37c0becab61caaa98688d407be07261a3
3
+ metadata.gz: 29e2286a22e7cd81d4b6388ffede1bae7b26ab95669f30dc2a641bdea4a3a5e1
4
+ data.tar.gz: 1553f3e77491577aef2e7c7c0cf98d0eb29b03a4ef39d998bcfb2f234f8fa725
5
5
  SHA512:
6
- metadata.gz: 628f6d209dee39de05ca755726ce5de2e4cecbf4f7278893ba34108999d401876464851f204a2f7ea4a75c16e959cd5db514efc469aa009e68ef8280a535db3c
7
- data.tar.gz: 0b5519b45bfacebce2b136d6641f4c5e873b2e68656fecea0f7830cb2440ff26850a5494266618a807e04332a925789f68c41bcbbe64d296192420b68b5961bb
6
+ metadata.gz: 504c5b6770edf9a904eadbe294d4d13f52e15fef4fea08577a3fb97ed16a048121c3d84c0950612dc694d1968edcb229afbe4db150c742b3eae25f4dfc59ef93
7
+ data.tar.gz: bb82de81f07e4dea1a59ff1aec3e20264b0f87bf6e5a6b5760aa6325f72616e21e5a0f85bc7209c8bd6dab92ed7f8ecde97352e16d4547c188bb21fbd40159ad
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-composer_v1beta1
2
2
 
3
+ ### v0.54.0 (2025-11-16)
4
+
5
+ * Regenerated from discovery document revision 20251104
6
+
3
7
  ### v0.53.0 (2025-10-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20250928
@@ -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.53.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 = "20250928"
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.53.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.53.0
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: