@aws-sdk/client-codestar-notifications 3.300.0 → 3.301.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.
- package/dist-types/commands/CreateNotificationRuleCommand.d.ts +5 -5
- package/dist-types/commands/DeleteNotificationRuleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTargetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeNotificationRuleCommand.d.ts +1 -1
- package/dist-types/commands/ListEventTypesCommand.d.ts +3 -3
- package/dist-types/commands/ListNotificationRulesCommand.d.ts +3 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTargetsCommand.d.ts +3 -3
- package/dist-types/commands/SubscribeCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UnsubscribeCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateNotificationRuleCommand.d.ts +4 -4
- package/package.json +3 -3
|
@@ -28,21 +28,21 @@ export interface CreateNotificationRuleCommandOutput extends CreateNotificationR
|
|
|
28
28
|
* import { CodestarNotificationsClient, CreateNotificationRuleCommand } from "@aws-sdk/client-codestar-notifications"; // ES Modules import
|
|
29
29
|
* // const { CodestarNotificationsClient, CreateNotificationRuleCommand } = require("@aws-sdk/client-codestar-notifications"); // CommonJS import
|
|
30
30
|
* const client = new CodestarNotificationsClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateNotificationRuleRequest
|
|
32
32
|
* Name: "STRING_VALUE", // required
|
|
33
|
-
* EventTypeIds: [ // required
|
|
33
|
+
* EventTypeIds: [ // EventTypeIds // required
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* Resource: "STRING_VALUE", // required
|
|
37
|
-
* Targets: [ // required
|
|
38
|
-
* {
|
|
37
|
+
* Targets: [ // Targets // required
|
|
38
|
+
* { // Target
|
|
39
39
|
* TargetType: "STRING_VALUE",
|
|
40
40
|
* TargetAddress: "STRING_VALUE",
|
|
41
41
|
* },
|
|
42
42
|
* ],
|
|
43
43
|
* DetailType: "BASIC" || "FULL", // required
|
|
44
44
|
* ClientRequestToken: "STRING_VALUE",
|
|
45
|
-
* Tags: {
|
|
45
|
+
* Tags: { // Tags
|
|
46
46
|
* "<keys>": "STRING_VALUE",
|
|
47
47
|
* },
|
|
48
48
|
* Status: "ENABLED" || "DISABLED",
|
|
@@ -26,7 +26,7 @@ export interface DeleteNotificationRuleCommandOutput extends DeleteNotificationR
|
|
|
26
26
|
* import { CodestarNotificationsClient, DeleteNotificationRuleCommand } from "@aws-sdk/client-codestar-notifications"; // ES Modules import
|
|
27
27
|
* // const { CodestarNotificationsClient, DeleteNotificationRuleCommand } = require("@aws-sdk/client-codestar-notifications"); // CommonJS import
|
|
28
28
|
* const client = new CodestarNotificationsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteNotificationRuleRequest
|
|
30
30
|
* Arn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteNotificationRuleCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteTargetCommandOutput extends DeleteTargetResult, __Metadat
|
|
|
26
26
|
* import { CodestarNotificationsClient, DeleteTargetCommand } from "@aws-sdk/client-codestar-notifications"; // ES Modules import
|
|
27
27
|
* // const { CodestarNotificationsClient, DeleteTargetCommand } = require("@aws-sdk/client-codestar-notifications"); // CommonJS import
|
|
28
28
|
* const client = new CodestarNotificationsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteTargetRequest
|
|
30
30
|
* TargetAddress: "STRING_VALUE", // required
|
|
31
31
|
* ForceUnsubscribeAll: true || false,
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeNotificationRuleCommandOutput extends DescribeNotificat
|
|
|
26
26
|
* import { CodestarNotificationsClient, DescribeNotificationRuleCommand } from "@aws-sdk/client-codestar-notifications"; // ES Modules import
|
|
27
27
|
* // const { CodestarNotificationsClient, DescribeNotificationRuleCommand } = require("@aws-sdk/client-codestar-notifications"); // CommonJS import
|
|
28
28
|
* const client = new CodestarNotificationsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeNotificationRuleRequest
|
|
30
30
|
* Arn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeNotificationRuleCommand(input);
|
|
@@ -26,9 +26,9 @@ export interface ListEventTypesCommandOutput extends ListEventTypesResult, __Met
|
|
|
26
26
|
* import { CodestarNotificationsClient, ListEventTypesCommand } from "@aws-sdk/client-codestar-notifications"; // ES Modules import
|
|
27
27
|
* // const { CodestarNotificationsClient, ListEventTypesCommand } = require("@aws-sdk/client-codestar-notifications"); // CommonJS import
|
|
28
28
|
* const client = new CodestarNotificationsClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* Filters: [
|
|
31
|
-
* {
|
|
29
|
+
* const input = { // ListEventTypesRequest
|
|
30
|
+
* Filters: [ // ListEventTypesFilters
|
|
31
|
+
* { // ListEventTypesFilter
|
|
32
32
|
* Name: "RESOURCE_TYPE" || "SERVICE_NAME", // required
|
|
33
33
|
* Value: "STRING_VALUE", // required
|
|
34
34
|
* },
|
|
@@ -26,9 +26,9 @@ export interface ListNotificationRulesCommandOutput extends ListNotificationRule
|
|
|
26
26
|
* import { CodestarNotificationsClient, ListNotificationRulesCommand } from "@aws-sdk/client-codestar-notifications"; // ES Modules import
|
|
27
27
|
* // const { CodestarNotificationsClient, ListNotificationRulesCommand } = require("@aws-sdk/client-codestar-notifications"); // CommonJS import
|
|
28
28
|
* const client = new CodestarNotificationsClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* Filters: [
|
|
31
|
-
* {
|
|
29
|
+
* const input = { // ListNotificationRulesRequest
|
|
30
|
+
* Filters: [ // ListNotificationRulesFilters
|
|
31
|
+
* { // ListNotificationRulesFilter
|
|
32
32
|
* Name: "EVENT_TYPE_ID" || "CREATED_BY" || "RESOURCE" || "TARGET_ADDRESS", // required
|
|
33
33
|
* Value: "STRING_VALUE", // required
|
|
34
34
|
* },
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { CodestarNotificationsClient, ListTagsForResourceCommand } from "@aws-sdk/client-codestar-notifications"; // ES Modules import
|
|
27
27
|
* // const { CodestarNotificationsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-codestar-notifications"); // CommonJS import
|
|
28
28
|
* const client = new CodestarNotificationsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* Arn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,9 +26,9 @@ export interface ListTargetsCommandOutput extends ListTargetsResult, __MetadataB
|
|
|
26
26
|
* import { CodestarNotificationsClient, ListTargetsCommand } from "@aws-sdk/client-codestar-notifications"; // ES Modules import
|
|
27
27
|
* // const { CodestarNotificationsClient, ListTargetsCommand } = require("@aws-sdk/client-codestar-notifications"); // CommonJS import
|
|
28
28
|
* const client = new CodestarNotificationsClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* Filters: [
|
|
31
|
-
* {
|
|
29
|
+
* const input = { // ListTargetsRequest
|
|
30
|
+
* Filters: [ // ListTargetsFilters
|
|
31
|
+
* { // ListTargetsFilter
|
|
32
32
|
* Name: "TARGET_TYPE" || "TARGET_ADDRESS" || "TARGET_STATUS", // required
|
|
33
33
|
* Value: "STRING_VALUE", // required
|
|
34
34
|
* },
|
|
@@ -28,9 +28,9 @@ export interface SubscribeCommandOutput extends SubscribeResult, __MetadataBeare
|
|
|
28
28
|
* import { CodestarNotificationsClient, SubscribeCommand } from "@aws-sdk/client-codestar-notifications"; // ES Modules import
|
|
29
29
|
* // const { CodestarNotificationsClient, SubscribeCommand } = require("@aws-sdk/client-codestar-notifications"); // CommonJS import
|
|
30
30
|
* const client = new CodestarNotificationsClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // SubscribeRequest
|
|
32
32
|
* Arn: "STRING_VALUE", // required
|
|
33
|
-
* Target: {
|
|
33
|
+
* Target: { // Target
|
|
34
34
|
* TargetType: "STRING_VALUE",
|
|
35
35
|
* TargetAddress: "STRING_VALUE",
|
|
36
36
|
* },
|
|
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataB
|
|
|
26
26
|
* import { CodestarNotificationsClient, TagResourceCommand } from "@aws-sdk/client-codestar-notifications"; // ES Modules import
|
|
27
27
|
* // const { CodestarNotificationsClient, TagResourceCommand } = require("@aws-sdk/client-codestar-notifications"); // CommonJS import
|
|
28
28
|
* const client = new CodestarNotificationsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* Arn: "STRING_VALUE", // required
|
|
31
|
-
* Tags: { // required
|
|
31
|
+
* Tags: { // Tags // required
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -28,7 +28,7 @@ export interface UnsubscribeCommandOutput extends UnsubscribeResult, __MetadataB
|
|
|
28
28
|
* import { CodestarNotificationsClient, UnsubscribeCommand } from "@aws-sdk/client-codestar-notifications"; // ES Modules import
|
|
29
29
|
* // const { CodestarNotificationsClient, UnsubscribeCommand } = require("@aws-sdk/client-codestar-notifications"); // CommonJS import
|
|
30
30
|
* const client = new CodestarNotificationsClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UnsubscribeRequest
|
|
32
32
|
* Arn: "STRING_VALUE", // required
|
|
33
33
|
* TargetAddress: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
@@ -27,9 +27,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResult, __Metad
|
|
|
27
27
|
* import { CodestarNotificationsClient, UntagResourceCommand } from "@aws-sdk/client-codestar-notifications"; // ES Modules import
|
|
28
28
|
* // const { CodestarNotificationsClient, UntagResourceCommand } = require("@aws-sdk/client-codestar-notifications"); // CommonJS import
|
|
29
29
|
* const client = new CodestarNotificationsClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UntagResourceRequest
|
|
31
31
|
* Arn: "STRING_VALUE", // required
|
|
32
|
-
* TagKeys: [ // required
|
|
32
|
+
* TagKeys: [ // TagKeys // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -31,15 +31,15 @@ export interface UpdateNotificationRuleCommandOutput extends UpdateNotificationR
|
|
|
31
31
|
* import { CodestarNotificationsClient, UpdateNotificationRuleCommand } from "@aws-sdk/client-codestar-notifications"; // ES Modules import
|
|
32
32
|
* // const { CodestarNotificationsClient, UpdateNotificationRuleCommand } = require("@aws-sdk/client-codestar-notifications"); // CommonJS import
|
|
33
33
|
* const client = new CodestarNotificationsClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // UpdateNotificationRuleRequest
|
|
35
35
|
* Arn: "STRING_VALUE", // required
|
|
36
36
|
* Name: "STRING_VALUE",
|
|
37
37
|
* Status: "ENABLED" || "DISABLED",
|
|
38
|
-
* EventTypeIds: [
|
|
38
|
+
* EventTypeIds: [ // EventTypeIds
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
|
-
* Targets: [
|
|
42
|
-
* {
|
|
41
|
+
* Targets: [ // Targets
|
|
42
|
+
* { // Target
|
|
43
43
|
* TargetType: "STRING_VALUE",
|
|
44
44
|
* TargetAddress: "STRING_VALUE",
|
|
45
45
|
* },
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codestar-notifications",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codestar Notifications Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|