@aws-sdk/client-rbin 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/CreateRuleCommand.d.ts +8 -8
- package/dist-types/commands/DeleteRuleCommand.d.ts +1 -1
- package/dist-types/commands/GetRuleCommand.d.ts +1 -1
- package/dist-types/commands/ListRulesCommand.d.ts +3 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/LockRuleCommand.d.ts +3 -3
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UnlockRuleCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateRuleCommand.d.ts +4 -4
- package/package.json +3 -3
|
@@ -27,27 +27,27 @@ export interface CreateRuleCommandOutput extends CreateRuleResponse, __MetadataB
|
|
|
27
27
|
* import { RbinClient, CreateRuleCommand } from "@aws-sdk/client-rbin"; // ES Modules import
|
|
28
28
|
* // const { RbinClient, CreateRuleCommand } = require("@aws-sdk/client-rbin"); // CommonJS import
|
|
29
29
|
* const client = new RbinClient(config);
|
|
30
|
-
* const input = {
|
|
31
|
-
* RetentionPeriod: {
|
|
30
|
+
* const input = { // CreateRuleRequest
|
|
31
|
+
* RetentionPeriod: { // RetentionPeriod
|
|
32
32
|
* RetentionPeriodValue: Number("int"), // required
|
|
33
33
|
* RetentionPeriodUnit: "DAYS", // required
|
|
34
34
|
* },
|
|
35
35
|
* Description: "STRING_VALUE",
|
|
36
|
-
* Tags: [
|
|
37
|
-
* {
|
|
36
|
+
* Tags: [ // TagList
|
|
37
|
+
* { // Tag
|
|
38
38
|
* Key: "STRING_VALUE", // required
|
|
39
39
|
* Value: "STRING_VALUE", // required
|
|
40
40
|
* },
|
|
41
41
|
* ],
|
|
42
42
|
* ResourceType: "EBS_SNAPSHOT" || "EC2_IMAGE", // required
|
|
43
|
-
* ResourceTags: [
|
|
44
|
-
* {
|
|
43
|
+
* ResourceTags: [ // ResourceTags
|
|
44
|
+
* { // ResourceTag
|
|
45
45
|
* ResourceTagKey: "STRING_VALUE", // required
|
|
46
46
|
* ResourceTagValue: "STRING_VALUE",
|
|
47
47
|
* },
|
|
48
48
|
* ],
|
|
49
|
-
* LockConfiguration: {
|
|
50
|
-
* UnlockDelay: {
|
|
49
|
+
* LockConfiguration: { // LockConfiguration
|
|
50
|
+
* UnlockDelay: { // UnlockDelay
|
|
51
51
|
* UnlockDelayValue: Number("int"), // required
|
|
52
52
|
* UnlockDelayUnit: "DAYS", // required
|
|
53
53
|
* },
|
|
@@ -27,7 +27,7 @@ export interface DeleteRuleCommandOutput extends DeleteRuleResponse, __MetadataB
|
|
|
27
27
|
* import { RbinClient, DeleteRuleCommand } from "@aws-sdk/client-rbin"; // ES Modules import
|
|
28
28
|
* // const { RbinClient, DeleteRuleCommand } = require("@aws-sdk/client-rbin"); // CommonJS import
|
|
29
29
|
* const client = new RbinClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteRuleRequest
|
|
31
31
|
* Identifier: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteRuleCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetRuleCommandOutput extends GetRuleResponse, __MetadataBearer
|
|
|
26
26
|
* import { RbinClient, GetRuleCommand } from "@aws-sdk/client-rbin"; // ES Modules import
|
|
27
27
|
* // const { RbinClient, GetRuleCommand } = require("@aws-sdk/client-rbin"); // CommonJS import
|
|
28
28
|
* const client = new RbinClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetRuleRequest
|
|
30
30
|
* Identifier: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetRuleCommand(input);
|
|
@@ -26,12 +26,12 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea
|
|
|
26
26
|
* import { RbinClient, ListRulesCommand } from "@aws-sdk/client-rbin"; // ES Modules import
|
|
27
27
|
* // const { RbinClient, ListRulesCommand } = require("@aws-sdk/client-rbin"); // CommonJS import
|
|
28
28
|
* const client = new RbinClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListRulesRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* ResourceType: "EBS_SNAPSHOT" || "EC2_IMAGE", // required
|
|
33
|
-
* ResourceTags: [
|
|
34
|
-
* {
|
|
33
|
+
* ResourceTags: [ // ResourceTags
|
|
34
|
+
* { // ResourceTag
|
|
35
35
|
* ResourceTagKey: "STRING_VALUE", // required
|
|
36
36
|
* ResourceTagValue: "STRING_VALUE",
|
|
37
37
|
* },
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { RbinClient, ListTagsForResourceCommand } from "@aws-sdk/client-rbin"; // ES Modules import
|
|
27
27
|
* // const { RbinClient, ListTagsForResourceCommand } = require("@aws-sdk/client-rbin"); // CommonJS import
|
|
28
28
|
* const client = new RbinClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,10 +26,10 @@ export interface LockRuleCommandOutput extends LockRuleResponse, __MetadataBeare
|
|
|
26
26
|
* import { RbinClient, LockRuleCommand } from "@aws-sdk/client-rbin"; // ES Modules import
|
|
27
27
|
* // const { RbinClient, LockRuleCommand } = require("@aws-sdk/client-rbin"); // CommonJS import
|
|
28
28
|
* const client = new RbinClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // LockRuleRequest
|
|
30
30
|
* Identifier: "STRING_VALUE", // required
|
|
31
|
-
* LockConfiguration: {
|
|
32
|
-
* UnlockDelay: {
|
|
31
|
+
* LockConfiguration: { // LockConfiguration
|
|
32
|
+
* UnlockDelay: { // UnlockDelay
|
|
33
33
|
* UnlockDelayValue: Number("int"), // required
|
|
34
34
|
* UnlockDelayUnit: "DAYS", // required
|
|
35
35
|
* },
|
|
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { RbinClient, TagResourceCommand } from "@aws-sdk/client-rbin"; // ES Modules import
|
|
27
27
|
* // const { RbinClient, TagResourceCommand } = require("@aws-sdk/client-rbin"); // CommonJS import
|
|
28
28
|
* const client = new RbinClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* Tags: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* Tags: [ // TagList // required
|
|
32
|
+
* { // Tag
|
|
33
33
|
* Key: "STRING_VALUE", // required
|
|
34
34
|
* Value: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
@@ -27,7 +27,7 @@ export interface UnlockRuleCommandOutput extends UnlockRuleResponse, __MetadataB
|
|
|
27
27
|
* import { RbinClient, UnlockRuleCommand } from "@aws-sdk/client-rbin"; // ES Modules import
|
|
28
28
|
* // const { RbinClient, UnlockRuleCommand } = require("@aws-sdk/client-rbin"); // CommonJS import
|
|
29
29
|
* const client = new RbinClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UnlockRuleRequest
|
|
31
31
|
* Identifier: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UnlockRuleCommand(input);
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { RbinClient, UntagResourceCommand } from "@aws-sdk/client-rbin"; // ES Modules import
|
|
27
27
|
* // const { RbinClient, UntagResourceCommand } = require("@aws-sdk/client-rbin"); // CommonJS import
|
|
28
28
|
* const client = new RbinClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -29,16 +29,16 @@ export interface UpdateRuleCommandOutput extends UpdateRuleResponse, __MetadataB
|
|
|
29
29
|
* import { RbinClient, UpdateRuleCommand } from "@aws-sdk/client-rbin"; // ES Modules import
|
|
30
30
|
* // const { RbinClient, UpdateRuleCommand } = require("@aws-sdk/client-rbin"); // CommonJS import
|
|
31
31
|
* const client = new RbinClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // UpdateRuleRequest
|
|
33
33
|
* Identifier: "STRING_VALUE", // required
|
|
34
|
-
* RetentionPeriod: {
|
|
34
|
+
* RetentionPeriod: { // RetentionPeriod
|
|
35
35
|
* RetentionPeriodValue: Number("int"), // required
|
|
36
36
|
* RetentionPeriodUnit: "DAYS", // required
|
|
37
37
|
* },
|
|
38
38
|
* Description: "STRING_VALUE",
|
|
39
39
|
* ResourceType: "EBS_SNAPSHOT" || "EC2_IMAGE",
|
|
40
|
-
* ResourceTags: [
|
|
41
|
-
* {
|
|
40
|
+
* ResourceTags: [ // ResourceTags
|
|
41
|
+
* { // ResourceTag
|
|
42
42
|
* ResourceTagKey: "STRING_VALUE", // required
|
|
43
43
|
* ResourceTagValue: "STRING_VALUE",
|
|
44
44
|
* },
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rbin",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rbin 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",
|