@aws-sdk/client-observabilityadmin 3.702.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 (127) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +272 -0
  3. package/dist-cjs/ObservabilityAdmin.js +27 -0
  4. package/dist-cjs/ObservabilityAdminClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/GetTelemetryEvaluationStatusCommand.js +26 -0
  8. package/dist-cjs/commands/GetTelemetryEvaluationStatusForOrganizationCommand.js +26 -0
  9. package/dist-cjs/commands/ListResourceTelemetryCommand.js +26 -0
  10. package/dist-cjs/commands/ListResourceTelemetryForOrganizationCommand.js +26 -0
  11. package/dist-cjs/commands/StartTelemetryEvaluationCommand.js +26 -0
  12. package/dist-cjs/commands/StartTelemetryEvaluationForOrganizationCommand.js +26 -0
  13. package/dist-cjs/commands/StopTelemetryEvaluationCommand.js +26 -0
  14. package/dist-cjs/commands/StopTelemetryEvaluationForOrganizationCommand.js +26 -0
  15. package/dist-cjs/commands/index.js +11 -0
  16. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  17. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  18. package/dist-cjs/endpoint/ruleset.js +7 -0
  19. package/dist-cjs/extensionConfiguration.js +2 -0
  20. package/dist-cjs/index.js +11 -0
  21. package/dist-cjs/models/ObservabilityAdminServiceException.js +12 -0
  22. package/dist-cjs/models/index.js +4 -0
  23. package/dist-cjs/models/models_0.js +72 -0
  24. package/dist-cjs/pagination/Interfaces.js +2 -0
  25. package/dist-cjs/pagination/ListResourceTelemetryForOrganizationPaginator.js +7 -0
  26. package/dist-cjs/pagination/ListResourceTelemetryPaginator.js +7 -0
  27. package/dist-cjs/pagination/index.js +6 -0
  28. package/dist-cjs/protocols/Aws_restJson1.js +287 -0
  29. package/dist-cjs/runtimeConfig.browser.js +39 -0
  30. package/dist-cjs/runtimeConfig.js +50 -0
  31. package/dist-cjs/runtimeConfig.native.js +15 -0
  32. package/dist-cjs/runtimeConfig.shared.js +34 -0
  33. package/dist-cjs/runtimeExtensions.js +25 -0
  34. package/dist-es/ObservabilityAdmin.js +23 -0
  35. package/dist-es/ObservabilityAdminClient.js +46 -0
  36. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  37. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  38. package/dist-es/commands/GetTelemetryEvaluationStatusCommand.js +22 -0
  39. package/dist-es/commands/GetTelemetryEvaluationStatusForOrganizationCommand.js +22 -0
  40. package/dist-es/commands/ListResourceTelemetryCommand.js +22 -0
  41. package/dist-es/commands/ListResourceTelemetryForOrganizationCommand.js +22 -0
  42. package/dist-es/commands/StartTelemetryEvaluationCommand.js +22 -0
  43. package/dist-es/commands/StartTelemetryEvaluationForOrganizationCommand.js +22 -0
  44. package/dist-es/commands/StopTelemetryEvaluationCommand.js +22 -0
  45. package/dist-es/commands/StopTelemetryEvaluationForOrganizationCommand.js +22 -0
  46. package/dist-es/commands/index.js +8 -0
  47. package/dist-es/endpoint/EndpointParameters.js +14 -0
  48. package/dist-es/endpoint/endpointResolver.js +14 -0
  49. package/dist-es/endpoint/ruleset.js +4 -0
  50. package/dist-es/extensionConfiguration.js +1 -0
  51. package/dist-es/index.js +6 -0
  52. package/dist-es/models/ObservabilityAdminServiceException.js +8 -0
  53. package/dist-es/models/index.js +1 -0
  54. package/dist-es/models/models_0.js +66 -0
  55. package/dist-es/pagination/Interfaces.js +1 -0
  56. package/dist-es/pagination/ListResourceTelemetryForOrganizationPaginator.js +4 -0
  57. package/dist-es/pagination/ListResourceTelemetryPaginator.js +4 -0
  58. package/dist-es/pagination/index.js +3 -0
  59. package/dist-es/protocols/Aws_restJson1.js +268 -0
  60. package/dist-es/runtimeConfig.browser.js +34 -0
  61. package/dist-es/runtimeConfig.js +45 -0
  62. package/dist-es/runtimeConfig.native.js +11 -0
  63. package/dist-es/runtimeConfig.shared.js +30 -0
  64. package/dist-es/runtimeExtensions.js +21 -0
  65. package/dist-types/ObservabilityAdmin.d.ts +77 -0
  66. package/dist-types/ObservabilityAdminClient.d.ts +180 -0
  67. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  68. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  69. package/dist-types/commands/GetTelemetryEvaluationStatusCommand.d.ts +82 -0
  70. package/dist-types/commands/GetTelemetryEvaluationStatusForOrganizationCommand.d.ts +87 -0
  71. package/dist-types/commands/ListResourceTelemetryCommand.d.ts +113 -0
  72. package/dist-types/commands/ListResourceTelemetryForOrganizationCommand.d.ts +116 -0
  73. package/dist-types/commands/StartTelemetryEvaluationCommand.d.ts +83 -0
  74. package/dist-types/commands/StartTelemetryEvaluationForOrganizationCommand.d.ts +83 -0
  75. package/dist-types/commands/StopTelemetryEvaluationCommand.d.ts +83 -0
  76. package/dist-types/commands/StopTelemetryEvaluationForOrganizationCommand.d.ts +83 -0
  77. package/dist-types/commands/index.d.ts +8 -0
  78. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  79. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  80. package/dist-types/endpoint/ruleset.d.ts +2 -0
  81. package/dist-types/extensionConfiguration.d.ts +9 -0
  82. package/dist-types/index.d.ts +17 -0
  83. package/dist-types/models/ObservabilityAdminServiceException.d.ts +14 -0
  84. package/dist-types/models/index.d.ts +1 -0
  85. package/dist-types/models/models_0.d.ts +344 -0
  86. package/dist-types/pagination/Interfaces.d.ts +8 -0
  87. package/dist-types/pagination/ListResourceTelemetryForOrganizationPaginator.d.ts +7 -0
  88. package/dist-types/pagination/ListResourceTelemetryPaginator.d.ts +7 -0
  89. package/dist-types/pagination/index.d.ts +3 -0
  90. package/dist-types/protocols/Aws_restJson1.d.ts +74 -0
  91. package/dist-types/runtimeConfig.browser.d.ts +48 -0
  92. package/dist-types/runtimeConfig.d.ts +48 -0
  93. package/dist-types/runtimeConfig.native.d.ts +47 -0
  94. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  95. package/dist-types/runtimeExtensions.d.ts +17 -0
  96. package/dist-types/ts3.4/ObservabilityAdmin.d.ts +175 -0
  97. package/dist-types/ts3.4/ObservabilityAdminClient.d.ts +169 -0
  98. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  99. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  100. package/dist-types/ts3.4/commands/GetTelemetryEvaluationStatusCommand.d.ts +47 -0
  101. package/dist-types/ts3.4/commands/GetTelemetryEvaluationStatusForOrganizationCommand.d.ts +47 -0
  102. package/dist-types/ts3.4/commands/ListResourceTelemetryCommand.d.ts +51 -0
  103. package/dist-types/ts3.4/commands/ListResourceTelemetryForOrganizationCommand.d.ts +51 -0
  104. package/dist-types/ts3.4/commands/StartTelemetryEvaluationCommand.d.ts +45 -0
  105. package/dist-types/ts3.4/commands/StartTelemetryEvaluationForOrganizationCommand.d.ts +45 -0
  106. package/dist-types/ts3.4/commands/StopTelemetryEvaluationCommand.d.ts +45 -0
  107. package/dist-types/ts3.4/commands/StopTelemetryEvaluationForOrganizationCommand.d.ts +45 -0
  108. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  109. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  110. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  111. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  112. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  113. package/dist-types/ts3.4/index.d.ts +9 -0
  114. package/dist-types/ts3.4/models/ObservabilityAdminServiceException.d.ts +9 -0
  115. package/dist-types/ts3.4/models/index.d.ts +1 -0
  116. package/dist-types/ts3.4/models/models_0.d.ts +104 -0
  117. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  118. package/dist-types/ts3.4/pagination/ListResourceTelemetryForOrganizationPaginator.d.ts +11 -0
  119. package/dist-types/ts3.4/pagination/ListResourceTelemetryPaginator.d.ts +11 -0
  120. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  121. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +101 -0
  122. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
  123. package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
  124. package/dist-types/ts3.4/runtimeConfig.native.d.ts +89 -0
  125. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  126. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  127. package/package.json +101 -0
@@ -0,0 +1,113 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListResourceTelemetryInput, ListResourceTelemetryOutput } from "../models/models_0";
4
+ import { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ObservabilityAdminClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListResourceTelemetryCommand}.
14
+ */
15
+ export interface ListResourceTelemetryCommandInput extends ListResourceTelemetryInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListResourceTelemetryCommand}.
21
+ */
22
+ export interface ListResourceTelemetryCommandOutput extends ListResourceTelemetryOutput, __MetadataBearer {
23
+ }
24
+ declare const ListResourceTelemetryCommand_base: {
25
+ new (input: ListResourceTelemetryCommandInput): import("@smithy/smithy-client").CommandImpl<ListResourceTelemetryCommandInput, ListResourceTelemetryCommandOutput, ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListResourceTelemetryCommandInput]): import("@smithy/smithy-client").CommandImpl<ListResourceTelemetryCommandInput, ListResourceTelemetryCommandOutput, ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>
31
+ * Returns a list of telemetry configurations for AWS resources supported by telemetry config. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/telemetry-config-cloudwatch.html">Auditing CloudWatch telemetry configurations</a>.
32
+ * </p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { ObservabilityAdminClient, ListResourceTelemetryCommand } from "@aws-sdk/client-observabilityadmin"; // ES Modules import
37
+ * // const { ObservabilityAdminClient, ListResourceTelemetryCommand } = require("@aws-sdk/client-observabilityadmin"); // CommonJS import
38
+ * const client = new ObservabilityAdminClient(config);
39
+ * const input = { // ListResourceTelemetryInput
40
+ * ResourceIdentifierPrefix: "STRING_VALUE",
41
+ * ResourceTypes: [ // ResourceTypes
42
+ * "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function",
43
+ * ],
44
+ * TelemetryConfigurationState: { // TelemetryConfigurationState
45
+ * "<keys>": "Enabled" || "Disabled" || "NotApplicable",
46
+ * },
47
+ * ResourceTags: { // TagMapInput
48
+ * "<keys>": "STRING_VALUE",
49
+ * },
50
+ * MaxResults: Number("int"),
51
+ * NextToken: "STRING_VALUE",
52
+ * };
53
+ * const command = new ListResourceTelemetryCommand(input);
54
+ * const response = await client.send(command);
55
+ * // { // ListResourceTelemetryOutput
56
+ * // TelemetryConfigurations: [ // TelemetryConfigurations
57
+ * // { // TelemetryConfiguration
58
+ * // AccountIdentifier: "STRING_VALUE",
59
+ * // TelemetryConfigurationState: { // TelemetryConfigurationState
60
+ * // "<keys>": "Enabled" || "Disabled" || "NotApplicable",
61
+ * // },
62
+ * // ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function",
63
+ * // ResourceIdentifier: "STRING_VALUE",
64
+ * // ResourceTags: { // TagMapOutput
65
+ * // "<keys>": "STRING_VALUE",
66
+ * // },
67
+ * // LastUpdateTimeStamp: Number("long"),
68
+ * // },
69
+ * // ],
70
+ * // NextToken: "STRING_VALUE",
71
+ * // };
72
+ *
73
+ * ```
74
+ *
75
+ * @param ListResourceTelemetryCommandInput - {@link ListResourceTelemetryCommandInput}
76
+ * @returns {@link ListResourceTelemetryCommandOutput}
77
+ * @see {@link ListResourceTelemetryCommandInput} for command's `input` shape.
78
+ * @see {@link ListResourceTelemetryCommandOutput} for command's `response` shape.
79
+ * @see {@link ObservabilityAdminClientResolvedConfig | config} for ObservabilityAdminClient's `config` shape.
80
+ *
81
+ * @throws {@link AccessDeniedException} (client fault)
82
+ * <p>
83
+ * Indicates you don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access management for AWS resources</a> in the IAM user guide.
84
+ * </p>
85
+ *
86
+ * @throws {@link InternalServerException} (server fault)
87
+ * <p>
88
+ * Indicates the request has failed to process because of an unknown server error, exception, or failure.
89
+ * </p>
90
+ *
91
+ * @throws {@link ValidationException} (client fault)
92
+ * <p>
93
+ * Indicates input validation failed. Check your request parameters and retry the request.
94
+ * </p>
95
+ *
96
+ * @throws {@link ObservabilityAdminServiceException}
97
+ * <p>Base exception class for all service exceptions from ObservabilityAdmin service.</p>
98
+ *
99
+ * @public
100
+ */
101
+ export declare class ListResourceTelemetryCommand extends ListResourceTelemetryCommand_base {
102
+ /** @internal type navigation helper, not in runtime. */
103
+ protected static __types: {
104
+ api: {
105
+ input: ListResourceTelemetryInput;
106
+ output: ListResourceTelemetryOutput;
107
+ };
108
+ sdk: {
109
+ input: ListResourceTelemetryCommandInput;
110
+ output: ListResourceTelemetryCommandOutput;
111
+ };
112
+ };
113
+ }
@@ -0,0 +1,116 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListResourceTelemetryForOrganizationInput, ListResourceTelemetryForOrganizationOutput } from "../models/models_0";
4
+ import { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ObservabilityAdminClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListResourceTelemetryForOrganizationCommand}.
14
+ */
15
+ export interface ListResourceTelemetryForOrganizationCommandInput extends ListResourceTelemetryForOrganizationInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListResourceTelemetryForOrganizationCommand}.
21
+ */
22
+ export interface ListResourceTelemetryForOrganizationCommandOutput extends ListResourceTelemetryForOrganizationOutput, __MetadataBearer {
23
+ }
24
+ declare const ListResourceTelemetryForOrganizationCommand_base: {
25
+ new (input: ListResourceTelemetryForOrganizationCommandInput): import("@smithy/smithy-client").CommandImpl<ListResourceTelemetryForOrganizationCommandInput, ListResourceTelemetryForOrganizationCommandOutput, ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListResourceTelemetryForOrganizationCommandInput]): import("@smithy/smithy-client").CommandImpl<ListResourceTelemetryForOrganizationCommandInput, ListResourceTelemetryForOrganizationCommandOutput, ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>
31
+ * Returns a list of telemetry configurations for AWS resources supported by telemetry config in the organization.
32
+ * </p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { ObservabilityAdminClient, ListResourceTelemetryForOrganizationCommand } from "@aws-sdk/client-observabilityadmin"; // ES Modules import
37
+ * // const { ObservabilityAdminClient, ListResourceTelemetryForOrganizationCommand } = require("@aws-sdk/client-observabilityadmin"); // CommonJS import
38
+ * const client = new ObservabilityAdminClient(config);
39
+ * const input = { // ListResourceTelemetryForOrganizationInput
40
+ * AccountIdentifiers: [ // AccountIdentifiers
41
+ * "STRING_VALUE",
42
+ * ],
43
+ * ResourceIdentifierPrefix: "STRING_VALUE",
44
+ * ResourceTypes: [ // ResourceTypes
45
+ * "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function",
46
+ * ],
47
+ * TelemetryConfigurationState: { // TelemetryConfigurationState
48
+ * "<keys>": "Enabled" || "Disabled" || "NotApplicable",
49
+ * },
50
+ * ResourceTags: { // TagMapInput
51
+ * "<keys>": "STRING_VALUE",
52
+ * },
53
+ * MaxResults: Number("int"),
54
+ * NextToken: "STRING_VALUE",
55
+ * };
56
+ * const command = new ListResourceTelemetryForOrganizationCommand(input);
57
+ * const response = await client.send(command);
58
+ * // { // ListResourceTelemetryForOrganizationOutput
59
+ * // TelemetryConfigurations: [ // TelemetryConfigurations
60
+ * // { // TelemetryConfiguration
61
+ * // AccountIdentifier: "STRING_VALUE",
62
+ * // TelemetryConfigurationState: { // TelemetryConfigurationState
63
+ * // "<keys>": "Enabled" || "Disabled" || "NotApplicable",
64
+ * // },
65
+ * // ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function",
66
+ * // ResourceIdentifier: "STRING_VALUE",
67
+ * // ResourceTags: { // TagMapOutput
68
+ * // "<keys>": "STRING_VALUE",
69
+ * // },
70
+ * // LastUpdateTimeStamp: Number("long"),
71
+ * // },
72
+ * // ],
73
+ * // NextToken: "STRING_VALUE",
74
+ * // };
75
+ *
76
+ * ```
77
+ *
78
+ * @param ListResourceTelemetryForOrganizationCommandInput - {@link ListResourceTelemetryForOrganizationCommandInput}
79
+ * @returns {@link ListResourceTelemetryForOrganizationCommandOutput}
80
+ * @see {@link ListResourceTelemetryForOrganizationCommandInput} for command's `input` shape.
81
+ * @see {@link ListResourceTelemetryForOrganizationCommandOutput} for command's `response` shape.
82
+ * @see {@link ObservabilityAdminClientResolvedConfig | config} for ObservabilityAdminClient's `config` shape.
83
+ *
84
+ * @throws {@link AccessDeniedException} (client fault)
85
+ * <p>
86
+ * Indicates you don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access management for AWS resources</a> in the IAM user guide.
87
+ * </p>
88
+ *
89
+ * @throws {@link InternalServerException} (server fault)
90
+ * <p>
91
+ * Indicates the request has failed to process because of an unknown server error, exception, or failure.
92
+ * </p>
93
+ *
94
+ * @throws {@link ValidationException} (client fault)
95
+ * <p>
96
+ * Indicates input validation failed. Check your request parameters and retry the request.
97
+ * </p>
98
+ *
99
+ * @throws {@link ObservabilityAdminServiceException}
100
+ * <p>Base exception class for all service exceptions from ObservabilityAdmin service.</p>
101
+ *
102
+ * @public
103
+ */
104
+ export declare class ListResourceTelemetryForOrganizationCommand extends ListResourceTelemetryForOrganizationCommand_base {
105
+ /** @internal type navigation helper, not in runtime. */
106
+ protected static __types: {
107
+ api: {
108
+ input: ListResourceTelemetryForOrganizationInput;
109
+ output: ListResourceTelemetryForOrganizationOutput;
110
+ };
111
+ sdk: {
112
+ input: ListResourceTelemetryForOrganizationCommandInput;
113
+ output: ListResourceTelemetryForOrganizationCommandOutput;
114
+ };
115
+ };
116
+ }
@@ -0,0 +1,83 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ObservabilityAdminClient";
4
+ /**
5
+ * @public
6
+ */
7
+ export type { __MetadataBearer };
8
+ export { $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link StartTelemetryEvaluationCommand}.
13
+ */
14
+ export interface StartTelemetryEvaluationCommandInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link StartTelemetryEvaluationCommand}.
20
+ */
21
+ export interface StartTelemetryEvaluationCommandOutput extends __MetadataBearer {
22
+ }
23
+ declare const StartTelemetryEvaluationCommand_base: {
24
+ new (input: StartTelemetryEvaluationCommandInput): import("@smithy/smithy-client").CommandImpl<StartTelemetryEvaluationCommandInput, StartTelemetryEvaluationCommandOutput, ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [StartTelemetryEvaluationCommandInput]): import("@smithy/smithy-client").CommandImpl<StartTelemetryEvaluationCommandInput, StartTelemetryEvaluationCommandOutput, ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>
30
+ * This action begins onboarding onboarding the caller AWS account to the telemetry config feature.
31
+ * </p>
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { ObservabilityAdminClient, StartTelemetryEvaluationCommand } from "@aws-sdk/client-observabilityadmin"; // ES Modules import
36
+ * // const { ObservabilityAdminClient, StartTelemetryEvaluationCommand } = require("@aws-sdk/client-observabilityadmin"); // CommonJS import
37
+ * const client = new ObservabilityAdminClient(config);
38
+ * const input = {};
39
+ * const command = new StartTelemetryEvaluationCommand(input);
40
+ * const response = await client.send(command);
41
+ * // {};
42
+ *
43
+ * ```
44
+ *
45
+ * @param StartTelemetryEvaluationCommandInput - {@link StartTelemetryEvaluationCommandInput}
46
+ * @returns {@link StartTelemetryEvaluationCommandOutput}
47
+ * @see {@link StartTelemetryEvaluationCommandInput} for command's `input` shape.
48
+ * @see {@link StartTelemetryEvaluationCommandOutput} for command's `response` shape.
49
+ * @see {@link ObservabilityAdminClientResolvedConfig | config} for ObservabilityAdminClient's `config` shape.
50
+ *
51
+ * @throws {@link AccessDeniedException} (client fault)
52
+ * <p>
53
+ * Indicates you don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access management for AWS resources</a> in the IAM user guide.
54
+ * </p>
55
+ *
56
+ * @throws {@link InternalServerException} (server fault)
57
+ * <p>
58
+ * Indicates the request has failed to process because of an unknown server error, exception, or failure.
59
+ * </p>
60
+ *
61
+ * @throws {@link ValidationException} (client fault)
62
+ * <p>
63
+ * Indicates input validation failed. Check your request parameters and retry the request.
64
+ * </p>
65
+ *
66
+ * @throws {@link ObservabilityAdminServiceException}
67
+ * <p>Base exception class for all service exceptions from ObservabilityAdmin service.</p>
68
+ *
69
+ * @public
70
+ */
71
+ export declare class StartTelemetryEvaluationCommand extends StartTelemetryEvaluationCommand_base {
72
+ /** @internal type navigation helper, not in runtime. */
73
+ protected static __types: {
74
+ api: {
75
+ input: {};
76
+ output: {};
77
+ };
78
+ sdk: {
79
+ input: StartTelemetryEvaluationCommandInput;
80
+ output: StartTelemetryEvaluationCommandOutput;
81
+ };
82
+ };
83
+ }
@@ -0,0 +1,83 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ObservabilityAdminClient";
4
+ /**
5
+ * @public
6
+ */
7
+ export type { __MetadataBearer };
8
+ export { $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link StartTelemetryEvaluationForOrganizationCommand}.
13
+ */
14
+ export interface StartTelemetryEvaluationForOrganizationCommandInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link StartTelemetryEvaluationForOrganizationCommand}.
20
+ */
21
+ export interface StartTelemetryEvaluationForOrganizationCommandOutput extends __MetadataBearer {
22
+ }
23
+ declare const StartTelemetryEvaluationForOrganizationCommand_base: {
24
+ new (input: StartTelemetryEvaluationForOrganizationCommandInput): import("@smithy/smithy-client").CommandImpl<StartTelemetryEvaluationForOrganizationCommandInput, StartTelemetryEvaluationForOrganizationCommandOutput, ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [StartTelemetryEvaluationForOrganizationCommandInput]): import("@smithy/smithy-client").CommandImpl<StartTelemetryEvaluationForOrganizationCommandInput, StartTelemetryEvaluationForOrganizationCommandOutput, ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>
30
+ * This actions begins onboarding the organization and all member accounts to the telemetry config feature.
31
+ * </p>
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { ObservabilityAdminClient, StartTelemetryEvaluationForOrganizationCommand } from "@aws-sdk/client-observabilityadmin"; // ES Modules import
36
+ * // const { ObservabilityAdminClient, StartTelemetryEvaluationForOrganizationCommand } = require("@aws-sdk/client-observabilityadmin"); // CommonJS import
37
+ * const client = new ObservabilityAdminClient(config);
38
+ * const input = {};
39
+ * const command = new StartTelemetryEvaluationForOrganizationCommand(input);
40
+ * const response = await client.send(command);
41
+ * // {};
42
+ *
43
+ * ```
44
+ *
45
+ * @param StartTelemetryEvaluationForOrganizationCommandInput - {@link StartTelemetryEvaluationForOrganizationCommandInput}
46
+ * @returns {@link StartTelemetryEvaluationForOrganizationCommandOutput}
47
+ * @see {@link StartTelemetryEvaluationForOrganizationCommandInput} for command's `input` shape.
48
+ * @see {@link StartTelemetryEvaluationForOrganizationCommandOutput} for command's `response` shape.
49
+ * @see {@link ObservabilityAdminClientResolvedConfig | config} for ObservabilityAdminClient's `config` shape.
50
+ *
51
+ * @throws {@link AccessDeniedException} (client fault)
52
+ * <p>
53
+ * Indicates you don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access management for AWS resources</a> in the IAM user guide.
54
+ * </p>
55
+ *
56
+ * @throws {@link InternalServerException} (server fault)
57
+ * <p>
58
+ * Indicates the request has failed to process because of an unknown server error, exception, or failure.
59
+ * </p>
60
+ *
61
+ * @throws {@link ValidationException} (client fault)
62
+ * <p>
63
+ * Indicates input validation failed. Check your request parameters and retry the request.
64
+ * </p>
65
+ *
66
+ * @throws {@link ObservabilityAdminServiceException}
67
+ * <p>Base exception class for all service exceptions from ObservabilityAdmin service.</p>
68
+ *
69
+ * @public
70
+ */
71
+ export declare class StartTelemetryEvaluationForOrganizationCommand extends StartTelemetryEvaluationForOrganizationCommand_base {
72
+ /** @internal type navigation helper, not in runtime. */
73
+ protected static __types: {
74
+ api: {
75
+ input: {};
76
+ output: {};
77
+ };
78
+ sdk: {
79
+ input: StartTelemetryEvaluationForOrganizationCommandInput;
80
+ output: StartTelemetryEvaluationForOrganizationCommandOutput;
81
+ };
82
+ };
83
+ }
@@ -0,0 +1,83 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ObservabilityAdminClient";
4
+ /**
5
+ * @public
6
+ */
7
+ export type { __MetadataBearer };
8
+ export { $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link StopTelemetryEvaluationCommand}.
13
+ */
14
+ export interface StopTelemetryEvaluationCommandInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link StopTelemetryEvaluationCommand}.
20
+ */
21
+ export interface StopTelemetryEvaluationCommandOutput extends __MetadataBearer {
22
+ }
23
+ declare const StopTelemetryEvaluationCommand_base: {
24
+ new (input: StopTelemetryEvaluationCommandInput): import("@smithy/smithy-client").CommandImpl<StopTelemetryEvaluationCommandInput, StopTelemetryEvaluationCommandOutput, ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [StopTelemetryEvaluationCommandInput]): import("@smithy/smithy-client").CommandImpl<StopTelemetryEvaluationCommandInput, StopTelemetryEvaluationCommandOutput, ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>
30
+ * This action begins offboarding the caller AWS account from the telemetry config feature.
31
+ * </p>
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { ObservabilityAdminClient, StopTelemetryEvaluationCommand } from "@aws-sdk/client-observabilityadmin"; // ES Modules import
36
+ * // const { ObservabilityAdminClient, StopTelemetryEvaluationCommand } = require("@aws-sdk/client-observabilityadmin"); // CommonJS import
37
+ * const client = new ObservabilityAdminClient(config);
38
+ * const input = {};
39
+ * const command = new StopTelemetryEvaluationCommand(input);
40
+ * const response = await client.send(command);
41
+ * // {};
42
+ *
43
+ * ```
44
+ *
45
+ * @param StopTelemetryEvaluationCommandInput - {@link StopTelemetryEvaluationCommandInput}
46
+ * @returns {@link StopTelemetryEvaluationCommandOutput}
47
+ * @see {@link StopTelemetryEvaluationCommandInput} for command's `input` shape.
48
+ * @see {@link StopTelemetryEvaluationCommandOutput} for command's `response` shape.
49
+ * @see {@link ObservabilityAdminClientResolvedConfig | config} for ObservabilityAdminClient's `config` shape.
50
+ *
51
+ * @throws {@link AccessDeniedException} (client fault)
52
+ * <p>
53
+ * Indicates you don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access management for AWS resources</a> in the IAM user guide.
54
+ * </p>
55
+ *
56
+ * @throws {@link InternalServerException} (server fault)
57
+ * <p>
58
+ * Indicates the request has failed to process because of an unknown server error, exception, or failure.
59
+ * </p>
60
+ *
61
+ * @throws {@link ValidationException} (client fault)
62
+ * <p>
63
+ * Indicates input validation failed. Check your request parameters and retry the request.
64
+ * </p>
65
+ *
66
+ * @throws {@link ObservabilityAdminServiceException}
67
+ * <p>Base exception class for all service exceptions from ObservabilityAdmin service.</p>
68
+ *
69
+ * @public
70
+ */
71
+ export declare class StopTelemetryEvaluationCommand extends StopTelemetryEvaluationCommand_base {
72
+ /** @internal type navigation helper, not in runtime. */
73
+ protected static __types: {
74
+ api: {
75
+ input: {};
76
+ output: {};
77
+ };
78
+ sdk: {
79
+ input: StopTelemetryEvaluationCommandInput;
80
+ output: StopTelemetryEvaluationCommandOutput;
81
+ };
82
+ };
83
+ }
@@ -0,0 +1,83 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ObservabilityAdminClient";
4
+ /**
5
+ * @public
6
+ */
7
+ export type { __MetadataBearer };
8
+ export { $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link StopTelemetryEvaluationForOrganizationCommand}.
13
+ */
14
+ export interface StopTelemetryEvaluationForOrganizationCommandInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link StopTelemetryEvaluationForOrganizationCommand}.
20
+ */
21
+ export interface StopTelemetryEvaluationForOrganizationCommandOutput extends __MetadataBearer {
22
+ }
23
+ declare const StopTelemetryEvaluationForOrganizationCommand_base: {
24
+ new (input: StopTelemetryEvaluationForOrganizationCommandInput): import("@smithy/smithy-client").CommandImpl<StopTelemetryEvaluationForOrganizationCommandInput, StopTelemetryEvaluationForOrganizationCommandOutput, ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [StopTelemetryEvaluationForOrganizationCommandInput]): import("@smithy/smithy-client").CommandImpl<StopTelemetryEvaluationForOrganizationCommandInput, StopTelemetryEvaluationForOrganizationCommandOutput, ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>
30
+ * This action offboards the Organization of the caller AWS account from thef telemetry config feature.
31
+ * </p>
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { ObservabilityAdminClient, StopTelemetryEvaluationForOrganizationCommand } from "@aws-sdk/client-observabilityadmin"; // ES Modules import
36
+ * // const { ObservabilityAdminClient, StopTelemetryEvaluationForOrganizationCommand } = require("@aws-sdk/client-observabilityadmin"); // CommonJS import
37
+ * const client = new ObservabilityAdminClient(config);
38
+ * const input = {};
39
+ * const command = new StopTelemetryEvaluationForOrganizationCommand(input);
40
+ * const response = await client.send(command);
41
+ * // {};
42
+ *
43
+ * ```
44
+ *
45
+ * @param StopTelemetryEvaluationForOrganizationCommandInput - {@link StopTelemetryEvaluationForOrganizationCommandInput}
46
+ * @returns {@link StopTelemetryEvaluationForOrganizationCommandOutput}
47
+ * @see {@link StopTelemetryEvaluationForOrganizationCommandInput} for command's `input` shape.
48
+ * @see {@link StopTelemetryEvaluationForOrganizationCommandOutput} for command's `response` shape.
49
+ * @see {@link ObservabilityAdminClientResolvedConfig | config} for ObservabilityAdminClient's `config` shape.
50
+ *
51
+ * @throws {@link AccessDeniedException} (client fault)
52
+ * <p>
53
+ * Indicates you don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access management for AWS resources</a> in the IAM user guide.
54
+ * </p>
55
+ *
56
+ * @throws {@link InternalServerException} (server fault)
57
+ * <p>
58
+ * Indicates the request has failed to process because of an unknown server error, exception, or failure.
59
+ * </p>
60
+ *
61
+ * @throws {@link ValidationException} (client fault)
62
+ * <p>
63
+ * Indicates input validation failed. Check your request parameters and retry the request.
64
+ * </p>
65
+ *
66
+ * @throws {@link ObservabilityAdminServiceException}
67
+ * <p>Base exception class for all service exceptions from ObservabilityAdmin service.</p>
68
+ *
69
+ * @public
70
+ */
71
+ export declare class StopTelemetryEvaluationForOrganizationCommand extends StopTelemetryEvaluationForOrganizationCommand_base {
72
+ /** @internal type navigation helper, not in runtime. */
73
+ protected static __types: {
74
+ api: {
75
+ input: {};
76
+ output: {};
77
+ };
78
+ sdk: {
79
+ input: StopTelemetryEvaluationForOrganizationCommandInput;
80
+ output: StopTelemetryEvaluationForOrganizationCommandOutput;
81
+ };
82
+ };
83
+ }
@@ -0,0 +1,8 @@
1
+ export * from "./GetTelemetryEvaluationStatusCommand";
2
+ export * from "./GetTelemetryEvaluationStatusForOrganizationCommand";
3
+ export * from "./ListResourceTelemetryCommand";
4
+ export * from "./ListResourceTelemetryForOrganizationCommand";
5
+ export * from "./StartTelemetryEvaluationCommand";
6
+ export * from "./StartTelemetryEvaluationForOrganizationCommand";
7
+ export * from "./StopTelemetryEvaluationCommand";
8
+ export * from "./StopTelemetryEvaluationForOrganizationCommand";
@@ -0,0 +1,40 @@
1
+ import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface ClientInputEndpointParameters {
6
+ region?: string | Provider<string>;
7
+ useDualstackEndpoint?: boolean | Provider<boolean>;
8
+ useFipsEndpoint?: boolean | Provider<boolean>;
9
+ endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
10
+ }
11
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
12
+ defaultSigningName: string;
13
+ };
14
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
+ defaultSigningName: string;
16
+ };
17
+ export declare const commonParams: {
18
+ readonly UseFIPS: {
19
+ readonly type: "builtInParams";
20
+ readonly name: "useFipsEndpoint";
21
+ };
22
+ readonly Endpoint: {
23
+ readonly type: "builtInParams";
24
+ readonly name: "endpoint";
25
+ };
26
+ readonly Region: {
27
+ readonly type: "builtInParams";
28
+ readonly name: "region";
29
+ };
30
+ readonly UseDualStack: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "useDualstackEndpoint";
33
+ };
34
+ };
35
+ export interface EndpointParameters extends __EndpointParameters {
36
+ Region?: string;
37
+ UseDualStack?: boolean;
38
+ UseFIPS?: boolean;
39
+ Endpoint?: string;
40
+ }
@@ -0,0 +1,5 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
4
+ logger?: Logger;
5
+ }) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ /**
6
+ * @internal
7
+ */
8
+ export interface ObservabilityAdminExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration, HttpAuthExtensionConfiguration {
9
+ }
@@ -0,0 +1,17 @@
1
+ /**
2
+ * <p>
3
+ * Amazon CloudWatch Obsersavability Admin to control temletry config for your AWS Organization or account. Telemetry config config to discover and understand the state of telemetry configuration for your AWS resources from a central view in the CloudWatch console. Telemetry config simplifies the process of auditing your telemetry collection configurations across multiple resource types across your AWS Organization or account.
4
+ * For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/telemetry-config-cloudwatch.html">Auditing CloudWatch telemetry configurations</a> in the CloudWatch User Guide.</p>
5
+ * <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/auth-and-access-control-cw.html">Identity and access management for Amazon CloudWatch</a> in the CloudWatch User Guide.</p>
6
+ *
7
+ * @packageDocumentation
8
+ */
9
+ export * from "./ObservabilityAdminClient";
10
+ export * from "./ObservabilityAdmin";
11
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
12
+ export type { RuntimeExtension } from "./runtimeExtensions";
13
+ export type { ObservabilityAdminExtensionConfiguration } from "./extensionConfiguration";
14
+ export * from "./commands";
15
+ export * from "./pagination";
16
+ export * from "./models";
17
+ export { ObservabilityAdminServiceException } from "./models/ObservabilityAdminServiceException";