@aws-sdk/client-pipes 3.936.0 → 3.940.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.
package/dist-cjs/index.js CHANGED
@@ -1594,6 +1594,128 @@ smithyClient.createAggregatedClient(commands, Pipes);
1594
1594
 
1595
1595
  const paginateListPipes = core.createPaginator(PipesClient, ListPipesCommand, "NextToken", "NextToken", "Limit");
1596
1596
 
1597
+ const AssignPublicIp = {
1598
+ DISABLED: "DISABLED",
1599
+ ENABLED: "ENABLED",
1600
+ };
1601
+ const BatchResourceRequirementType = {
1602
+ GPU: "GPU",
1603
+ MEMORY: "MEMORY",
1604
+ VCPU: "VCPU",
1605
+ };
1606
+ const BatchJobDependencyType = {
1607
+ N_TO_N: "N_TO_N",
1608
+ SEQUENTIAL: "SEQUENTIAL",
1609
+ };
1610
+ const RequestedPipeState = {
1611
+ RUNNING: "RUNNING",
1612
+ STOPPED: "STOPPED",
1613
+ };
1614
+ const IncludeExecutionDataOption = {
1615
+ ALL: "ALL",
1616
+ };
1617
+ const LogLevel = {
1618
+ ERROR: "ERROR",
1619
+ INFO: "INFO",
1620
+ OFF: "OFF",
1621
+ TRACE: "TRACE",
1622
+ };
1623
+ const S3OutputFormat = {
1624
+ JSON: "json",
1625
+ PLAIN: "plain",
1626
+ W3C: "w3c",
1627
+ };
1628
+ const OnPartialBatchItemFailureStreams = {
1629
+ AUTOMATIC_BISECT: "AUTOMATIC_BISECT",
1630
+ };
1631
+ const DynamoDBStreamStartPosition = {
1632
+ LATEST: "LATEST",
1633
+ TRIM_HORIZON: "TRIM_HORIZON",
1634
+ };
1635
+ const KinesisStreamStartPosition = {
1636
+ AT_TIMESTAMP: "AT_TIMESTAMP",
1637
+ LATEST: "LATEST",
1638
+ TRIM_HORIZON: "TRIM_HORIZON",
1639
+ };
1640
+ const MSKStartPosition = {
1641
+ LATEST: "LATEST",
1642
+ TRIM_HORIZON: "TRIM_HORIZON",
1643
+ };
1644
+ const SelfManagedKafkaStartPosition = {
1645
+ LATEST: "LATEST",
1646
+ TRIM_HORIZON: "TRIM_HORIZON",
1647
+ };
1648
+ const LaunchType = {
1649
+ EC2: "EC2",
1650
+ EXTERNAL: "EXTERNAL",
1651
+ FARGATE: "FARGATE",
1652
+ };
1653
+ const EcsEnvironmentFileType = {
1654
+ s3: "s3",
1655
+ };
1656
+ const EcsResourceRequirementType = {
1657
+ GPU: "GPU",
1658
+ InferenceAccelerator: "InferenceAccelerator",
1659
+ };
1660
+ const PlacementConstraintType = {
1661
+ DISTINCT_INSTANCE: "distinctInstance",
1662
+ MEMBER_OF: "memberOf",
1663
+ };
1664
+ const PlacementStrategyType = {
1665
+ BINPACK: "binpack",
1666
+ RANDOM: "random",
1667
+ SPREAD: "spread",
1668
+ };
1669
+ const PropagateTags = {
1670
+ TASK_DEFINITION: "TASK_DEFINITION",
1671
+ };
1672
+ const PipeTargetInvocationType = {
1673
+ FIRE_AND_FORGET: "FIRE_AND_FORGET",
1674
+ REQUEST_RESPONSE: "REQUEST_RESPONSE",
1675
+ };
1676
+ const DimensionValueType = {
1677
+ VARCHAR: "VARCHAR",
1678
+ };
1679
+ const EpochTimeUnit = {
1680
+ MICROSECONDS: "MICROSECONDS",
1681
+ MILLISECONDS: "MILLISECONDS",
1682
+ NANOSECONDS: "NANOSECONDS",
1683
+ SECONDS: "SECONDS",
1684
+ };
1685
+ const MeasureValueType = {
1686
+ BIGINT: "BIGINT",
1687
+ BOOLEAN: "BOOLEAN",
1688
+ DOUBLE: "DOUBLE",
1689
+ TIMESTAMP: "TIMESTAMP",
1690
+ VARCHAR: "VARCHAR",
1691
+ };
1692
+ const TimeFieldType = {
1693
+ EPOCH: "EPOCH",
1694
+ TIMESTAMP_FORMAT: "TIMESTAMP_FORMAT",
1695
+ };
1696
+ const PipeState = {
1697
+ CREATE_FAILED: "CREATE_FAILED",
1698
+ CREATE_ROLLBACK_FAILED: "CREATE_ROLLBACK_FAILED",
1699
+ CREATING: "CREATING",
1700
+ DELETE_FAILED: "DELETE_FAILED",
1701
+ DELETE_ROLLBACK_FAILED: "DELETE_ROLLBACK_FAILED",
1702
+ DELETING: "DELETING",
1703
+ RUNNING: "RUNNING",
1704
+ STARTING: "STARTING",
1705
+ START_FAILED: "START_FAILED",
1706
+ STOPPED: "STOPPED",
1707
+ STOPPING: "STOPPING",
1708
+ STOP_FAILED: "STOP_FAILED",
1709
+ UPDATE_FAILED: "UPDATE_FAILED",
1710
+ UPDATE_ROLLBACK_FAILED: "UPDATE_ROLLBACK_FAILED",
1711
+ UPDATING: "UPDATING",
1712
+ };
1713
+ const RequestedPipeStateDescribeResponse = {
1714
+ DELETED: "DELETED",
1715
+ RUNNING: "RUNNING",
1716
+ STOPPED: "STOPPED",
1717
+ };
1718
+
1597
1719
  Object.defineProperty(exports, "$Command", {
1598
1720
  enumerable: true,
1599
1721
  get: function () { return smithyClient.Command; }
@@ -1602,22 +1724,47 @@ Object.defineProperty(exports, "__Client", {
1602
1724
  enumerable: true,
1603
1725
  get: function () { return smithyClient.Client; }
1604
1726
  });
1727
+ exports.AssignPublicIp = AssignPublicIp;
1728
+ exports.BatchJobDependencyType = BatchJobDependencyType;
1729
+ exports.BatchResourceRequirementType = BatchResourceRequirementType;
1605
1730
  exports.ConflictException = ConflictException$1;
1606
1731
  exports.CreatePipeCommand = CreatePipeCommand;
1607
1732
  exports.DeletePipeCommand = DeletePipeCommand;
1608
1733
  exports.DescribePipeCommand = DescribePipeCommand;
1734
+ exports.DimensionValueType = DimensionValueType;
1735
+ exports.DynamoDBStreamStartPosition = DynamoDBStreamStartPosition;
1736
+ exports.EcsEnvironmentFileType = EcsEnvironmentFileType;
1737
+ exports.EcsResourceRequirementType = EcsResourceRequirementType;
1738
+ exports.EpochTimeUnit = EpochTimeUnit;
1739
+ exports.IncludeExecutionDataOption = IncludeExecutionDataOption;
1609
1740
  exports.InternalException = InternalException$1;
1741
+ exports.KinesisStreamStartPosition = KinesisStreamStartPosition;
1742
+ exports.LaunchType = LaunchType;
1610
1743
  exports.ListPipesCommand = ListPipesCommand;
1611
1744
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1745
+ exports.LogLevel = LogLevel;
1746
+ exports.MSKStartPosition = MSKStartPosition;
1747
+ exports.MeasureValueType = MeasureValueType;
1612
1748
  exports.NotFoundException = NotFoundException$1;
1749
+ exports.OnPartialBatchItemFailureStreams = OnPartialBatchItemFailureStreams;
1750
+ exports.PipeState = PipeState;
1751
+ exports.PipeTargetInvocationType = PipeTargetInvocationType;
1613
1752
  exports.Pipes = Pipes;
1614
1753
  exports.PipesClient = PipesClient;
1615
1754
  exports.PipesServiceException = PipesServiceException$1;
1755
+ exports.PlacementConstraintType = PlacementConstraintType;
1756
+ exports.PlacementStrategyType = PlacementStrategyType;
1757
+ exports.PropagateTags = PropagateTags;
1758
+ exports.RequestedPipeState = RequestedPipeState;
1759
+ exports.RequestedPipeStateDescribeResponse = RequestedPipeStateDescribeResponse;
1760
+ exports.S3OutputFormat = S3OutputFormat;
1761
+ exports.SelfManagedKafkaStartPosition = SelfManagedKafkaStartPosition;
1616
1762
  exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1617
1763
  exports.StartPipeCommand = StartPipeCommand;
1618
1764
  exports.StopPipeCommand = StopPipeCommand;
1619
1765
  exports.TagResourceCommand = TagResourceCommand;
1620
1766
  exports.ThrottlingException = ThrottlingException$1;
1767
+ exports.TimeFieldType = TimeFieldType;
1621
1768
  exports.UntagResourceCommand = UntagResourceCommand;
1622
1769
  exports.UpdatePipeCommand = UpdatePipeCommand;
1623
1770
  exports.ValidationException = ValidationException$1;
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./PipesClient";
2
2
  export * from "./Pipes";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
+ export * from "./models/enums";
5
6
  export * from "./models/errors";
6
7
  export { PipesServiceException } from "./models/PipesServiceException";
@@ -0,0 +1,121 @@
1
+ export const AssignPublicIp = {
2
+ DISABLED: "DISABLED",
3
+ ENABLED: "ENABLED",
4
+ };
5
+ export const BatchResourceRequirementType = {
6
+ GPU: "GPU",
7
+ MEMORY: "MEMORY",
8
+ VCPU: "VCPU",
9
+ };
10
+ export const BatchJobDependencyType = {
11
+ N_TO_N: "N_TO_N",
12
+ SEQUENTIAL: "SEQUENTIAL",
13
+ };
14
+ export const RequestedPipeState = {
15
+ RUNNING: "RUNNING",
16
+ STOPPED: "STOPPED",
17
+ };
18
+ export const IncludeExecutionDataOption = {
19
+ ALL: "ALL",
20
+ };
21
+ export const LogLevel = {
22
+ ERROR: "ERROR",
23
+ INFO: "INFO",
24
+ OFF: "OFF",
25
+ TRACE: "TRACE",
26
+ };
27
+ export const S3OutputFormat = {
28
+ JSON: "json",
29
+ PLAIN: "plain",
30
+ W3C: "w3c",
31
+ };
32
+ export const OnPartialBatchItemFailureStreams = {
33
+ AUTOMATIC_BISECT: "AUTOMATIC_BISECT",
34
+ };
35
+ export const DynamoDBStreamStartPosition = {
36
+ LATEST: "LATEST",
37
+ TRIM_HORIZON: "TRIM_HORIZON",
38
+ };
39
+ export const KinesisStreamStartPosition = {
40
+ AT_TIMESTAMP: "AT_TIMESTAMP",
41
+ LATEST: "LATEST",
42
+ TRIM_HORIZON: "TRIM_HORIZON",
43
+ };
44
+ export const MSKStartPosition = {
45
+ LATEST: "LATEST",
46
+ TRIM_HORIZON: "TRIM_HORIZON",
47
+ };
48
+ export const SelfManagedKafkaStartPosition = {
49
+ LATEST: "LATEST",
50
+ TRIM_HORIZON: "TRIM_HORIZON",
51
+ };
52
+ export const LaunchType = {
53
+ EC2: "EC2",
54
+ EXTERNAL: "EXTERNAL",
55
+ FARGATE: "FARGATE",
56
+ };
57
+ export const EcsEnvironmentFileType = {
58
+ s3: "s3",
59
+ };
60
+ export const EcsResourceRequirementType = {
61
+ GPU: "GPU",
62
+ InferenceAccelerator: "InferenceAccelerator",
63
+ };
64
+ export const PlacementConstraintType = {
65
+ DISTINCT_INSTANCE: "distinctInstance",
66
+ MEMBER_OF: "memberOf",
67
+ };
68
+ export const PlacementStrategyType = {
69
+ BINPACK: "binpack",
70
+ RANDOM: "random",
71
+ SPREAD: "spread",
72
+ };
73
+ export const PropagateTags = {
74
+ TASK_DEFINITION: "TASK_DEFINITION",
75
+ };
76
+ export const PipeTargetInvocationType = {
77
+ FIRE_AND_FORGET: "FIRE_AND_FORGET",
78
+ REQUEST_RESPONSE: "REQUEST_RESPONSE",
79
+ };
80
+ export const DimensionValueType = {
81
+ VARCHAR: "VARCHAR",
82
+ };
83
+ export const EpochTimeUnit = {
84
+ MICROSECONDS: "MICROSECONDS",
85
+ MILLISECONDS: "MILLISECONDS",
86
+ NANOSECONDS: "NANOSECONDS",
87
+ SECONDS: "SECONDS",
88
+ };
89
+ export const MeasureValueType = {
90
+ BIGINT: "BIGINT",
91
+ BOOLEAN: "BOOLEAN",
92
+ DOUBLE: "DOUBLE",
93
+ TIMESTAMP: "TIMESTAMP",
94
+ VARCHAR: "VARCHAR",
95
+ };
96
+ export const TimeFieldType = {
97
+ EPOCH: "EPOCH",
98
+ TIMESTAMP_FORMAT: "TIMESTAMP_FORMAT",
99
+ };
100
+ export const PipeState = {
101
+ CREATE_FAILED: "CREATE_FAILED",
102
+ CREATE_ROLLBACK_FAILED: "CREATE_ROLLBACK_FAILED",
103
+ CREATING: "CREATING",
104
+ DELETE_FAILED: "DELETE_FAILED",
105
+ DELETE_ROLLBACK_FAILED: "DELETE_ROLLBACK_FAILED",
106
+ DELETING: "DELETING",
107
+ RUNNING: "RUNNING",
108
+ STARTING: "STARTING",
109
+ START_FAILED: "START_FAILED",
110
+ STOPPED: "STOPPED",
111
+ STOPPING: "STOPPING",
112
+ STOP_FAILED: "STOP_FAILED",
113
+ UPDATE_FAILED: "UPDATE_FAILED",
114
+ UPDATE_ROLLBACK_FAILED: "UPDATE_ROLLBACK_FAILED",
115
+ UPDATING: "UPDATING",
116
+ };
117
+ export const RequestedPipeStateDescribeResponse = {
118
+ DELETED: "DELETED",
119
+ RUNNING: "RUNNING",
120
+ STOPPED: "STOPPED",
121
+ };
@@ -1,121 +1 @@
1
- export const AssignPublicIp = {
2
- DISABLED: "DISABLED",
3
- ENABLED: "ENABLED",
4
- };
5
- export const BatchResourceRequirementType = {
6
- GPU: "GPU",
7
- MEMORY: "MEMORY",
8
- VCPU: "VCPU",
9
- };
10
- export const BatchJobDependencyType = {
11
- N_TO_N: "N_TO_N",
12
- SEQUENTIAL: "SEQUENTIAL",
13
- };
14
- export const RequestedPipeState = {
15
- RUNNING: "RUNNING",
16
- STOPPED: "STOPPED",
17
- };
18
- export const IncludeExecutionDataOption = {
19
- ALL: "ALL",
20
- };
21
- export const LogLevel = {
22
- ERROR: "ERROR",
23
- INFO: "INFO",
24
- OFF: "OFF",
25
- TRACE: "TRACE",
26
- };
27
- export const S3OutputFormat = {
28
- JSON: "json",
29
- PLAIN: "plain",
30
- W3C: "w3c",
31
- };
32
- export const OnPartialBatchItemFailureStreams = {
33
- AUTOMATIC_BISECT: "AUTOMATIC_BISECT",
34
- };
35
- export const DynamoDBStreamStartPosition = {
36
- LATEST: "LATEST",
37
- TRIM_HORIZON: "TRIM_HORIZON",
38
- };
39
- export const KinesisStreamStartPosition = {
40
- AT_TIMESTAMP: "AT_TIMESTAMP",
41
- LATEST: "LATEST",
42
- TRIM_HORIZON: "TRIM_HORIZON",
43
- };
44
- export const MSKStartPosition = {
45
- LATEST: "LATEST",
46
- TRIM_HORIZON: "TRIM_HORIZON",
47
- };
48
- export const SelfManagedKafkaStartPosition = {
49
- LATEST: "LATEST",
50
- TRIM_HORIZON: "TRIM_HORIZON",
51
- };
52
- export const LaunchType = {
53
- EC2: "EC2",
54
- EXTERNAL: "EXTERNAL",
55
- FARGATE: "FARGATE",
56
- };
57
- export const EcsEnvironmentFileType = {
58
- s3: "s3",
59
- };
60
- export const EcsResourceRequirementType = {
61
- GPU: "GPU",
62
- InferenceAccelerator: "InferenceAccelerator",
63
- };
64
- export const PlacementConstraintType = {
65
- DISTINCT_INSTANCE: "distinctInstance",
66
- MEMBER_OF: "memberOf",
67
- };
68
- export const PlacementStrategyType = {
69
- BINPACK: "binpack",
70
- RANDOM: "random",
71
- SPREAD: "spread",
72
- };
73
- export const PropagateTags = {
74
- TASK_DEFINITION: "TASK_DEFINITION",
75
- };
76
- export const PipeTargetInvocationType = {
77
- FIRE_AND_FORGET: "FIRE_AND_FORGET",
78
- REQUEST_RESPONSE: "REQUEST_RESPONSE",
79
- };
80
- export const DimensionValueType = {
81
- VARCHAR: "VARCHAR",
82
- };
83
- export const EpochTimeUnit = {
84
- MICROSECONDS: "MICROSECONDS",
85
- MILLISECONDS: "MILLISECONDS",
86
- NANOSECONDS: "NANOSECONDS",
87
- SECONDS: "SECONDS",
88
- };
89
- export const MeasureValueType = {
90
- BIGINT: "BIGINT",
91
- BOOLEAN: "BOOLEAN",
92
- DOUBLE: "DOUBLE",
93
- TIMESTAMP: "TIMESTAMP",
94
- VARCHAR: "VARCHAR",
95
- };
96
- export const TimeFieldType = {
97
- EPOCH: "EPOCH",
98
- TIMESTAMP_FORMAT: "TIMESTAMP_FORMAT",
99
- };
100
- export const PipeState = {
101
- CREATE_FAILED: "CREATE_FAILED",
102
- CREATE_ROLLBACK_FAILED: "CREATE_ROLLBACK_FAILED",
103
- CREATING: "CREATING",
104
- DELETE_FAILED: "DELETE_FAILED",
105
- DELETE_ROLLBACK_FAILED: "DELETE_ROLLBACK_FAILED",
106
- DELETING: "DELETING",
107
- RUNNING: "RUNNING",
108
- STARTING: "STARTING",
109
- START_FAILED: "START_FAILED",
110
- STOPPED: "STOPPED",
111
- STOPPING: "STOPPING",
112
- STOP_FAILED: "STOP_FAILED",
113
- UPDATE_FAILED: "UPDATE_FAILED",
114
- UPDATE_ROLLBACK_FAILED: "UPDATE_ROLLBACK_FAILED",
115
- UPDATING: "UPDATING",
116
- };
117
- export const RequestedPipeStateDescribeResponse = {
118
- DELETED: "DELETED",
119
- RUNNING: "RUNNING",
120
- STOPPED: "STOPPED",
121
- };
1
+ export {};
@@ -15,6 +15,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
15
15
  export type { PipesExtensionConfiguration } from "./extensionConfiguration";
16
16
  export * from "./commands";
17
17
  export * from "./pagination";
18
+ export * from "./models/enums";
18
19
  export * from "./models/errors";
19
20
  export type * from "./models/models_0";
20
21
  export { PipesServiceException } from "./models/PipesServiceException";