aws-sdk 2.1647.0 → 2.1649.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.
@@ -886,7 +886,31 @@ declare namespace NetworkManager {
886
886
  * The timestamp when the attachment was last updated.
887
887
  */
888
888
  UpdatedAt?: DateTime;
889
+ /**
890
+ * Describes the error associated with the attachment request.
891
+ */
892
+ LastModificationErrors?: AttachmentErrorList;
889
893
  }
894
+ export interface AttachmentError {
895
+ /**
896
+ * The error code for the attachment request.
897
+ */
898
+ Code?: AttachmentErrorCode;
899
+ /**
900
+ * The message associated with the error code.
901
+ */
902
+ Message?: ServerSideString;
903
+ /**
904
+ * The ARN of the requested attachment resource.
905
+ */
906
+ ResourceArn?: ResourceArn;
907
+ /**
908
+ * The ID of the attachment request.
909
+ */
910
+ RequestId?: ServerSideString;
911
+ }
912
+ export type AttachmentErrorCode = "VPC_NOT_FOUND"|"SUBNET_NOT_FOUND"|"SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE"|"SUBNET_NO_FREE_ADDRESSES"|"SUBNET_UNSUPPORTED_AVAILABILITY_ZONE"|"SUBNET_NO_IPV6_CIDRS"|"VPN_CONNECTION_NOT_FOUND"|"MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED"|string;
913
+ export type AttachmentErrorList = AttachmentError[];
890
914
  export type AttachmentId = string;
891
915
  export type AttachmentList = Attachment[];
892
916
  export type AttachmentState = "REJECTED"|"PENDING_ATTACHMENT_ACCEPTANCE"|"CREATING"|"FAILED"|"AVAILABLE"|"UPDATING"|"PENDING_NETWORK_UPDATE"|"PENDING_TAG_ACCEPTANCE"|"DELETING"|string;
@@ -970,6 +994,10 @@ declare namespace NetworkManager {
970
994
  * The subnet ARN for the Connect peer. This only applies only when the protocol is NO_ENCAP.
971
995
  */
972
996
  SubnetArn?: SubnetArn;
997
+ /**
998
+ * Describes the error associated with the attachment request.
999
+ */
1000
+ LastModificationErrors?: ConnectPeerErrorList;
973
1001
  }
974
1002
  export interface ConnectPeerAssociation {
975
1003
  /**
@@ -1036,6 +1064,26 @@ declare namespace NetworkManager {
1036
1064
  */
1037
1065
  BgpConfigurations?: ConnectPeerBgpConfigurationList;
1038
1066
  }
1067
+ export interface ConnectPeerError {
1068
+ /**
1069
+ * The error code for the Connect peer request.
1070
+ */
1071
+ Code?: ConnectPeerErrorCode;
1072
+ /**
1073
+ * The message associated with the error code.
1074
+ */
1075
+ Message?: ServerSideString;
1076
+ /**
1077
+ * The ARN of the requested Connect peer resource.
1078
+ */
1079
+ ResourceArn?: ResourceArn;
1080
+ /**
1081
+ * The ID of the Connect peer request.
1082
+ */
1083
+ RequestId?: ServerSideString;
1084
+ }
1085
+ export type ConnectPeerErrorCode = "EDGE_LOCATION_NO_FREE_IPS"|"EDGE_LOCATION_PEER_DUPLICATE"|"SUBNET_NOT_FOUND"|"IP_OUTSIDE_SUBNET_CIDR_RANGE"|"INVALID_INSIDE_CIDR_BLOCK"|"NO_ASSOCIATED_CIDR_BLOCK"|string;
1086
+ export type ConnectPeerErrorList = ConnectPeerError[];
1039
1087
  export type ConnectPeerId = string;
1040
1088
  export type ConnectPeerIdList = ConnectPeerId[];
1041
1089
  export type ConnectPeerState = "CREATING"|"FAILED"|"AVAILABLE"|"DELETING"|string;
@@ -3483,11 +3531,45 @@ declare namespace NetworkManager {
3483
3531
  * The timestamp when the attachment peer was created.
3484
3532
  */
3485
3533
  CreatedAt?: DateTime;
3534
+ /**
3535
+ * Describes the error associated with the Connect peer request.
3536
+ */
3537
+ LastModificationErrors?: PeeringErrorList;
3538
+ }
3539
+ export interface PeeringError {
3540
+ /**
3541
+ * The error code for the peering request.
3542
+ */
3543
+ Code?: PeeringErrorCode;
3544
+ /**
3545
+ * The message associated with the error code.
3546
+ */
3547
+ Message?: ServerSideString;
3548
+ /**
3549
+ * The ARN of the requested peering resource.
3550
+ */
3551
+ ResourceArn?: ResourceArn;
3552
+ /**
3553
+ * The ID of the Peering request.
3554
+ */
3555
+ RequestId?: ServerSideString;
3556
+ /**
3557
+ * Provides additional information about missing permissions for the peering error.
3558
+ */
3559
+ MissingPermissionsContext?: PermissionsErrorContext;
3486
3560
  }
3561
+ export type PeeringErrorCode = "TRANSIT_GATEWAY_NOT_FOUND"|"TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED"|"MISSING_PERMISSIONS"|"INTERNAL_ERROR"|"EDGE_LOCATION_PEER_DUPLICATE"|"INVALID_TRANSIT_GATEWAY_STATE"|string;
3562
+ export type PeeringErrorList = PeeringError[];
3487
3563
  export type PeeringId = string;
3488
3564
  export type PeeringList = Peering[];
3489
3565
  export type PeeringState = "CREATING"|"FAILED"|"AVAILABLE"|"DELETING"|string;
3490
3566
  export type PeeringType = "TRANSIT_GATEWAY"|string;
3567
+ export interface PermissionsErrorContext {
3568
+ /**
3569
+ * The missing permissions.
3570
+ */
3571
+ MissingPermission?: ServerSideString;
3572
+ }
3491
3573
  export interface ProposedNetworkFunctionGroupChange {
3492
3574
  /**
3493
3575
  * The list of proposed changes to the key-value tags associated with the network function group.
@@ -517,6 +517,25 @@ declare class OpenSearch extends Service {
517
517
  upgradeDomain(callback?: (err: AWSError, data: OpenSearch.Types.UpgradeDomainResponse) => void): Request<OpenSearch.Types.UpgradeDomainResponse, AWSError>;
518
518
  }
519
519
  declare namespace OpenSearch {
520
+ export interface AIMLOptionsInput {
521
+ /**
522
+ * Container for parameters required for natural language query generation on the specified domain.
523
+ */
524
+ NaturalLanguageQueryGenerationOptions?: NaturalLanguageQueryGenerationOptionsInput;
525
+ }
526
+ export interface AIMLOptionsOutput {
527
+ /**
528
+ * Container for parameters required for natural language query generation on the specified domain.
529
+ */
530
+ NaturalLanguageQueryGenerationOptions?: NaturalLanguageQueryGenerationOptionsOutput;
531
+ }
532
+ export interface AIMLOptionsStatus {
533
+ /**
534
+ * Machine learning options on the specified domain.
535
+ */
536
+ Options?: AIMLOptionsOutput;
537
+ Status?: OptionStatus;
538
+ }
520
539
  export type ARN = string;
521
540
  export type AWSAccount = string;
522
541
  export interface AWSDomainInformation {
@@ -1205,6 +1224,10 @@ declare namespace OpenSearch {
1205
1224
  * Software update options for the domain.
1206
1225
  */
1207
1226
  SoftwareUpdateOptions?: SoftwareUpdateOptions;
1227
+ /**
1228
+ * Options for all machine learning features for the specified domain.
1229
+ */
1230
+ AIMLOptions?: AIMLOptionsInput;
1208
1231
  }
1209
1232
  export interface CreateDomainResponse {
1210
1233
  /**
@@ -1864,6 +1887,10 @@ declare namespace OpenSearch {
1864
1887
  * Information about the domain properties that are currently being modified.
1865
1888
  */
1866
1889
  ModifyingProperties?: ModifyingPropertiesList;
1890
+ /**
1891
+ * Container for parameters required to enable all machine learning features.
1892
+ */
1893
+ AIMLOptions?: AIMLOptionsStatus;
1867
1894
  }
1868
1895
  export interface DomainEndpointOptions {
1869
1896
  /**
@@ -2160,6 +2187,10 @@ declare namespace OpenSearch {
2160
2187
  * Information about the domain properties that are currently being modified.
2161
2188
  */
2162
2189
  ModifyingProperties?: ModifyingPropertiesList;
2190
+ /**
2191
+ * Container for parameters required to enable all machine learning features.
2192
+ */
2193
+ AIMLOptions?: AIMLOptionsOutput;
2163
2194
  }
2164
2195
  export type DomainStatusList = DomainStatus[];
2165
2196
  export type Double = number;
@@ -2920,6 +2951,24 @@ declare namespace OpenSearch {
2920
2951
  ValueType?: PropertyValueType;
2921
2952
  }
2922
2953
  export type ModifyingPropertiesList = ModifyingProperties[];
2954
+ export type NaturalLanguageQueryGenerationCurrentState = "NOT_ENABLED"|"ENABLE_COMPLETE"|"ENABLE_IN_PROGRESS"|"ENABLE_FAILED"|"DISABLE_COMPLETE"|"DISABLE_IN_PROGRESS"|"DISABLE_FAILED"|string;
2955
+ export type NaturalLanguageQueryGenerationDesiredState = "ENABLED"|"DISABLED"|string;
2956
+ export interface NaturalLanguageQueryGenerationOptionsInput {
2957
+ /**
2958
+ * The desired state of the natural language query generation feature. Valid values are ENABLED and DISABLED.
2959
+ */
2960
+ DesiredState?: NaturalLanguageQueryGenerationDesiredState;
2961
+ }
2962
+ export interface NaturalLanguageQueryGenerationOptionsOutput {
2963
+ /**
2964
+ * The desired state of the natural language query generation feature. Valid values are ENABLED and DISABLED.
2965
+ */
2966
+ DesiredState?: NaturalLanguageQueryGenerationDesiredState;
2967
+ /**
2968
+ * The current state of the natural language query generation feature, indicating completion, in progress, or failure.
2969
+ */
2970
+ CurrentState?: NaturalLanguageQueryGenerationCurrentState;
2971
+ }
2923
2972
  export type NextToken = string;
2924
2973
  export type NodeId = string;
2925
2974
  export type NodeStatus = "Active"|"StandBy"|"NotAvailable"|string;
@@ -3722,6 +3771,10 @@ declare namespace OpenSearch {
3722
3771
  * Service software update options for the domain.
3723
3772
  */
3724
3773
  SoftwareUpdateOptions?: SoftwareUpdateOptions;
3774
+ /**
3775
+ * Options for all machine learning features for the specified domain.
3776
+ */
3777
+ AIMLOptions?: AIMLOptionsInput;
3725
3778
  }
3726
3779
  export interface UpdateDomainConfigResponse {
3727
3780
  /**
@@ -186,6 +186,10 @@ declare namespace WorkSpacesThinClient {
186
186
  * A map of the key-value pairs of the tag or tags to assign to the resource.
187
187
  */
188
188
  tags?: TagsMap;
189
+ /**
190
+ * A map of the key-value pairs of the tag or tags to assign to the newly created devices for this environment.
191
+ */
192
+ deviceCreationTags?: DeviceCreationTagsMap;
189
193
  }
190
194
  export interface CreateEnvironmentResponse {
191
195
  /**
@@ -323,6 +327,9 @@ declare namespace WorkSpacesThinClient {
323
327
  */
324
328
  tags?: TagsMap;
325
329
  }
330
+ export type DeviceCreationTagKey = string;
331
+ export type DeviceCreationTagValue = string;
332
+ export type DeviceCreationTagsMap = {[key: string]: DeviceCreationTagValue};
326
333
  export type DeviceId = string;
327
334
  export type DeviceList = DeviceSummary[];
328
335
  export type DeviceName = string;
@@ -467,6 +474,10 @@ declare namespace WorkSpacesThinClient {
467
474
  * The tag keys and optional values for the resource.
468
475
  */
469
476
  tags?: TagsMap;
477
+ /**
478
+ * "The tag keys and optional values for the newly created devices for this environment."
479
+ */
480
+ deviceCreationTags?: DeviceCreationTagsMap;
470
481
  }
471
482
  export type EnvironmentId = string;
472
483
  export type EnvironmentList = EnvironmentSummary[];
@@ -839,6 +850,10 @@ declare namespace WorkSpacesThinClient {
839
850
  * The ID of the software set to apply.
840
851
  */
841
852
  desiredSoftwareSetId?: SoftwareSetIdOrEmptyString;
853
+ /**
854
+ * A map of the key-value pairs of the tag or tags to assign to the newly created devices for this environment.
855
+ */
856
+ deviceCreationTags?: DeviceCreationTagsMap;
842
857
  }
843
858
  export interface UpdateEnvironmentResponse {
844
859
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1647.0',
86
+ VERSION: '2.1649.0',
87
87
 
88
88
  /**
89
89
  * @api private