-
Notifications
You must be signed in to change notification settings - Fork 578
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(client-amp): Added support for UpdateScraper API, to enable upda…
…ting collector configuration in-place
- Loading branch information
awstools
committed
Oct 31, 2024
1 parent
410614c
commit 87ff3b9
Showing
12 changed files
with
527 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
134 changes: 134 additions & 0 deletions
134
clients/client-amp/src/commands/UpdateScraperCommand.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
// smithy-typescript generated code | ||
import { getEndpointPlugin } from "@smithy/middleware-endpoint"; | ||
import { getSerdePlugin } from "@smithy/middleware-serde"; | ||
import { Command as $Command } from "@smithy/smithy-client"; | ||
import { MetadataBearer as __MetadataBearer } from "@smithy/types"; | ||
|
||
import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; | ||
import { commonParams } from "../endpoint/EndpointParameters"; | ||
import { UpdateScraperRequest, UpdateScraperResponse } from "../models/models_0"; | ||
import { de_UpdateScraperCommand, se_UpdateScraperCommand } from "../protocols/Aws_restJson1"; | ||
|
||
/** | ||
* @public | ||
*/ | ||
export type { __MetadataBearer }; | ||
export { $Command }; | ||
/** | ||
* @public | ||
* | ||
* The input for {@link UpdateScraperCommand}. | ||
*/ | ||
export interface UpdateScraperCommandInput extends UpdateScraperRequest {} | ||
/** | ||
* @public | ||
* | ||
* The output of {@link UpdateScraperCommand}. | ||
*/ | ||
export interface UpdateScraperCommandOutput extends UpdateScraperResponse, __MetadataBearer {} | ||
|
||
/** | ||
* <p>Updates an existing scraper.</p> | ||
* <p>You can't use this function to update the source from which the scraper is | ||
* collecting metrics. To change the source, delete the scraper and create a new | ||
* one.</p> | ||
* @example | ||
* Use a bare-bones client and the command you need to make an API call. | ||
* ```javascript | ||
* import { AmpClient, UpdateScraperCommand } from "@aws-sdk/client-amp"; // ES Modules import | ||
* // const { AmpClient, UpdateScraperCommand } = require("@aws-sdk/client-amp"); // CommonJS import | ||
* const client = new AmpClient(config); | ||
* const input = { // UpdateScraperRequest | ||
* scraperId: "STRING_VALUE", // required | ||
* alias: "STRING_VALUE", | ||
* scrapeConfiguration: { // ScrapeConfiguration Union: only one key present | ||
* configurationBlob: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("") | ||
* }, | ||
* destination: { // Destination Union: only one key present | ||
* ampConfiguration: { // AmpConfiguration | ||
* workspaceArn: "STRING_VALUE", // required | ||
* }, | ||
* }, | ||
* clientToken: "STRING_VALUE", | ||
* }; | ||
* const command = new UpdateScraperCommand(input); | ||
* const response = await client.send(command); | ||
* // { // UpdateScraperResponse | ||
* // scraperId: "STRING_VALUE", // required | ||
* // arn: "STRING_VALUE", // required | ||
* // status: { // ScraperStatus | ||
* // statusCode: "STRING_VALUE", // required | ||
* // }, | ||
* // tags: { // TagMap | ||
* // "<keys>": "STRING_VALUE", | ||
* // }, | ||
* // }; | ||
* | ||
* ``` | ||
* | ||
* @param UpdateScraperCommandInput - {@link UpdateScraperCommandInput} | ||
* @returns {@link UpdateScraperCommandOutput} | ||
* @see {@link UpdateScraperCommandInput} for command's `input` shape. | ||
* @see {@link UpdateScraperCommandOutput} for command's `response` shape. | ||
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape. | ||
* | ||
* @throws {@link AccessDeniedException} (client fault) | ||
* <p>You do not have sufficient access to perform this action.</p> | ||
* | ||
* @throws {@link ConflictException} (client fault) | ||
* <p>The request would cause an inconsistent state.</p> | ||
* | ||
* @throws {@link InternalServerException} (server fault) | ||
* <p>An unexpected error occurred during the processing of the request.</p> | ||
* | ||
* @throws {@link ResourceNotFoundException} (client fault) | ||
* <p>The request references a resources that doesn't exist.</p> | ||
* | ||
* @throws {@link ServiceQuotaExceededException} (client fault) | ||
* <p>Completing the request would cause a service quota to be exceeded.</p> | ||
* | ||
* @throws {@link ThrottlingException} (client fault) | ||
* <p>The request was denied due to request throttling.</p> | ||
* | ||
* @throws {@link ValidationException} (client fault) | ||
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services | ||
* service.</p> | ||
* | ||
* @throws {@link AmpServiceException} | ||
* <p>Base exception class for all service exceptions from Amp service.</p> | ||
* | ||
* @public | ||
*/ | ||
export class UpdateScraperCommand extends $Command | ||
.classBuilder< | ||
UpdateScraperCommandInput, | ||
UpdateScraperCommandOutput, | ||
AmpClientResolvedConfig, | ||
ServiceInputTypes, | ||
ServiceOutputTypes | ||
>() | ||
.ep(commonParams) | ||
.m(function (this: any, Command: any, cs: any, config: AmpClientResolvedConfig, o: any) { | ||
return [ | ||
getSerdePlugin(config, this.serialize, this.deserialize), | ||
getEndpointPlugin(config, Command.getEndpointParameterInstructions()), | ||
]; | ||
}) | ||
.s("AmazonPrometheusService", "UpdateScraper", {}) | ||
.n("AmpClient", "UpdateScraperCommand") | ||
.f(void 0, void 0) | ||
.ser(se_UpdateScraperCommand) | ||
.de(de_UpdateScraperCommand) | ||
.build() { | ||
/** @internal type navigation helper, not in runtime. */ | ||
protected declare static __types: { | ||
api: { | ||
input: UpdateScraperRequest; | ||
output: UpdateScraperResponse; | ||
}; | ||
sdk: { | ||
input: UpdateScraperCommandInput; | ||
output: UpdateScraperCommandOutput; | ||
}; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.