@aws-sdk/client-dax 3.927.0 → 3.929.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 (42) hide show
  1. package/dist-cjs/index.js +1038 -1133
  2. package/dist-cjs/runtimeConfig.shared.js +7 -0
  3. package/dist-es/DAXClient.js +2 -0
  4. package/dist-es/commands/CreateClusterCommand.js +3 -9
  5. package/dist-es/commands/CreateParameterGroupCommand.js +3 -9
  6. package/dist-es/commands/CreateSubnetGroupCommand.js +3 -9
  7. package/dist-es/commands/DecreaseReplicationFactorCommand.js +3 -9
  8. package/dist-es/commands/DeleteClusterCommand.js +3 -9
  9. package/dist-es/commands/DeleteParameterGroupCommand.js +3 -9
  10. package/dist-es/commands/DeleteSubnetGroupCommand.js +3 -9
  11. package/dist-es/commands/DescribeClustersCommand.js +3 -9
  12. package/dist-es/commands/DescribeDefaultParametersCommand.js +3 -9
  13. package/dist-es/commands/DescribeEventsCommand.js +3 -9
  14. package/dist-es/commands/DescribeParameterGroupsCommand.js +3 -9
  15. package/dist-es/commands/DescribeParametersCommand.js +3 -9
  16. package/dist-es/commands/DescribeSubnetGroupsCommand.js +3 -9
  17. package/dist-es/commands/IncreaseReplicationFactorCommand.js +3 -9
  18. package/dist-es/commands/ListTagsCommand.js +3 -9
  19. package/dist-es/commands/RebootNodeCommand.js +3 -9
  20. package/dist-es/commands/TagResourceCommand.js +3 -9
  21. package/dist-es/commands/UntagResourceCommand.js +3 -9
  22. package/dist-es/commands/UpdateClusterCommand.js +3 -9
  23. package/dist-es/commands/UpdateParameterGroupCommand.js +3 -9
  24. package/dist-es/commands/UpdateSubnetGroupCommand.js +3 -9
  25. package/dist-es/runtimeConfig.shared.js +7 -0
  26. package/dist-es/schemas/schemas_0.js +920 -0
  27. package/dist-types/DAXClient.d.ts +10 -1
  28. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  29. package/dist-types/runtimeConfig.d.ts +1 -0
  30. package/dist-types/runtimeConfig.native.d.ts +1 -0
  31. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  32. package/dist-types/schemas/schemas_0.d.ts +130 -0
  33. package/dist-types/ts3.4/DAXClient.d.ts +4 -0
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  37. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  38. package/dist-types/ts3.4/schemas/schemas_0.d.ts +135 -0
  39. package/package.json +5 -5
  40. package/dist-es/protocols/Aws_json1_1.js +0 -906
  41. package/dist-types/protocols/Aws_json1_1.d.ts +0 -191
  42. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -257
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
5
5
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
- import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand";
11
11
  import { CreateParameterGroupCommandInput, CreateParameterGroupCommandOutput } from "./commands/CreateParameterGroupCommand";
@@ -162,6 +162,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
162
162
  * Optional extensions
163
163
  */
164
164
  extensions?: RuntimeExtension[];
165
+ /**
166
+ * The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
167
+ * may be overridden. A default will always be set by the client.
168
+ * Available options depend on the service's supported protocols and will not be validated by
169
+ * the client.
170
+ * @alpha
171
+ *
172
+ */
173
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
165
174
  /**
166
175
  * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
167
176
  */
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
29
29
  profile?: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
32
33
  customUserAgent?: string | import("@smithy/types").UserAgent;
33
34
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
35
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
31
31
  profile?: string;
32
32
  logger: import("@smithy/types").Logger;
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
34
35
  customUserAgent?: string | import("@smithy/types").UserAgent;
35
36
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
37
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
29
29
  extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
30
31
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
32
  customUserAgent?: string | import("@smithy/types").UserAgent;
32
33
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DAXHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
17
18
  serviceId: string;
18
19
  urlParser: import("@smithy/types").UrlParser;
19
20
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,130 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var Cluster: StaticStructureSchema;
3
+ export declare var ClusterAlreadyExistsFault: StaticErrorSchema;
4
+ export declare var ClusterNotFoundFault: StaticErrorSchema;
5
+ export declare var ClusterQuotaForCustomerExceededFault: StaticErrorSchema;
6
+ export declare var CreateClusterRequest: StaticStructureSchema;
7
+ export declare var CreateClusterResponse: StaticStructureSchema;
8
+ export declare var CreateParameterGroupRequest: StaticStructureSchema;
9
+ export declare var CreateParameterGroupResponse: StaticStructureSchema;
10
+ export declare var CreateSubnetGroupRequest: StaticStructureSchema;
11
+ export declare var CreateSubnetGroupResponse: StaticStructureSchema;
12
+ export declare var DecreaseReplicationFactorRequest: StaticStructureSchema;
13
+ export declare var DecreaseReplicationFactorResponse: StaticStructureSchema;
14
+ export declare var DeleteClusterRequest: StaticStructureSchema;
15
+ export declare var DeleteClusterResponse: StaticStructureSchema;
16
+ export declare var DeleteParameterGroupRequest: StaticStructureSchema;
17
+ export declare var DeleteParameterGroupResponse: StaticStructureSchema;
18
+ export declare var DeleteSubnetGroupRequest: StaticStructureSchema;
19
+ export declare var DeleteSubnetGroupResponse: StaticStructureSchema;
20
+ export declare var DescribeClustersRequest: StaticStructureSchema;
21
+ export declare var DescribeClustersResponse: StaticStructureSchema;
22
+ export declare var DescribeDefaultParametersRequest: StaticStructureSchema;
23
+ export declare var DescribeDefaultParametersResponse: StaticStructureSchema;
24
+ export declare var DescribeEventsRequest: StaticStructureSchema;
25
+ export declare var DescribeEventsResponse: StaticStructureSchema;
26
+ export declare var DescribeParameterGroupsRequest: StaticStructureSchema;
27
+ export declare var DescribeParameterGroupsResponse: StaticStructureSchema;
28
+ export declare var DescribeParametersRequest: StaticStructureSchema;
29
+ export declare var DescribeParametersResponse: StaticStructureSchema;
30
+ export declare var DescribeSubnetGroupsRequest: StaticStructureSchema;
31
+ export declare var DescribeSubnetGroupsResponse: StaticStructureSchema;
32
+ export declare var Endpoint: StaticStructureSchema;
33
+ export declare var Event: StaticStructureSchema;
34
+ export declare var IncreaseReplicationFactorRequest: StaticStructureSchema;
35
+ export declare var IncreaseReplicationFactorResponse: StaticStructureSchema;
36
+ export declare var InsufficientClusterCapacityFault: StaticErrorSchema;
37
+ export declare var InvalidARNFault: StaticErrorSchema;
38
+ export declare var InvalidClusterStateFault: StaticErrorSchema;
39
+ export declare var InvalidParameterCombinationException: StaticErrorSchema;
40
+ export declare var InvalidParameterGroupStateFault: StaticErrorSchema;
41
+ export declare var InvalidParameterValueException: StaticErrorSchema;
42
+ export declare var InvalidSubnet: StaticErrorSchema;
43
+ export declare var InvalidVPCNetworkStateFault: StaticErrorSchema;
44
+ export declare var ListTagsRequest: StaticStructureSchema;
45
+ export declare var ListTagsResponse: StaticStructureSchema;
46
+ export declare var Node: StaticStructureSchema;
47
+ export declare var NodeNotFoundFault: StaticErrorSchema;
48
+ export declare var NodeQuotaForClusterExceededFault: StaticErrorSchema;
49
+ export declare var NodeQuotaForCustomerExceededFault: StaticErrorSchema;
50
+ export declare var NodeTypeSpecificValue: StaticStructureSchema;
51
+ export declare var NotificationConfiguration: StaticStructureSchema;
52
+ export declare var Parameter: StaticStructureSchema;
53
+ export declare var ParameterGroup: StaticStructureSchema;
54
+ export declare var ParameterGroupAlreadyExistsFault: StaticErrorSchema;
55
+ export declare var ParameterGroupNotFoundFault: StaticErrorSchema;
56
+ export declare var ParameterGroupQuotaExceededFault: StaticErrorSchema;
57
+ export declare var ParameterGroupStatus: StaticStructureSchema;
58
+ export declare var ParameterNameValue: StaticStructureSchema;
59
+ export declare var RebootNodeRequest: StaticStructureSchema;
60
+ export declare var RebootNodeResponse: StaticStructureSchema;
61
+ export declare var SecurityGroupMembership: StaticStructureSchema;
62
+ export declare var ServiceLinkedRoleNotFoundFault: StaticErrorSchema;
63
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
64
+ export declare var SSEDescription: StaticStructureSchema;
65
+ export declare var SSESpecification: StaticStructureSchema;
66
+ export declare var Subnet: StaticStructureSchema;
67
+ export declare var SubnetGroup: StaticStructureSchema;
68
+ export declare var SubnetGroupAlreadyExistsFault: StaticErrorSchema;
69
+ export declare var SubnetGroupInUseFault: StaticErrorSchema;
70
+ export declare var SubnetGroupNotFoundFault: StaticErrorSchema;
71
+ export declare var SubnetGroupQuotaExceededFault: StaticErrorSchema;
72
+ export declare var SubnetInUse: StaticErrorSchema;
73
+ export declare var SubnetNotAllowedFault: StaticErrorSchema;
74
+ export declare var SubnetQuotaExceededFault: StaticErrorSchema;
75
+ export declare var Tag: StaticStructureSchema;
76
+ export declare var TagNotFoundFault: StaticErrorSchema;
77
+ export declare var TagQuotaPerResourceExceeded: StaticErrorSchema;
78
+ export declare var TagResourceRequest: StaticStructureSchema;
79
+ export declare var TagResourceResponse: StaticStructureSchema;
80
+ export declare var UntagResourceRequest: StaticStructureSchema;
81
+ export declare var UntagResourceResponse: StaticStructureSchema;
82
+ export declare var UpdateClusterRequest: StaticStructureSchema;
83
+ export declare var UpdateClusterResponse: StaticStructureSchema;
84
+ export declare var UpdateParameterGroupRequest: StaticStructureSchema;
85
+ export declare var UpdateParameterGroupResponse: StaticStructureSchema;
86
+ export declare var UpdateSubnetGroupRequest: StaticStructureSchema;
87
+ export declare var UpdateSubnetGroupResponse: StaticStructureSchema;
88
+ export declare var __Unit: "unit";
89
+ export declare var DAXServiceException: StaticErrorSchema;
90
+ export declare var AvailabilityZoneList: number;
91
+ export declare var ClusterList: StaticListSchema;
92
+ export declare var ClusterNameList: number;
93
+ export declare var EventList: StaticListSchema;
94
+ export declare var KeyList: number;
95
+ export declare var NetworkTypeList: number;
96
+ export declare var NodeIdentifierList: number;
97
+ export declare var NodeList: StaticListSchema;
98
+ export declare var NodeTypeSpecificValueList: StaticListSchema;
99
+ export declare var ParameterGroupList: StaticListSchema;
100
+ export declare var ParameterGroupNameList: number;
101
+ export declare var ParameterList: StaticListSchema;
102
+ export declare var ParameterNameValueList: StaticListSchema;
103
+ export declare var SecurityGroupIdentifierList: number;
104
+ export declare var SecurityGroupMembershipList: StaticListSchema;
105
+ export declare var SubnetGroupList: StaticListSchema;
106
+ export declare var SubnetGroupNameList: number;
107
+ export declare var SubnetIdentifierList: number;
108
+ export declare var SubnetList: StaticListSchema;
109
+ export declare var TagList: StaticListSchema;
110
+ export declare var CreateCluster: StaticOperationSchema;
111
+ export declare var CreateParameterGroup: StaticOperationSchema;
112
+ export declare var CreateSubnetGroup: StaticOperationSchema;
113
+ export declare var DecreaseReplicationFactor: StaticOperationSchema;
114
+ export declare var DeleteCluster: StaticOperationSchema;
115
+ export declare var DeleteParameterGroup: StaticOperationSchema;
116
+ export declare var DeleteSubnetGroup: StaticOperationSchema;
117
+ export declare var DescribeClusters: StaticOperationSchema;
118
+ export declare var DescribeDefaultParameters: StaticOperationSchema;
119
+ export declare var DescribeEvents: StaticOperationSchema;
120
+ export declare var DescribeParameterGroups: StaticOperationSchema;
121
+ export declare var DescribeParameters: StaticOperationSchema;
122
+ export declare var DescribeSubnetGroups: StaticOperationSchema;
123
+ export declare var IncreaseReplicationFactor: StaticOperationSchema;
124
+ export declare var ListTags: StaticOperationSchema;
125
+ export declare var RebootNode: StaticOperationSchema;
126
+ export declare var TagResource: StaticOperationSchema;
127
+ export declare var UntagResource: StaticOperationSchema;
128
+ export declare var UpdateCluster: StaticOperationSchema;
129
+ export declare var UpdateParameterGroup: StaticOperationSchema;
130
+ export declare var UpdateSubnetGroup: StaticOperationSchema;
@@ -30,10 +30,13 @@ import {
30
30
  BodyLengthCalculator as __BodyLengthCalculator,
31
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
32
  ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
33
34
  Decoder as __Decoder,
34
35
  Encoder as __Encoder,
35
36
  HashConstructor as __HashConstructor,
36
37
  HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
37
40
  Logger as __Logger,
38
41
  Provider as __Provider,
39
42
  Provider,
@@ -204,6 +207,7 @@ export interface ClientDefaults
204
207
  retryMode?: string | __Provider<string>;
205
208
  logger?: __Logger;
206
209
  extensions?: RuntimeExtension[];
210
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
207
211
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
208
212
  }
209
213
  export type DAXClientConfigType = Partial<
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
38
38
  profile?: string;
39
39
  logger: import("@smithy/types").Logger;
40
40
  extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ protocol: import("@smithy/types").ClientProtocol<
42
+ import("@smithy/types").HttpRequest,
43
+ import("@smithy/types").HttpResponse
44
+ >;
41
45
  customUserAgent?: string | import("@smithy/types").UserAgent;
42
46
  userAgentAppId?:
43
47
  | string
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
38
38
  profile?: string;
39
39
  logger: import("@smithy/types").Logger;
40
40
  extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ protocol: import("@smithy/types").ClientProtocol<
42
+ import("@smithy/types").HttpRequest,
43
+ import("@smithy/types").HttpResponse
44
+ >;
41
45
  customUserAgent?: string | import("@smithy/types").UserAgent;
42
46
  retryStrategy?:
43
47
  | import("@smithy/types").RetryStrategy
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
37
37
  retryMode: string | import("@smithy/types").Provider<string>;
38
38
  logger: import("@smithy/types").Logger;
39
39
  extensions: import("./runtimeExtensions").RuntimeExtension[];
40
+ protocol: import("@smithy/types").ClientProtocol<
41
+ import("@smithy/types").HttpRequest,
42
+ import("@smithy/types").HttpResponse
43
+ >;
40
44
  defaultsMode:
41
45
  | import("@smithy/smithy-client").DefaultsMode
42
46
  | import("@smithy/types").Provider<
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DAXHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<
18
+ import("@smithy/types").HttpRequest,
19
+ import("@smithy/types").HttpResponse
20
+ >;
17
21
  serviceId: string;
18
22
  urlParser: import("@smithy/types").UrlParser;
19
23
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,135 @@
1
+ import {
2
+ StaticErrorSchema,
3
+ StaticListSchema,
4
+ StaticOperationSchema,
5
+ StaticStructureSchema,
6
+ } from "@smithy/types";
7
+ export declare var Cluster: StaticStructureSchema;
8
+ export declare var ClusterAlreadyExistsFault: StaticErrorSchema;
9
+ export declare var ClusterNotFoundFault: StaticErrorSchema;
10
+ export declare var ClusterQuotaForCustomerExceededFault: StaticErrorSchema;
11
+ export declare var CreateClusterRequest: StaticStructureSchema;
12
+ export declare var CreateClusterResponse: StaticStructureSchema;
13
+ export declare var CreateParameterGroupRequest: StaticStructureSchema;
14
+ export declare var CreateParameterGroupResponse: StaticStructureSchema;
15
+ export declare var CreateSubnetGroupRequest: StaticStructureSchema;
16
+ export declare var CreateSubnetGroupResponse: StaticStructureSchema;
17
+ export declare var DecreaseReplicationFactorRequest: StaticStructureSchema;
18
+ export declare var DecreaseReplicationFactorResponse: StaticStructureSchema;
19
+ export declare var DeleteClusterRequest: StaticStructureSchema;
20
+ export declare var DeleteClusterResponse: StaticStructureSchema;
21
+ export declare var DeleteParameterGroupRequest: StaticStructureSchema;
22
+ export declare var DeleteParameterGroupResponse: StaticStructureSchema;
23
+ export declare var DeleteSubnetGroupRequest: StaticStructureSchema;
24
+ export declare var DeleteSubnetGroupResponse: StaticStructureSchema;
25
+ export declare var DescribeClustersRequest: StaticStructureSchema;
26
+ export declare var DescribeClustersResponse: StaticStructureSchema;
27
+ export declare var DescribeDefaultParametersRequest: StaticStructureSchema;
28
+ export declare var DescribeDefaultParametersResponse: StaticStructureSchema;
29
+ export declare var DescribeEventsRequest: StaticStructureSchema;
30
+ export declare var DescribeEventsResponse: StaticStructureSchema;
31
+ export declare var DescribeParameterGroupsRequest: StaticStructureSchema;
32
+ export declare var DescribeParameterGroupsResponse: StaticStructureSchema;
33
+ export declare var DescribeParametersRequest: StaticStructureSchema;
34
+ export declare var DescribeParametersResponse: StaticStructureSchema;
35
+ export declare var DescribeSubnetGroupsRequest: StaticStructureSchema;
36
+ export declare var DescribeSubnetGroupsResponse: StaticStructureSchema;
37
+ export declare var Endpoint: StaticStructureSchema;
38
+ export declare var Event: StaticStructureSchema;
39
+ export declare var IncreaseReplicationFactorRequest: StaticStructureSchema;
40
+ export declare var IncreaseReplicationFactorResponse: StaticStructureSchema;
41
+ export declare var InsufficientClusterCapacityFault: StaticErrorSchema;
42
+ export declare var InvalidARNFault: StaticErrorSchema;
43
+ export declare var InvalidClusterStateFault: StaticErrorSchema;
44
+ export declare var InvalidParameterCombinationException: StaticErrorSchema;
45
+ export declare var InvalidParameterGroupStateFault: StaticErrorSchema;
46
+ export declare var InvalidParameterValueException: StaticErrorSchema;
47
+ export declare var InvalidSubnet: StaticErrorSchema;
48
+ export declare var InvalidVPCNetworkStateFault: StaticErrorSchema;
49
+ export declare var ListTagsRequest: StaticStructureSchema;
50
+ export declare var ListTagsResponse: StaticStructureSchema;
51
+ export declare var Node: StaticStructureSchema;
52
+ export declare var NodeNotFoundFault: StaticErrorSchema;
53
+ export declare var NodeQuotaForClusterExceededFault: StaticErrorSchema;
54
+ export declare var NodeQuotaForCustomerExceededFault: StaticErrorSchema;
55
+ export declare var NodeTypeSpecificValue: StaticStructureSchema;
56
+ export declare var NotificationConfiguration: StaticStructureSchema;
57
+ export declare var Parameter: StaticStructureSchema;
58
+ export declare var ParameterGroup: StaticStructureSchema;
59
+ export declare var ParameterGroupAlreadyExistsFault: StaticErrorSchema;
60
+ export declare var ParameterGroupNotFoundFault: StaticErrorSchema;
61
+ export declare var ParameterGroupQuotaExceededFault: StaticErrorSchema;
62
+ export declare var ParameterGroupStatus: StaticStructureSchema;
63
+ export declare var ParameterNameValue: StaticStructureSchema;
64
+ export declare var RebootNodeRequest: StaticStructureSchema;
65
+ export declare var RebootNodeResponse: StaticStructureSchema;
66
+ export declare var SecurityGroupMembership: StaticStructureSchema;
67
+ export declare var ServiceLinkedRoleNotFoundFault: StaticErrorSchema;
68
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
69
+ export declare var SSEDescription: StaticStructureSchema;
70
+ export declare var SSESpecification: StaticStructureSchema;
71
+ export declare var Subnet: StaticStructureSchema;
72
+ export declare var SubnetGroup: StaticStructureSchema;
73
+ export declare var SubnetGroupAlreadyExistsFault: StaticErrorSchema;
74
+ export declare var SubnetGroupInUseFault: StaticErrorSchema;
75
+ export declare var SubnetGroupNotFoundFault: StaticErrorSchema;
76
+ export declare var SubnetGroupQuotaExceededFault: StaticErrorSchema;
77
+ export declare var SubnetInUse: StaticErrorSchema;
78
+ export declare var SubnetNotAllowedFault: StaticErrorSchema;
79
+ export declare var SubnetQuotaExceededFault: StaticErrorSchema;
80
+ export declare var Tag: StaticStructureSchema;
81
+ export declare var TagNotFoundFault: StaticErrorSchema;
82
+ export declare var TagQuotaPerResourceExceeded: StaticErrorSchema;
83
+ export declare var TagResourceRequest: StaticStructureSchema;
84
+ export declare var TagResourceResponse: StaticStructureSchema;
85
+ export declare var UntagResourceRequest: StaticStructureSchema;
86
+ export declare var UntagResourceResponse: StaticStructureSchema;
87
+ export declare var UpdateClusterRequest: StaticStructureSchema;
88
+ export declare var UpdateClusterResponse: StaticStructureSchema;
89
+ export declare var UpdateParameterGroupRequest: StaticStructureSchema;
90
+ export declare var UpdateParameterGroupResponse: StaticStructureSchema;
91
+ export declare var UpdateSubnetGroupRequest: StaticStructureSchema;
92
+ export declare var UpdateSubnetGroupResponse: StaticStructureSchema;
93
+ export declare var __Unit: "unit";
94
+ export declare var DAXServiceException: StaticErrorSchema;
95
+ export declare var AvailabilityZoneList: number;
96
+ export declare var ClusterList: StaticListSchema;
97
+ export declare var ClusterNameList: number;
98
+ export declare var EventList: StaticListSchema;
99
+ export declare var KeyList: number;
100
+ export declare var NetworkTypeList: number;
101
+ export declare var NodeIdentifierList: number;
102
+ export declare var NodeList: StaticListSchema;
103
+ export declare var NodeTypeSpecificValueList: StaticListSchema;
104
+ export declare var ParameterGroupList: StaticListSchema;
105
+ export declare var ParameterGroupNameList: number;
106
+ export declare var ParameterList: StaticListSchema;
107
+ export declare var ParameterNameValueList: StaticListSchema;
108
+ export declare var SecurityGroupIdentifierList: number;
109
+ export declare var SecurityGroupMembershipList: StaticListSchema;
110
+ export declare var SubnetGroupList: StaticListSchema;
111
+ export declare var SubnetGroupNameList: number;
112
+ export declare var SubnetIdentifierList: number;
113
+ export declare var SubnetList: StaticListSchema;
114
+ export declare var TagList: StaticListSchema;
115
+ export declare var CreateCluster: StaticOperationSchema;
116
+ export declare var CreateParameterGroup: StaticOperationSchema;
117
+ export declare var CreateSubnetGroup: StaticOperationSchema;
118
+ export declare var DecreaseReplicationFactor: StaticOperationSchema;
119
+ export declare var DeleteCluster: StaticOperationSchema;
120
+ export declare var DeleteParameterGroup: StaticOperationSchema;
121
+ export declare var DeleteSubnetGroup: StaticOperationSchema;
122
+ export declare var DescribeClusters: StaticOperationSchema;
123
+ export declare var DescribeDefaultParameters: StaticOperationSchema;
124
+ export declare var DescribeEvents: StaticOperationSchema;
125
+ export declare var DescribeParameterGroups: StaticOperationSchema;
126
+ export declare var DescribeParameters: StaticOperationSchema;
127
+ export declare var DescribeSubnetGroups: StaticOperationSchema;
128
+ export declare var IncreaseReplicationFactor: StaticOperationSchema;
129
+ export declare var ListTags: StaticOperationSchema;
130
+ export declare var RebootNode: StaticOperationSchema;
131
+ export declare var TagResource: StaticOperationSchema;
132
+ export declare var UntagResource: StaticOperationSchema;
133
+ export declare var UpdateCluster: StaticOperationSchema;
134
+ export declare var UpdateParameterGroup: StaticOperationSchema;
135
+ export declare var UpdateSubnetGroup: StaticOperationSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-dax",
3
3
  "description": "AWS SDK for JavaScript Dax Client for Node.js, Browser and React Native",
4
- "version": "3.927.0",
4
+ "version": "3.929.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-dax",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.927.0",
24
- "@aws-sdk/credential-provider-node": "3.927.0",
23
+ "@aws-sdk/core": "3.928.0",
24
+ "@aws-sdk/credential-provider-node": "3.929.0",
25
25
  "@aws-sdk/middleware-host-header": "3.922.0",
26
26
  "@aws-sdk/middleware-logger": "3.922.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.922.0",
28
- "@aws-sdk/middleware-user-agent": "3.927.0",
28
+ "@aws-sdk/middleware-user-agent": "3.928.0",
29
29
  "@aws-sdk/region-config-resolver": "3.925.0",
30
30
  "@aws-sdk/types": "3.922.0",
31
31
  "@aws-sdk/util-endpoints": "3.922.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.922.0",
33
- "@aws-sdk/util-user-agent-node": "3.927.0",
33
+ "@aws-sdk/util-user-agent-node": "3.928.0",
34
34
  "@smithy/config-resolver": "^4.4.2",
35
35
  "@smithy/core": "^3.17.2",
36
36
  "@smithy/fetch-http-handler": "^5.3.5",