aws-sdk 2.1064.0 → 2.1065.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.
@@ -465,12 +465,16 @@ declare namespace Kafka {
465
465
 
466
466
  */
467
467
  KafkaBrokerNodeId: __string;
468
+ /**
469
+ * EBS volume provisioned throughput information.
470
+ */
471
+ ProvisionedThroughput?: ProvisionedThroughput;
468
472
  /**
469
473
  *
470
474
  Size of the EBS volume to update.
471
475
 
472
476
  */
473
- VolumeSizeGB: __integer;
477
+ VolumeSizeGB?: __integer;
474
478
  }
475
479
  export interface BrokerLogs {
476
480
  CloudWatchLogs?: CloudWatchLogs;
@@ -1549,6 +1553,10 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
1549
1553
  UnprocessedScramSecrets?: __listOfUnprocessedScramSecret;
1550
1554
  }
1551
1555
  export interface EBSStorageInfo {
1556
+ /**
1557
+ * EBS volume provisioned throughput information.
1558
+ */
1559
+ ProvisionedThroughput?: ProvisionedThroughput;
1552
1560
  /**
1553
1561
  *
1554
1562
  The size in GiB of the EBS volume for the data drive on each broker node.
@@ -2120,6 +2128,16 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
2120
2128
  */
2121
2129
  NodeExporter?: NodeExporterInfo;
2122
2130
  }
2131
+ export interface ProvisionedThroughput {
2132
+ /**
2133
+ * Provisioned throughput is enabled or not.
2134
+ */
2135
+ Enabled?: __boolean;
2136
+ /**
2137
+ * Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.
2138
+ */
2139
+ VolumeThroughput?: __integer;
2140
+ }
2123
2141
  export interface PublicAccess {
2124
2142
  /**
2125
2143
  *
@@ -115,6 +115,14 @@ declare class OpenSearch extends Service {
115
115
  * Provides scheduled Auto-Tune action details for the domain, such as Auto-Tune action type, description, severity, and scheduled date.
116
116
  */
117
117
  describeDomainAutoTunes(callback?: (err: AWSError, data: OpenSearch.Types.DescribeDomainAutoTunesResponse) => void): Request<OpenSearch.Types.DescribeDomainAutoTunesResponse, AWSError>;
118
+ /**
119
+ * Returns information about the current blue/green deployment happening on a domain, including a change ID, status, and progress stages.
120
+ */
121
+ describeDomainChangeProgress(params: OpenSearch.Types.DescribeDomainChangeProgressRequest, callback?: (err: AWSError, data: OpenSearch.Types.DescribeDomainChangeProgressResponse) => void): Request<OpenSearch.Types.DescribeDomainChangeProgressResponse, AWSError>;
122
+ /**
123
+ * Returns information about the current blue/green deployment happening on a domain, including a change ID, status, and progress stages.
124
+ */
125
+ describeDomainChangeProgress(callback?: (err: AWSError, data: OpenSearch.Types.DescribeDomainChangeProgressResponse) => void): Request<OpenSearch.Types.DescribeDomainChangeProgressResponse, AWSError>;
118
126
  /**
119
127
  * Provides cluster configuration information about the specified domain, such as the state, creation date, update version, and update date for cluster options.
120
128
  */
@@ -572,6 +580,67 @@ declare namespace OpenSearch {
572
580
  */
573
581
  ServiceSoftwareOptions?: ServiceSoftwareOptions;
574
582
  }
583
+ export interface ChangeProgressDetails {
584
+ /**
585
+ * The unique change identifier associated with a specific domain configuration change.
586
+ */
587
+ ChangeId?: GUID;
588
+ /**
589
+ * Contains an optional message associated with the domain configuration change.
590
+ */
591
+ Message?: Message;
592
+ }
593
+ export interface ChangeProgressStage {
594
+ /**
595
+ * The name of the specific progress stage.
596
+ */
597
+ Name?: ChangeProgressStageName;
598
+ /**
599
+ * The overall status of a specific progress stage.
600
+ */
601
+ Status?: ChangeProgressStageStatus;
602
+ /**
603
+ * The description of the progress stage.
604
+ */
605
+ Description?: Description;
606
+ /**
607
+ * The last updated timestamp of the progress stage.
608
+ */
609
+ LastUpdated?: LastUpdated;
610
+ }
611
+ export type ChangeProgressStageList = ChangeProgressStage[];
612
+ export type ChangeProgressStageName = string;
613
+ export type ChangeProgressStageStatus = string;
614
+ export interface ChangeProgressStatusDetails {
615
+ /**
616
+ * The unique change identifier associated with a specific domain configuration change.
617
+ */
618
+ ChangeId?: GUID;
619
+ /**
620
+ * The time at which the configuration change is made on the domain.
621
+ */
622
+ StartTime?: UpdateTimestamp;
623
+ /**
624
+ * The overall status of the domain configuration change. This field can take the following values: PENDING, PROCESSING, COMPLETED and FAILED
625
+ */
626
+ Status?: OverallChangeStatus;
627
+ /**
628
+ * The list of properties involved in the domain configuration change that are still in pending.
629
+ */
630
+ PendingProperties?: StringList;
631
+ /**
632
+ * The list of properties involved in the domain configuration change that are completed.
633
+ */
634
+ CompletedProperties?: StringList;
635
+ /**
636
+ * The total number of stages required for the configuration change.
637
+ */
638
+ TotalNumberOfStages?: TotalNumberOfStages;
639
+ /**
640
+ * The specific stages that the domain is going through to perform the configuration change.
641
+ */
642
+ ChangeProgressStages?: ChangeProgressStageList;
643
+ }
575
644
  export type CloudWatchLogsLogGroupArn = string;
576
645
  export interface ClusterConfig {
577
646
  /**
@@ -883,6 +952,22 @@ declare namespace OpenSearch {
883
952
  */
884
953
  NextToken?: NextToken;
885
954
  }
955
+ export interface DescribeDomainChangeProgressRequest {
956
+ /**
957
+ * The domain you want to get the progress information about.
958
+ */
959
+ DomainName: DomainName;
960
+ /**
961
+ * The specific change ID for which you want to get progress information. This is an optional parameter. If omitted, the service returns information about the most recent configuration change.
962
+ */
963
+ ChangeId?: GUID;
964
+ }
965
+ export interface DescribeDomainChangeProgressResponse {
966
+ /**
967
+ * Progress information for the configuration change that is requested in the DescribeDomainChangeProgress request.
968
+ */
969
+ ChangeProgressStatus?: ChangeProgressStatusDetails;
970
+ }
886
971
  export interface DescribeDomainConfigRequest {
887
972
  /**
888
973
  * The domain you want to get information about.
@@ -1067,6 +1152,7 @@ declare namespace OpenSearch {
1067
1152
  */
1068
1153
  ReservedInstances?: ReservedInstanceList;
1069
1154
  }
1155
+ export type Description = string;
1070
1156
  export type DisableTimestamp = Date;
1071
1157
  export interface DissociatePackageRequest {
1072
1158
  /**
@@ -1141,6 +1227,10 @@ declare namespace OpenSearch {
1141
1227
  * Specifies AutoTuneOptions for the domain.
1142
1228
  */
1143
1229
  AutoTuneOptions?: AutoTuneOptionsStatus;
1230
+ /**
1231
+ * Specifies change details of the domain configuration change.
1232
+ */
1233
+ ChangeProgressDetails?: ChangeProgressDetails;
1144
1234
  }
1145
1235
  export interface DomainEndpointOptions {
1146
1236
  /**
@@ -1323,6 +1413,10 @@ declare namespace OpenSearch {
1323
1413
  * The current status of the domain's Auto-Tune options.
1324
1414
  */
1325
1415
  AutoTuneOptions?: AutoTuneOptionsOutput;
1416
+ /**
1417
+ * Specifies change details of the domain configuration change.
1418
+ */
1419
+ ChangeProgressDetails?: ChangeProgressDetails;
1326
1420
  }
1327
1421
  export type DomainStatusList = DomainStatus[];
1328
1422
  export type Double = number;
@@ -1756,6 +1850,7 @@ declare namespace OpenSearch {
1756
1850
  }
1757
1851
  export type OutboundConnectionStatusCode = "VALIDATING"|"VALIDATION_FAILED"|"PENDING_ACCEPTANCE"|"APPROVED"|"PROVISIONING"|"ACTIVE"|"REJECTING"|"REJECTED"|"DELETING"|"DELETED"|string;
1758
1852
  export type OutboundConnections = OutboundConnection[];
1853
+ export type OverallChangeStatus = "PENDING"|"PROCESSING"|"COMPLETED"|"FAILED"|string;
1759
1854
  export type OwnerId = string;
1760
1855
  export type PackageDescription = string;
1761
1856
  export interface PackageDetails {
@@ -2168,6 +2263,7 @@ declare namespace OpenSearch {
2168
2263
  export type TagList = Tag[];
2169
2264
  export type TagValue = string;
2170
2265
  export type TimeUnit = "HOURS"|string;
2266
+ export type TotalNumberOfStages = number;
2171
2267
  export type UIntValue = number;
2172
2268
  export interface UpdateDomainConfigRequest {
2173
2269
  /**
@@ -2287,6 +2383,7 @@ declare namespace OpenSearch {
2287
2383
  */
2288
2384
  PerformCheckOnly?: Boolean;
2289
2385
  AdvancedOptions?: AdvancedOptions;
2386
+ ChangeProgressDetails?: ChangeProgressDetails;
2290
2387
  }
2291
2388
  export interface UpgradeHistory {
2292
2389
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1064.0',
86
+ VERSION: '2.1065.0',
87
87
 
88
88
  /**
89
89
  * @api private