aws-sdk-iotsitewise 1.107.0 → 1.108.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-iotsitewise/client.rb +81 -1
- data/lib/aws-sdk-iotsitewise/client_api.rb +46 -0
- data/lib/aws-sdk-iotsitewise/types.rb +141 -2
- data/lib/aws-sdk-iotsitewise.rb +1 -1
- data/sig/client.rbs +6 -0
- data/sig/params.rbs +20 -1
- data/sig/types.rbs +41 -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: 5f986523d6d555ae0ada11b8ba65d6030f2cccd6287b56b2ff095e105d8399ac
|
|
4
|
+
data.tar.gz: 9f1e857a112725fe0908c1d5718832badf13bd30b714e285b2cf55dced3aaed2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f321a35635f9175fa19247f42a889e78d3d3c084e586af03295871b81a746276f585147a0c11f561a8446c8af308e8bdba9babc64f21f8350cb16e2cfe650e9
|
|
7
|
+
data.tar.gz: 6f142b48af785ae39f99b751168ef368ab9573af852327fbf68ef80eaf2186ecc114f77031a6396fa86566623eb62d8355db4e2f9815d53c9d5fbbf52b49196c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.108.0 (2026-09-01)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS IoT SiteWise Scenario Discovery now supports mounting Amazon S3 data directly into pipeline task containers via S3 Access Points, and configuring additional ephemeral storage per task. Mount configurations can be overridden at execution time. See the API guide for details.
|
|
8
|
+
|
|
4
9
|
1.107.0 (2026-07-29)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.108.0
|
|
@@ -3304,11 +3304,28 @@ module Aws::IoTSiteWise
|
|
|
3304
3304
|
# task_execution_role: "IamRoleArn", # required
|
|
3305
3305
|
# processing_type: "GENERIC_COMPUTE_PROCESSING", # required, accepts GENERIC_COMPUTE_PROCESSING, HARDWARE_ACCELERATED_PROCESSING
|
|
3306
3306
|
# processing_unit: "UNITS_2", # required, accepts UNITS_2, UNITS_4, UNITS_8, UNITS_12, UNITS_16, UNITS_24, UNITS_32, UNITS_36, UNITS_48, UNITS_60, UNITS_64, UNITS_72, UNITS_84, UNITS_96
|
|
3307
|
+
# ephemeral_storage_configuration: {
|
|
3308
|
+
# storage_class: "STANDARD_1", # required, accepts STANDARD_1, STANDARD_2, THROUGHPUT_1, THROUGHPUT_2
|
|
3309
|
+
# storage_size_in_gi_b: 1, # required
|
|
3310
|
+
# },
|
|
3307
3311
|
# command: ["String"],
|
|
3308
3312
|
# timeout_seconds: 1,
|
|
3309
3313
|
# environment_variables: {
|
|
3310
3314
|
# "EnvironmentVariableName" => "EnvironmentVariableValue",
|
|
3311
3315
|
# },
|
|
3316
|
+
# mounts: [
|
|
3317
|
+
# {
|
|
3318
|
+
# name: "ResourceName", # required
|
|
3319
|
+
# relative_path: "MountRelativePath", # required
|
|
3320
|
+
# source: { # required
|
|
3321
|
+
# s3_access_point: {
|
|
3322
|
+
# access_point_arn: "MountS3AccessPointArn", # required
|
|
3323
|
+
# prefix: "MountS3KeyPrefix",
|
|
3324
|
+
# },
|
|
3325
|
+
# },
|
|
3326
|
+
# storage_type: "SHARED_STORAGE", # required, accepts SHARED_STORAGE
|
|
3327
|
+
# },
|
|
3328
|
+
# ],
|
|
3312
3329
|
# },
|
|
3313
3330
|
# },
|
|
3314
3331
|
# tags: {
|
|
@@ -5682,6 +5699,7 @@ module Aws::IoTSiteWise
|
|
|
5682
5699
|
# * {Types::DescribePipelineExecutionResponse#start_time #start_time} => Time
|
|
5683
5700
|
# * {Types::DescribePipelineExecutionResponse#end_time #end_time} => Time
|
|
5684
5701
|
# * {Types::DescribePipelineExecutionResponse#request_environment_variables #request_environment_variables} => Types::ExecutionEnvironmentVariables
|
|
5702
|
+
# * {Types::DescribePipelineExecutionResponse#request_mount_overrides #request_mount_overrides} => Types::MountOverrides
|
|
5685
5703
|
# * {Types::DescribePipelineExecutionResponse#execution_priority #execution_priority} => Integer
|
|
5686
5704
|
# * {Types::DescribePipelineExecutionResponse#compute_node_execution_details #compute_node_execution_details} => Array<Types::ComputeNodeExecutionDetails>
|
|
5687
5705
|
# * {Types::DescribePipelineExecutionResponse#next_token #next_token} => String
|
|
@@ -5717,6 +5735,13 @@ module Aws::IoTSiteWise
|
|
|
5717
5735
|
# resp.request_environment_variables.compute_nodes #=> Hash
|
|
5718
5736
|
# resp.request_environment_variables.compute_nodes["ResourceName"] #=> Hash
|
|
5719
5737
|
# resp.request_environment_variables.compute_nodes["ResourceName"]["EnvironmentVariableName"] #=> String
|
|
5738
|
+
# resp.request_mount_overrides.compute_nodes #=> Hash
|
|
5739
|
+
# resp.request_mount_overrides.compute_nodes["ResourceName"] #=> Array
|
|
5740
|
+
# resp.request_mount_overrides.compute_nodes["ResourceName"][0].name #=> String
|
|
5741
|
+
# resp.request_mount_overrides.compute_nodes["ResourceName"][0].relative_path #=> String
|
|
5742
|
+
# resp.request_mount_overrides.compute_nodes["ResourceName"][0].source.s3_access_point.access_point_arn #=> String
|
|
5743
|
+
# resp.request_mount_overrides.compute_nodes["ResourceName"][0].source.s3_access_point.prefix #=> String
|
|
5744
|
+
# resp.request_mount_overrides.compute_nodes["ResourceName"][0].storage_type #=> String, one of "SHARED_STORAGE"
|
|
5720
5745
|
# resp.execution_priority #=> Integer
|
|
5721
5746
|
# resp.compute_node_execution_details #=> Array
|
|
5722
5747
|
# resp.compute_node_execution_details[0].compute_node_name #=> String
|
|
@@ -5735,6 +5760,12 @@ module Aws::IoTSiteWise
|
|
|
5735
5760
|
# resp.compute_node_execution_details[0].end_time #=> Time
|
|
5736
5761
|
# resp.compute_node_execution_details[0].execution_environment_variables #=> Hash
|
|
5737
5762
|
# resp.compute_node_execution_details[0].execution_environment_variables["ExecutionEnvironmentVariablesMapKeyString"] #=> String
|
|
5763
|
+
# resp.compute_node_execution_details[0].execution_mounts #=> Array
|
|
5764
|
+
# resp.compute_node_execution_details[0].execution_mounts[0].name #=> String
|
|
5765
|
+
# resp.compute_node_execution_details[0].execution_mounts[0].relative_path #=> String
|
|
5766
|
+
# resp.compute_node_execution_details[0].execution_mounts[0].source.s3_access_point.access_point_arn #=> String
|
|
5767
|
+
# resp.compute_node_execution_details[0].execution_mounts[0].source.s3_access_point.prefix #=> String
|
|
5768
|
+
# resp.compute_node_execution_details[0].execution_mounts[0].storage_type #=> String, one of "SHARED_STORAGE"
|
|
5738
5769
|
# resp.next_token #=> String
|
|
5739
5770
|
#
|
|
5740
5771
|
# @overload describe_pipeline_execution(params = {})
|
|
@@ -6024,11 +6055,19 @@ module Aws::IoTSiteWise
|
|
|
6024
6055
|
# resp.task_configuration.container_task_configuration.task_execution_role #=> String
|
|
6025
6056
|
# resp.task_configuration.container_task_configuration.processing_type #=> String, one of "GENERIC_COMPUTE_PROCESSING", "HARDWARE_ACCELERATED_PROCESSING"
|
|
6026
6057
|
# resp.task_configuration.container_task_configuration.processing_unit #=> String, one of "UNITS_2", "UNITS_4", "UNITS_8", "UNITS_12", "UNITS_16", "UNITS_24", "UNITS_32", "UNITS_36", "UNITS_48", "UNITS_60", "UNITS_64", "UNITS_72", "UNITS_84", "UNITS_96"
|
|
6058
|
+
# resp.task_configuration.container_task_configuration.ephemeral_storage_configuration.storage_class #=> String, one of "STANDARD_1", "STANDARD_2", "THROUGHPUT_1", "THROUGHPUT_2"
|
|
6059
|
+
# resp.task_configuration.container_task_configuration.ephemeral_storage_configuration.storage_size_in_gi_b #=> Integer
|
|
6027
6060
|
# resp.task_configuration.container_task_configuration.command #=> Array
|
|
6028
6061
|
# resp.task_configuration.container_task_configuration.command[0] #=> String
|
|
6029
6062
|
# resp.task_configuration.container_task_configuration.timeout_seconds #=> Integer
|
|
6030
6063
|
# resp.task_configuration.container_task_configuration.environment_variables #=> Hash
|
|
6031
6064
|
# resp.task_configuration.container_task_configuration.environment_variables["EnvironmentVariableName"] #=> String
|
|
6065
|
+
# resp.task_configuration.container_task_configuration.mounts #=> Array
|
|
6066
|
+
# resp.task_configuration.container_task_configuration.mounts[0].name #=> String
|
|
6067
|
+
# resp.task_configuration.container_task_configuration.mounts[0].relative_path #=> String
|
|
6068
|
+
# resp.task_configuration.container_task_configuration.mounts[0].source.s3_access_point.access_point_arn #=> String
|
|
6069
|
+
# resp.task_configuration.container_task_configuration.mounts[0].source.s3_access_point.prefix #=> String
|
|
6070
|
+
# resp.task_configuration.container_task_configuration.mounts[0].storage_type #=> String, one of "SHARED_STORAGE"
|
|
6032
6071
|
# resp.status.error.code #=> String, one of "VALIDATION_ERROR", "INTERNAL_FAILURE"
|
|
6033
6072
|
# resp.status.error.message #=> String
|
|
6034
6073
|
# resp.status.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
|
|
@@ -9724,6 +9763,13 @@ module Aws::IoTSiteWise
|
|
|
9724
9763
|
# per-node overrides. These take the highest priority in the environment
|
|
9725
9764
|
# variable hierarchy.
|
|
9726
9765
|
#
|
|
9766
|
+
# @option params [Types::MountOverrides] :execution_mount_overrides
|
|
9767
|
+
# Runtime mount overrides for the execution. Overrides are merged by
|
|
9768
|
+
# mount name into each listed compute node's task-defined mounts: a
|
|
9769
|
+
# matching name replaces the task-defined mount, a new name adds a
|
|
9770
|
+
# mount, and task-defined mounts not referenced remain unchanged.
|
|
9771
|
+
# Compute nodes not listed use their task-defined mounts as-is.
|
|
9772
|
+
#
|
|
9727
9773
|
# @option params [Integer] :execution_priority
|
|
9728
9774
|
# Scheduling priority for the execution. Lower values indicate higher
|
|
9729
9775
|
# priority. Defaults to 2 when not specified.
|
|
@@ -9757,6 +9803,23 @@ module Aws::IoTSiteWise
|
|
|
9757
9803
|
# },
|
|
9758
9804
|
# },
|
|
9759
9805
|
# },
|
|
9806
|
+
# execution_mount_overrides: {
|
|
9807
|
+
# compute_nodes: { # required
|
|
9808
|
+
# "ResourceName" => [
|
|
9809
|
+
# {
|
|
9810
|
+
# name: "ResourceName", # required
|
|
9811
|
+
# relative_path: "MountRelativePath", # required
|
|
9812
|
+
# source: { # required
|
|
9813
|
+
# s3_access_point: {
|
|
9814
|
+
# access_point_arn: "MountS3AccessPointArn", # required
|
|
9815
|
+
# prefix: "MountS3KeyPrefix",
|
|
9816
|
+
# },
|
|
9817
|
+
# },
|
|
9818
|
+
# storage_type: "SHARED_STORAGE", # required, accepts SHARED_STORAGE
|
|
9819
|
+
# },
|
|
9820
|
+
# ],
|
|
9821
|
+
# },
|
|
9822
|
+
# },
|
|
9760
9823
|
# execution_priority: 1,
|
|
9761
9824
|
# client_token: "ClientToken",
|
|
9762
9825
|
# })
|
|
@@ -11331,11 +11394,28 @@ module Aws::IoTSiteWise
|
|
|
11331
11394
|
# task_execution_role: "IamRoleArn", # required
|
|
11332
11395
|
# processing_type: "GENERIC_COMPUTE_PROCESSING", # required, accepts GENERIC_COMPUTE_PROCESSING, HARDWARE_ACCELERATED_PROCESSING
|
|
11333
11396
|
# processing_unit: "UNITS_2", # required, accepts UNITS_2, UNITS_4, UNITS_8, UNITS_12, UNITS_16, UNITS_24, UNITS_32, UNITS_36, UNITS_48, UNITS_60, UNITS_64, UNITS_72, UNITS_84, UNITS_96
|
|
11397
|
+
# ephemeral_storage_configuration: {
|
|
11398
|
+
# storage_class: "STANDARD_1", # required, accepts STANDARD_1, STANDARD_2, THROUGHPUT_1, THROUGHPUT_2
|
|
11399
|
+
# storage_size_in_gi_b: 1, # required
|
|
11400
|
+
# },
|
|
11334
11401
|
# command: ["String"],
|
|
11335
11402
|
# timeout_seconds: 1,
|
|
11336
11403
|
# environment_variables: {
|
|
11337
11404
|
# "EnvironmentVariableName" => "EnvironmentVariableValue",
|
|
11338
11405
|
# },
|
|
11406
|
+
# mounts: [
|
|
11407
|
+
# {
|
|
11408
|
+
# name: "ResourceName", # required
|
|
11409
|
+
# relative_path: "MountRelativePath", # required
|
|
11410
|
+
# source: { # required
|
|
11411
|
+
# s3_access_point: {
|
|
11412
|
+
# access_point_arn: "MountS3AccessPointArn", # required
|
|
11413
|
+
# prefix: "MountS3KeyPrefix",
|
|
11414
|
+
# },
|
|
11415
|
+
# },
|
|
11416
|
+
# storage_type: "SHARED_STORAGE", # required, accepts SHARED_STORAGE
|
|
11417
|
+
# },
|
|
11418
|
+
# ],
|
|
11339
11419
|
# },
|
|
11340
11420
|
# },
|
|
11341
11421
|
# })
|
|
@@ -11427,7 +11507,7 @@ module Aws::IoTSiteWise
|
|
|
11427
11507
|
tracer: tracer
|
|
11428
11508
|
)
|
|
11429
11509
|
context[:gem_name] = 'aws-sdk-iotsitewise'
|
|
11430
|
-
context[:gem_version] = '1.
|
|
11510
|
+
context[:gem_version] = '1.108.0'
|
|
11431
11511
|
Seahorse::Client::Request.new(handlers, context)
|
|
11432
11512
|
end
|
|
11433
11513
|
|
|
@@ -233,6 +233,7 @@ module Aws::IoTSiteWise
|
|
|
233
233
|
ComputeNodeExecutionStateDetails = Shapes::StructureShape.new(name: 'ComputeNodeExecutionStateDetails')
|
|
234
234
|
ComputeNodeExecutionStatus = Shapes::StructureShape.new(name: 'ComputeNodeExecutionStatus')
|
|
235
235
|
ComputeNodeList = Shapes::ListShape.new(name: 'ComputeNodeList')
|
|
236
|
+
ComputeNodeMountsMap = Shapes::MapShape.new(name: 'ComputeNodeMountsMap')
|
|
236
237
|
ComputeNodeNameList = Shapes::ListShape.new(name: 'ComputeNodeNameList')
|
|
237
238
|
ConfigurationErrorDetails = Shapes::StructureShape.new(name: 'ConfigurationErrorDetails')
|
|
238
239
|
ConfigurationState = Shapes::StringShape.new(name: 'ConfigurationState')
|
|
@@ -440,6 +441,8 @@ module Aws::IoTSiteWise
|
|
|
440
441
|
EnvironmentVariableName = Shapes::StringShape.new(name: 'EnvironmentVariableName')
|
|
441
442
|
EnvironmentVariableValue = Shapes::StringShape.new(name: 'EnvironmentVariableValue')
|
|
442
443
|
EnvironmentVariablesMap = Shapes::MapShape.new(name: 'EnvironmentVariablesMap')
|
|
444
|
+
EphemeralStorageConfiguration = Shapes::StructureShape.new(name: 'EphemeralStorageConfiguration')
|
|
445
|
+
EphemeralStorageConfigurationStorageSizeInGiBInteger = Shapes::IntegerShape.new(name: 'EphemeralStorageConfigurationStorageSizeInGiBInteger')
|
|
443
446
|
ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
|
|
444
447
|
ErrorDetails = Shapes::StructureShape.new(name: 'ErrorDetails')
|
|
445
448
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
|
@@ -667,6 +670,14 @@ module Aws::IoTSiteWise
|
|
|
667
670
|
MonitorErrorCode = Shapes::StringShape.new(name: 'MonitorErrorCode')
|
|
668
671
|
MonitorErrorDetails = Shapes::StructureShape.new(name: 'MonitorErrorDetails')
|
|
669
672
|
MonitorErrorMessage = Shapes::StringShape.new(name: 'MonitorErrorMessage')
|
|
673
|
+
Mount = Shapes::StructureShape.new(name: 'Mount')
|
|
674
|
+
MountList = Shapes::ListShape.new(name: 'MountList')
|
|
675
|
+
MountOverrides = Shapes::StructureShape.new(name: 'MountOverrides')
|
|
676
|
+
MountRelativePath = Shapes::StringShape.new(name: 'MountRelativePath')
|
|
677
|
+
MountS3AccessPointArn = Shapes::StringShape.new(name: 'MountS3AccessPointArn')
|
|
678
|
+
MountS3KeyPrefix = Shapes::StringShape.new(name: 'MountS3KeyPrefix')
|
|
679
|
+
MountSource = Shapes::UnionShape.new(name: 'MountSource')
|
|
680
|
+
MountStorageType = Shapes::StringShape.new(name: 'MountStorageType')
|
|
670
681
|
Mp4 = Shapes::StructureShape.new(name: 'Mp4')
|
|
671
682
|
MultiLayerStorage = Shapes::StructureShape.new(name: 'MultiLayerStorage')
|
|
672
683
|
Name = Shapes::StringShape.new(name: 'Name')
|
|
@@ -772,6 +783,7 @@ module Aws::IoTSiteWise
|
|
|
772
783
|
Row = Shapes::StructureShape.new(name: 'Row')
|
|
773
784
|
RowList = Shapes::ListShape.new(name: 'RowList')
|
|
774
785
|
Rows = Shapes::ListShape.new(name: 'Rows')
|
|
786
|
+
S3AccessPointSource = Shapes::StructureShape.new(name: 'S3AccessPointSource')
|
|
775
787
|
S3Uri = Shapes::StringShape.new(name: 'S3Uri')
|
|
776
788
|
SSOApplicationId = Shapes::StringShape.new(name: 'SSOApplicationId')
|
|
777
789
|
ScalarType = Shapes::StringShape.new(name: 'ScalarType')
|
|
@@ -799,6 +811,7 @@ module Aws::IoTSiteWise
|
|
|
799
811
|
StartQueryResponse = Shapes::StructureShape.new(name: 'StartQueryResponse')
|
|
800
812
|
StartSearchRequest = Shapes::StructureShape.new(name: 'StartSearchRequest')
|
|
801
813
|
StartSearchResponse = Shapes::StructureShape.new(name: 'StartSearchResponse')
|
|
814
|
+
StorageClass = Shapes::StringShape.new(name: 'StorageClass')
|
|
802
815
|
StorageType = Shapes::StringShape.new(name: 'StorageType')
|
|
803
816
|
String = Shapes::StringShape.new(name: 'String')
|
|
804
817
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
|
@@ -1580,6 +1593,7 @@ module Aws::IoTSiteWise
|
|
|
1580
1593
|
ComputeNodeExecutionDetails.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "startTime"))
|
|
1581
1594
|
ComputeNodeExecutionDetails.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "endTime"))
|
|
1582
1595
|
ComputeNodeExecutionDetails.add_member(:execution_environment_variables, Shapes::ShapeRef.new(shape: ExecutionEnvironmentVariablesMap, location_name: "executionEnvironmentVariables"))
|
|
1596
|
+
ComputeNodeExecutionDetails.add_member(:execution_mounts, Shapes::ShapeRef.new(shape: MountList, location_name: "executionMounts"))
|
|
1583
1597
|
ComputeNodeExecutionDetails.struct_class = Types::ComputeNodeExecutionDetails
|
|
1584
1598
|
|
|
1585
1599
|
ComputeNodeExecutionDetailsList.member = Shapes::ShapeRef.new(shape: ComputeNodeExecutionDetails)
|
|
@@ -1595,6 +1609,9 @@ module Aws::IoTSiteWise
|
|
|
1595
1609
|
|
|
1596
1610
|
ComputeNodeList.member = Shapes::ShapeRef.new(shape: ComputeNode)
|
|
1597
1611
|
|
|
1612
|
+
ComputeNodeMountsMap.key = Shapes::ShapeRef.new(shape: ResourceName)
|
|
1613
|
+
ComputeNodeMountsMap.value = Shapes::ShapeRef.new(shape: MountList)
|
|
1614
|
+
|
|
1598
1615
|
ComputeNodeNameList.member = Shapes::ShapeRef.new(shape: ResourceName)
|
|
1599
1616
|
|
|
1600
1617
|
ConfigurationErrorDetails.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, required: true, location_name: "code"))
|
|
@@ -1614,9 +1631,11 @@ module Aws::IoTSiteWise
|
|
|
1614
1631
|
ContainerTaskConfiguration.add_member(:task_execution_role, Shapes::ShapeRef.new(shape: IamRoleArn, required: true, location_name: "taskExecutionRole"))
|
|
1615
1632
|
ContainerTaskConfiguration.add_member(:processing_type, Shapes::ShapeRef.new(shape: ProcessingType, required: true, location_name: "processingType"))
|
|
1616
1633
|
ContainerTaskConfiguration.add_member(:processing_unit, Shapes::ShapeRef.new(shape: ProcessingUnit, required: true, location_name: "processingUnit"))
|
|
1634
|
+
ContainerTaskConfiguration.add_member(:ephemeral_storage_configuration, Shapes::ShapeRef.new(shape: EphemeralStorageConfiguration, location_name: "ephemeralStorageConfiguration"))
|
|
1617
1635
|
ContainerTaskConfiguration.add_member(:command, Shapes::ShapeRef.new(shape: CommandList, location_name: "command"))
|
|
1618
1636
|
ContainerTaskConfiguration.add_member(:timeout_seconds, Shapes::ShapeRef.new(shape: TimeoutSeconds, location_name: "timeoutSeconds"))
|
|
1619
1637
|
ContainerTaskConfiguration.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariablesMap, location_name: "environmentVariables"))
|
|
1638
|
+
ContainerTaskConfiguration.add_member(:mounts, Shapes::ShapeRef.new(shape: MountList, location_name: "mounts"))
|
|
1620
1639
|
ContainerTaskConfiguration.struct_class = Types::ContainerTaskConfiguration
|
|
1621
1640
|
|
|
1622
1641
|
Content.add_member(:text, Shapes::ShapeRef.new(shape: String, location_name: "text"))
|
|
@@ -2404,6 +2423,7 @@ module Aws::IoTSiteWise
|
|
|
2404
2423
|
DescribePipelineExecutionResponse.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "startTime"))
|
|
2405
2424
|
DescribePipelineExecutionResponse.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "endTime"))
|
|
2406
2425
|
DescribePipelineExecutionResponse.add_member(:request_environment_variables, Shapes::ShapeRef.new(shape: ExecutionEnvironmentVariables, required: true, location_name: "requestEnvironmentVariables"))
|
|
2426
|
+
DescribePipelineExecutionResponse.add_member(:request_mount_overrides, Shapes::ShapeRef.new(shape: MountOverrides, location_name: "requestMountOverrides"))
|
|
2407
2427
|
DescribePipelineExecutionResponse.add_member(:execution_priority, Shapes::ShapeRef.new(shape: ExecutionPriority, location_name: "executionPriority"))
|
|
2408
2428
|
DescribePipelineExecutionResponse.add_member(:compute_node_execution_details, Shapes::ShapeRef.new(shape: ComputeNodeExecutionDetailsList, required: true, location_name: "computeNodeExecutionDetails"))
|
|
2409
2429
|
DescribePipelineExecutionResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
|
@@ -2603,6 +2623,10 @@ module Aws::IoTSiteWise
|
|
|
2603
2623
|
EnvironmentVariablesMap.key = Shapes::ShapeRef.new(shape: EnvironmentVariableName)
|
|
2604
2624
|
EnvironmentVariablesMap.value = Shapes::ShapeRef.new(shape: EnvironmentVariableValue)
|
|
2605
2625
|
|
|
2626
|
+
EphemeralStorageConfiguration.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, required: true, location_name: "storageClass"))
|
|
2627
|
+
EphemeralStorageConfiguration.add_member(:storage_size_in_gi_b, Shapes::ShapeRef.new(shape: EphemeralStorageConfigurationStorageSizeInGiBInteger, required: true, location_name: "storageSizeInGiB"))
|
|
2628
|
+
EphemeralStorageConfiguration.struct_class = Types::EphemeralStorageConfiguration
|
|
2629
|
+
|
|
2606
2630
|
ErrorDetails.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, required: true, location_name: "code"))
|
|
2607
2631
|
ErrorDetails.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
|
|
2608
2632
|
ErrorDetails.add_member(:details, Shapes::ShapeRef.new(shape: DetailedErrors, location_name: "details"))
|
|
@@ -3361,6 +3385,23 @@ module Aws::IoTSiteWise
|
|
|
3361
3385
|
MonitorErrorDetails.add_member(:message, Shapes::ShapeRef.new(shape: MonitorErrorMessage, location_name: "message"))
|
|
3362
3386
|
MonitorErrorDetails.struct_class = Types::MonitorErrorDetails
|
|
3363
3387
|
|
|
3388
|
+
Mount.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "name"))
|
|
3389
|
+
Mount.add_member(:relative_path, Shapes::ShapeRef.new(shape: MountRelativePath, required: true, location_name: "relativePath"))
|
|
3390
|
+
Mount.add_member(:source, Shapes::ShapeRef.new(shape: MountSource, required: true, location_name: "source"))
|
|
3391
|
+
Mount.add_member(:storage_type, Shapes::ShapeRef.new(shape: MountStorageType, required: true, location_name: "storageType"))
|
|
3392
|
+
Mount.struct_class = Types::Mount
|
|
3393
|
+
|
|
3394
|
+
MountList.member = Shapes::ShapeRef.new(shape: Mount)
|
|
3395
|
+
|
|
3396
|
+
MountOverrides.add_member(:compute_nodes, Shapes::ShapeRef.new(shape: ComputeNodeMountsMap, required: true, location_name: "computeNodes"))
|
|
3397
|
+
MountOverrides.struct_class = Types::MountOverrides
|
|
3398
|
+
|
|
3399
|
+
MountSource.add_member(:s3_access_point, Shapes::ShapeRef.new(shape: S3AccessPointSource, location_name: "s3AccessPoint"))
|
|
3400
|
+
MountSource.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
3401
|
+
MountSource.add_member_subclass(:s3_access_point, Types::MountSource::S3AccessPoint)
|
|
3402
|
+
MountSource.add_member_subclass(:unknown, Types::MountSource::Unknown)
|
|
3403
|
+
MountSource.struct_class = Types::MountSource
|
|
3404
|
+
|
|
3364
3405
|
Mp4.struct_class = Types::Mp4
|
|
3365
3406
|
|
|
3366
3407
|
MultiLayerStorage.add_member(:customer_managed_s3_storage, Shapes::ShapeRef.new(shape: CustomerManagedS3Storage, required: true, location_name: "customerManagedS3Storage"))
|
|
@@ -3609,6 +3650,10 @@ module Aws::IoTSiteWise
|
|
|
3609
3650
|
|
|
3610
3651
|
Rows.member = Shapes::ShapeRef.new(shape: Row)
|
|
3611
3652
|
|
|
3653
|
+
S3AccessPointSource.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: MountS3AccessPointArn, required: true, location_name: "accessPointArn"))
|
|
3654
|
+
S3AccessPointSource.add_member(:prefix, Shapes::ShapeRef.new(shape: MountS3KeyPrefix, location_name: "prefix"))
|
|
3655
|
+
S3AccessPointSource.struct_class = Types::S3AccessPointSource
|
|
3656
|
+
|
|
3612
3657
|
SearchFilters.add_member(:time_series_ids, Shapes::ShapeRef.new(shape: TimeSeriesIdList, location_name: "timeSeriesIds"))
|
|
3613
3658
|
SearchFilters.add_member(:dataset_ids, Shapes::ShapeRef.new(shape: DataSetIdList, location_name: "datasetIds"))
|
|
3614
3659
|
SearchFilters.add_member(:time_intervals, Shapes::ShapeRef.new(shape: TimeIntervalList, location_name: "timeIntervals"))
|
|
@@ -3662,6 +3707,7 @@ module Aws::IoTSiteWise
|
|
|
3662
3707
|
StartPipelineExecutionRequest.add_member(:workspace_name, Shapes::ShapeRef.new(shape: WorkspaceName, required: true, location: "uri", location_name: "workspaceName"))
|
|
3663
3708
|
StartPipelineExecutionRequest.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "pipelineName"))
|
|
3664
3709
|
StartPipelineExecutionRequest.add_member(:execution_environment_variable_overrides, Shapes::ShapeRef.new(shape: ExecutionEnvironmentVariables, location_name: "executionEnvironmentVariableOverrides"))
|
|
3710
|
+
StartPipelineExecutionRequest.add_member(:execution_mount_overrides, Shapes::ShapeRef.new(shape: MountOverrides, location_name: "executionMountOverrides"))
|
|
3665
3711
|
StartPipelineExecutionRequest.add_member(:execution_priority, Shapes::ShapeRef.new(shape: ExecutionPriority, location_name: "executionPriority"))
|
|
3666
3712
|
StartPipelineExecutionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
3667
3713
|
StartPipelineExecutionRequest.struct_class = Types::StartPipelineExecutionRequest
|
|
@@ -3184,6 +3184,14 @@ module Aws::IoTSiteWise
|
|
|
3184
3184
|
# execution.
|
|
3185
3185
|
# @return [Hash<String,String>]
|
|
3186
3186
|
#
|
|
3187
|
+
# @!attribute [rw] execution_mounts
|
|
3188
|
+
# The fully resolved mounts used for this compute node execution,
|
|
3189
|
+
# after merging task-defined mounts with any execution-level mount
|
|
3190
|
+
# overrides. Each mount attaches an external data source to the
|
|
3191
|
+
# container filesystem at a relative path under the service-owned
|
|
3192
|
+
# mount root.
|
|
3193
|
+
# @return [Array<Types::Mount>]
|
|
3194
|
+
#
|
|
3187
3195
|
class ComputeNodeExecutionDetails < Struct.new(
|
|
3188
3196
|
:compute_node_name,
|
|
3189
3197
|
:task_name,
|
|
@@ -3193,7 +3201,8 @@ module Aws::IoTSiteWise
|
|
|
3193
3201
|
:status,
|
|
3194
3202
|
:start_time,
|
|
3195
3203
|
:end_time,
|
|
3196
|
-
:execution_environment_variables
|
|
3204
|
+
:execution_environment_variables,
|
|
3205
|
+
:execution_mounts)
|
|
3197
3206
|
SENSITIVE = [:execution_environment_variables]
|
|
3198
3207
|
include Aws::Structure
|
|
3199
3208
|
end
|
|
@@ -3318,6 +3327,10 @@ module Aws::IoTSiteWise
|
|
|
3318
3327
|
# GPU resources.
|
|
3319
3328
|
# @return [String]
|
|
3320
3329
|
#
|
|
3330
|
+
# @!attribute [rw] ephemeral_storage_configuration
|
|
3331
|
+
# Ephemeral storage configuration for the container task.
|
|
3332
|
+
# @return [Types::EphemeralStorageConfiguration]
|
|
3333
|
+
#
|
|
3321
3334
|
# @!attribute [rw] command
|
|
3322
3335
|
# The command to execute in the container.
|
|
3323
3336
|
# @return [Array<String>]
|
|
@@ -3330,14 +3343,24 @@ module Aws::IoTSiteWise
|
|
|
3330
3343
|
# Environment variables passed to the container at runtime.
|
|
3331
3344
|
# @return [Hash<String,String>]
|
|
3332
3345
|
#
|
|
3346
|
+
# @!attribute [rw] mounts
|
|
3347
|
+
# Mounts attached to the container filesystem. Each mount exposes an
|
|
3348
|
+
# external data source as a local directory inside the container. The
|
|
3349
|
+
# service assigns each mount a container path based on the mount name.
|
|
3350
|
+
# The container reads files through that path as if the data were on
|
|
3351
|
+
# the local filesystem.
|
|
3352
|
+
# @return [Array<Types::Mount>]
|
|
3353
|
+
#
|
|
3333
3354
|
class ContainerTaskConfiguration < Struct.new(
|
|
3334
3355
|
:ecr_uri,
|
|
3335
3356
|
:task_execution_role,
|
|
3336
3357
|
:processing_type,
|
|
3337
3358
|
:processing_unit,
|
|
3359
|
+
:ephemeral_storage_configuration,
|
|
3338
3360
|
:command,
|
|
3339
3361
|
:timeout_seconds,
|
|
3340
|
-
:environment_variables
|
|
3362
|
+
:environment_variables,
|
|
3363
|
+
:mounts)
|
|
3341
3364
|
SENSITIVE = [:ecr_uri, :task_execution_role, :command, :environment_variables]
|
|
3342
3365
|
include Aws::Structure
|
|
3343
3366
|
end
|
|
@@ -7588,6 +7611,11 @@ module Aws::IoTSiteWise
|
|
|
7588
7611
|
# execution.
|
|
7589
7612
|
# @return [Types::ExecutionEnvironmentVariables]
|
|
7590
7613
|
#
|
|
7614
|
+
# @!attribute [rw] request_mount_overrides
|
|
7615
|
+
# The mount overrides provided as input for the pipeline execution.
|
|
7616
|
+
# Present when mount overrides were supplied at execution time.
|
|
7617
|
+
# @return [Types::MountOverrides]
|
|
7618
|
+
#
|
|
7591
7619
|
# @!attribute [rw] execution_priority
|
|
7592
7620
|
# Scheduling priority for the execution. When not specified, defaults
|
|
7593
7621
|
# to lowest priority.
|
|
@@ -7611,6 +7639,7 @@ module Aws::IoTSiteWise
|
|
|
7611
7639
|
:start_time,
|
|
7612
7640
|
:end_time,
|
|
7613
7641
|
:request_environment_variables,
|
|
7642
|
+
:request_mount_overrides,
|
|
7614
7643
|
:execution_priority,
|
|
7615
7644
|
:compute_node_execution_details,
|
|
7616
7645
|
:next_token)
|
|
@@ -8640,6 +8669,23 @@ module Aws::IoTSiteWise
|
|
|
8640
8669
|
include Aws::Structure
|
|
8641
8670
|
end
|
|
8642
8671
|
|
|
8672
|
+
# Configuration for ephemeral storage attached to the container task.
|
|
8673
|
+
#
|
|
8674
|
+
# @!attribute [rw] storage_class
|
|
8675
|
+
# Storage type that determines I/O performance family and level.
|
|
8676
|
+
# @return [String]
|
|
8677
|
+
#
|
|
8678
|
+
# @!attribute [rw] storage_size_in_gi_b
|
|
8679
|
+
# Storage volume size in GiB.
|
|
8680
|
+
# @return [Integer]
|
|
8681
|
+
#
|
|
8682
|
+
class EphemeralStorageConfiguration < Struct.new(
|
|
8683
|
+
:storage_class,
|
|
8684
|
+
:storage_size_in_gi_b)
|
|
8685
|
+
SENSITIVE = []
|
|
8686
|
+
include Aws::Structure
|
|
8687
|
+
end
|
|
8688
|
+
|
|
8643
8689
|
# Contains the details of an IoT SiteWise error.
|
|
8644
8690
|
#
|
|
8645
8691
|
# @!attribute [rw] code
|
|
@@ -12303,6 +12349,72 @@ module Aws::IoTSiteWise
|
|
|
12303
12349
|
include Aws::Structure
|
|
12304
12350
|
end
|
|
12305
12351
|
|
|
12352
|
+
# Attaches a data source to the container filesystem for a task at a
|
|
12353
|
+
# customer-supplied relative path under the service-owned mount root.
|
|
12354
|
+
#
|
|
12355
|
+
# @!attribute [rw] name
|
|
12356
|
+
# A unique name for the mount within the task.
|
|
12357
|
+
# @return [String]
|
|
12358
|
+
#
|
|
12359
|
+
# @!attribute [rw] relative_path
|
|
12360
|
+
# The relative path under the service-owned mount root where this
|
|
12361
|
+
# mount is attached inside the container.
|
|
12362
|
+
# @return [String]
|
|
12363
|
+
#
|
|
12364
|
+
# @!attribute [rw] source
|
|
12365
|
+
# The data source for the mount.
|
|
12366
|
+
# @return [Types::MountSource]
|
|
12367
|
+
#
|
|
12368
|
+
# @!attribute [rw] storage_type
|
|
12369
|
+
# The type of storage used for the mount.
|
|
12370
|
+
# @return [String]
|
|
12371
|
+
#
|
|
12372
|
+
class Mount < Struct.new(
|
|
12373
|
+
:name,
|
|
12374
|
+
:relative_path,
|
|
12375
|
+
:source,
|
|
12376
|
+
:storage_type)
|
|
12377
|
+
SENSITIVE = []
|
|
12378
|
+
include Aws::Structure
|
|
12379
|
+
end
|
|
12380
|
+
|
|
12381
|
+
# Runtime mount overrides applied to a single pipeline execution.
|
|
12382
|
+
# Overrides are transient — they do not modify the stored task
|
|
12383
|
+
# configuration.
|
|
12384
|
+
#
|
|
12385
|
+
# @!attribute [rw] compute_nodes
|
|
12386
|
+
# The mount overrides for each compute node, keyed by compute node
|
|
12387
|
+
# name.
|
|
12388
|
+
# @return [Hash<String,Array<Types::Mount>>]
|
|
12389
|
+
#
|
|
12390
|
+
class MountOverrides < Struct.new(
|
|
12391
|
+
:compute_nodes)
|
|
12392
|
+
SENSITIVE = []
|
|
12393
|
+
include Aws::Structure
|
|
12394
|
+
end
|
|
12395
|
+
|
|
12396
|
+
# The data source configuration for a mount. Specify exactly one of the
|
|
12397
|
+
# following.
|
|
12398
|
+
#
|
|
12399
|
+
# @note MountSource is a union - when making an API calls you must set exactly one of the members.
|
|
12400
|
+
#
|
|
12401
|
+
# @note MountSource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MountSource corresponding to the set member.
|
|
12402
|
+
#
|
|
12403
|
+
# @!attribute [rw] s3_access_point
|
|
12404
|
+
# Configuration for a mount that reads from an Amazon S3 access point.
|
|
12405
|
+
# @return [Types::S3AccessPointSource]
|
|
12406
|
+
#
|
|
12407
|
+
class MountSource < Struct.new(
|
|
12408
|
+
:s3_access_point,
|
|
12409
|
+
:unknown)
|
|
12410
|
+
SENSITIVE = []
|
|
12411
|
+
include Aws::Structure
|
|
12412
|
+
include Aws::Structure::Union
|
|
12413
|
+
|
|
12414
|
+
class S3AccessPoint < MountSource; end
|
|
12415
|
+
class Unknown < MountSource; end
|
|
12416
|
+
end
|
|
12417
|
+
|
|
12306
12418
|
# The MP4 video format configuration for bulk import files.
|
|
12307
12419
|
#
|
|
12308
12420
|
# @api private
|
|
@@ -13387,6 +13499,24 @@ module Aws::IoTSiteWise
|
|
|
13387
13499
|
include Aws::Structure
|
|
13388
13500
|
end
|
|
13389
13501
|
|
|
13502
|
+
# Configures a mount that reads from an Amazon S3 access point.
|
|
13503
|
+
#
|
|
13504
|
+
# @!attribute [rw] access_point_arn
|
|
13505
|
+
# The Amazon Resource Name (ARN) of the S3 access point.
|
|
13506
|
+
# @return [String]
|
|
13507
|
+
#
|
|
13508
|
+
# @!attribute [rw] prefix
|
|
13509
|
+
# An optional key prefix to scope the mount to a subset of objects at
|
|
13510
|
+
# the access point.
|
|
13511
|
+
# @return [String]
|
|
13512
|
+
#
|
|
13513
|
+
class S3AccessPointSource < Struct.new(
|
|
13514
|
+
:access_point_arn,
|
|
13515
|
+
:prefix)
|
|
13516
|
+
SENSITIVE = []
|
|
13517
|
+
include Aws::Structure
|
|
13518
|
+
end
|
|
13519
|
+
|
|
13390
13520
|
# Optional filters that restrict a search to a subset of the
|
|
13391
13521
|
# workspace's data.
|
|
13392
13522
|
#
|
|
@@ -13601,6 +13731,14 @@ module Aws::IoTSiteWise
|
|
|
13601
13731
|
# environment variable hierarchy.
|
|
13602
13732
|
# @return [Types::ExecutionEnvironmentVariables]
|
|
13603
13733
|
#
|
|
13734
|
+
# @!attribute [rw] execution_mount_overrides
|
|
13735
|
+
# Runtime mount overrides for the execution. Overrides are merged by
|
|
13736
|
+
# mount name into each listed compute node's task-defined mounts: a
|
|
13737
|
+
# matching name replaces the task-defined mount, a new name adds a
|
|
13738
|
+
# mount, and task-defined mounts not referenced remain unchanged.
|
|
13739
|
+
# Compute nodes not listed use their task-defined mounts as-is.
|
|
13740
|
+
# @return [Types::MountOverrides]
|
|
13741
|
+
#
|
|
13604
13742
|
# @!attribute [rw] execution_priority
|
|
13605
13743
|
# Scheduling priority for the execution. Lower values indicate higher
|
|
13606
13744
|
# priority. Defaults to 2 when not specified.
|
|
@@ -13621,6 +13759,7 @@ module Aws::IoTSiteWise
|
|
|
13621
13759
|
:workspace_name,
|
|
13622
13760
|
:pipeline_name,
|
|
13623
13761
|
:execution_environment_variable_overrides,
|
|
13762
|
+
:execution_mount_overrides,
|
|
13624
13763
|
:execution_priority,
|
|
13625
13764
|
:client_token)
|
|
13626
13765
|
SENSITIVE = [:execution_environment_variable_overrides]
|
data/lib/aws-sdk-iotsitewise.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -1366,6 +1366,7 @@ module Aws
|
|
|
1366
1366
|
def start_time: () -> ::Time
|
|
1367
1367
|
def end_time: () -> ::Time
|
|
1368
1368
|
def request_environment_variables: () -> Types::ExecutionEnvironmentVariables
|
|
1369
|
+
def request_mount_overrides: () -> Types::MountOverrides
|
|
1369
1370
|
def execution_priority: () -> ::Integer
|
|
1370
1371
|
def compute_node_execution_details: () -> ::Array[Types::ComputeNodeExecutionDetails]
|
|
1371
1372
|
def next_token: () -> ::String
|
|
@@ -2343,6 +2344,11 @@ module Aws
|
|
|
2343
2344
|
global: Hash[::String, ::String]?,
|
|
2344
2345
|
compute_nodes: Hash[::String, Hash[::String, ::String]]?
|
|
2345
2346
|
},
|
|
2347
|
+
?execution_mount_overrides: {
|
|
2348
|
+
compute_nodes: Hash[::String, Array[
|
|
2349
|
+
Params::mount
|
|
2350
|
+
]]
|
|
2351
|
+
},
|
|
2346
2352
|
?execution_priority: ::Integer,
|
|
2347
2353
|
?client_token: ::String
|
|
2348
2354
|
) -> _StartPipelineExecutionResponseSuccess
|
data/sig/params.rbs
CHANGED
|
@@ -180,15 +180,34 @@ module Aws
|
|
|
180
180
|
task_execution_role: ::String,
|
|
181
181
|
processing_type: ("GENERIC_COMPUTE_PROCESSING" | "HARDWARE_ACCELERATED_PROCESSING"),
|
|
182
182
|
processing_unit: ("UNITS_2" | "UNITS_4" | "UNITS_8" | "UNITS_12" | "UNITS_16" | "UNITS_24" | "UNITS_32" | "UNITS_36" | "UNITS_48" | "UNITS_60" | "UNITS_64" | "UNITS_72" | "UNITS_84" | "UNITS_96"),
|
|
183
|
+
ephemeral_storage_configuration: {
|
|
184
|
+
storage_class: ("STANDARD_1" | "STANDARD_2" | "THROUGHPUT_1" | "THROUGHPUT_2"),
|
|
185
|
+
storage_size_in_gi_b: ::Integer
|
|
186
|
+
}?,
|
|
183
187
|
command: Array[::String]?,
|
|
184
188
|
timeout_seconds: ::Integer?,
|
|
185
|
-
environment_variables: Hash[::String, ::String]
|
|
189
|
+
environment_variables: Hash[::String, ::String]?,
|
|
190
|
+
mounts: Array[
|
|
191
|
+
Params::mount
|
|
192
|
+
]?
|
|
186
193
|
}
|
|
187
194
|
|
|
188
195
|
type task_configuration = {
|
|
189
196
|
container_task_configuration: Params::container_task_configuration?
|
|
190
197
|
}
|
|
191
198
|
|
|
199
|
+
type mount = {
|
|
200
|
+
name: ::String,
|
|
201
|
+
relative_path: ::String,
|
|
202
|
+
source: {
|
|
203
|
+
s3_access_point: {
|
|
204
|
+
access_point_arn: ::String,
|
|
205
|
+
prefix: ::String?
|
|
206
|
+
}?
|
|
207
|
+
},
|
|
208
|
+
storage_type: ("SHARED_STORAGE")
|
|
209
|
+
}
|
|
210
|
+
|
|
192
211
|
type asset_model_property = {
|
|
193
212
|
id: ::String?,
|
|
194
213
|
external_id: ::String?,
|
data/sig/types.rbs
CHANGED
|
@@ -782,6 +782,7 @@ module Aws::IoTSiteWise
|
|
|
782
782
|
attr_accessor start_time: ::Time
|
|
783
783
|
attr_accessor end_time: ::Time
|
|
784
784
|
attr_accessor execution_environment_variables: ::Hash[::String, ::String]
|
|
785
|
+
attr_accessor execution_mounts: ::Array[Types::Mount]
|
|
785
786
|
SENSITIVE: [:execution_environment_variables]
|
|
786
787
|
end
|
|
787
788
|
|
|
@@ -823,9 +824,11 @@ module Aws::IoTSiteWise
|
|
|
823
824
|
attr_accessor task_execution_role: ::String
|
|
824
825
|
attr_accessor processing_type: ("GENERIC_COMPUTE_PROCESSING" | "HARDWARE_ACCELERATED_PROCESSING")
|
|
825
826
|
attr_accessor processing_unit: ("UNITS_2" | "UNITS_4" | "UNITS_8" | "UNITS_12" | "UNITS_16" | "UNITS_24" | "UNITS_32" | "UNITS_36" | "UNITS_48" | "UNITS_60" | "UNITS_64" | "UNITS_72" | "UNITS_84" | "UNITS_96")
|
|
827
|
+
attr_accessor ephemeral_storage_configuration: Types::EphemeralStorageConfiguration
|
|
826
828
|
attr_accessor command: ::Array[::String]
|
|
827
829
|
attr_accessor timeout_seconds: ::Integer
|
|
828
830
|
attr_accessor environment_variables: ::Hash[::String, ::String]
|
|
831
|
+
attr_accessor mounts: ::Array[Types::Mount]
|
|
829
832
|
SENSITIVE: [:ecr_uri, :task_execution_role, :command, :environment_variables]
|
|
830
833
|
end
|
|
831
834
|
|
|
@@ -1848,6 +1851,7 @@ module Aws::IoTSiteWise
|
|
|
1848
1851
|
attr_accessor start_time: ::Time
|
|
1849
1852
|
attr_accessor end_time: ::Time
|
|
1850
1853
|
attr_accessor request_environment_variables: Types::ExecutionEnvironmentVariables
|
|
1854
|
+
attr_accessor request_mount_overrides: Types::MountOverrides
|
|
1851
1855
|
attr_accessor execution_priority: ::Integer
|
|
1852
1856
|
attr_accessor compute_node_execution_details: ::Array[Types::ComputeNodeExecutionDetails]
|
|
1853
1857
|
attr_accessor next_token: ::String
|
|
@@ -2091,6 +2095,12 @@ module Aws::IoTSiteWise
|
|
|
2091
2095
|
SENSITIVE: []
|
|
2092
2096
|
end
|
|
2093
2097
|
|
|
2098
|
+
class EphemeralStorageConfiguration
|
|
2099
|
+
attr_accessor storage_class: ("STANDARD_1" | "STANDARD_2" | "THROUGHPUT_1" | "THROUGHPUT_2")
|
|
2100
|
+
attr_accessor storage_size_in_gi_b: ::Integer
|
|
2101
|
+
SENSITIVE: []
|
|
2102
|
+
end
|
|
2103
|
+
|
|
2094
2104
|
class ErrorDetails
|
|
2095
2105
|
attr_accessor code: ("VALIDATION_ERROR" | "INTERNAL_FAILURE")
|
|
2096
2106
|
attr_accessor message: ::String
|
|
@@ -3081,6 +3091,30 @@ module Aws::IoTSiteWise
|
|
|
3081
3091
|
SENSITIVE: []
|
|
3082
3092
|
end
|
|
3083
3093
|
|
|
3094
|
+
class Mount
|
|
3095
|
+
attr_accessor name: ::String
|
|
3096
|
+
attr_accessor relative_path: ::String
|
|
3097
|
+
attr_accessor source: Types::MountSource
|
|
3098
|
+
attr_accessor storage_type: ("SHARED_STORAGE")
|
|
3099
|
+
SENSITIVE: []
|
|
3100
|
+
end
|
|
3101
|
+
|
|
3102
|
+
class MountOverrides
|
|
3103
|
+
attr_accessor compute_nodes: ::Hash[::String, ::Array[Types::Mount]]
|
|
3104
|
+
SENSITIVE: []
|
|
3105
|
+
end
|
|
3106
|
+
|
|
3107
|
+
class MountSource
|
|
3108
|
+
attr_accessor s3_access_point: Types::S3AccessPointSource
|
|
3109
|
+
attr_accessor unknown: untyped
|
|
3110
|
+
SENSITIVE: []
|
|
3111
|
+
|
|
3112
|
+
class S3AccessPoint < MountSource
|
|
3113
|
+
end
|
|
3114
|
+
class Unknown < MountSource
|
|
3115
|
+
end
|
|
3116
|
+
end
|
|
3117
|
+
|
|
3084
3118
|
class Mp4 < Aws::EmptyStructure
|
|
3085
3119
|
end
|
|
3086
3120
|
|
|
@@ -3377,6 +3411,12 @@ module Aws::IoTSiteWise
|
|
|
3377
3411
|
SENSITIVE: []
|
|
3378
3412
|
end
|
|
3379
3413
|
|
|
3414
|
+
class S3AccessPointSource
|
|
3415
|
+
attr_accessor access_point_arn: ::String
|
|
3416
|
+
attr_accessor prefix: ::String
|
|
3417
|
+
SENSITIVE: []
|
|
3418
|
+
end
|
|
3419
|
+
|
|
3380
3420
|
class SearchFilters
|
|
3381
3421
|
attr_accessor time_series_ids: ::Array[::String]
|
|
3382
3422
|
attr_accessor dataset_ids: ::Array[::String]
|
|
@@ -3439,6 +3479,7 @@ module Aws::IoTSiteWise
|
|
|
3439
3479
|
attr_accessor workspace_name: ::String
|
|
3440
3480
|
attr_accessor pipeline_name: ::String
|
|
3441
3481
|
attr_accessor execution_environment_variable_overrides: Types::ExecutionEnvironmentVariables
|
|
3482
|
+
attr_accessor execution_mount_overrides: Types::MountOverrides
|
|
3442
3483
|
attr_accessor execution_priority: ::Integer
|
|
3443
3484
|
attr_accessor client_token: ::String
|
|
3444
3485
|
SENSITIVE: [:execution_environment_variable_overrides]
|