You are viewing documentation for version 1 of the AWS SDK for Ruby. Version 2 documentation can be found here.

Class: AWS::DataPipeline::Client::V20121029

Inherits:
AWS::DataPipeline::Client show all
Defined in:
lib/aws/data_pipeline/client.rb

Constant Summary

Constant Summary

Constants inherited from AWS::DataPipeline::Client

API_VERSION

Instance Attribute Summary

Attributes inherited from Core::Client

#config

Instance Method Summary collapse

Methods inherited from Core::Client

#initialize, #log_warning, #operations, #with_http_handler, #with_options

Constructor Details

This class inherits a constructor from AWS::Core::Client

Instance Method Details

#activate_pipeline(options = {}) ⇒ Core::Response

Calls the ActivatePipeline API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :pipeline_id - required - (String) The identifier of the pipeline to activate.

Returns:

#create_pipeline(options = {}) ⇒ Core::Response

Calls the CreatePipeline API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :name - required - (String) The name of the new pipeline. You can use the same name for multiple pipelines associated with your AWS account, because AWS Data Pipeline assigns each new pipeline a unique pipeline identifier.
    • :unique_id - required - (String) A unique identifier that you specify. This identifier is not the same as the pipeline identifier assigned by AWS Data Pipeline. You are responsible for defining the format and ensuring the uniqueness of this identifier. You use this parameter to ensure idempotency during repeated calls to CreatePipeline. For example, if the first call to CreatePipeline does not return a clear success, you can pass in the same unique identifier and pipeline name combination on a subsequent call to CreatePipeline. CreatePipeline ensures that if a pipeline already exists with the same name and unique identifier, a new pipeline will not be created. Instead, you'll receive the pipeline identifier from the previous attempt. The uniqueness of the name and unique identifier combination is scoped to the AWS account or IAM user credentials.
    • :description - (String) The description of the new pipeline.

Returns:

  • (Core::Response)

    The #data method of the response object returns a hash with the following structure:

    • :pipeline_id - (String)

#delete_pipeline(options = {}) ⇒ Core::Response

Calls the DeletePipeline API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :pipeline_id - required - (String) The identifier of the pipeline to be deleted.

Returns:

#describe_objects(options = {}) ⇒ Core::Response

Calls the DescribeObjects API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :pipeline_id - required - (String) Identifier of the pipeline that contains the object definitions.
    • :object_ids - required - (Array<) Identifiers of the pipeline objects that contain the definitions to be described. You can pass as many as 25 identifiers in a single call to DescribeObjects
    • :evaluate_expressions - (Boolean)
    • :marker - (String) The starting point for the results to be returned. The first time you call DescribeObjects, this value should be empty. As long as the action returns HasMoreResults as True, you can call DescribeObjects again and pass the marker value from the response to retrieve the next set of results.

Returns:

  • (Core::Response)

    The #data method of the response object returns a hash with the following structure:

    • :pipeline_objects - (Array)
      • :id - (String)
      • :name - (String)
      • :fields - (Array)
        • :key - (String)
        • :string_value - (String)
        • :ref_value - (String)
    • :marker - (String)
    • :has_more_results - (Boolean)

#describe_pipelines(options = {}) ⇒ Core::Response

Calls the DescribePipelines API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :pipeline_ids - required - (Array<) Identifiers of the pipelines to describe. You can pass as many as 25 identifiers in a single call to DescribePipelines. You can obtain pipeline identifiers by calling ListPipelines.

Returns:

  • (Core::Response)

    The #data method of the response object returns a hash with the following structure:

    • :pipeline_description_list - (Array)
      • :pipeline_id - (String)
      • :name - (String)
      • :fields - (Array)
        • :key - (String)
        • :string_value - (String)
        • :ref_value - (String)
      • :description - (String)

#evaluate_expression(options = {}) ⇒ Core::Response

Calls the EvaluateExpression API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :pipeline_id - required - (String) The identifier of the pipeline.
    • :object_id - required - (String) The identifier of the object.
    • :expression - required - (String) The expression to evaluate.

Returns:

  • (Core::Response)

    The #data method of the response object returns a hash with the following structure:

    • :evaluated_expression - (String)

#get_pipeline_definition(options = {}) ⇒ Core::Response

Calls the GetPipelineDefinition API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :pipeline_id - required - (String) The identifier of the pipeline.
    • :version - (String) The version of the pipeline definition to retrieve.

Returns:

  • (Core::Response)

    The #data method of the response object returns a hash with the following structure:

    • :pipeline_objects - (Array)
      • :id - (String)
      • :name - (String)
      • :fields - (Array)
        • :key - (String)
        • :string_value - (String)
        • :ref_value - (String)

#list_pipelines(options = {}) ⇒ Core::Response

Calls the ListPipelines API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :marker - (String) The starting point for the results to be returned. The first time you call ListPipelines, this value should be empty. As long as the action returns HasMoreResults as True, you can call ListPipelines again and pass the marker value from the response to retrieve the next set of results.

Returns:

  • (Core::Response)

    The #data method of the response object returns a hash with the following structure:

    • :pipeline_id_list - (Array)
      • :id - (String)
      • :name - (String)
    • :marker - (String)
    • :has_more_results - (Boolean)

#poll_for_task(options = {}) ⇒ Core::Response

Calls the PollForTask API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :worker_group - required - (String) Indicates the type of task the task runner is configured to accept and process. The worker group is set as a field on objects in the pipeline when they are created. You can only specify a single value for workerGroup in the call to PollForTask. There are no wildcard values permitted in workerGroup, the string must be an exact, case-sensitive, match.
    • :hostname - (String) The public DNS name of the calling task runner.
    • :instance_identity - (Hash) Identity information for the Amazon EC2 instance that is hosting the task runner. You can get this value by calling the URI, http://169.254.169.254/latest/meta-data/instance-id, from the EC2 instance. For more information, go to Instance Metadata in the Amazon Elastic Compute Cloud User Guide. Passing in this value proves that your task runner is running on an EC2 instance, and ensures the proper AWS Data Pipeline service charges are applied to your pipeline.
      • :document - (String) A description of an Amazon EC2 instance that is generated when the instance is launched and exposed to the instance via the instance meta-data service in the form of a JSON representation of an object.
      • :signature - (String) A signature which can be used to verify the accuracy and authenticity of the information provided in the instance identity document.

Returns:

  • (Core::Response)

    The #data method of the response object returns a hash with the following structure:

    • :task_object - (Hash)
      • :task_id - (String)
      • :pipeline_id - (String)
      • :attempt_id - (String)
      • :objects - (Hash<String,Hash>)
        • :id - (String)
        • :name - (String)
        • :fields - (Array)
          • :key - (String)
          • :string_value - (String)
          • :ref_value - (String)

#put_pipeline_definition(options = {}) ⇒ Core::Response

Calls the PutPipelineDefinition API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :pipeline_id - required - (String) The identifier of the pipeline to be configured.
    • :pipeline_objects - required - (Array<) The objects that define the pipeline. These will overwrite the existing pipeline definition.
      • :id - required - (String) Identifier of the object.
      • :name - required - (String) Name of the object.
      • :fields - required - (Array<) Key-value pairs that define the properties of the object.
        • :key - required - (String) The field identifier.
        • :string_value - (String) The field value, expressed as a String.
        • :ref_value - (String) The field value, expressed as the identifier of another object.

Returns:

  • (Core::Response)

    The #data method of the response object returns a hash with the following structure:

    • :validation_errors - (Array)
      • :id - (String)
      • :errors - (Array)
    • :errored - (Boolean)

#query_objects(options = {}) ⇒ Core::Response

Calls the QueryObjects API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :pipeline_id - required - (String) Identifier of the pipeline to be queried for object names.
    • :query - (Hash) Query that defines the objects to be returned. The Query object can contain a maximum of ten selectors. The conditions in the query are limited to top-level String fields in the object. These filters can be applied to components, instances, and attempts.
      • :selectors - (Array<) List of selectors that define the query. An object must satisfy all of the selectors to match the query.
        • :field_name - (String) The name of the field that the operator will be applied to. The field name is the "key" portion of the field definition in the pipeline definition syntax that is used by the AWS Data Pipeline API. If the field is not set on the object, the condition fails.
        • :operator - (Hash)
          • :type - (String) The logical operation to be performed: equal (EQ), equal reference (REF_EQ), less than or equal (LE), greater than or equal (GE), or between (BETWEEN). Equal reference (REF_EQ) can be used only with reference fields. The other comparison types can be used only with String fields. The comparison types you can use apply only to certain object fields, as detailed below. The comparison operators EQ and REF_EQ act on the following fields: name @sphere parent @componentParent @instanceParent @status @scheduledStartTime @scheduledEndTime @actualStartTime @actualEndTime The comparison operators GE, LE, and BETWEEN act on the following fields: @scheduledStartTime @scheduledEndTime @actualStartTime @actualEndTime Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name fields, you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS Data Pipeline. A best practice for user-defined fields that you add to a pipeline is to prefix their name with the string "my". Valid values include:
            • EQ
            • REF_EQ
            • LE
            • GE
            • BETWEEN
          • :values - (Array<) The value that the actual field value will be compared with.
    • :sphere - required - (String) Specifies whether the query applies to components or instances. Allowable values: COMPONENT, INSTANCE, ATTEMPT.
    • :marker - (String) The starting point for the results to be returned. The first time you call QueryObjects, this value should be empty. As long as the action returns HasMoreResults as True, you can call QueryObjects again and pass the marker value from the response to retrieve the next set of results.
    • :limit - (Integer) Specifies the maximum number of object names that QueryObjects will return in a single call. The default value is 100.

Returns:

  • (Core::Response)

    The #data method of the response object returns a hash with the following structure:

    • :ids - (Array)
    • :marker - (String)
    • :has_more_results - (Boolean)

#report_task_progress(options = {}) ⇒ Core::Response

Calls the ReportTaskProgress API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :task_id - required - (String) Identifier of the task assigned to the task runner. This value is provided in the TaskObject that the service returns with the response for the PollForTask action.

Returns:

  • (Core::Response)

    The #data method of the response object returns a hash with the following structure:

    • :canceled - (Boolean)

#report_task_runner_heartbeat(options = {}) ⇒ Core::Response

Calls the ReportTaskRunnerHeartbeat API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :taskrunner_id - required - (String) The identifier of the task runner. This value should be unique across your AWS account. In the case of AWS Data Pipeline Task Runner launched on a resource managed by AWS Data Pipeline, the web service provides a unique identifier when it launches the application. If you have written a custom task runner, you should assign a unique identifier for the task runner.
    • :worker_group - (String) Indicates the type of task the task runner is configured to accept and process. The worker group is set as a field on objects in the pipeline when they are created. You can only specify a single value for workerGroup in the call to ReportTaskRunnerHeartbeat. There are no wildcard values permitted in workerGroup, the string must be an exact, case-sensitive, match.
    • :hostname - (String) The public DNS name of the calling task runner.

Returns:

  • (Core::Response)

    The #data method of the response object returns a hash with the following structure:

    • :terminate - (Boolean)

#set_status(options = {}) ⇒ Core::Response

Calls the SetStatus API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :pipeline_id - required - (String) Identifies the pipeline that contains the objects.
    • :object_ids - required - (Array<) Identifies an array of objects. The corresponding objects can be either physical or components, but not a mix of both types.
    • :status - required - (String) Specifies the status to be set on all the objects in objectIds. For components, this can be either PAUSE or RESUME. For instances, this can be either CANCEL, RERUN, or MARK_FINISHED.

Returns:

#set_task_status(options = {}) ⇒ Core::Response

Calls the SetTaskStatus API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :task_id - required - (String) Identifies the task assigned to the task runner. This value is set in the TaskObject that is returned by the PollForTask action.
    • :task_status - required - (String) If FINISHED, the task successfully completed. If FAILED the task ended unsuccessfully. The FALSE value is used by preconditions. Valid values include:
      • FINISHED
      • FAILED
      • FALSE
    • :error_code - (Integer) If an error occurred during the task, specifies a numerical value that represents the error. This value is set on the physical attempt object. It is used to display error information to the user. The web service does not parse this value.
    • :error_message - (String) If an error occurred during the task, specifies a text description of the error. This value is set on the physical attempt object. It is used to display error information to the user. The web service does not parse this value.
    • :error_stack_trace - (String) If an error occurred during the task, specifies the stack trace associated with the error. This value is set on the physical attempt object. It is used to display error information to the user. The web service does not parse this value.

Returns:

#validate_pipeline_definition(options = {}) ⇒ Core::Response

Calls the ValidatePipelineDefinition API operation.

Parameters:

  • options (Hash) (defaults to: {})
    • :pipeline_id - required - (String) Identifies the pipeline whose definition is to be validated.
    • :pipeline_objects - required - (Array<) A list of objects that define the pipeline changes to validate against the pipeline.
      • :id - required - (String) Identifier of the object.
      • :name - required - (String) Name of the object.
      • :fields - required - (Array<) Key-value pairs that define the properties of the object.
        • :key - required - (String) The field identifier.
        • :string_value - (String) The field value, expressed as a String.
        • :ref_value - (String) The field value, expressed as the identifier of another object.

Returns:

  • (Core::Response)

    The #data method of the response object returns a hash with the following structure:

    • :validation_errors - (Array)
      • :id - (String)
      • :errors - (Array)
    • :errored - (Boolean)