@aws-sdk/client-devops-agent 3.1063.0 → 3.1065.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 (89) hide show
  1. package/README.md +92 -1
  2. package/dist-cjs/index.js +204 -0
  3. package/dist-cjs/schemas/schemas_0.js +375 -77
  4. package/dist-es/DevOpsAgent.js +34 -0
  5. package/dist-es/commands/CreateAssetCommand.js +16 -0
  6. package/dist-es/commands/CreateAssetFileCommand.js +16 -0
  7. package/dist-es/commands/DeleteAssetCommand.js +16 -0
  8. package/dist-es/commands/DeleteAssetFileCommand.js +16 -0
  9. package/dist-es/commands/GetAssetCommand.js +16 -0
  10. package/dist-es/commands/GetAssetContentCommand.js +16 -0
  11. package/dist-es/commands/GetAssetFileCommand.js +16 -0
  12. package/dist-es/commands/ListAssetFilesCommand.js +16 -0
  13. package/dist-es/commands/ListAssetTypesCommand.js +16 -0
  14. package/dist-es/commands/ListAssetVersionsCommand.js +16 -0
  15. package/dist-es/commands/ListAssetsCommand.js +16 -0
  16. package/dist-es/commands/UpdateAssetCommand.js +16 -0
  17. package/dist-es/commands/UpdateAssetFileCommand.js +16 -0
  18. package/dist-es/commands/index.js +13 -0
  19. package/dist-es/models/enums.js +5 -0
  20. package/dist-es/pagination/ListAssetFilesPaginator.js +4 -0
  21. package/dist-es/pagination/ListAssetTypesPaginator.js +4 -0
  22. package/dist-es/pagination/ListAssetVersionsPaginator.js +4 -0
  23. package/dist-es/pagination/ListAssetsPaginator.js +4 -0
  24. package/dist-es/pagination/index.js +4 -0
  25. package/dist-es/schemas/schemas_0.js +369 -71
  26. package/dist-types/DevOpsAgent.d.ts +121 -1
  27. package/dist-types/DevOpsAgentClient.d.ts +16 -3
  28. package/dist-types/commands/CreateAssetCommand.d.ts +126 -0
  29. package/dist-types/commands/CreateAssetFileCommand.d.ts +121 -0
  30. package/dist-types/commands/CreateBacklogTaskCommand.d.ts +1 -1
  31. package/dist-types/commands/CreatePrivateConnectionCommand.d.ts +3 -0
  32. package/dist-types/commands/DeleteAssetCommand.d.ts +102 -0
  33. package/dist-types/commands/DeleteAssetFileCommand.d.ts +103 -0
  34. package/dist-types/commands/DescribePrivateConnectionCommand.d.ts +2 -0
  35. package/dist-types/commands/EnableOperatorAppCommand.d.ts +1 -0
  36. package/dist-types/commands/GetAssetCommand.d.ts +112 -0
  37. package/dist-types/commands/GetAssetContentCommand.d.ts +108 -0
  38. package/dist-types/commands/GetAssetFileCommand.d.ts +116 -0
  39. package/dist-types/commands/GetBacklogTaskCommand.d.ts +1 -1
  40. package/dist-types/commands/GetOperatorAppCommand.d.ts +1 -0
  41. package/dist-types/commands/GetServiceCommand.d.ts +1 -0
  42. package/dist-types/commands/ListAssetFilesCommand.d.ts +116 -0
  43. package/dist-types/commands/ListAssetTypesCommand.d.ts +110 -0
  44. package/dist-types/commands/ListAssetVersionsCommand.d.ts +113 -0
  45. package/dist-types/commands/ListAssetsCommand.d.ts +118 -0
  46. package/dist-types/commands/ListBacklogTasksCommand.d.ts +2 -2
  47. package/dist-types/commands/ListPrivateConnectionsCommand.d.ts +2 -0
  48. package/dist-types/commands/ListServicesCommand.d.ts +1 -0
  49. package/dist-types/commands/RegisterServiceCommand.d.ts +4 -1
  50. package/dist-types/commands/SendMessageCommand.d.ts +3 -0
  51. package/dist-types/commands/UpdateAssetCommand.d.ts +126 -0
  52. package/dist-types/commands/UpdateAssetFileCommand.d.ts +121 -0
  53. package/dist-types/commands/UpdateBacklogTaskCommand.d.ts +2 -2
  54. package/dist-types/commands/UpdatePrivateConnectionCertificateCommand.d.ts +2 -0
  55. package/dist-types/commands/index.d.ts +13 -0
  56. package/dist-types/index.d.ts +1 -1
  57. package/dist-types/models/enums.d.ts +22 -0
  58. package/dist-types/models/models_0.d.ts +879 -27
  59. package/dist-types/pagination/ListAssetFilesPaginator.d.ts +7 -0
  60. package/dist-types/pagination/ListAssetTypesPaginator.d.ts +7 -0
  61. package/dist-types/pagination/ListAssetVersionsPaginator.d.ts +7 -0
  62. package/dist-types/pagination/ListAssetsPaginator.d.ts +7 -0
  63. package/dist-types/pagination/index.d.ts +4 -0
  64. package/dist-types/schemas/schemas_0.d.ts +48 -0
  65. package/dist-types/ts3.4/DevOpsAgent.d.ts +250 -0
  66. package/dist-types/ts3.4/DevOpsAgentClient.d.ts +78 -0
  67. package/dist-types/ts3.4/commands/CreateAssetCommand.d.ts +49 -0
  68. package/dist-types/ts3.4/commands/CreateAssetFileCommand.d.ts +52 -0
  69. package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +49 -0
  70. package/dist-types/ts3.4/commands/DeleteAssetFileCommand.d.ts +52 -0
  71. package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +45 -0
  72. package/dist-types/ts3.4/commands/GetAssetContentCommand.d.ts +52 -0
  73. package/dist-types/ts3.4/commands/GetAssetFileCommand.d.ts +49 -0
  74. package/dist-types/ts3.4/commands/ListAssetFilesCommand.d.ts +52 -0
  75. package/dist-types/ts3.4/commands/ListAssetTypesCommand.d.ts +52 -0
  76. package/dist-types/ts3.4/commands/ListAssetVersionsCommand.d.ts +53 -0
  77. package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +49 -0
  78. package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +49 -0
  79. package/dist-types/ts3.4/commands/UpdateAssetFileCommand.d.ts +52 -0
  80. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  81. package/dist-types/ts3.4/models/enums.d.ts +7 -0
  82. package/dist-types/ts3.4/models/models_0.d.ts +230 -1
  83. package/dist-types/ts3.4/pagination/ListAssetFilesPaginator.d.ts +11 -0
  84. package/dist-types/ts3.4/pagination/ListAssetTypesPaginator.d.ts +11 -0
  85. package/dist-types/ts3.4/pagination/ListAssetVersionsPaginator.d.ts +11 -0
  86. package/dist-types/ts3.4/pagination/ListAssetsPaginator.d.ts +11 -0
  87. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  88. package/dist-types/ts3.4/schemas/schemas_0.d.ts +48 -0
  89. package/package.json +5 -5
@@ -1,10 +1,14 @@
1
1
  import { createAggregatedClient } from "@smithy/core/client";
2
2
  import { AssociateServiceCommand, } from "./commands/AssociateServiceCommand";
3
3
  import { CreateAgentSpaceCommand, } from "./commands/CreateAgentSpaceCommand";
4
+ import { CreateAssetCommand, } from "./commands/CreateAssetCommand";
5
+ import { CreateAssetFileCommand, } from "./commands/CreateAssetFileCommand";
4
6
  import { CreateBacklogTaskCommand, } from "./commands/CreateBacklogTaskCommand";
5
7
  import { CreateChatCommand, } from "./commands/CreateChatCommand";
6
8
  import { CreatePrivateConnectionCommand, } from "./commands/CreatePrivateConnectionCommand";
7
9
  import { DeleteAgentSpaceCommand, } from "./commands/DeleteAgentSpaceCommand";
10
+ import { DeleteAssetCommand, } from "./commands/DeleteAssetCommand";
11
+ import { DeleteAssetFileCommand, } from "./commands/DeleteAssetFileCommand";
8
12
  import { DeletePrivateConnectionCommand, } from "./commands/DeletePrivateConnectionCommand";
9
13
  import { DeregisterServiceCommand, } from "./commands/DeregisterServiceCommand";
10
14
  import { DescribePrivateConnectionCommand, } from "./commands/DescribePrivateConnectionCommand";
@@ -13,12 +17,19 @@ import { DisassociateServiceCommand, } from "./commands/DisassociateServiceComma
13
17
  import { EnableOperatorAppCommand, } from "./commands/EnableOperatorAppCommand";
14
18
  import { GetAccountUsageCommand, } from "./commands/GetAccountUsageCommand";
15
19
  import { GetAgentSpaceCommand, } from "./commands/GetAgentSpaceCommand";
20
+ import { GetAssetCommand } from "./commands/GetAssetCommand";
21
+ import { GetAssetContentCommand, } from "./commands/GetAssetContentCommand";
22
+ import { GetAssetFileCommand, } from "./commands/GetAssetFileCommand";
16
23
  import { GetAssociationCommand, } from "./commands/GetAssociationCommand";
17
24
  import { GetBacklogTaskCommand, } from "./commands/GetBacklogTaskCommand";
18
25
  import { GetOperatorAppCommand, } from "./commands/GetOperatorAppCommand";
19
26
  import { GetRecommendationCommand, } from "./commands/GetRecommendationCommand";
20
27
  import { GetServiceCommand, } from "./commands/GetServiceCommand";
21
28
  import { ListAgentSpacesCommand, } from "./commands/ListAgentSpacesCommand";
29
+ import { ListAssetFilesCommand, } from "./commands/ListAssetFilesCommand";
30
+ import { ListAssetsCommand, } from "./commands/ListAssetsCommand";
31
+ import { ListAssetTypesCommand, } from "./commands/ListAssetTypesCommand";
32
+ import { ListAssetVersionsCommand, } from "./commands/ListAssetVersionsCommand";
22
33
  import { ListAssociationsCommand, } from "./commands/ListAssociationsCommand";
23
34
  import { ListBacklogTasksCommand, } from "./commands/ListBacklogTasksCommand";
24
35
  import { ListChatsCommand } from "./commands/ListChatsCommand";
@@ -36,6 +47,8 @@ import { SendMessageCommand, } from "./commands/SendMessageCommand";
36
47
  import { TagResourceCommand, } from "./commands/TagResourceCommand";
37
48
  import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
38
49
  import { UpdateAgentSpaceCommand, } from "./commands/UpdateAgentSpaceCommand";
50
+ import { UpdateAssetCommand, } from "./commands/UpdateAssetCommand";
51
+ import { UpdateAssetFileCommand, } from "./commands/UpdateAssetFileCommand";
39
52
  import { UpdateAssociationCommand, } from "./commands/UpdateAssociationCommand";
40
53
  import { UpdateBacklogTaskCommand, } from "./commands/UpdateBacklogTaskCommand";
41
54
  import { UpdateGoalCommand, } from "./commands/UpdateGoalCommand";
@@ -45,6 +58,10 @@ import { UpdateRecommendationCommand, } from "./commands/UpdateRecommendationCom
45
58
  import { ValidateAwsAssociationsCommand, } from "./commands/ValidateAwsAssociationsCommand";
46
59
  import { DevOpsAgentClient } from "./DevOpsAgentClient";
47
60
  import { paginateListAgentSpaces } from "./pagination/ListAgentSpacesPaginator";
61
+ import { paginateListAssetFiles } from "./pagination/ListAssetFilesPaginator";
62
+ import { paginateListAssets } from "./pagination/ListAssetsPaginator";
63
+ import { paginateListAssetTypes } from "./pagination/ListAssetTypesPaginator";
64
+ import { paginateListAssetVersions } from "./pagination/ListAssetVersionsPaginator";
48
65
  import { paginateListAssociations } from "./pagination/ListAssociationsPaginator";
49
66
  import { paginateListBacklogTasks } from "./pagination/ListBacklogTasksPaginator";
50
67
  import { paginateListExecutions } from "./pagination/ListExecutionsPaginator";
@@ -54,10 +71,14 @@ import { paginateListServices } from "./pagination/ListServicesPaginator";
54
71
  const commands = {
55
72
  AssociateServiceCommand,
56
73
  CreateAgentSpaceCommand,
74
+ CreateAssetCommand,
75
+ CreateAssetFileCommand,
57
76
  CreateBacklogTaskCommand,
58
77
  CreateChatCommand,
59
78
  CreatePrivateConnectionCommand,
60
79
  DeleteAgentSpaceCommand,
80
+ DeleteAssetCommand,
81
+ DeleteAssetFileCommand,
61
82
  DeletePrivateConnectionCommand,
62
83
  DeregisterServiceCommand,
63
84
  DescribePrivateConnectionCommand,
@@ -66,12 +87,19 @@ const commands = {
66
87
  EnableOperatorAppCommand,
67
88
  GetAccountUsageCommand,
68
89
  GetAgentSpaceCommand,
90
+ GetAssetCommand,
91
+ GetAssetContentCommand,
92
+ GetAssetFileCommand,
69
93
  GetAssociationCommand,
70
94
  GetBacklogTaskCommand,
71
95
  GetOperatorAppCommand,
72
96
  GetRecommendationCommand,
73
97
  GetServiceCommand,
74
98
  ListAgentSpacesCommand,
99
+ ListAssetFilesCommand,
100
+ ListAssetsCommand,
101
+ ListAssetTypesCommand,
102
+ ListAssetVersionsCommand,
75
103
  ListAssociationsCommand,
76
104
  ListBacklogTasksCommand,
77
105
  ListChatsCommand,
@@ -89,6 +117,8 @@ const commands = {
89
117
  TagResourceCommand,
90
118
  UntagResourceCommand,
91
119
  UpdateAgentSpaceCommand,
120
+ UpdateAssetCommand,
121
+ UpdateAssetFileCommand,
92
122
  UpdateAssociationCommand,
93
123
  UpdateBacklogTaskCommand,
94
124
  UpdateGoalCommand,
@@ -99,6 +129,10 @@ const commands = {
99
129
  };
100
130
  const paginators = {
101
131
  paginateListAgentSpaces,
132
+ paginateListAssetFiles,
133
+ paginateListAssets,
134
+ paginateListAssetTypes,
135
+ paginateListAssetVersions,
102
136
  paginateListAssociations,
103
137
  paginateListBacklogTasks,
104
138
  paginateListExecutions,
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CreateAsset$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CreateAssetCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "CreateAsset", {})
13
+ .n("DevOpsAgentClient", "CreateAssetCommand")
14
+ .sc(CreateAsset$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CreateAssetFile$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CreateAssetFileCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "CreateAssetFile", {})
13
+ .n("DevOpsAgentClient", "CreateAssetFileCommand")
14
+ .sc(CreateAssetFile$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeleteAsset$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeleteAssetCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "DeleteAsset", {})
13
+ .n("DevOpsAgentClient", "DeleteAssetCommand")
14
+ .sc(DeleteAsset$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeleteAssetFile$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeleteAssetFileCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "DeleteAssetFile", {})
13
+ .n("DevOpsAgentClient", "DeleteAssetFileCommand")
14
+ .sc(DeleteAssetFile$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetAsset$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetAssetCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "GetAsset", {})
13
+ .n("DevOpsAgentClient", "GetAssetCommand")
14
+ .sc(GetAsset$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetAssetContent$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetAssetContentCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "GetAssetContent", {})
13
+ .n("DevOpsAgentClient", "GetAssetContentCommand")
14
+ .sc(GetAssetContent$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetAssetFile$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetAssetFileCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "GetAssetFile", {})
13
+ .n("DevOpsAgentClient", "GetAssetFileCommand")
14
+ .sc(GetAssetFile$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListAssetFiles$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListAssetFilesCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "ListAssetFiles", {})
13
+ .n("DevOpsAgentClient", "ListAssetFilesCommand")
14
+ .sc(ListAssetFiles$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListAssetTypes$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListAssetTypesCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "ListAssetTypes", {})
13
+ .n("DevOpsAgentClient", "ListAssetTypesCommand")
14
+ .sc(ListAssetTypes$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListAssetVersions$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListAssetVersionsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "ListAssetVersions", {})
13
+ .n("DevOpsAgentClient", "ListAssetVersionsCommand")
14
+ .sc(ListAssetVersions$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListAssets$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListAssetsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "ListAssets", {})
13
+ .n("DevOpsAgentClient", "ListAssetsCommand")
14
+ .sc(ListAssets$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateAsset$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class UpdateAssetCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "UpdateAsset", {})
13
+ .n("DevOpsAgentClient", "UpdateAssetCommand")
14
+ .sc(UpdateAsset$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateAssetFile$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class UpdateAssetFileCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "UpdateAssetFile", {})
13
+ .n("DevOpsAgentClient", "UpdateAssetFileCommand")
14
+ .sc(UpdateAssetFile$)
15
+ .build() {
16
+ }
@@ -1,9 +1,13 @@
1
1
  export * from "./AssociateServiceCommand";
2
2
  export * from "./CreateAgentSpaceCommand";
3
+ export * from "./CreateAssetCommand";
4
+ export * from "./CreateAssetFileCommand";
3
5
  export * from "./CreateBacklogTaskCommand";
4
6
  export * from "./CreateChatCommand";
5
7
  export * from "./CreatePrivateConnectionCommand";
6
8
  export * from "./DeleteAgentSpaceCommand";
9
+ export * from "./DeleteAssetCommand";
10
+ export * from "./DeleteAssetFileCommand";
7
11
  export * from "./DeletePrivateConnectionCommand";
8
12
  export * from "./DeregisterServiceCommand";
9
13
  export * from "./DescribePrivateConnectionCommand";
@@ -12,12 +16,19 @@ export * from "./DisassociateServiceCommand";
12
16
  export * from "./EnableOperatorAppCommand";
13
17
  export * from "./GetAccountUsageCommand";
14
18
  export * from "./GetAgentSpaceCommand";
19
+ export * from "./GetAssetCommand";
20
+ export * from "./GetAssetContentCommand";
21
+ export * from "./GetAssetFileCommand";
15
22
  export * from "./GetAssociationCommand";
16
23
  export * from "./GetBacklogTaskCommand";
17
24
  export * from "./GetOperatorAppCommand";
18
25
  export * from "./GetRecommendationCommand";
19
26
  export * from "./GetServiceCommand";
20
27
  export * from "./ListAgentSpacesCommand";
28
+ export * from "./ListAssetFilesCommand";
29
+ export * from "./ListAssetTypesCommand";
30
+ export * from "./ListAssetVersionsCommand";
31
+ export * from "./ListAssetsCommand";
21
32
  export * from "./ListAssociationsCommand";
22
33
  export * from "./ListBacklogTasksCommand";
23
34
  export * from "./ListChatsCommand";
@@ -35,6 +46,8 @@ export * from "./SendMessageCommand";
35
46
  export * from "./TagResourceCommand";
36
47
  export * from "./UntagResourceCommand";
37
48
  export * from "./UpdateAgentSpaceCommand";
49
+ export * from "./UpdateAssetCommand";
50
+ export * from "./UpdateAssetFileCommand";
38
51
  export * from "./UpdateAssociationCommand";
39
52
  export * from "./UpdateBacklogTaskCommand";
40
53
  export * from "./UpdateGoalCommand";
@@ -58,6 +58,7 @@ export const TaskStatus = {
58
58
  PENDING_CUSTOMER_APPROVAL: "PENDING_CUSTOMER_APPROVAL",
59
59
  PENDING_START: "PENDING_START",
60
60
  PENDING_TRIAGE: "PENDING_TRIAGE",
61
+ SKIPPED: "SKIPPED",
61
62
  TIMED_OUT: "TIMED_OUT",
62
63
  };
63
64
  export const UserType = {
@@ -65,6 +66,10 @@ export const UserType = {
65
66
  IDC: "IDC",
66
67
  IDP: "IDP",
67
68
  };
69
+ export const ResourceConfigDnsResolution = {
70
+ IN_VPC: "IN_VPC",
71
+ PUBLIC: "PUBLIC",
72
+ };
68
73
  export const IpAddressType = {
69
74
  DUAL_STACK: "DUAL_STACK",
70
75
  IPV4: "IPV4",
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListAssetFilesCommand, } from "../commands/ListAssetFilesCommand";
3
+ import { DevOpsAgentClient } from "../DevOpsAgentClient";
4
+ export const paginateListAssetFiles = createPaginator(DevOpsAgentClient, ListAssetFilesCommand, "nextToken", "nextToken", "maxResults");
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListAssetTypesCommand, } from "../commands/ListAssetTypesCommand";
3
+ import { DevOpsAgentClient } from "../DevOpsAgentClient";
4
+ export const paginateListAssetTypes = createPaginator(DevOpsAgentClient, ListAssetTypesCommand, "nextToken", "nextToken", "maxResults");
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListAssetVersionsCommand, } from "../commands/ListAssetVersionsCommand";
3
+ import { DevOpsAgentClient } from "../DevOpsAgentClient";
4
+ export const paginateListAssetVersions = createPaginator(DevOpsAgentClient, ListAssetVersionsCommand, "nextToken", "nextToken", "maxResults");
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListAssetsCommand } from "../commands/ListAssetsCommand";
3
+ import { DevOpsAgentClient } from "../DevOpsAgentClient";
4
+ export const paginateListAssets = createPaginator(DevOpsAgentClient, ListAssetsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,5 +1,9 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListAgentSpacesPaginator";
3
+ export * from "./ListAssetFilesPaginator";
4
+ export * from "./ListAssetsPaginator";
5
+ export * from "./ListAssetTypesPaginator";
6
+ export * from "./ListAssetVersionsPaginator";
3
7
  export * from "./ListAssociationsPaginator";
4
8
  export * from "./ListBacklogTasksPaginator";
5
9
  export * from "./ListExecutionsPaginator";