aws-sdk 2.1424.0 → 2.1426.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.
Files changed (45) hide show
  1. package/CHANGELOG.md +22 -1
  2. package/README.md +1 -1
  3. package/apis/amplifyuibuilder-2021-08-11.min.json +40 -9
  4. package/apis/application-insights-2018-11-25.min.json +228 -43
  5. package/apis/application-insights-2018-11-25.paginators.json +5 -0
  6. package/apis/autoscaling-2011-01-01.examples.json +73 -10
  7. package/apis/autoscaling-2011-01-01.min.json +61 -52
  8. package/apis/cleanrooms-2022-02-17.min.json +601 -85
  9. package/apis/cleanrooms-2022-02-17.paginators.json +12 -0
  10. package/apis/cloudformation-2010-05-15.min.json +95 -80
  11. package/apis/cloudfront-2020-05-31.min.json +4 -1
  12. package/apis/inspector2-2020-06-08.min.json +291 -192
  13. package/apis/kafka-2018-11-14.min.json +237 -52
  14. package/apis/kafka-2018-11-14.paginators.json +6 -0
  15. package/apis/lookoutequipment-2020-12-15.min.json +337 -23
  16. package/apis/lookoutequipment-2020-12-15.paginators.json +5 -0
  17. package/apis/omics-2022-11-28.min.json +32 -29
  18. package/apis/pinpoint-2016-12-01.examples.json +6 -12
  19. package/apis/pinpoint-2016-12-01.min.json +286 -243
  20. package/apis/rds-2014-10-31.min.json +175 -162
  21. package/apis/scheduler-2021-06-30.min.json +15 -12
  22. package/clients/amplifyuibuilder.d.ts +48 -4
  23. package/clients/applicationinsights.d.ts +342 -2
  24. package/clients/autoscaling.d.ts +13 -2
  25. package/clients/cleanrooms.d.ts +516 -9
  26. package/clients/cloudformation.d.ts +21 -0
  27. package/clients/cloudfront.d.ts +14 -10
  28. package/clients/codestarconnections.d.ts +10 -10
  29. package/clients/connect.d.ts +1 -1
  30. package/clients/drs.d.ts +1 -1
  31. package/clients/inspector2.d.ts +101 -2
  32. package/clients/kafka.d.ts +204 -0
  33. package/clients/lookoutequipment.d.ts +522 -15
  34. package/clients/omics.d.ts +13 -0
  35. package/clients/pinpoint.d.ts +69 -5
  36. package/clients/rds.d.ts +21 -0
  37. package/clients/route53.d.ts +9 -9
  38. package/clients/scheduler.d.ts +16 -3
  39. package/clients/sqs.d.ts +9 -9
  40. package/dist/aws-sdk-core-react-native.js +1 -1
  41. package/dist/aws-sdk-react-native.js +18 -18
  42. package/dist/aws-sdk.js +338 -298
  43. package/dist/aws-sdk.min.js +95 -95
  44. package/lib/core.js +1 -1
  45. package/package.json +1 -1
@@ -155,6 +155,18 @@ declare class Kafka extends Service {
155
155
 
156
156
  */
157
157
  describeClusterOperation(callback?: (err: AWSError, data: Kafka.Types.DescribeClusterOperationResponse) => void): Request<Kafka.Types.DescribeClusterOperationResponse, AWSError>;
158
+ /**
159
+ *
160
+ Returns a description of the cluster operation specified by the ARN.
161
+
162
+ */
163
+ describeClusterOperationV2(params: Kafka.Types.DescribeClusterOperationV2Request, callback?: (err: AWSError, data: Kafka.Types.DescribeClusterOperationV2Response) => void): Request<Kafka.Types.DescribeClusterOperationV2Response, AWSError>;
164
+ /**
165
+ *
166
+ Returns a description of the cluster operation specified by the ARN.
167
+
168
+ */
169
+ describeClusterOperationV2(callback?: (err: AWSError, data: Kafka.Types.DescribeClusterOperationV2Response) => void): Request<Kafka.Types.DescribeClusterOperationV2Response, AWSError>;
158
170
  /**
159
171
  *
160
172
  Returns a description of this MSK configuration.
@@ -251,6 +263,18 @@ declare class Kafka extends Service {
251
263
 
252
264
  */
253
265
  listClusterOperations(callback?: (err: AWSError, data: Kafka.Types.ListClusterOperationsResponse) => void): Request<Kafka.Types.ListClusterOperationsResponse, AWSError>;
266
+ /**
267
+ *
268
+ Returns a list of all the operations that have been performed on the specified MSK cluster.
269
+
270
+ */
271
+ listClusterOperationsV2(params: Kafka.Types.ListClusterOperationsV2Request, callback?: (err: AWSError, data: Kafka.Types.ListClusterOperationsV2Response) => void): Request<Kafka.Types.ListClusterOperationsV2Response, AWSError>;
272
+ /**
273
+ *
274
+ Returns a list of all the operations that have been performed on the specified MSK cluster.
275
+
276
+ */
277
+ listClusterOperationsV2(callback?: (err: AWSError, data: Kafka.Types.ListClusterOperationsV2Response) => void): Request<Kafka.Types.ListClusterOperationsV2Response, AWSError>;
254
278
  /**
255
279
  *
256
280
  Returns a list of all the MSK clusters in the current Region.
@@ -1659,6 +1683,124 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
1659
1683
  */
1660
1684
  Tags?: __mapOf__string;
1661
1685
  }
1686
+ export interface ClusterOperationV2 {
1687
+ /**
1688
+ *
1689
+ ARN of the cluster.
1690
+ */
1691
+ ClusterArn?: __string;
1692
+ /**
1693
+ *
1694
+ Type of the backend cluster.
1695
+ */
1696
+ ClusterType?: ClusterType;
1697
+ /**
1698
+ *
1699
+ The time at which operation was started.
1700
+ */
1701
+ StartTime?: __timestampIso8601;
1702
+ /**
1703
+ *
1704
+ The time at which the operation finished.
1705
+ */
1706
+ EndTime?: __timestampIso8601;
1707
+ /**
1708
+ *
1709
+ If cluster operation failed from an error, it describes the error.
1710
+ */
1711
+ ErrorInfo?: ErrorInfo;
1712
+ /**
1713
+ *
1714
+ ARN of the cluster operation.
1715
+ */
1716
+ OperationArn?: __string;
1717
+ /**
1718
+ *
1719
+ State of the cluster operation.
1720
+ */
1721
+ OperationState?: __string;
1722
+ /**
1723
+ *
1724
+ Type of the cluster operation.
1725
+ */
1726
+ OperationType?: __string;
1727
+ /**
1728
+ *
1729
+ Properties of a provisioned cluster.
1730
+ */
1731
+ Provisioned?: ClusterOperationV2Provisioned;
1732
+ /**
1733
+ *
1734
+ Properties of a serverless cluster.
1735
+ */
1736
+ Serverless?: ClusterOperationV2Serverless;
1737
+ }
1738
+ export interface ClusterOperationV2Provisioned {
1739
+ /**
1740
+ *
1741
+ Steps completed during the operation.
1742
+ */
1743
+ OperationSteps?: __listOfClusterOperationStep;
1744
+ /**
1745
+ *
1746
+ Information about cluster attributes before a cluster is updated.
1747
+ */
1748
+ SourceClusterInfo?: MutableClusterInfo;
1749
+ /**
1750
+ *
1751
+ Information about cluster attributes after a cluster is updated.
1752
+ */
1753
+ TargetClusterInfo?: MutableClusterInfo;
1754
+ /**
1755
+ *
1756
+ Description of the VPC connection for CreateVpcConnection and DeleteVpcConnection operations.
1757
+ */
1758
+ VpcConnectionInfo?: VpcConnectionInfo;
1759
+ }
1760
+ export interface ClusterOperationV2Serverless {
1761
+ /**
1762
+ *
1763
+ Description of the VPC connection for CreateVpcConnection and DeleteVpcConnection operations.
1764
+ */
1765
+ VpcConnectionInfo?: VpcConnectionInfoServerless;
1766
+ }
1767
+ export interface ClusterOperationV2Summary {
1768
+ /**
1769
+ *
1770
+ ARN of the cluster.
1771
+ */
1772
+ ClusterArn?: __string;
1773
+ /**
1774
+ *
1775
+ Type of the backend cluster.
1776
+ */
1777
+ ClusterType?: ClusterType;
1778
+ /**
1779
+ *
1780
+ The time at which operation was started.
1781
+ */
1782
+ StartTime?: __timestampIso8601;
1783
+ /**
1784
+ *
1785
+ The time at which the operation finished.
1786
+ */
1787
+ EndTime?: __timestampIso8601;
1788
+ /**
1789
+ *
1790
+ ARN of the cluster operation.
1791
+ */
1792
+ OperationArn?: __string;
1793
+ /**
1794
+ *
1795
+ State of the cluster operation.
1796
+ */
1797
+ OperationState?: __string;
1798
+ /**
1799
+ *
1800
+ Type of the cluster operation.
1801
+ */
1802
+ OperationType?: __string;
1803
+ }
1662
1804
  export interface DeleteClusterRequest {
1663
1805
  /**
1664
1806
  *
@@ -1749,6 +1891,12 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
1749
1891
  */
1750
1892
  ClusterOperationArn: __string;
1751
1893
  }
1894
+ export interface DescribeClusterOperationV2Request {
1895
+ /**
1896
+ * ARN of the cluster operation to describe.
1897
+ */
1898
+ ClusterOperationArn: __string;
1899
+ }
1752
1900
  export interface DescribeClusterOperationResponse {
1753
1901
  /**
1754
1902
  *
@@ -1757,6 +1905,13 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
1757
1905
  */
1758
1906
  ClusterOperationInfo?: ClusterOperationInfo;
1759
1907
  }
1908
+ export interface DescribeClusterOperationV2Response {
1909
+ /**
1910
+ *
1911
+ Cluster operation information
1912
+ */
1913
+ ClusterOperationInfo?: ClusterOperationV2;
1914
+ }
1760
1915
  export interface DescribeClusterRequest {
1761
1916
  /**
1762
1917
  *
@@ -2191,6 +2346,20 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
2191
2346
  */
2192
2347
  NextToken?: __string;
2193
2348
  }
2349
+ export interface ListClusterOperationsV2Request {
2350
+ /**
2351
+ * The arn of the cluster whose operations are being requested.
2352
+ */
2353
+ ClusterArn: __string;
2354
+ /**
2355
+ * The maxResults of the query.
2356
+ */
2357
+ MaxResults?: MaxResults;
2358
+ /**
2359
+ * The nextToken of the query.
2360
+ */
2361
+ NextToken?: __string;
2362
+ }
2194
2363
  export interface ListClusterOperationsResponse {
2195
2364
  /**
2196
2365
  *
@@ -2205,6 +2374,18 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
2205
2374
  */
2206
2375
  NextToken?: __string;
2207
2376
  }
2377
+ export interface ListClusterOperationsV2Response {
2378
+ /**
2379
+ *
2380
+ An array of cluster operation information objects.
2381
+ */
2382
+ ClusterOperationInfoList?: __listOfClusterOperationV2Summary;
2383
+ /**
2384
+ *
2385
+ If the response of ListClusterOperationsV2 is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListClusterOperationsV2.
2386
+ */
2387
+ NextToken?: __string;
2388
+ }
2208
2389
  export interface ListClustersRequest {
2209
2390
  /**
2210
2391
  *
@@ -3399,6 +3580,28 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
3399
3580
  */
3400
3581
  CreationTime?: __timestampIso8601;
3401
3582
  }
3583
+ export interface VpcConnectionInfoServerless {
3584
+ /**
3585
+ *
3586
+ The time when Amazon MSK creates the VPC Connnection.
3587
+ */
3588
+ CreationTime?: __timestampIso8601;
3589
+ /**
3590
+ *
3591
+ The owner of the VPC Connection.
3592
+ */
3593
+ Owner?: __string;
3594
+ /**
3595
+ *
3596
+ Description of the requester that calls the API operation.
3597
+ */
3598
+ UserIdentity?: UserIdentity;
3599
+ /**
3600
+ *
3601
+ The Amazon Resource Name (ARN) of the VPC connection.
3602
+ */
3603
+ VpcConnectionArn?: __string;
3604
+ }
3402
3605
  export type VpcConnectionState = "CREATING"|"AVAILABLE"|"INACTIVE"|"DEACTIVATING"|"DELETING"|"FAILED"|"REJECTED"|"REJECTING"|string;
3403
3606
  export interface VpcConnectivity {
3404
3607
  /**
@@ -3450,6 +3653,7 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
3450
3653
  export type __listOfClusterInfo = ClusterInfo[];
3451
3654
  export type __listOfCluster = Cluster[];
3452
3655
  export type __listOfClusterOperationInfo = ClusterOperationInfo[];
3656
+ export type __listOfClusterOperationV2Summary = ClusterOperationV2Summary[];
3453
3657
  export type __listOfClusterOperationStep = ClusterOperationStep[];
3454
3658
  export type __listOfCompatibleKafkaVersion = CompatibleKafkaVersion[];
3455
3659
  export type __listOfVpcConfig = VpcConfig[];