@aws-sdk/client-grafana 3.928.0 → 3.930.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-cjs/index.js +1241 -1255
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/GrafanaClient.js +2 -0
- package/dist-es/commands/AssociateLicenseCommand.js +3 -10
- package/dist-es/commands/CreateWorkspaceApiKeyCommand.js +3 -10
- package/dist-es/commands/CreateWorkspaceCommand.js +3 -10
- package/dist-es/commands/CreateWorkspaceServiceAccountCommand.js +3 -9
- package/dist-es/commands/CreateWorkspaceServiceAccountTokenCommand.js +3 -10
- package/dist-es/commands/DeleteWorkspaceApiKeyCommand.js +3 -9
- package/dist-es/commands/DeleteWorkspaceCommand.js +3 -10
- package/dist-es/commands/DeleteWorkspaceServiceAccountCommand.js +3 -9
- package/dist-es/commands/DeleteWorkspaceServiceAccountTokenCommand.js +3 -9
- package/dist-es/commands/DescribeWorkspaceAuthenticationCommand.js +3 -10
- package/dist-es/commands/DescribeWorkspaceCommand.js +3 -10
- package/dist-es/commands/DescribeWorkspaceConfigurationCommand.js +3 -9
- package/dist-es/commands/DisassociateLicenseCommand.js +3 -10
- package/dist-es/commands/ListPermissionsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListVersionsCommand.js +3 -9
- package/dist-es/commands/ListWorkspaceServiceAccountTokensCommand.js +3 -9
- package/dist-es/commands/ListWorkspaceServiceAccountsCommand.js +3 -9
- package/dist-es/commands/ListWorkspacesCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdatePermissionsCommand.js +3 -9
- package/dist-es/commands/UpdateWorkspaceAuthenticationCommand.js +3 -10
- package/dist-es/commands/UpdateWorkspaceCommand.js +3 -10
- package/dist-es/commands/UpdateWorkspaceConfigurationCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -112
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1189 -0
- package/dist-types/GrafanaClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +4 -85
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +132 -0
- package/dist-types/ts3.4/GrafanaClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -62
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +138 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -938
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -227
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -305
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { AssociateLicenseCommandInput, AssociateLicenseCommandOutput } from "./commands/AssociateLicenseCommand";
|
|
11
11
|
import { CreateWorkspaceApiKeyCommandInput, CreateWorkspaceApiKeyCommandOutput } from "./commands/CreateWorkspaceApiKeyCommand";
|
|
@@ -166,6 +166,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
166
166
|
* Optional extensions
|
|
167
167
|
*/
|
|
168
168
|
extensions?: RuntimeExtension[];
|
|
169
|
+
/**
|
|
170
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
171
|
+
* may be overridden. A default will always be set by the client.
|
|
172
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
173
|
+
* the client.
|
|
174
|
+
* @alpha
|
|
175
|
+
*
|
|
176
|
+
*/
|
|
177
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
169
178
|
/**
|
|
170
179
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
171
180
|
*/
|
|
@@ -892,12 +892,15 @@ export declare namespace IdpMetadata {
|
|
|
892
892
|
xml?: never;
|
|
893
893
|
$unknown: [string, any];
|
|
894
894
|
}
|
|
895
|
+
/**
|
|
896
|
+
* @deprecated unused in schema-serde mode.
|
|
897
|
+
*
|
|
898
|
+
*/
|
|
895
899
|
interface Visitor<T> {
|
|
896
900
|
url: (value: string) => T;
|
|
897
901
|
xml: (value: string) => T;
|
|
898
902
|
_: (name: string, value: any) => T;
|
|
899
903
|
}
|
|
900
|
-
const visit: <T>(value: IdpMetadata, visitor: Visitor<T>) => T;
|
|
901
904
|
}
|
|
902
905
|
/**
|
|
903
906
|
* <p>This structure defines which groups defined in the SAML assertion attribute are to be
|
|
@@ -2232,87 +2235,3 @@ export interface UpdateWorkspaceResponse {
|
|
|
2232
2235
|
*/
|
|
2233
2236
|
workspace: WorkspaceDescription | undefined;
|
|
2234
2237
|
}
|
|
2235
|
-
/**
|
|
2236
|
-
* @internal
|
|
2237
|
-
*/
|
|
2238
|
-
export declare const CreateWorkspaceApiKeyResponseFilterSensitiveLog: (obj: CreateWorkspaceApiKeyResponse) => any;
|
|
2239
|
-
/**
|
|
2240
|
-
* @internal
|
|
2241
|
-
*/
|
|
2242
|
-
export declare const WorkspaceDescriptionFilterSensitiveLog: (obj: WorkspaceDescription) => any;
|
|
2243
|
-
/**
|
|
2244
|
-
* @internal
|
|
2245
|
-
*/
|
|
2246
|
-
export declare const AssociateLicenseResponseFilterSensitiveLog: (obj: AssociateLicenseResponse) => any;
|
|
2247
|
-
/**
|
|
2248
|
-
* @internal
|
|
2249
|
-
*/
|
|
2250
|
-
export declare const RoleValuesFilterSensitiveLog: (obj: RoleValues) => any;
|
|
2251
|
-
/**
|
|
2252
|
-
* @internal
|
|
2253
|
-
*/
|
|
2254
|
-
export declare const SamlConfigurationFilterSensitiveLog: (obj: SamlConfiguration) => any;
|
|
2255
|
-
/**
|
|
2256
|
-
* @internal
|
|
2257
|
-
*/
|
|
2258
|
-
export declare const SamlAuthenticationFilterSensitiveLog: (obj: SamlAuthentication) => any;
|
|
2259
|
-
/**
|
|
2260
|
-
* @internal
|
|
2261
|
-
*/
|
|
2262
|
-
export declare const AuthenticationDescriptionFilterSensitiveLog: (obj: AuthenticationDescription) => any;
|
|
2263
|
-
/**
|
|
2264
|
-
* @internal
|
|
2265
|
-
*/
|
|
2266
|
-
export declare const DescribeWorkspaceAuthenticationResponseFilterSensitiveLog: (obj: DescribeWorkspaceAuthenticationResponse) => any;
|
|
2267
|
-
/**
|
|
2268
|
-
* @internal
|
|
2269
|
-
*/
|
|
2270
|
-
export declare const UpdateWorkspaceAuthenticationRequestFilterSensitiveLog: (obj: UpdateWorkspaceAuthenticationRequest) => any;
|
|
2271
|
-
/**
|
|
2272
|
-
* @internal
|
|
2273
|
-
*/
|
|
2274
|
-
export declare const UpdateWorkspaceAuthenticationResponseFilterSensitiveLog: (obj: UpdateWorkspaceAuthenticationResponse) => any;
|
|
2275
|
-
/**
|
|
2276
|
-
* @internal
|
|
2277
|
-
*/
|
|
2278
|
-
export declare const DisassociateLicenseResponseFilterSensitiveLog: (obj: DisassociateLicenseResponse) => any;
|
|
2279
|
-
/**
|
|
2280
|
-
* @internal
|
|
2281
|
-
*/
|
|
2282
|
-
export declare const ServiceAccountTokenSummaryWithKeyFilterSensitiveLog: (obj: ServiceAccountTokenSummaryWithKey) => any;
|
|
2283
|
-
/**
|
|
2284
|
-
* @internal
|
|
2285
|
-
*/
|
|
2286
|
-
export declare const CreateWorkspaceServiceAccountTokenResponseFilterSensitiveLog: (obj: CreateWorkspaceServiceAccountTokenResponse) => any;
|
|
2287
|
-
/**
|
|
2288
|
-
* @internal
|
|
2289
|
-
*/
|
|
2290
|
-
export declare const CreateWorkspaceRequestFilterSensitiveLog: (obj: CreateWorkspaceRequest) => any;
|
|
2291
|
-
/**
|
|
2292
|
-
* @internal
|
|
2293
|
-
*/
|
|
2294
|
-
export declare const CreateWorkspaceResponseFilterSensitiveLog: (obj: CreateWorkspaceResponse) => any;
|
|
2295
|
-
/**
|
|
2296
|
-
* @internal
|
|
2297
|
-
*/
|
|
2298
|
-
export declare const DeleteWorkspaceResponseFilterSensitiveLog: (obj: DeleteWorkspaceResponse) => any;
|
|
2299
|
-
/**
|
|
2300
|
-
* @internal
|
|
2301
|
-
*/
|
|
2302
|
-
export declare const DescribeWorkspaceResponseFilterSensitiveLog: (obj: DescribeWorkspaceResponse) => any;
|
|
2303
|
-
/**
|
|
2304
|
-
* @internal
|
|
2305
|
-
*/
|
|
2306
|
-
export declare const WorkspaceSummaryFilterSensitiveLog: (obj: WorkspaceSummary) => any;
|
|
2307
|
-
/**
|
|
2308
|
-
* @internal
|
|
2309
|
-
*/
|
|
2310
|
-
export declare const ListWorkspacesResponseFilterSensitiveLog: (obj: ListWorkspacesResponse) => any;
|
|
2311
|
-
/**
|
|
2312
|
-
* @internal
|
|
2313
|
-
*/
|
|
2314
|
-
export declare const UpdateWorkspaceRequestFilterSensitiveLog: (obj: UpdateWorkspaceRequest) => any;
|
|
2315
|
-
/**
|
|
2316
|
-
* @internal
|
|
2317
|
-
*/
|
|
2318
|
-
export declare const UpdateWorkspaceResponseFilterSensitiveLog: (obj: UpdateWorkspaceResponse) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: GrafanaClientConfig) => {
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: GrafanaClientConfig) => {
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: GrafanaClientConfig) => {
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: GrafanaClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GrafanaHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var ApiKeyToken: StaticSimpleSchema;
|
|
3
|
+
export declare var Description: StaticSimpleSchema;
|
|
4
|
+
export declare var IamRoleArn: StaticSimpleSchema;
|
|
5
|
+
export declare var OrganizationRoleName: StaticSimpleSchema;
|
|
6
|
+
export declare var OverridableConfigurationJson: StaticSimpleSchema;
|
|
7
|
+
export declare var ServiceAccountTokenKey: StaticSimpleSchema;
|
|
8
|
+
export declare var WorkspaceName: StaticSimpleSchema;
|
|
9
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
10
|
+
export declare var AssertionAttributes: StaticStructureSchema;
|
|
11
|
+
export declare var AssociateLicenseRequest: StaticStructureSchema;
|
|
12
|
+
export declare var AssociateLicenseResponse: StaticStructureSchema;
|
|
13
|
+
export declare var AuthenticationDescription: StaticStructureSchema;
|
|
14
|
+
export declare var AuthenticationSummary: StaticStructureSchema;
|
|
15
|
+
export declare var AwsSsoAuthentication: StaticStructureSchema;
|
|
16
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
17
|
+
export declare var CreateWorkspaceApiKeyRequest: StaticStructureSchema;
|
|
18
|
+
export declare var CreateWorkspaceApiKeyResponse: StaticStructureSchema;
|
|
19
|
+
export declare var CreateWorkspaceRequest: StaticStructureSchema;
|
|
20
|
+
export declare var CreateWorkspaceResponse: StaticStructureSchema;
|
|
21
|
+
export declare var CreateWorkspaceServiceAccountRequest: StaticStructureSchema;
|
|
22
|
+
export declare var CreateWorkspaceServiceAccountResponse: StaticStructureSchema;
|
|
23
|
+
export declare var CreateWorkspaceServiceAccountTokenRequest: StaticStructureSchema;
|
|
24
|
+
export declare var CreateWorkspaceServiceAccountTokenResponse: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteWorkspaceApiKeyRequest: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteWorkspaceApiKeyResponse: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteWorkspaceRequest: StaticStructureSchema;
|
|
28
|
+
export declare var DeleteWorkspaceResponse: StaticStructureSchema;
|
|
29
|
+
export declare var DeleteWorkspaceServiceAccountRequest: StaticStructureSchema;
|
|
30
|
+
export declare var DeleteWorkspaceServiceAccountResponse: StaticStructureSchema;
|
|
31
|
+
export declare var DeleteWorkspaceServiceAccountTokenRequest: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteWorkspaceServiceAccountTokenResponse: StaticStructureSchema;
|
|
33
|
+
export declare var DescribeWorkspaceAuthenticationRequest: StaticStructureSchema;
|
|
34
|
+
export declare var DescribeWorkspaceAuthenticationResponse: StaticStructureSchema;
|
|
35
|
+
export declare var DescribeWorkspaceConfigurationRequest: StaticStructureSchema;
|
|
36
|
+
export declare var DescribeWorkspaceConfigurationResponse: StaticStructureSchema;
|
|
37
|
+
export declare var DescribeWorkspaceRequest: StaticStructureSchema;
|
|
38
|
+
export declare var DescribeWorkspaceResponse: StaticStructureSchema;
|
|
39
|
+
export declare var DisassociateLicenseRequest: StaticStructureSchema;
|
|
40
|
+
export declare var DisassociateLicenseResponse: StaticStructureSchema;
|
|
41
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
42
|
+
export declare var ListPermissionsRequest: StaticStructureSchema;
|
|
43
|
+
export declare var ListPermissionsResponse: StaticStructureSchema;
|
|
44
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
45
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
46
|
+
export declare var ListVersionsRequest: StaticStructureSchema;
|
|
47
|
+
export declare var ListVersionsResponse: StaticStructureSchema;
|
|
48
|
+
export declare var ListWorkspaceServiceAccountsRequest: StaticStructureSchema;
|
|
49
|
+
export declare var ListWorkspaceServiceAccountsResponse: StaticStructureSchema;
|
|
50
|
+
export declare var ListWorkspaceServiceAccountTokensRequest: StaticStructureSchema;
|
|
51
|
+
export declare var ListWorkspaceServiceAccountTokensResponse: StaticStructureSchema;
|
|
52
|
+
export declare var ListWorkspacesRequest: StaticStructureSchema;
|
|
53
|
+
export declare var ListWorkspacesResponse: StaticStructureSchema;
|
|
54
|
+
export declare var NetworkAccessConfiguration: StaticStructureSchema;
|
|
55
|
+
export declare var PermissionEntry: StaticStructureSchema;
|
|
56
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
57
|
+
export declare var RoleValues: StaticStructureSchema;
|
|
58
|
+
export declare var SamlAuthentication: StaticStructureSchema;
|
|
59
|
+
export declare var SamlConfiguration: StaticStructureSchema;
|
|
60
|
+
export declare var ServiceAccountSummary: StaticStructureSchema;
|
|
61
|
+
export declare var ServiceAccountTokenSummary: StaticStructureSchema;
|
|
62
|
+
export declare var ServiceAccountTokenSummaryWithKey: StaticStructureSchema;
|
|
63
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
64
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
65
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
66
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
67
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
68
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
69
|
+
export declare var UpdateError: StaticStructureSchema;
|
|
70
|
+
export declare var UpdateInstruction: StaticStructureSchema;
|
|
71
|
+
export declare var UpdatePermissionsRequest: StaticStructureSchema;
|
|
72
|
+
export declare var UpdatePermissionsResponse: StaticStructureSchema;
|
|
73
|
+
export declare var UpdateWorkspaceAuthenticationRequest: StaticStructureSchema;
|
|
74
|
+
export declare var UpdateWorkspaceAuthenticationResponse: StaticStructureSchema;
|
|
75
|
+
export declare var UpdateWorkspaceConfigurationRequest: StaticStructureSchema;
|
|
76
|
+
export declare var UpdateWorkspaceConfigurationResponse: StaticStructureSchema;
|
|
77
|
+
export declare var UpdateWorkspaceRequest: StaticStructureSchema;
|
|
78
|
+
export declare var UpdateWorkspaceResponse: StaticStructureSchema;
|
|
79
|
+
export declare var User: StaticStructureSchema;
|
|
80
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
81
|
+
export declare var ValidationExceptionField: StaticStructureSchema;
|
|
82
|
+
export declare var VpcConfiguration: StaticStructureSchema;
|
|
83
|
+
export declare var WorkspaceDescription: StaticStructureSchema;
|
|
84
|
+
export declare var WorkspaceSummary: StaticStructureSchema;
|
|
85
|
+
export declare var GrafanaServiceException: StaticErrorSchema;
|
|
86
|
+
export declare var AllowedOrganizations: number;
|
|
87
|
+
export declare var AuthenticationProviders: number;
|
|
88
|
+
export declare var DataSourceTypesList: number;
|
|
89
|
+
export declare var GrafanaVersionList: number;
|
|
90
|
+
export declare var NotificationDestinationsList: number;
|
|
91
|
+
export declare var OrganizationalUnitList: StaticListSchema;
|
|
92
|
+
export declare var PermissionEntryList: StaticListSchema;
|
|
93
|
+
export declare var PrefixListIds: number;
|
|
94
|
+
export declare var RoleValueList: StaticListSchema;
|
|
95
|
+
export declare var SecurityGroupIds: number;
|
|
96
|
+
export declare var ServiceAccountList: StaticListSchema;
|
|
97
|
+
export declare var ServiceAccountTokenList: StaticListSchema;
|
|
98
|
+
export declare var SubnetIds: number;
|
|
99
|
+
export declare var TagKeys: number;
|
|
100
|
+
export declare var UpdateErrorList: StaticListSchema;
|
|
101
|
+
export declare var UpdateInstructionBatch: StaticListSchema;
|
|
102
|
+
export declare var UserList: StaticListSchema;
|
|
103
|
+
export declare var ValidationExceptionFieldList: StaticListSchema;
|
|
104
|
+
export declare var VpceIds: number;
|
|
105
|
+
export declare var WorkspaceList: StaticListSchema;
|
|
106
|
+
export declare var TagMap: number;
|
|
107
|
+
export declare var IdpMetadata: StaticStructureSchema;
|
|
108
|
+
export declare var AssociateLicense: StaticOperationSchema;
|
|
109
|
+
export declare var CreateWorkspace: StaticOperationSchema;
|
|
110
|
+
export declare var CreateWorkspaceApiKey: StaticOperationSchema;
|
|
111
|
+
export declare var CreateWorkspaceServiceAccount: StaticOperationSchema;
|
|
112
|
+
export declare var CreateWorkspaceServiceAccountToken: StaticOperationSchema;
|
|
113
|
+
export declare var DeleteWorkspace: StaticOperationSchema;
|
|
114
|
+
export declare var DeleteWorkspaceApiKey: StaticOperationSchema;
|
|
115
|
+
export declare var DeleteWorkspaceServiceAccount: StaticOperationSchema;
|
|
116
|
+
export declare var DeleteWorkspaceServiceAccountToken: StaticOperationSchema;
|
|
117
|
+
export declare var DescribeWorkspace: StaticOperationSchema;
|
|
118
|
+
export declare var DescribeWorkspaceAuthentication: StaticOperationSchema;
|
|
119
|
+
export declare var DescribeWorkspaceConfiguration: StaticOperationSchema;
|
|
120
|
+
export declare var DisassociateLicense: StaticOperationSchema;
|
|
121
|
+
export declare var ListPermissions: StaticOperationSchema;
|
|
122
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
123
|
+
export declare var ListVersions: StaticOperationSchema;
|
|
124
|
+
export declare var ListWorkspaces: StaticOperationSchema;
|
|
125
|
+
export declare var ListWorkspaceServiceAccounts: StaticOperationSchema;
|
|
126
|
+
export declare var ListWorkspaceServiceAccountTokens: StaticOperationSchema;
|
|
127
|
+
export declare var TagResource: StaticOperationSchema;
|
|
128
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
129
|
+
export declare var UpdatePermissions: StaticOperationSchema;
|
|
130
|
+
export declare var UpdateWorkspace: StaticOperationSchema;
|
|
131
|
+
export declare var UpdateWorkspaceAuthentication: StaticOperationSchema;
|
|
132
|
+
export declare var UpdateWorkspaceConfiguration: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -228,6 +231,7 @@ export interface ClientDefaults
|
|
|
228
231
|
retryMode?: string | __Provider<string>;
|
|
229
232
|
logger?: __Logger;
|
|
230
233
|
extensions?: RuntimeExtension[];
|
|
234
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
231
235
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
232
236
|
}
|
|
233
237
|
export type GrafanaClientConfigType = Partial<
|
|
@@ -247,7 +247,6 @@ export declare namespace IdpMetadata {
|
|
|
247
247
|
xml: (value: string) => T;
|
|
248
248
|
_: (name: string, value: any) => T;
|
|
249
249
|
}
|
|
250
|
-
const visit: <T>(value: IdpMetadata, visitor: Visitor<T>) => T;
|
|
251
250
|
}
|
|
252
251
|
export interface RoleValues {
|
|
253
252
|
editor?: string[] | undefined;
|
|
@@ -535,64 +534,3 @@ export interface UpdateWorkspaceRequest {
|
|
|
535
534
|
export interface UpdateWorkspaceResponse {
|
|
536
535
|
workspace: WorkspaceDescription | undefined;
|
|
537
536
|
}
|
|
538
|
-
export declare const CreateWorkspaceApiKeyResponseFilterSensitiveLog: (
|
|
539
|
-
obj: CreateWorkspaceApiKeyResponse
|
|
540
|
-
) => any;
|
|
541
|
-
export declare const WorkspaceDescriptionFilterSensitiveLog: (
|
|
542
|
-
obj: WorkspaceDescription
|
|
543
|
-
) => any;
|
|
544
|
-
export declare const AssociateLicenseResponseFilterSensitiveLog: (
|
|
545
|
-
obj: AssociateLicenseResponse
|
|
546
|
-
) => any;
|
|
547
|
-
export declare const RoleValuesFilterSensitiveLog: (obj: RoleValues) => any;
|
|
548
|
-
export declare const SamlConfigurationFilterSensitiveLog: (
|
|
549
|
-
obj: SamlConfiguration
|
|
550
|
-
) => any;
|
|
551
|
-
export declare const SamlAuthenticationFilterSensitiveLog: (
|
|
552
|
-
obj: SamlAuthentication
|
|
553
|
-
) => any;
|
|
554
|
-
export declare const AuthenticationDescriptionFilterSensitiveLog: (
|
|
555
|
-
obj: AuthenticationDescription
|
|
556
|
-
) => any;
|
|
557
|
-
export declare const DescribeWorkspaceAuthenticationResponseFilterSensitiveLog: (
|
|
558
|
-
obj: DescribeWorkspaceAuthenticationResponse
|
|
559
|
-
) => any;
|
|
560
|
-
export declare const UpdateWorkspaceAuthenticationRequestFilterSensitiveLog: (
|
|
561
|
-
obj: UpdateWorkspaceAuthenticationRequest
|
|
562
|
-
) => any;
|
|
563
|
-
export declare const UpdateWorkspaceAuthenticationResponseFilterSensitiveLog: (
|
|
564
|
-
obj: UpdateWorkspaceAuthenticationResponse
|
|
565
|
-
) => any;
|
|
566
|
-
export declare const DisassociateLicenseResponseFilterSensitiveLog: (
|
|
567
|
-
obj: DisassociateLicenseResponse
|
|
568
|
-
) => any;
|
|
569
|
-
export declare const ServiceAccountTokenSummaryWithKeyFilterSensitiveLog: (
|
|
570
|
-
obj: ServiceAccountTokenSummaryWithKey
|
|
571
|
-
) => any;
|
|
572
|
-
export declare const CreateWorkspaceServiceAccountTokenResponseFilterSensitiveLog: (
|
|
573
|
-
obj: CreateWorkspaceServiceAccountTokenResponse
|
|
574
|
-
) => any;
|
|
575
|
-
export declare const CreateWorkspaceRequestFilterSensitiveLog: (
|
|
576
|
-
obj: CreateWorkspaceRequest
|
|
577
|
-
) => any;
|
|
578
|
-
export declare const CreateWorkspaceResponseFilterSensitiveLog: (
|
|
579
|
-
obj: CreateWorkspaceResponse
|
|
580
|
-
) => any;
|
|
581
|
-
export declare const DeleteWorkspaceResponseFilterSensitiveLog: (
|
|
582
|
-
obj: DeleteWorkspaceResponse
|
|
583
|
-
) => any;
|
|
584
|
-
export declare const DescribeWorkspaceResponseFilterSensitiveLog: (
|
|
585
|
-
obj: DescribeWorkspaceResponse
|
|
586
|
-
) => any;
|
|
587
|
-
export declare const WorkspaceSummaryFilterSensitiveLog: (
|
|
588
|
-
obj: WorkspaceSummary
|
|
589
|
-
) => any;
|
|
590
|
-
export declare const ListWorkspacesResponseFilterSensitiveLog: (
|
|
591
|
-
obj: ListWorkspacesResponse
|
|
592
|
-
) => any;
|
|
593
|
-
export declare const UpdateWorkspaceRequestFilterSensitiveLog: (
|
|
594
|
-
obj: UpdateWorkspaceRequest
|
|
595
|
-
) => any;
|
|
596
|
-
export declare const UpdateWorkspaceResponseFilterSensitiveLog: (
|
|
597
|
-
obj: UpdateWorkspaceResponse
|
|
598
|
-
) => any;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: GrafanaClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
userAgentAppId?:
|
|
43
47
|
| string
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: GrafanaClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
retryStrategy?:
|
|
43
47
|
| import("@smithy/types").RetryStrategy
|
|
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: GrafanaClientConfig) => {
|
|
|
37
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
40
44
|
defaultsMode:
|
|
41
45
|
| import("@smithy/smithy-client").DefaultsMode
|
|
42
46
|
| import("@smithy/types").Provider<
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: GrafanaClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GrafanaHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
serviceId: string;
|
|
18
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
23
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticSimpleSchema,
|
|
6
|
+
StaticStructureSchema,
|
|
7
|
+
} from "@smithy/types";
|
|
8
|
+
export declare var ApiKeyToken: StaticSimpleSchema;
|
|
9
|
+
export declare var Description: StaticSimpleSchema;
|
|
10
|
+
export declare var IamRoleArn: StaticSimpleSchema;
|
|
11
|
+
export declare var OrganizationRoleName: StaticSimpleSchema;
|
|
12
|
+
export declare var OverridableConfigurationJson: StaticSimpleSchema;
|
|
13
|
+
export declare var ServiceAccountTokenKey: StaticSimpleSchema;
|
|
14
|
+
export declare var WorkspaceName: StaticSimpleSchema;
|
|
15
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
16
|
+
export declare var AssertionAttributes: StaticStructureSchema;
|
|
17
|
+
export declare var AssociateLicenseRequest: StaticStructureSchema;
|
|
18
|
+
export declare var AssociateLicenseResponse: StaticStructureSchema;
|
|
19
|
+
export declare var AuthenticationDescription: StaticStructureSchema;
|
|
20
|
+
export declare var AuthenticationSummary: StaticStructureSchema;
|
|
21
|
+
export declare var AwsSsoAuthentication: StaticStructureSchema;
|
|
22
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
23
|
+
export declare var CreateWorkspaceApiKeyRequest: StaticStructureSchema;
|
|
24
|
+
export declare var CreateWorkspaceApiKeyResponse: StaticStructureSchema;
|
|
25
|
+
export declare var CreateWorkspaceRequest: StaticStructureSchema;
|
|
26
|
+
export declare var CreateWorkspaceResponse: StaticStructureSchema;
|
|
27
|
+
export declare var CreateWorkspaceServiceAccountRequest: StaticStructureSchema;
|
|
28
|
+
export declare var CreateWorkspaceServiceAccountResponse: StaticStructureSchema;
|
|
29
|
+
export declare var CreateWorkspaceServiceAccountTokenRequest: StaticStructureSchema;
|
|
30
|
+
export declare var CreateWorkspaceServiceAccountTokenResponse: StaticStructureSchema;
|
|
31
|
+
export declare var DeleteWorkspaceApiKeyRequest: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteWorkspaceApiKeyResponse: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteWorkspaceRequest: StaticStructureSchema;
|
|
34
|
+
export declare var DeleteWorkspaceResponse: StaticStructureSchema;
|
|
35
|
+
export declare var DeleteWorkspaceServiceAccountRequest: StaticStructureSchema;
|
|
36
|
+
export declare var DeleteWorkspaceServiceAccountResponse: StaticStructureSchema;
|
|
37
|
+
export declare var DeleteWorkspaceServiceAccountTokenRequest: StaticStructureSchema;
|
|
38
|
+
export declare var DeleteWorkspaceServiceAccountTokenResponse: StaticStructureSchema;
|
|
39
|
+
export declare var DescribeWorkspaceAuthenticationRequest: StaticStructureSchema;
|
|
40
|
+
export declare var DescribeWorkspaceAuthenticationResponse: StaticStructureSchema;
|
|
41
|
+
export declare var DescribeWorkspaceConfigurationRequest: StaticStructureSchema;
|
|
42
|
+
export declare var DescribeWorkspaceConfigurationResponse: StaticStructureSchema;
|
|
43
|
+
export declare var DescribeWorkspaceRequest: StaticStructureSchema;
|
|
44
|
+
export declare var DescribeWorkspaceResponse: StaticStructureSchema;
|
|
45
|
+
export declare var DisassociateLicenseRequest: StaticStructureSchema;
|
|
46
|
+
export declare var DisassociateLicenseResponse: StaticStructureSchema;
|
|
47
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
48
|
+
export declare var ListPermissionsRequest: StaticStructureSchema;
|
|
49
|
+
export declare var ListPermissionsResponse: StaticStructureSchema;
|
|
50
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
51
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
52
|
+
export declare var ListVersionsRequest: StaticStructureSchema;
|
|
53
|
+
export declare var ListVersionsResponse: StaticStructureSchema;
|
|
54
|
+
export declare var ListWorkspaceServiceAccountsRequest: StaticStructureSchema;
|
|
55
|
+
export declare var ListWorkspaceServiceAccountsResponse: StaticStructureSchema;
|
|
56
|
+
export declare var ListWorkspaceServiceAccountTokensRequest: StaticStructureSchema;
|
|
57
|
+
export declare var ListWorkspaceServiceAccountTokensResponse: StaticStructureSchema;
|
|
58
|
+
export declare var ListWorkspacesRequest: StaticStructureSchema;
|
|
59
|
+
export declare var ListWorkspacesResponse: StaticStructureSchema;
|
|
60
|
+
export declare var NetworkAccessConfiguration: StaticStructureSchema;
|
|
61
|
+
export declare var PermissionEntry: StaticStructureSchema;
|
|
62
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
63
|
+
export declare var RoleValues: StaticStructureSchema;
|
|
64
|
+
export declare var SamlAuthentication: StaticStructureSchema;
|
|
65
|
+
export declare var SamlConfiguration: StaticStructureSchema;
|
|
66
|
+
export declare var ServiceAccountSummary: StaticStructureSchema;
|
|
67
|
+
export declare var ServiceAccountTokenSummary: StaticStructureSchema;
|
|
68
|
+
export declare var ServiceAccountTokenSummaryWithKey: StaticStructureSchema;
|
|
69
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
70
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
71
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
72
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
73
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
74
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
75
|
+
export declare var UpdateError: StaticStructureSchema;
|
|
76
|
+
export declare var UpdateInstruction: StaticStructureSchema;
|
|
77
|
+
export declare var UpdatePermissionsRequest: StaticStructureSchema;
|
|
78
|
+
export declare var UpdatePermissionsResponse: StaticStructureSchema;
|
|
79
|
+
export declare var UpdateWorkspaceAuthenticationRequest: StaticStructureSchema;
|
|
80
|
+
export declare var UpdateWorkspaceAuthenticationResponse: StaticStructureSchema;
|
|
81
|
+
export declare var UpdateWorkspaceConfigurationRequest: StaticStructureSchema;
|
|
82
|
+
export declare var UpdateWorkspaceConfigurationResponse: StaticStructureSchema;
|
|
83
|
+
export declare var UpdateWorkspaceRequest: StaticStructureSchema;
|
|
84
|
+
export declare var UpdateWorkspaceResponse: StaticStructureSchema;
|
|
85
|
+
export declare var User: StaticStructureSchema;
|
|
86
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
87
|
+
export declare var ValidationExceptionField: StaticStructureSchema;
|
|
88
|
+
export declare var VpcConfiguration: StaticStructureSchema;
|
|
89
|
+
export declare var WorkspaceDescription: StaticStructureSchema;
|
|
90
|
+
export declare var WorkspaceSummary: StaticStructureSchema;
|
|
91
|
+
export declare var GrafanaServiceException: StaticErrorSchema;
|
|
92
|
+
export declare var AllowedOrganizations: number;
|
|
93
|
+
export declare var AuthenticationProviders: number;
|
|
94
|
+
export declare var DataSourceTypesList: number;
|
|
95
|
+
export declare var GrafanaVersionList: number;
|
|
96
|
+
export declare var NotificationDestinationsList: number;
|
|
97
|
+
export declare var OrganizationalUnitList: StaticListSchema;
|
|
98
|
+
export declare var PermissionEntryList: StaticListSchema;
|
|
99
|
+
export declare var PrefixListIds: number;
|
|
100
|
+
export declare var RoleValueList: StaticListSchema;
|
|
101
|
+
export declare var SecurityGroupIds: number;
|
|
102
|
+
export declare var ServiceAccountList: StaticListSchema;
|
|
103
|
+
export declare var ServiceAccountTokenList: StaticListSchema;
|
|
104
|
+
export declare var SubnetIds: number;
|
|
105
|
+
export declare var TagKeys: number;
|
|
106
|
+
export declare var UpdateErrorList: StaticListSchema;
|
|
107
|
+
export declare var UpdateInstructionBatch: StaticListSchema;
|
|
108
|
+
export declare var UserList: StaticListSchema;
|
|
109
|
+
export declare var ValidationExceptionFieldList: StaticListSchema;
|
|
110
|
+
export declare var VpceIds: number;
|
|
111
|
+
export declare var WorkspaceList: StaticListSchema;
|
|
112
|
+
export declare var TagMap: number;
|
|
113
|
+
export declare var IdpMetadata: StaticStructureSchema;
|
|
114
|
+
export declare var AssociateLicense: StaticOperationSchema;
|
|
115
|
+
export declare var CreateWorkspace: StaticOperationSchema;
|
|
116
|
+
export declare var CreateWorkspaceApiKey: StaticOperationSchema;
|
|
117
|
+
export declare var CreateWorkspaceServiceAccount: StaticOperationSchema;
|
|
118
|
+
export declare var CreateWorkspaceServiceAccountToken: StaticOperationSchema;
|
|
119
|
+
export declare var DeleteWorkspace: StaticOperationSchema;
|
|
120
|
+
export declare var DeleteWorkspaceApiKey: StaticOperationSchema;
|
|
121
|
+
export declare var DeleteWorkspaceServiceAccount: StaticOperationSchema;
|
|
122
|
+
export declare var DeleteWorkspaceServiceAccountToken: StaticOperationSchema;
|
|
123
|
+
export declare var DescribeWorkspace: StaticOperationSchema;
|
|
124
|
+
export declare var DescribeWorkspaceAuthentication: StaticOperationSchema;
|
|
125
|
+
export declare var DescribeWorkspaceConfiguration: StaticOperationSchema;
|
|
126
|
+
export declare var DisassociateLicense: StaticOperationSchema;
|
|
127
|
+
export declare var ListPermissions: StaticOperationSchema;
|
|
128
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
129
|
+
export declare var ListVersions: StaticOperationSchema;
|
|
130
|
+
export declare var ListWorkspaces: StaticOperationSchema;
|
|
131
|
+
export declare var ListWorkspaceServiceAccounts: StaticOperationSchema;
|
|
132
|
+
export declare var ListWorkspaceServiceAccountTokens: StaticOperationSchema;
|
|
133
|
+
export declare var TagResource: StaticOperationSchema;
|
|
134
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
135
|
+
export declare var UpdatePermissions: StaticOperationSchema;
|
|
136
|
+
export declare var UpdateWorkspace: StaticOperationSchema;
|
|
137
|
+
export declare var UpdateWorkspaceAuthentication: StaticOperationSchema;
|
|
138
|
+
export declare var UpdateWorkspaceConfiguration: StaticOperationSchema;
|