@aws-sdk/client-resource-explorer-2 3.296.0 → 3.298.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 (66) hide show
  1. package/dist-cjs/commands/AssociateDefaultViewCommand.js +2 -3
  2. package/dist-cjs/commands/BatchGetViewCommand.js +1 -1
  3. package/dist-cjs/commands/CreateIndexCommand.js +2 -3
  4. package/dist-cjs/commands/DeleteIndexCommand.js +2 -3
  5. package/dist-cjs/commands/DeleteViewCommand.js +2 -3
  6. package/dist-cjs/commands/DisassociateDefaultViewCommand.js +2 -2
  7. package/dist-cjs/commands/GetDefaultViewCommand.js +2 -3
  8. package/dist-cjs/commands/GetIndexCommand.js +2 -3
  9. package/dist-cjs/commands/GetViewCommand.js +1 -1
  10. package/dist-cjs/commands/ListIndexesCommand.js +2 -3
  11. package/dist-cjs/commands/ListSupportedResourceTypesCommand.js +2 -3
  12. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  13. package/dist-cjs/commands/ListViewsCommand.js +2 -3
  14. package/dist-cjs/commands/SearchCommand.js +1 -1
  15. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  16. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  17. package/dist-cjs/commands/UpdateIndexTypeCommand.js +2 -3
  18. package/dist-cjs/models/models_0.js +1 -142
  19. package/dist-es/commands/AssociateDefaultViewCommand.js +2 -3
  20. package/dist-es/commands/BatchGetViewCommand.js +2 -2
  21. package/dist-es/commands/CreateIndexCommand.js +2 -3
  22. package/dist-es/commands/DeleteIndexCommand.js +2 -3
  23. package/dist-es/commands/DeleteViewCommand.js +2 -3
  24. package/dist-es/commands/DisassociateDefaultViewCommand.js +2 -2
  25. package/dist-es/commands/GetDefaultViewCommand.js +2 -3
  26. package/dist-es/commands/GetIndexCommand.js +2 -3
  27. package/dist-es/commands/GetViewCommand.js +2 -2
  28. package/dist-es/commands/ListIndexesCommand.js +2 -3
  29. package/dist-es/commands/ListSupportedResourceTypesCommand.js +2 -3
  30. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  31. package/dist-es/commands/ListViewsCommand.js +2 -3
  32. package/dist-es/commands/SearchCommand.js +2 -2
  33. package/dist-es/commands/TagResourceCommand.js +2 -3
  34. package/dist-es/commands/UntagResourceCommand.js +2 -3
  35. package/dist-es/commands/UpdateIndexTypeCommand.js +2 -3
  36. package/dist-es/models/models_0.js +0 -105
  37. package/dist-types/ResourceExplorer2.d.ts +20 -0
  38. package/dist-types/ResourceExplorer2Client.d.ts +24 -4
  39. package/dist-types/commands/AssociateDefaultViewCommand.d.ts +16 -0
  40. package/dist-types/commands/BatchGetViewCommand.d.ts +16 -0
  41. package/dist-types/commands/CreateIndexCommand.d.ts +16 -0
  42. package/dist-types/commands/CreateViewCommand.d.ts +16 -0
  43. package/dist-types/commands/DeleteIndexCommand.d.ts +16 -0
  44. package/dist-types/commands/DeleteViewCommand.d.ts +16 -0
  45. package/dist-types/commands/DisassociateDefaultViewCommand.d.ts +16 -0
  46. package/dist-types/commands/GetDefaultViewCommand.d.ts +16 -0
  47. package/dist-types/commands/GetIndexCommand.d.ts +16 -0
  48. package/dist-types/commands/GetViewCommand.d.ts +16 -0
  49. package/dist-types/commands/ListIndexesCommand.d.ts +16 -0
  50. package/dist-types/commands/ListSupportedResourceTypesCommand.d.ts +16 -0
  51. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  52. package/dist-types/commands/ListViewsCommand.d.ts +16 -0
  53. package/dist-types/commands/SearchCommand.d.ts +16 -0
  54. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  55. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  56. package/dist-types/commands/UpdateIndexTypeCommand.d.ts +16 -0
  57. package/dist-types/commands/UpdateViewCommand.d.ts +16 -0
  58. package/dist-types/models/ResourceExplorer2ServiceException.d.ts +2 -0
  59. package/dist-types/models/models_0.d.ts +126 -140
  60. package/dist-types/pagination/Interfaces.d.ts +3 -0
  61. package/dist-types/pagination/ListIndexesPaginator.d.ts +3 -0
  62. package/dist-types/pagination/ListSupportedResourceTypesPaginator.d.ts +3 -0
  63. package/dist-types/pagination/ListViewsPaginator.d.ts +3 -0
  64. package/dist-types/pagination/SearchPaginator.d.ts +3 -0
  65. package/dist-types/ts3.4/models/models_0.d.ts +0 -97
  66. package/package.json +4 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { TagResourceInput, TagResourceOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds one or more tag key and value pairs to an Amazon Web Services Resource Explorer view or index.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -59,11 +66,20 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
59
66
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ResourceExplorer2ClientResolvedConfig> {
60
67
  readonly input: TagResourceCommandInput;
61
68
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
62
72
  constructor(input: TagResourceCommandInput);
63
73
  /**
64
74
  * @internal
65
75
  */
66
76
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
77
+ /**
78
+ * @internal
79
+ */
67
80
  private serialize;
81
+ /**
82
+ * @internal
83
+ */
68
84
  private deserialize;
69
85
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes one or more tag key and value pairs from an Amazon Web Services Resource Explorer view or index.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -58,11 +65,20 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
58
65
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ResourceExplorer2ClientResolvedConfig> {
59
66
  readonly input: UntagResourceCommandInput;
60
67
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
61
71
  constructor(input: UntagResourceCommandInput);
62
72
  /**
63
73
  * @internal
64
74
  */
65
75
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
66
79
  private serialize;
80
+ /**
81
+ * @internal
82
+ */
67
83
  private deserialize;
68
84
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateIndexTypeInput, UpdateIndexTypeOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateIndexTypeCommand}.
8
10
  */
9
11
  export interface UpdateIndexTypeCommandInput extends UpdateIndexTypeInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateIndexTypeCommand}.
13
17
  */
14
18
  export interface UpdateIndexTypeCommandOutput extends UpdateIndexTypeOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Changes the type of the index from one of the following types to the other. For more
18
23
  * information about indexes and the role they perform in Amazon Web Services Resource Explorer, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/manage-aggregator-region.html">Turning on
19
24
  * cross-Region search by creating an aggregator index</a> in the
@@ -81,6 +86,8 @@ export interface UpdateIndexTypeCommandOutput extends UpdateIndexTypeOutput, __M
81
86
  * const response = await client.send(command);
82
87
  * ```
83
88
  *
89
+ * @param UpdateIndexTypeCommandInput - {@link UpdateIndexTypeCommandInput}
90
+ * @returns {@link UpdateIndexTypeCommandOutput}
84
91
  * @see {@link UpdateIndexTypeCommandInput} for command's `input` shape.
85
92
  * @see {@link UpdateIndexTypeCommandOutput} for command's `response` shape.
86
93
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -119,11 +126,20 @@ export interface UpdateIndexTypeCommandOutput extends UpdateIndexTypeOutput, __M
119
126
  export declare class UpdateIndexTypeCommand extends $Command<UpdateIndexTypeCommandInput, UpdateIndexTypeCommandOutput, ResourceExplorer2ClientResolvedConfig> {
120
127
  readonly input: UpdateIndexTypeCommandInput;
121
128
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
129
+ /**
130
+ * @public
131
+ */
122
132
  constructor(input: UpdateIndexTypeCommandInput);
123
133
  /**
124
134
  * @internal
125
135
  */
126
136
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateIndexTypeCommandInput, UpdateIndexTypeCommandOutput>;
137
+ /**
138
+ * @internal
139
+ */
127
140
  private serialize;
141
+ /**
142
+ * @internal
143
+ */
128
144
  private deserialize;
129
145
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateViewInput, UpdateViewOutput } from "../models/models_0";
5
5
  import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateViewCommand}.
8
10
  */
9
11
  export interface UpdateViewCommandInput extends UpdateViewInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateViewCommand}.
13
17
  */
14
18
  export interface UpdateViewCommandOutput extends UpdateViewOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Modifies some of the details of a view. You can change the filter string and the list
18
23
  * of included properties. You can't change the name of the view.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UpdateViewCommandOutput extends UpdateViewOutput, __MetadataBea
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UpdateViewCommandInput - {@link UpdateViewCommandInput}
35
+ * @returns {@link UpdateViewCommandOutput}
29
36
  * @see {@link UpdateViewCommandInput} for command's `input` shape.
30
37
  * @see {@link UpdateViewCommandOutput} for command's `response` shape.
31
38
  * @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
@@ -58,11 +65,20 @@ export interface UpdateViewCommandOutput extends UpdateViewOutput, __MetadataBea
58
65
  export declare class UpdateViewCommand extends $Command<UpdateViewCommandInput, UpdateViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
59
66
  readonly input: UpdateViewCommandInput;
60
67
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
61
71
  constructor(input: UpdateViewCommandInput);
62
72
  /**
63
73
  * @internal
64
74
  */
65
75
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateViewCommandInput, UpdateViewCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
66
79
  private serialize;
80
+ /**
81
+ * @internal
82
+ */
67
83
  private deserialize;
68
84
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from ResourceExplorer2 service.
4
6
  */
5
7
  export declare class ResourceExplorer2ServiceException extends __ServiceException {