@aws-sdk/client-ssm-sap 3.370.0 → 3.373.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 (41) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/SsmSap.js +2 -0
  3. package/dist-cjs/commands/StartApplicationRefreshCommand.js +46 -0
  4. package/dist-cjs/commands/index.js +1 -0
  5. package/dist-cjs/endpoint/ruleset.js +3 -3
  6. package/dist-cjs/models/models_0.js +40 -1
  7. package/dist-cjs/protocols/Aws_restJson1.js +79 -1
  8. package/dist-es/SsmSap.js +2 -0
  9. package/dist-es/commands/StartApplicationRefreshCommand.js +42 -0
  10. package/dist-es/commands/index.js +1 -0
  11. package/dist-es/endpoint/ruleset.js +3 -3
  12. package/dist-es/models/models_0.js +39 -0
  13. package/dist-es/protocols/Aws_restJson1.js +76 -0
  14. package/dist-types/SsmSap.d.ts +7 -0
  15. package/dist-types/SsmSapClient.d.ts +3 -2
  16. package/dist-types/commands/DeleteResourcePermissionCommand.d.ts +1 -1
  17. package/dist-types/commands/GetApplicationCommand.d.ts +3 -2
  18. package/dist-types/commands/GetComponentCommand.d.ts +27 -3
  19. package/dist-types/commands/GetDatabaseCommand.d.ts +3 -3
  20. package/dist-types/commands/GetOperationCommand.d.ts +1 -1
  21. package/dist-types/commands/GetResourcePermissionCommand.d.ts +1 -1
  22. package/dist-types/commands/ListApplicationsCommand.d.ts +1 -1
  23. package/dist-types/commands/ListComponentsCommand.d.ts +2 -1
  24. package/dist-types/commands/ListDatabasesCommand.d.ts +1 -1
  25. package/dist-types/commands/ListOperationsCommand.d.ts +2 -2
  26. package/dist-types/commands/PutResourcePermissionCommand.d.ts +1 -1
  27. package/dist-types/commands/RegisterApplicationCommand.d.ts +5 -4
  28. package/dist-types/commands/StartApplicationRefreshCommand.d.ts +85 -0
  29. package/dist-types/commands/UpdateApplicationSettingsCommand.d.ts +9 -2
  30. package/dist-types/commands/index.d.ts +1 -0
  31. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  32. package/dist-types/models/models_0.d.ts +228 -13
  33. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  34. package/dist-types/ts3.4/SsmSap.d.ts +17 -0
  35. package/dist-types/ts3.4/SsmSapClient.d.ts +6 -0
  36. package/dist-types/ts3.4/commands/StartApplicationRefreshCommand.d.ts +42 -0
  37. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  38. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  39. package/dist-types/ts3.4/models/models_0.d.ts +82 -1
  40. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  41. package/package.json +1 -1
@@ -22,6 +22,7 @@ import { ListOperationsCommandInput, ListOperationsCommandOutput } from "./comma
22
22
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
23
23
  import { PutResourcePermissionCommandInput, PutResourcePermissionCommandOutput } from "./commands/PutResourcePermissionCommand";
24
24
  import { RegisterApplicationCommandInput, RegisterApplicationCommandOutput } from "./commands/RegisterApplicationCommand";
25
+ import { StartApplicationRefreshCommandInput, StartApplicationRefreshCommandOutput } from "./commands/StartApplicationRefreshCommand";
25
26
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
26
27
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
27
28
  import { UpdateApplicationSettingsCommandInput, UpdateApplicationSettingsCommandOutput } from "./commands/UpdateApplicationSettingsCommand";
@@ -30,11 +31,11 @@ export { __Client };
30
31
  /**
31
32
  * @public
32
33
  */
33
- export type ServiceInputTypes = DeleteResourcePermissionCommandInput | DeregisterApplicationCommandInput | GetApplicationCommandInput | GetComponentCommandInput | GetDatabaseCommandInput | GetOperationCommandInput | GetResourcePermissionCommandInput | ListApplicationsCommandInput | ListComponentsCommandInput | ListDatabasesCommandInput | ListOperationsCommandInput | ListTagsForResourceCommandInput | PutResourcePermissionCommandInput | RegisterApplicationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationSettingsCommandInput;
34
+ export type ServiceInputTypes = DeleteResourcePermissionCommandInput | DeregisterApplicationCommandInput | GetApplicationCommandInput | GetComponentCommandInput | GetDatabaseCommandInput | GetOperationCommandInput | GetResourcePermissionCommandInput | ListApplicationsCommandInput | ListComponentsCommandInput | ListDatabasesCommandInput | ListOperationsCommandInput | ListTagsForResourceCommandInput | PutResourcePermissionCommandInput | RegisterApplicationCommandInput | StartApplicationRefreshCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationSettingsCommandInput;
34
35
  /**
35
36
  * @public
36
37
  */
37
- export type ServiceOutputTypes = DeleteResourcePermissionCommandOutput | DeregisterApplicationCommandOutput | GetApplicationCommandOutput | GetComponentCommandOutput | GetDatabaseCommandOutput | GetOperationCommandOutput | GetResourcePermissionCommandOutput | ListApplicationsCommandOutput | ListComponentsCommandOutput | ListDatabasesCommandOutput | ListOperationsCommandOutput | ListTagsForResourceCommandOutput | PutResourcePermissionCommandOutput | RegisterApplicationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationSettingsCommandOutput;
38
+ export type ServiceOutputTypes = DeleteResourcePermissionCommandOutput | DeregisterApplicationCommandOutput | GetApplicationCommandOutput | GetComponentCommandOutput | GetDatabaseCommandOutput | GetOperationCommandOutput | GetResourcePermissionCommandOutput | ListApplicationsCommandOutput | ListComponentsCommandOutput | ListDatabasesCommandOutput | ListOperationsCommandOutput | ListTagsForResourceCommandOutput | PutResourcePermissionCommandOutput | RegisterApplicationCommandOutput | StartApplicationRefreshCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationSettingsCommandOutput;
38
39
  /**
39
40
  * @public
40
41
  */
@@ -31,7 +31,7 @@ export interface DeleteResourcePermissionCommandOutput extends DeleteResourcePer
31
31
  * // const { SsmSapClient, DeleteResourcePermissionCommand } = require("@aws-sdk/client-ssm-sap"); // CommonJS import
32
32
  * const client = new SsmSapClient(config);
33
33
  * const input = { // DeleteResourcePermissionInput
34
- * ActionType: "STRING_VALUE",
34
+ * ActionType: "RESTORE",
35
35
  * SourceResourceArn: "STRING_VALUE",
36
36
  * ResourceArn: "STRING_VALUE", // required
37
37
  * };
@@ -41,10 +41,11 @@ export interface GetApplicationCommandOutput extends GetApplicationOutput, __Met
41
41
  * // { // GetApplicationOutput
42
42
  * // Application: { // Application
43
43
  * // Id: "STRING_VALUE",
44
- * // Type: "STRING_VALUE",
44
+ * // Type: "HANA",
45
45
  * // Arn: "STRING_VALUE",
46
46
  * // AppRegistryArn: "STRING_VALUE",
47
- * // Status: "STRING_VALUE",
47
+ * // Status: "ACTIVATED" || "STARTING" || "STOPPED" || "STOPPING" || "FAILED" || "REGISTERING" || "DELETING" || "UNKNOWN",
48
+ * // DiscoveryStatus: "SUCCESS" || "REGISTRATION_FAILED" || "REFRESH_FAILED" || "REGISTERING" || "DELETING",
48
49
  * // Components: [ // ComponentIdList
49
50
  * // "STRING_VALUE",
50
51
  * // ],
@@ -40,22 +40,46 @@ export interface GetComponentCommandOutput extends GetComponentOutput, __Metadat
40
40
  * // { // GetComponentOutput
41
41
  * // Component: { // Component
42
42
  * // ComponentId: "STRING_VALUE",
43
+ * // ParentComponent: "STRING_VALUE",
44
+ * // ChildComponents: [ // ComponentIdList
45
+ * // "STRING_VALUE",
46
+ * // ],
43
47
  * // ApplicationId: "STRING_VALUE",
44
- * // ComponentType: "STRING_VALUE",
45
- * // Status: "STRING_VALUE",
48
+ * // ComponentType: "HANA" || "HANA_NODE",
49
+ * // Status: "ACTIVATED" || "STARTING" || "STOPPED" || "STOPPING" || "RUNNING" || "RUNNING_WITH_ERROR" || "UNDEFINED",
50
+ * // SapHostname: "STRING_VALUE",
51
+ * // SapKernelVersion: "STRING_VALUE",
52
+ * // HdbVersion: "STRING_VALUE",
53
+ * // Resilience: { // Resilience
54
+ * // HsrTier: "STRING_VALUE",
55
+ * // HsrReplicationMode: "PRIMARY" || "NONE" || "SYNC" || "SYNCMEM" || "ASYNC",
56
+ * // HsrOperationMode: "PRIMARY" || "LOGREPLAY" || "DELTA_DATASHIPPING" || "LOGREPLAY_READACCESS" || "NONE",
57
+ * // ClusterStatus: "ONLINE" || "STANDBY" || "MAINTENANCE" || "OFFLINE" || "NONE",
58
+ * // },
59
+ * // AssociatedHost: { // AssociatedHost
60
+ * // Hostname: "STRING_VALUE",
61
+ * // Ec2InstanceId: "STRING_VALUE",
62
+ * // OsVersion: "STRING_VALUE",
63
+ * // },
46
64
  * // Databases: [ // DatabaseIdList
47
65
  * // "STRING_VALUE",
48
66
  * // ],
49
67
  * // Hosts: [ // HostList
50
68
  * // { // Host
51
69
  * // HostName: "STRING_VALUE",
52
- * // HostRole: "STRING_VALUE",
53
70
  * // HostIp: "STRING_VALUE",
71
+ * // EC2InstanceId: "STRING_VALUE",
54
72
  * // InstanceId: "STRING_VALUE",
73
+ * // HostRole: "LEADER" || "WORKER" || "STANDBY" || "UNKNOWN",
74
+ * // OsVersion: "STRING_VALUE",
55
75
  * // },
56
76
  * // ],
57
77
  * // PrimaryHost: "STRING_VALUE",
58
78
  * // LastUpdated: new Date("TIMESTAMP"),
79
+ * // Arn: "STRING_VALUE",
80
+ * // },
81
+ * // Tags: { // TagMap
82
+ * // "<keys>": "STRING_VALUE",
59
83
  * // },
60
84
  * // };
61
85
  *
@@ -46,15 +46,15 @@ export interface GetDatabaseCommandOutput extends GetDatabaseOutput, __MetadataB
46
46
  * // Credentials: [ // ApplicationCredentialList
47
47
  * // { // ApplicationCredential
48
48
  * // DatabaseName: "STRING_VALUE", // required
49
- * // CredentialType: "STRING_VALUE", // required
49
+ * // CredentialType: "ADMIN", // required
50
50
  * // SecretId: "STRING_VALUE", // required
51
51
  * // },
52
52
  * // ],
53
53
  * // DatabaseId: "STRING_VALUE",
54
54
  * // DatabaseName: "STRING_VALUE",
55
- * // DatabaseType: "STRING_VALUE",
55
+ * // DatabaseType: "SYSTEM" || "TENANT",
56
56
  * // Arn: "STRING_VALUE",
57
- * // Status: "STRING_VALUE",
57
+ * // Status: "RUNNING" || "STARTING" || "STOPPED" || "WARNING" || "UNKNOWN" || "ERROR",
58
58
  * // PrimaryHost: "STRING_VALUE",
59
59
  * // SQLPort: Number("int"),
60
60
  * // LastUpdated: new Date("TIMESTAMP"),
@@ -39,7 +39,7 @@ export interface GetOperationCommandOutput extends GetOperationOutput, __Metadat
39
39
  * // Operation: { // Operation
40
40
  * // Id: "STRING_VALUE",
41
41
  * // Type: "STRING_VALUE",
42
- * // Status: "STRING_VALUE",
42
+ * // Status: "INPROGRESS" || "SUCCESS" || "ERROR",
43
43
  * // StatusMessage: "STRING_VALUE",
44
44
  * // Properties: { // OperationProperties
45
45
  * // "<keys>": "STRING_VALUE",
@@ -31,7 +31,7 @@ export interface GetResourcePermissionCommandOutput extends GetResourcePermissio
31
31
  * // const { SsmSapClient, GetResourcePermissionCommand } = require("@aws-sdk/client-ssm-sap"); // CommonJS import
32
32
  * const client = new SsmSapClient(config);
33
33
  * const input = { // GetResourcePermissionInput
34
- * ActionType: "STRING_VALUE",
34
+ * ActionType: "RESTORE",
35
35
  * ResourceArn: "STRING_VALUE", // required
36
36
  * };
37
37
  * const command = new GetResourcePermissionCommand(input);
@@ -40,7 +40,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _
40
40
  * // Applications: [ // ApplicationSummaryList
41
41
  * // { // ApplicationSummary
42
42
  * // Id: "STRING_VALUE",
43
- * // Type: "STRING_VALUE",
43
+ * // Type: "HANA",
44
44
  * // Arn: "STRING_VALUE",
45
45
  * // Tags: { // TagMap
46
46
  * // "<keys>": "STRING_VALUE",
@@ -42,10 +42,11 @@ export interface ListComponentsCommandOutput extends ListComponentsOutput, __Met
42
42
  * // { // ComponentSummary
43
43
  * // ApplicationId: "STRING_VALUE",
44
44
  * // ComponentId: "STRING_VALUE",
45
- * // ComponentType: "STRING_VALUE",
45
+ * // ComponentType: "HANA" || "HANA_NODE",
46
46
  * // Tags: { // TagMap
47
47
  * // "<keys>": "STRING_VALUE",
48
48
  * // },
49
+ * // Arn: "STRING_VALUE",
49
50
  * // },
50
51
  * // ],
51
52
  * // NextToken: "STRING_VALUE",
@@ -45,7 +45,7 @@ export interface ListDatabasesCommandOutput extends ListDatabasesOutput, __Metad
45
45
  * // ApplicationId: "STRING_VALUE",
46
46
  * // ComponentId: "STRING_VALUE",
47
47
  * // DatabaseId: "STRING_VALUE",
48
- * // DatabaseType: "STRING_VALUE",
48
+ * // DatabaseType: "SYSTEM" || "TENANT",
49
49
  * // Arn: "STRING_VALUE",
50
50
  * // Tags: { // TagMap
51
51
  * // "<keys>": "STRING_VALUE",
@@ -38,7 +38,7 @@ export interface ListOperationsCommandOutput extends ListOperationsOutput, __Met
38
38
  * { // Filter
39
39
  * Name: "STRING_VALUE", // required
40
40
  * Value: "STRING_VALUE", // required
41
- * Operator: "STRING_VALUE", // required
41
+ * Operator: "Equals" || "GreaterThanOrEquals" || "LessThanOrEquals", // required
42
42
  * },
43
43
  * ],
44
44
  * };
@@ -49,7 +49,7 @@ export interface ListOperationsCommandOutput extends ListOperationsOutput, __Met
49
49
  * // { // Operation
50
50
  * // Id: "STRING_VALUE",
51
51
  * // Type: "STRING_VALUE",
52
- * // Status: "STRING_VALUE",
52
+ * // Status: "INPROGRESS" || "SUCCESS" || "ERROR",
53
53
  * // StatusMessage: "STRING_VALUE",
54
54
  * // Properties: { // OperationProperties
55
55
  * // "<keys>": "STRING_VALUE",
@@ -31,7 +31,7 @@ export interface PutResourcePermissionCommandOutput extends PutResourcePermissio
31
31
  * // const { SsmSapClient, PutResourcePermissionCommand } = require("@aws-sdk/client-ssm-sap"); // CommonJS import
32
32
  * const client = new SsmSapClient(config);
33
33
  * const input = { // PutResourcePermissionInput
34
- * ActionType: "STRING_VALUE", // required
34
+ * ActionType: "RESTORE", // required
35
35
  * SourceResourceArn: "STRING_VALUE", // required
36
36
  * ResourceArn: "STRING_VALUE", // required
37
37
  * };
@@ -39,7 +39,7 @@ export interface RegisterApplicationCommandOutput extends RegisterApplicationOut
39
39
  * const client = new SsmSapClient(config);
40
40
  * const input = { // RegisterApplicationInput
41
41
  * ApplicationId: "STRING_VALUE", // required
42
- * ApplicationType: "STRING_VALUE", // required
42
+ * ApplicationType: "HANA", // required
43
43
  * Instances: [ // InstanceList // required
44
44
  * "STRING_VALUE",
45
45
  * ],
@@ -51,7 +51,7 @@ export interface RegisterApplicationCommandOutput extends RegisterApplicationOut
51
51
  * Credentials: [ // ApplicationCredentialList // required
52
52
  * { // ApplicationCredential
53
53
  * DatabaseName: "STRING_VALUE", // required
54
- * CredentialType: "STRING_VALUE", // required
54
+ * CredentialType: "ADMIN", // required
55
55
  * SecretId: "STRING_VALUE", // required
56
56
  * },
57
57
  * ],
@@ -61,10 +61,11 @@ export interface RegisterApplicationCommandOutput extends RegisterApplicationOut
61
61
  * // { // RegisterApplicationOutput
62
62
  * // Application: { // Application
63
63
  * // Id: "STRING_VALUE",
64
- * // Type: "STRING_VALUE",
64
+ * // Type: "HANA",
65
65
  * // Arn: "STRING_VALUE",
66
66
  * // AppRegistryArn: "STRING_VALUE",
67
- * // Status: "STRING_VALUE",
67
+ * // Status: "ACTIVATED" || "STARTING" || "STOPPED" || "STOPPING" || "FAILED" || "REGISTERING" || "DELETING" || "UNKNOWN",
68
+ * // DiscoveryStatus: "SUCCESS" || "REGISTRATION_FAILED" || "REFRESH_FAILED" || "REGISTERING" || "DELETING",
68
69
  * // Components: [ // ComponentIdList
69
70
  * // "STRING_VALUE",
70
71
  * // ],
@@ -0,0 +1,85 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { StartApplicationRefreshInput, StartApplicationRefreshOutput } from "../models/models_0";
5
+ import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link StartApplicationRefreshCommand}.
14
+ */
15
+ export interface StartApplicationRefreshCommandInput extends StartApplicationRefreshInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link StartApplicationRefreshCommand}.
21
+ */
22
+ export interface StartApplicationRefreshCommandOutput extends StartApplicationRefreshOutput, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Refreshes a registered application.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { SsmSapClient, StartApplicationRefreshCommand } from "@aws-sdk/client-ssm-sap"; // ES Modules import
31
+ * // const { SsmSapClient, StartApplicationRefreshCommand } = require("@aws-sdk/client-ssm-sap"); // CommonJS import
32
+ * const client = new SsmSapClient(config);
33
+ * const input = { // StartApplicationRefreshInput
34
+ * ApplicationId: "STRING_VALUE", // required
35
+ * };
36
+ * const command = new StartApplicationRefreshCommand(input);
37
+ * const response = await client.send(command);
38
+ * // { // StartApplicationRefreshOutput
39
+ * // OperationId: "STRING_VALUE",
40
+ * // };
41
+ *
42
+ * ```
43
+ *
44
+ * @param StartApplicationRefreshCommandInput - {@link StartApplicationRefreshCommandInput}
45
+ * @returns {@link StartApplicationRefreshCommandOutput}
46
+ * @see {@link StartApplicationRefreshCommandInput} for command's `input` shape.
47
+ * @see {@link StartApplicationRefreshCommandOutput} for command's `response` shape.
48
+ * @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
49
+ *
50
+ * @throws {@link ConflictException} (client fault)
51
+ * <p>A conflict has occurred.</p>
52
+ *
53
+ * @throws {@link InternalServerException} (server fault)
54
+ * <p>An internal error has occurred.</p>
55
+ *
56
+ * @throws {@link ResourceNotFoundException} (client fault)
57
+ * <p>The resource is not available.</p>
58
+ *
59
+ * @throws {@link ValidationException} (client fault)
60
+ * <p>The input fails to satisfy the constraints specified by an AWS service. </p>
61
+ *
62
+ * @throws {@link SsmSapServiceException}
63
+ * <p>Base exception class for all service exceptions from SsmSap service.</p>
64
+ *
65
+ */
66
+ export declare class StartApplicationRefreshCommand extends $Command<StartApplicationRefreshCommandInput, StartApplicationRefreshCommandOutput, SsmSapClientResolvedConfig> {
67
+ readonly input: StartApplicationRefreshCommandInput;
68
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
72
+ constructor(input: StartApplicationRefreshCommandInput);
73
+ /**
74
+ * @internal
75
+ */
76
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartApplicationRefreshCommandInput, StartApplicationRefreshCommandOutput>;
77
+ /**
78
+ * @internal
79
+ */
80
+ private serialize;
81
+ /**
82
+ * @internal
83
+ */
84
+ private deserialize;
85
+ }
@@ -36,17 +36,21 @@ export interface UpdateApplicationSettingsCommandOutput extends UpdateApplicatio
36
36
  * CredentialsToAddOrUpdate: [ // ApplicationCredentialList
37
37
  * { // ApplicationCredential
38
38
  * DatabaseName: "STRING_VALUE", // required
39
- * CredentialType: "STRING_VALUE", // required
39
+ * CredentialType: "ADMIN", // required
40
40
  * SecretId: "STRING_VALUE", // required
41
41
  * },
42
42
  * ],
43
43
  * CredentialsToRemove: [
44
44
  * {
45
45
  * DatabaseName: "STRING_VALUE", // required
46
- * CredentialType: "STRING_VALUE", // required
46
+ * CredentialType: "ADMIN", // required
47
47
  * SecretId: "STRING_VALUE", // required
48
48
  * },
49
49
  * ],
50
+ * Backint: { // BackintConfig
51
+ * BackintMode: "AWSBackup", // required
52
+ * EnsureNoBackupInProcess: true || false, // required
53
+ * },
50
54
  * };
51
55
  * const command = new UpdateApplicationSettingsCommand(input);
52
56
  * const response = await client.send(command);
@@ -65,6 +69,9 @@ export interface UpdateApplicationSettingsCommandOutput extends UpdateApplicatio
65
69
  * @see {@link UpdateApplicationSettingsCommandOutput} for command's `response` shape.
66
70
  * @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
67
71
  *
72
+ * @throws {@link ConflictException} (client fault)
73
+ * <p>A conflict has occurred.</p>
74
+ *
68
75
  * @throws {@link InternalServerException} (server fault)
69
76
  * <p>An internal error has occurred.</p>
70
77
  *
@@ -12,6 +12,7 @@ export * from "./ListOperationsCommand";
12
12
  export * from "./ListTagsForResourceCommand";
13
13
  export * from "./PutResourcePermissionCommand";
14
14
  export * from "./RegisterApplicationCommand";
15
+ export * from "./StartApplicationRefreshCommand";
15
16
  export * from "./TagResourceCommand";
16
17
  export * from "./UntagResourceCommand";
17
18
  export * from "./UpdateApplicationSettingsCommand";
@@ -12,7 +12,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
12
12
  defaultSigningName: string;
13
13
  };
14
14
  export interface EndpointParameters extends __EndpointParameters {
15
- Region: string;
15
+ Region?: string;
16
16
  UseDualStack?: boolean;
17
17
  UseFIPS?: boolean;
18
18
  Endpoint?: string;