@aws-lite/ssm-types 0.2.5 → 0.2.6
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/index.d.ts +6 -6
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -16,37 +16,37 @@ declare interface AwsLiteSSM {
|
|
|
16
16
|
/**
|
|
17
17
|
* @description
|
|
18
18
|
* - AWS docs: {@link https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_DeleteParameter SSM: DeleteParameter}
|
|
19
|
-
* - aws-lite docs: {@link https://github.com/
|
|
19
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/ssm/readme.md#DeleteParameter SSM: DeleteParameter}
|
|
20
20
|
*/
|
|
21
21
|
DeleteParameter: (input: { Name: string }) => Promise<DeleteParameterResponse>
|
|
22
22
|
/**
|
|
23
23
|
* @description
|
|
24
24
|
* - AWS docs: {@link https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_DeleteParameters SSM: DeleteParameters}
|
|
25
|
-
* - aws-lite docs: {@link https://github.com/
|
|
25
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/ssm/readme.md#DeleteParameters SSM: DeleteParameters}
|
|
26
26
|
*/
|
|
27
27
|
DeleteParameters: (input: { Names: any[] }) => Promise<DeleteParametersResponse>
|
|
28
28
|
/**
|
|
29
29
|
* @description
|
|
30
30
|
* - AWS docs: {@link https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_GetParameter.html SSM: GetParameter}
|
|
31
|
-
* - aws-lite docs: {@link https://github.com/
|
|
31
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/ssm/readme.md#GetParameter SSM: GetParameter}
|
|
32
32
|
*/
|
|
33
33
|
GetParameter: (input: { Name: string, WithDecryption?: boolean }) => Promise<GetParameterResponse>
|
|
34
34
|
/**
|
|
35
35
|
* @description
|
|
36
36
|
* - AWS docs: {@link https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_GetParameters.html SSM: GetParameters}
|
|
37
|
-
* - aws-lite docs: {@link https://github.com/
|
|
37
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/ssm/readme.md#GetParameters SSM: GetParameters}
|
|
38
38
|
*/
|
|
39
39
|
GetParameters: (input: { Names: any[], WithDecryption?: boolean }) => Promise<GetParametersResponse>
|
|
40
40
|
/**
|
|
41
41
|
* @description
|
|
42
42
|
* - AWS docs: {@link https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_GetParametersByPath SSM: GetParametersByPath}
|
|
43
|
-
* - aws-lite docs: {@link https://github.com/
|
|
43
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/ssm/readme.md#GetParametersByPath SSM: GetParametersByPath}
|
|
44
44
|
*/
|
|
45
45
|
GetParametersByPath: (input: { Path: string, MaxResults?: number, NextToken?: string, ParameterFilters?: any[], Recursive?: boolean, WithDecryption?: boolean, paginate?: boolean }) => Promise<GetParametersByPathResponse>
|
|
46
46
|
/**
|
|
47
47
|
* @description
|
|
48
48
|
* - AWS docs: {@link https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_PutParameter SSM: PutParameter}
|
|
49
|
-
* - aws-lite docs: {@link https://github.com/
|
|
49
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/ssm/readme.md#PutParameter SSM: PutParameter}
|
|
50
50
|
*/
|
|
51
51
|
PutParameter: (input: { Name: string, Value: string, AllowedPattern?: string, DataType?: string, Description?: string, KeyId?: string, Overwrite?: boolean, Policies?: any[], Tags?: any[], Tier?: string, Type?: string }) => Promise<PutParameterResponse>
|
|
52
52
|
// $METHODS_END
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-lite/ssm-types",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Type definitions for the `@aws-lite/ssm` plugin",
|
|
5
5
|
"homepage": "https://aws-lite.org/services/ssm",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/
|
|
8
|
+
"url": "git+https://github.com/aws-lite/aws-lite.git",
|
|
9
9
|
"directory": "plugins/ssm/types"
|
|
10
10
|
},
|
|
11
|
-
"bugs": "https://github.com/
|
|
11
|
+
"bugs": "https://github.com/aws-lite/aws-lite/issues",
|
|
12
12
|
"main": "",
|
|
13
13
|
"engines": {
|
|
14
14
|
"node": ">=16"
|