aws-sdk-datazone 1.74.0 → 1.75.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/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +371 -1
- data/lib/aws-sdk-datazone/client_api.rb +257 -0
- data/lib/aws-sdk-datazone/types.rb +704 -0
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +117 -0
- data/sig/types.rbs +174 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ee9801b1f0252bd2566f20c2108730e495f5ef36f32d6e403dbe0b713690aa3b
|
|
4
|
+
data.tar.gz: a42babe8501a364466e477443c3bf6780738c56c0acf5b0ca801a84a2d0d56fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b9d28867ffc68237360435cc526d2d4f5c380d2f67dadb37e51ef5ea0d5c44e7abb2dff2772854ef872c051096457fd66aded38e17c3299e3600ffd0d09a63f
|
|
7
|
+
data.tar.gz: ef63d6efbad1155cb1ea03e1686c935909de7897858a768211f62886557693d5a0381d977cd71d205fd5c2bf283663192a80ad59f8d229bcfe0ba6a3759f9f85
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.75.0
|
|
@@ -7621,6 +7621,93 @@ module Aws::DataZone
|
|
|
7621
7621
|
req.send_request(options)
|
|
7622
7622
|
end
|
|
7623
7623
|
|
|
7624
|
+
# Gets the details of a notebook run in an Amazon DataZone domain.
|
|
7625
|
+
#
|
|
7626
|
+
# @option params [required, String] :domain_identifier
|
|
7627
|
+
# The identifier of the Amazon DataZone domain in which the notebook run
|
|
7628
|
+
# exists.
|
|
7629
|
+
#
|
|
7630
|
+
# @option params [required, String] :identifier
|
|
7631
|
+
# The identifier of the notebook run.
|
|
7632
|
+
#
|
|
7633
|
+
# @return [Types::GetNotebookRunOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7634
|
+
#
|
|
7635
|
+
# * {Types::GetNotebookRunOutput#id #id} => String
|
|
7636
|
+
# * {Types::GetNotebookRunOutput#domain_id #domain_id} => String
|
|
7637
|
+
# * {Types::GetNotebookRunOutput#owning_project_id #owning_project_id} => String
|
|
7638
|
+
# * {Types::GetNotebookRunOutput#notebook_id #notebook_id} => String
|
|
7639
|
+
# * {Types::GetNotebookRunOutput#schedule_id #schedule_id} => String
|
|
7640
|
+
# * {Types::GetNotebookRunOutput#status #status} => String
|
|
7641
|
+
# * {Types::GetNotebookRunOutput#cell_order #cell_order} => Array<Types::CellInformation>
|
|
7642
|
+
# * {Types::GetNotebookRunOutput#metadata #metadata} => Hash<String,String>
|
|
7643
|
+
# * {Types::GetNotebookRunOutput#parameters #parameters} => Hash<String,String>
|
|
7644
|
+
# * {Types::GetNotebookRunOutput#compute_configuration #compute_configuration} => Types::ComputeConfig
|
|
7645
|
+
# * {Types::GetNotebookRunOutput#network_configuration #network_configuration} => Types::NetworkConfig
|
|
7646
|
+
# * {Types::GetNotebookRunOutput#timeout_configuration #timeout_configuration} => Types::TimeoutConfig
|
|
7647
|
+
# * {Types::GetNotebookRunOutput#environment_configuration #environment_configuration} => Types::EnvironmentConfig
|
|
7648
|
+
# * {Types::GetNotebookRunOutput#storage_configuration #storage_configuration} => Types::StorageConfig
|
|
7649
|
+
# * {Types::GetNotebookRunOutput#trigger_source #trigger_source} => Types::TriggerSource
|
|
7650
|
+
# * {Types::GetNotebookRunOutput#error #error} => Types::NotebookRunError
|
|
7651
|
+
# * {Types::GetNotebookRunOutput#created_at #created_at} => Time
|
|
7652
|
+
# * {Types::GetNotebookRunOutput#created_by #created_by} => String
|
|
7653
|
+
# * {Types::GetNotebookRunOutput#updated_at #updated_at} => Time
|
|
7654
|
+
# * {Types::GetNotebookRunOutput#updated_by #updated_by} => String
|
|
7655
|
+
# * {Types::GetNotebookRunOutput#started_at #started_at} => Time
|
|
7656
|
+
# * {Types::GetNotebookRunOutput#completed_at #completed_at} => Time
|
|
7657
|
+
#
|
|
7658
|
+
# @example Request syntax with placeholder values
|
|
7659
|
+
#
|
|
7660
|
+
# resp = client.get_notebook_run({
|
|
7661
|
+
# domain_identifier: "DomainId", # required
|
|
7662
|
+
# identifier: "NotebookRunId", # required
|
|
7663
|
+
# })
|
|
7664
|
+
#
|
|
7665
|
+
# @example Response structure
|
|
7666
|
+
#
|
|
7667
|
+
# resp.id #=> String
|
|
7668
|
+
# resp.domain_id #=> String
|
|
7669
|
+
# resp.owning_project_id #=> String
|
|
7670
|
+
# resp.notebook_id #=> String
|
|
7671
|
+
# resp.schedule_id #=> String
|
|
7672
|
+
# resp.status #=> String, one of "QUEUED", "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED"
|
|
7673
|
+
# resp.cell_order #=> Array
|
|
7674
|
+
# resp.metadata #=> Hash
|
|
7675
|
+
# resp.metadata["MetadataKey"] #=> String
|
|
7676
|
+
# resp.parameters #=> Hash
|
|
7677
|
+
# resp.parameters["ParameterKey"] #=> String
|
|
7678
|
+
# resp.compute_configuration.instance_type #=> String
|
|
7679
|
+
# resp.compute_configuration.environment_version #=> String
|
|
7680
|
+
# resp.network_configuration.network_access_type #=> String, one of "PUBLIC_INTERNET_ONLY", "VPC_ONLY"
|
|
7681
|
+
# resp.network_configuration.vpc_id #=> String
|
|
7682
|
+
# resp.network_configuration.subnet_ids #=> Array
|
|
7683
|
+
# resp.network_configuration.subnet_ids[0] #=> String
|
|
7684
|
+
# resp.network_configuration.security_group_ids #=> Array
|
|
7685
|
+
# resp.network_configuration.security_group_ids[0] #=> String
|
|
7686
|
+
# resp.timeout_configuration.run_timeout_in_minutes #=> Integer
|
|
7687
|
+
# resp.environment_configuration.image_version #=> String
|
|
7688
|
+
# resp.environment_configuration.package_config.package_manager #=> String, one of "UV"
|
|
7689
|
+
# resp.environment_configuration.package_config.package_specification #=> String
|
|
7690
|
+
# resp.storage_configuration.project_s3_path #=> String
|
|
7691
|
+
# resp.storage_configuration.kms_key_arn #=> String
|
|
7692
|
+
# resp.trigger_source.type #=> String, one of "MANUAL", "SCHEDULED", "WORKFLOW"
|
|
7693
|
+
# resp.trigger_source.name #=> String
|
|
7694
|
+
# resp.error.message #=> String
|
|
7695
|
+
# resp.created_at #=> Time
|
|
7696
|
+
# resp.created_by #=> String
|
|
7697
|
+
# resp.updated_at #=> Time
|
|
7698
|
+
# resp.updated_by #=> String
|
|
7699
|
+
# resp.started_at #=> Time
|
|
7700
|
+
# resp.completed_at #=> Time
|
|
7701
|
+
#
|
|
7702
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetNotebookRun AWS API Documentation
|
|
7703
|
+
#
|
|
7704
|
+
# @overload get_notebook_run(params = {})
|
|
7705
|
+
# @param [Hash] params ({})
|
|
7706
|
+
def get_notebook_run(params = {}, options = {})
|
|
7707
|
+
req = build_request(:get_notebook_run, params)
|
|
7708
|
+
req.send_request(options)
|
|
7709
|
+
end
|
|
7710
|
+
|
|
7624
7711
|
# Gets a project in Amazon DataZone.
|
|
7625
7712
|
#
|
|
7626
7713
|
# @option params [required, String] :domain_identifier
|
|
@@ -9979,6 +10066,88 @@ module Aws::DataZone
|
|
|
9979
10066
|
req.send_request(options)
|
|
9980
10067
|
end
|
|
9981
10068
|
|
|
10069
|
+
# Lists notebook runs in an Amazon DataZone domain.
|
|
10070
|
+
#
|
|
10071
|
+
# @option params [required, String] :domain_identifier
|
|
10072
|
+
# The identifier of the Amazon DataZone domain in which to list notebook
|
|
10073
|
+
# runs.
|
|
10074
|
+
#
|
|
10075
|
+
# @option params [required, String] :owning_project_identifier
|
|
10076
|
+
# The identifier of the project that owns the notebook runs.
|
|
10077
|
+
#
|
|
10078
|
+
# @option params [String] :notebook_identifier
|
|
10079
|
+
# The identifier of the notebook to filter runs by.
|
|
10080
|
+
#
|
|
10081
|
+
# @option params [String] :status
|
|
10082
|
+
# The status to filter notebook runs by.
|
|
10083
|
+
#
|
|
10084
|
+
# @option params [String] :schedule_identifier
|
|
10085
|
+
# The identifier of the schedule to filter notebook runs by.
|
|
10086
|
+
#
|
|
10087
|
+
# @option params [Integer] :max_results
|
|
10088
|
+
# The maximum number of notebook runs to return in a single call. When
|
|
10089
|
+
# the number of notebook runs exceeds the value of `MaxResults`, the
|
|
10090
|
+
# response contains a `NextToken` value.
|
|
10091
|
+
#
|
|
10092
|
+
# @option params [String] :sort_order
|
|
10093
|
+
# The sort order for the results.
|
|
10094
|
+
#
|
|
10095
|
+
# @option params [String] :next_token
|
|
10096
|
+
# When the number of notebook runs is greater than the default value for
|
|
10097
|
+
# the `MaxResults` parameter, or if you explicitly specify a value for
|
|
10098
|
+
# `MaxResults` that is less than the number of notebook runs, the
|
|
10099
|
+
# response includes a pagination token named `NextToken`. You can
|
|
10100
|
+
# specify this `NextToken` value in a subsequent call to
|
|
10101
|
+
# `ListNotebookRuns` to list the next set of notebook runs.
|
|
10102
|
+
#
|
|
10103
|
+
# @return [Types::ListNotebookRunsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10104
|
+
#
|
|
10105
|
+
# * {Types::ListNotebookRunsOutput#items #items} => Array<Types::NotebookRunSummary>
|
|
10106
|
+
# * {Types::ListNotebookRunsOutput#next_token #next_token} => String
|
|
10107
|
+
#
|
|
10108
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
10109
|
+
#
|
|
10110
|
+
# @example Request syntax with placeholder values
|
|
10111
|
+
#
|
|
10112
|
+
# resp = client.list_notebook_runs({
|
|
10113
|
+
# domain_identifier: "DomainId", # required
|
|
10114
|
+
# owning_project_identifier: "ProjectId", # required
|
|
10115
|
+
# notebook_identifier: "NotebookId",
|
|
10116
|
+
# status: "QUEUED", # accepts QUEUED, STARTING, RUNNING, STOPPING, STOPPED, SUCCEEDED, FAILED
|
|
10117
|
+
# schedule_identifier: "ScheduleId",
|
|
10118
|
+
# max_results: 1,
|
|
10119
|
+
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
|
10120
|
+
# next_token: "PaginationToken",
|
|
10121
|
+
# })
|
|
10122
|
+
#
|
|
10123
|
+
# @example Response structure
|
|
10124
|
+
#
|
|
10125
|
+
# resp.items #=> Array
|
|
10126
|
+
# resp.items[0].id #=> String
|
|
10127
|
+
# resp.items[0].domain_id #=> String
|
|
10128
|
+
# resp.items[0].owning_project_id #=> String
|
|
10129
|
+
# resp.items[0].notebook_id #=> String
|
|
10130
|
+
# resp.items[0].schedule_id #=> String
|
|
10131
|
+
# resp.items[0].status #=> String, one of "QUEUED", "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED"
|
|
10132
|
+
# resp.items[0].trigger_source.type #=> String, one of "MANUAL", "SCHEDULED", "WORKFLOW"
|
|
10133
|
+
# resp.items[0].trigger_source.name #=> String
|
|
10134
|
+
# resp.items[0].created_at #=> Time
|
|
10135
|
+
# resp.items[0].created_by #=> String
|
|
10136
|
+
# resp.items[0].updated_at #=> Time
|
|
10137
|
+
# resp.items[0].updated_by #=> String
|
|
10138
|
+
# resp.items[0].started_at #=> Time
|
|
10139
|
+
# resp.items[0].completed_at #=> Time
|
|
10140
|
+
# resp.next_token #=> String
|
|
10141
|
+
#
|
|
10142
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListNotebookRuns AWS API Documentation
|
|
10143
|
+
#
|
|
10144
|
+
# @overload list_notebook_runs(params = {})
|
|
10145
|
+
# @param [Hash] params ({})
|
|
10146
|
+
def list_notebook_runs(params = {}, options = {})
|
|
10147
|
+
req = build_request(:list_notebook_runs, params)
|
|
10148
|
+
req.send_request(options)
|
|
10149
|
+
end
|
|
10150
|
+
|
|
9982
10151
|
# Lists all Amazon DataZone notifications.
|
|
9983
10152
|
#
|
|
9984
10153
|
# @option params [required, String] :domain_identifier
|
|
@@ -12817,6 +12986,207 @@ module Aws::DataZone
|
|
|
12817
12986
|
req.send_request(options)
|
|
12818
12987
|
end
|
|
12819
12988
|
|
|
12989
|
+
# Starts a notebook run in an Amazon DataZone domain. A notebook run
|
|
12990
|
+
# represents the execution of a Amazon DataZone notebook within a
|
|
12991
|
+
# project. You can configure compute, network, timeout, and environment
|
|
12992
|
+
# settings for the run.
|
|
12993
|
+
#
|
|
12994
|
+
# @option params [required, String] :domain_identifier
|
|
12995
|
+
# The identifier of the Amazon DataZone domain in which the notebook run
|
|
12996
|
+
# is started.
|
|
12997
|
+
#
|
|
12998
|
+
# @option params [required, String] :owning_project_identifier
|
|
12999
|
+
# The identifier of the project that owns the notebook run.
|
|
13000
|
+
#
|
|
13001
|
+
# @option params [required, String] :notebook_identifier
|
|
13002
|
+
# The identifier of the notebook to run.
|
|
13003
|
+
#
|
|
13004
|
+
# @option params [String] :schedule_identifier
|
|
13005
|
+
# The identifier of the schedule associated with the notebook run.
|
|
13006
|
+
#
|
|
13007
|
+
# @option params [Types::ComputeConfig] :compute_configuration
|
|
13008
|
+
# The compute configuration for the notebook run, including instance
|
|
13009
|
+
# type and environment version.
|
|
13010
|
+
#
|
|
13011
|
+
# @option params [Types::NetworkConfig] :network_configuration
|
|
13012
|
+
# The network configuration for the notebook run, including network
|
|
13013
|
+
# access type and optional VPC settings.
|
|
13014
|
+
#
|
|
13015
|
+
# @option params [Types::TimeoutConfig] :timeout_configuration
|
|
13016
|
+
# The timeout configuration for the notebook run. The default timeout is
|
|
13017
|
+
# 720 minutes (12 hours) and the maximum is 1440 minutes (24 hours).
|
|
13018
|
+
#
|
|
13019
|
+
# @option params [Types::TriggerSource] :trigger_source
|
|
13020
|
+
# The source that triggered the notebook run.
|
|
13021
|
+
#
|
|
13022
|
+
# @option params [Hash<String,String>] :metadata
|
|
13023
|
+
# The metadata for the notebook run, specified as key-value pairs. You
|
|
13024
|
+
# can specify up to 50 entries, with keys up to 128 characters and
|
|
13025
|
+
# values up to 1024 characters.
|
|
13026
|
+
#
|
|
13027
|
+
# @option params [Hash<String,String>] :parameters
|
|
13028
|
+
# The sensitive parameters for the notebook run, specified as key-value
|
|
13029
|
+
# pairs. You can specify up to 50 entries, with keys up to 128
|
|
13030
|
+
# characters and values up to 1024 characters.
|
|
13031
|
+
#
|
|
13032
|
+
# @option params [String] :client_token
|
|
13033
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
13034
|
+
# request. This field is automatically populated if not provided.
|
|
13035
|
+
#
|
|
13036
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
13037
|
+
# not need to pass this option.**
|
|
13038
|
+
#
|
|
13039
|
+
# @return [Types::StartNotebookRunOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
13040
|
+
#
|
|
13041
|
+
# * {Types::StartNotebookRunOutput#id #id} => String
|
|
13042
|
+
# * {Types::StartNotebookRunOutput#domain_id #domain_id} => String
|
|
13043
|
+
# * {Types::StartNotebookRunOutput#owning_project_id #owning_project_id} => String
|
|
13044
|
+
# * {Types::StartNotebookRunOutput#notebook_id #notebook_id} => String
|
|
13045
|
+
# * {Types::StartNotebookRunOutput#schedule_id #schedule_id} => String
|
|
13046
|
+
# * {Types::StartNotebookRunOutput#status #status} => String
|
|
13047
|
+
# * {Types::StartNotebookRunOutput#cell_order #cell_order} => Array<Types::CellInformation>
|
|
13048
|
+
# * {Types::StartNotebookRunOutput#metadata #metadata} => Hash<String,String>
|
|
13049
|
+
# * {Types::StartNotebookRunOutput#parameters #parameters} => Hash<String,String>
|
|
13050
|
+
# * {Types::StartNotebookRunOutput#compute_configuration #compute_configuration} => Types::ComputeConfig
|
|
13051
|
+
# * {Types::StartNotebookRunOutput#network_configuration #network_configuration} => Types::NetworkConfig
|
|
13052
|
+
# * {Types::StartNotebookRunOutput#timeout_configuration #timeout_configuration} => Types::TimeoutConfig
|
|
13053
|
+
# * {Types::StartNotebookRunOutput#environment_configuration #environment_configuration} => Types::EnvironmentConfig
|
|
13054
|
+
# * {Types::StartNotebookRunOutput#storage_configuration #storage_configuration} => Types::StorageConfig
|
|
13055
|
+
# * {Types::StartNotebookRunOutput#trigger_source #trigger_source} => Types::TriggerSource
|
|
13056
|
+
# * {Types::StartNotebookRunOutput#error #error} => Types::NotebookRunError
|
|
13057
|
+
# * {Types::StartNotebookRunOutput#created_at #created_at} => Time
|
|
13058
|
+
# * {Types::StartNotebookRunOutput#created_by #created_by} => String
|
|
13059
|
+
# * {Types::StartNotebookRunOutput#updated_at #updated_at} => Time
|
|
13060
|
+
# * {Types::StartNotebookRunOutput#updated_by #updated_by} => String
|
|
13061
|
+
# * {Types::StartNotebookRunOutput#started_at #started_at} => Time
|
|
13062
|
+
# * {Types::StartNotebookRunOutput#completed_at #completed_at} => Time
|
|
13063
|
+
#
|
|
13064
|
+
# @example Request syntax with placeholder values
|
|
13065
|
+
#
|
|
13066
|
+
# resp = client.start_notebook_run({
|
|
13067
|
+
# domain_identifier: "DomainId", # required
|
|
13068
|
+
# owning_project_identifier: "ProjectId", # required
|
|
13069
|
+
# notebook_identifier: "NotebookId", # required
|
|
13070
|
+
# schedule_identifier: "ScheduleId",
|
|
13071
|
+
# compute_configuration: {
|
|
13072
|
+
# instance_type: "InstanceType",
|
|
13073
|
+
# environment_version: "String",
|
|
13074
|
+
# },
|
|
13075
|
+
# network_configuration: {
|
|
13076
|
+
# network_access_type: "PUBLIC_INTERNET_ONLY", # required, accepts PUBLIC_INTERNET_ONLY, VPC_ONLY
|
|
13077
|
+
# vpc_id: "String",
|
|
13078
|
+
# subnet_ids: ["String"],
|
|
13079
|
+
# security_group_ids: ["String"],
|
|
13080
|
+
# },
|
|
13081
|
+
# timeout_configuration: {
|
|
13082
|
+
# run_timeout_in_minutes: 1,
|
|
13083
|
+
# },
|
|
13084
|
+
# trigger_source: {
|
|
13085
|
+
# type: "MANUAL", # accepts MANUAL, SCHEDULED, WORKFLOW
|
|
13086
|
+
# name: "String",
|
|
13087
|
+
# },
|
|
13088
|
+
# metadata: {
|
|
13089
|
+
# "MetadataKey" => "MetadataValue",
|
|
13090
|
+
# },
|
|
13091
|
+
# parameters: {
|
|
13092
|
+
# "ParameterKey" => "ParameterValue",
|
|
13093
|
+
# },
|
|
13094
|
+
# client_token: "ClientToken",
|
|
13095
|
+
# })
|
|
13096
|
+
#
|
|
13097
|
+
# @example Response structure
|
|
13098
|
+
#
|
|
13099
|
+
# resp.id #=> String
|
|
13100
|
+
# resp.domain_id #=> String
|
|
13101
|
+
# resp.owning_project_id #=> String
|
|
13102
|
+
# resp.notebook_id #=> String
|
|
13103
|
+
# resp.schedule_id #=> String
|
|
13104
|
+
# resp.status #=> String, one of "QUEUED", "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED"
|
|
13105
|
+
# resp.cell_order #=> Array
|
|
13106
|
+
# resp.metadata #=> Hash
|
|
13107
|
+
# resp.metadata["MetadataKey"] #=> String
|
|
13108
|
+
# resp.parameters #=> Hash
|
|
13109
|
+
# resp.parameters["ParameterKey"] #=> String
|
|
13110
|
+
# resp.compute_configuration.instance_type #=> String
|
|
13111
|
+
# resp.compute_configuration.environment_version #=> String
|
|
13112
|
+
# resp.network_configuration.network_access_type #=> String, one of "PUBLIC_INTERNET_ONLY", "VPC_ONLY"
|
|
13113
|
+
# resp.network_configuration.vpc_id #=> String
|
|
13114
|
+
# resp.network_configuration.subnet_ids #=> Array
|
|
13115
|
+
# resp.network_configuration.subnet_ids[0] #=> String
|
|
13116
|
+
# resp.network_configuration.security_group_ids #=> Array
|
|
13117
|
+
# resp.network_configuration.security_group_ids[0] #=> String
|
|
13118
|
+
# resp.timeout_configuration.run_timeout_in_minutes #=> Integer
|
|
13119
|
+
# resp.environment_configuration.image_version #=> String
|
|
13120
|
+
# resp.environment_configuration.package_config.package_manager #=> String, one of "UV"
|
|
13121
|
+
# resp.environment_configuration.package_config.package_specification #=> String
|
|
13122
|
+
# resp.storage_configuration.project_s3_path #=> String
|
|
13123
|
+
# resp.storage_configuration.kms_key_arn #=> String
|
|
13124
|
+
# resp.trigger_source.type #=> String, one of "MANUAL", "SCHEDULED", "WORKFLOW"
|
|
13125
|
+
# resp.trigger_source.name #=> String
|
|
13126
|
+
# resp.error.message #=> String
|
|
13127
|
+
# resp.created_at #=> Time
|
|
13128
|
+
# resp.created_by #=> String
|
|
13129
|
+
# resp.updated_at #=> Time
|
|
13130
|
+
# resp.updated_by #=> String
|
|
13131
|
+
# resp.started_at #=> Time
|
|
13132
|
+
# resp.completed_at #=> Time
|
|
13133
|
+
#
|
|
13134
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StartNotebookRun AWS API Documentation
|
|
13135
|
+
#
|
|
13136
|
+
# @overload start_notebook_run(params = {})
|
|
13137
|
+
# @param [Hash] params ({})
|
|
13138
|
+
def start_notebook_run(params = {}, options = {})
|
|
13139
|
+
req = build_request(:start_notebook_run, params)
|
|
13140
|
+
req.send_request(options)
|
|
13141
|
+
end
|
|
13142
|
+
|
|
13143
|
+
# Stops a running notebook run in an Amazon DataZone domain.
|
|
13144
|
+
#
|
|
13145
|
+
# @option params [required, String] :domain_identifier
|
|
13146
|
+
# The identifier of the Amazon DataZone domain in which the notebook run
|
|
13147
|
+
# is stopped.
|
|
13148
|
+
#
|
|
13149
|
+
# @option params [required, String] :identifier
|
|
13150
|
+
# The identifier of the notebook run to stop.
|
|
13151
|
+
#
|
|
13152
|
+
# @option params [String] :client_token
|
|
13153
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
13154
|
+
# request. This field is automatically populated if not provided.
|
|
13155
|
+
#
|
|
13156
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
13157
|
+
# not need to pass this option.**
|
|
13158
|
+
#
|
|
13159
|
+
# @return [Types::StopNotebookRunOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
13160
|
+
#
|
|
13161
|
+
# * {Types::StopNotebookRunOutput#id #id} => String
|
|
13162
|
+
# * {Types::StopNotebookRunOutput#domain_id #domain_id} => String
|
|
13163
|
+
# * {Types::StopNotebookRunOutput#owning_project_id #owning_project_id} => String
|
|
13164
|
+
# * {Types::StopNotebookRunOutput#status #status} => String
|
|
13165
|
+
#
|
|
13166
|
+
# @example Request syntax with placeholder values
|
|
13167
|
+
#
|
|
13168
|
+
# resp = client.stop_notebook_run({
|
|
13169
|
+
# domain_identifier: "DomainId", # required
|
|
13170
|
+
# identifier: "NotebookRunId", # required
|
|
13171
|
+
# client_token: "ClientToken",
|
|
13172
|
+
# })
|
|
13173
|
+
#
|
|
13174
|
+
# @example Response structure
|
|
13175
|
+
#
|
|
13176
|
+
# resp.id #=> String
|
|
13177
|
+
# resp.domain_id #=> String
|
|
13178
|
+
# resp.owning_project_id #=> String
|
|
13179
|
+
# resp.status #=> String, one of "QUEUED", "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED"
|
|
13180
|
+
#
|
|
13181
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StopNotebookRun AWS API Documentation
|
|
13182
|
+
#
|
|
13183
|
+
# @overload stop_notebook_run(params = {})
|
|
13184
|
+
# @param [Hash] params ({})
|
|
13185
|
+
def stop_notebook_run(params = {}, options = {})
|
|
13186
|
+
req = build_request(:stop_notebook_run, params)
|
|
13187
|
+
req.send_request(options)
|
|
13188
|
+
end
|
|
13189
|
+
|
|
12820
13190
|
# Tags a resource in Amazon DataZone.
|
|
12821
13191
|
#
|
|
12822
13192
|
# @option params [required, String] :resource_arn
|
|
@@ -15209,7 +15579,7 @@ module Aws::DataZone
|
|
|
15209
15579
|
tracer: tracer
|
|
15210
15580
|
)
|
|
15211
15581
|
context[:gem_name] = 'aws-sdk-datazone'
|
|
15212
|
-
context[:gem_version] = '1.
|
|
15582
|
+
context[:gem_version] = '1.75.0'
|
|
15213
15583
|
Seahorse::Client::Request.new(handlers, context)
|
|
15214
15584
|
end
|
|
15215
15585
|
|