@azure/template 1.0.13-beta.5253259 → 1.0.13-beta.5570684
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/LICENSE +1 -1
- package/README.md +48 -53
- package/dist/browser/api/index.d.ts +2 -0
- package/dist/browser/api/index.js +4 -0
- package/dist/browser/api/index.js.map +1 -0
- package/dist/browser/api/widgetAnalyticsContext.d.ts +15 -0
- package/dist/browser/api/widgetAnalyticsContext.js +37 -0
- package/dist/browser/api/widgetAnalyticsContext.js.map +1 -0
- package/dist/browser/api/widgets/index.d.ts +3 -0
- package/dist/browser/api/widgets/index.js +4 -0
- package/dist/browser/api/widgets/index.js.map +1 -0
- package/dist/browser/api/widgets/operations.d.ts +27 -0
- package/dist/browser/api/widgets/operations.js +162 -0
- package/dist/browser/api/widgets/operations.js.map +1 -0
- package/dist/browser/api/widgets/options.d.ts +21 -0
- package/dist/browser/api/widgets/options.js +4 -0
- package/dist/browser/api/widgets/options.js.map +1 -0
- package/dist/browser/classic/index.d.ts +2 -0
- package/dist/browser/classic/index.js +4 -0
- package/dist/browser/classic/index.js.map +1 -0
- package/dist/browser/classic/widgets/index.d.ts +20 -0
- package/dist/browser/classic/widgets/index.js +18 -0
- package/dist/browser/classic/widgets/index.js.map +1 -0
- package/dist/browser/index.d.ts +8 -1
- package/dist/browser/index.js +3 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/logger.d.ts +0 -5
- package/dist/browser/logger.js +0 -5
- package/dist/browser/logger.js.map +1 -1
- package/dist/browser/models/index.d.ts +2 -0
- package/dist/browser/models/index.js +4 -0
- package/dist/browser/models/index.js.map +1 -0
- package/dist/browser/models/models.d.ts +74 -0
- package/dist/browser/models/models.js +73 -0
- package/dist/browser/models/models.js.map +1 -0
- package/dist/browser/restorePollerHelpers.d.ts +21 -0
- package/dist/browser/restorePollerHelpers.js +95 -0
- package/dist/browser/restorePollerHelpers.js.map +1 -0
- package/dist/browser/static-helpers/pagingHelpers.d.ts +72 -0
- package/dist/browser/static-helpers/pagingHelpers.js +118 -0
- package/dist/browser/static-helpers/pagingHelpers.js.map +1 -0
- package/dist/browser/static-helpers/pollingHelpers.d.ts +30 -0
- package/dist/browser/static-helpers/pollingHelpers.js +79 -0
- package/dist/browser/static-helpers/pollingHelpers.js.map +1 -0
- package/dist/browser/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/browser/static-helpers/urlTemplate.js +185 -0
- package/dist/browser/static-helpers/urlTemplate.js.map +1 -0
- package/dist/browser/widgetAnalyticsClient.d.ts +19 -0
- package/dist/browser/widgetAnalyticsClient.js +31 -0
- package/dist/browser/widgetAnalyticsClient.js.map +1 -0
- package/dist/commonjs/api/index.d.ts +2 -0
- package/dist/commonjs/api/index.js +8 -0
- package/dist/commonjs/api/index.js.map +1 -0
- package/dist/commonjs/api/widgetAnalyticsContext.d.ts +15 -0
- package/dist/commonjs/api/widgetAnalyticsContext.js +40 -0
- package/dist/commonjs/api/widgetAnalyticsContext.js.map +1 -0
- package/dist/commonjs/api/widgets/index.d.ts +3 -0
- package/dist/commonjs/api/widgets/index.js +12 -0
- package/dist/commonjs/api/widgets/index.js.map +1 -0
- package/dist/commonjs/api/widgets/operations.d.ts +27 -0
- package/dist/commonjs/api/widgets/operations.js +179 -0
- package/dist/commonjs/api/widgets/operations.js.map +1 -0
- package/dist/commonjs/api/widgets/options.d.ts +21 -0
- package/dist/commonjs/{constants.js → api/widgets/options.js} +1 -3
- package/dist/commonjs/api/widgets/options.js.map +1 -0
- package/dist/commonjs/classic/index.d.ts +2 -0
- package/dist/commonjs/classic/index.js +5 -0
- package/dist/commonjs/classic/index.js.map +1 -0
- package/dist/commonjs/classic/widgets/index.d.ts +20 -0
- package/dist/commonjs/classic/widgets/index.js +21 -0
- package/dist/commonjs/classic/widgets/index.js.map +1 -0
- package/dist/commonjs/index.d.ts +8 -1
- package/dist/commonjs/index.js +8 -2
- package/dist/commonjs/index.js.map +1 -1
- package/dist/commonjs/logger.d.ts +0 -5
- package/dist/commonjs/logger.js +0 -5
- package/dist/commonjs/logger.js.map +1 -1
- package/dist/commonjs/models/index.d.ts +2 -0
- package/dist/commonjs/models/index.js +9 -0
- package/dist/commonjs/models/index.js.map +1 -0
- package/dist/commonjs/models/models.d.ts +74 -0
- package/dist/commonjs/models/models.js +84 -0
- package/dist/commonjs/models/models.js.map +1 -0
- package/dist/commonjs/restorePollerHelpers.d.ts +21 -0
- package/dist/commonjs/restorePollerHelpers.js +98 -0
- package/dist/commonjs/restorePollerHelpers.js.map +1 -0
- package/dist/commonjs/static-helpers/pagingHelpers.d.ts +72 -0
- package/dist/commonjs/static-helpers/pagingHelpers.js +121 -0
- package/dist/commonjs/static-helpers/pagingHelpers.js.map +1 -0
- package/dist/commonjs/static-helpers/pollingHelpers.d.ts +30 -0
- package/dist/commonjs/static-helpers/pollingHelpers.js +82 -0
- package/dist/commonjs/static-helpers/pollingHelpers.js.map +1 -0
- package/dist/commonjs/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/commonjs/static-helpers/urlTemplate.js +188 -0
- package/dist/commonjs/static-helpers/urlTemplate.js.map +1 -0
- package/dist/commonjs/tsdoc-metadata.json +1 -1
- package/dist/commonjs/widgetAnalyticsClient.d.ts +19 -0
- package/dist/commonjs/widgetAnalyticsClient.js +35 -0
- package/dist/commonjs/widgetAnalyticsClient.js.map +1 -0
- package/dist/esm/api/index.d.ts +2 -0
- package/dist/esm/api/index.js +4 -0
- package/dist/esm/api/index.js.map +1 -0
- package/dist/esm/api/widgetAnalyticsContext.d.ts +15 -0
- package/dist/esm/api/widgetAnalyticsContext.js +37 -0
- package/dist/esm/api/widgetAnalyticsContext.js.map +1 -0
- package/dist/esm/api/widgets/index.d.ts +3 -0
- package/dist/esm/api/widgets/index.js +4 -0
- package/dist/esm/api/widgets/index.js.map +1 -0
- package/dist/esm/api/widgets/operations.d.ts +27 -0
- package/dist/esm/api/widgets/operations.js +162 -0
- package/dist/esm/api/widgets/operations.js.map +1 -0
- package/dist/esm/api/widgets/options.d.ts +21 -0
- package/dist/esm/api/widgets/options.js +4 -0
- package/dist/esm/api/widgets/options.js.map +1 -0
- package/dist/esm/classic/index.d.ts +2 -0
- package/dist/esm/classic/index.js +4 -0
- package/dist/esm/classic/index.js.map +1 -0
- package/dist/esm/classic/widgets/index.d.ts +20 -0
- package/dist/esm/classic/widgets/index.js +18 -0
- package/dist/esm/classic/widgets/index.js.map +1 -0
- package/dist/esm/index.d.ts +8 -1
- package/dist/esm/index.js +3 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/logger.d.ts +0 -5
- package/dist/esm/logger.js +0 -5
- package/dist/esm/logger.js.map +1 -1
- package/dist/esm/models/index.d.ts +2 -0
- package/dist/esm/models/index.js +4 -0
- package/dist/esm/models/index.js.map +1 -0
- package/dist/esm/models/models.d.ts +74 -0
- package/dist/esm/models/models.js +73 -0
- package/dist/esm/models/models.js.map +1 -0
- package/dist/esm/restorePollerHelpers.d.ts +21 -0
- package/dist/esm/restorePollerHelpers.js +95 -0
- package/dist/esm/restorePollerHelpers.js.map +1 -0
- package/dist/esm/static-helpers/pagingHelpers.d.ts +72 -0
- package/dist/esm/static-helpers/pagingHelpers.js +118 -0
- package/dist/esm/static-helpers/pagingHelpers.js.map +1 -0
- package/dist/esm/static-helpers/pollingHelpers.d.ts +30 -0
- package/dist/esm/static-helpers/pollingHelpers.js +79 -0
- package/dist/esm/static-helpers/pollingHelpers.js.map +1 -0
- package/dist/esm/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/esm/static-helpers/urlTemplate.js +185 -0
- package/dist/esm/static-helpers/urlTemplate.js.map +1 -0
- package/dist/esm/widgetAnalyticsClient.d.ts +19 -0
- package/dist/esm/widgetAnalyticsClient.js +31 -0
- package/dist/esm/widgetAnalyticsClient.js.map +1 -0
- package/dist/react-native/api/index.d.ts +2 -0
- package/dist/react-native/api/index.js +4 -0
- package/dist/react-native/api/index.js.map +1 -0
- package/dist/react-native/api/widgetAnalyticsContext.d.ts +15 -0
- package/dist/react-native/api/widgetAnalyticsContext.js +37 -0
- package/dist/react-native/api/widgetAnalyticsContext.js.map +1 -0
- package/dist/react-native/api/widgets/index.d.ts +3 -0
- package/dist/react-native/api/widgets/index.js +4 -0
- package/dist/react-native/api/widgets/index.js.map +1 -0
- package/dist/react-native/api/widgets/operations.d.ts +27 -0
- package/dist/react-native/api/widgets/operations.js +162 -0
- package/dist/react-native/api/widgets/operations.js.map +1 -0
- package/dist/react-native/api/widgets/options.d.ts +21 -0
- package/dist/react-native/api/widgets/options.js +4 -0
- package/dist/react-native/api/widgets/options.js.map +1 -0
- package/dist/react-native/classic/index.d.ts +2 -0
- package/dist/react-native/classic/index.js +4 -0
- package/dist/react-native/classic/index.js.map +1 -0
- package/dist/react-native/classic/widgets/index.d.ts +20 -0
- package/dist/react-native/classic/widgets/index.js +18 -0
- package/dist/react-native/classic/widgets/index.js.map +1 -0
- package/dist/react-native/index.d.ts +8 -1
- package/dist/react-native/index.js +3 -1
- package/dist/react-native/index.js.map +1 -1
- package/dist/react-native/logger.d.ts +0 -5
- package/dist/react-native/logger.js +0 -5
- package/dist/react-native/logger.js.map +1 -1
- package/dist/react-native/models/index.d.ts +2 -0
- package/dist/react-native/models/index.js +4 -0
- package/dist/react-native/models/index.js.map +1 -0
- package/dist/react-native/models/models.d.ts +74 -0
- package/dist/react-native/models/models.js +73 -0
- package/dist/react-native/models/models.js.map +1 -0
- package/dist/react-native/restorePollerHelpers.d.ts +21 -0
- package/dist/react-native/restorePollerHelpers.js +95 -0
- package/dist/react-native/restorePollerHelpers.js.map +1 -0
- package/dist/react-native/static-helpers/pagingHelpers.d.ts +72 -0
- package/dist/react-native/static-helpers/pagingHelpers.js +118 -0
- package/dist/react-native/static-helpers/pagingHelpers.js.map +1 -0
- package/dist/react-native/static-helpers/pollingHelpers.d.ts +30 -0
- package/dist/react-native/static-helpers/pollingHelpers.js +79 -0
- package/dist/react-native/static-helpers/pollingHelpers.js.map +1 -0
- package/dist/react-native/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/react-native/static-helpers/urlTemplate.js +185 -0
- package/dist/react-native/static-helpers/urlTemplate.js.map +1 -0
- package/dist/react-native/widgetAnalyticsClient.d.ts +19 -0
- package/dist/react-native/widgetAnalyticsClient.js +31 -0
- package/dist/react-native/widgetAnalyticsClient.js.map +1 -0
- package/package.json +139 -84
- package/dist/browser/configurationClient.d.ts +0 -64
- package/dist/browser/configurationClient.d.ts.map +0 -1
- package/dist/browser/configurationClient.js +0 -96
- package/dist/browser/configurationClient.js.map +0 -1
- package/dist/browser/constants.d.ts +0 -2
- package/dist/browser/constants.d.ts.map +0 -1
- package/dist/browser/constants.js +0 -4
- package/dist/browser/constants.js.map +0 -1
- package/dist/browser/generated/generatedClient.d.ts +0 -168
- package/dist/browser/generated/generatedClient.d.ts.map +0 -1
- package/dist/browser/generated/generatedClient.js +0 -866
- package/dist/browser/generated/generatedClient.js.map +0 -1
- package/dist/browser/generated/generatedClientContext.d.ts +0 -15
- package/dist/browser/generated/generatedClientContext.d.ts.map +0 -1
- package/dist/browser/generated/generatedClientContext.js +0 -49
- package/dist/browser/generated/generatedClientContext.js.map +0 -1
- package/dist/browser/generated/index.d.ts +0 -4
- package/dist/browser/generated/index.d.ts.map +0 -1
- package/dist/browser/generated/index.js +0 -11
- package/dist/browser/generated/index.js.map +0 -1
- package/dist/browser/generated/lroImpl.d.ts +0 -16
- package/dist/browser/generated/lroImpl.d.ts.map +0 -1
- package/dist/browser/generated/lroImpl.js +0 -33
- package/dist/browser/generated/lroImpl.js.map +0 -1
- package/dist/browser/generated/models/index.d.ts +0 -775
- package/dist/browser/generated/models/index.d.ts.map +0 -1
- package/dist/browser/generated/models/index.js +0 -54
- package/dist/browser/generated/models/index.js.map +0 -1
- package/dist/browser/generated/models/mappers.d.ts +0 -41
- package/dist/browser/generated/models/mappers.d.ts.map +0 -1
- package/dist/browser/generated/models/mappers.js +0 -949
- package/dist/browser/generated/models/mappers.js.map +0 -1
- package/dist/browser/generated/models/parameters.d.ts +0 -35
- package/dist/browser/generated/models/parameters.d.ts.map +0 -1
- package/dist/browser/generated/models/parameters.js +0 -348
- package/dist/browser/generated/models/parameters.js.map +0 -1
- package/dist/browser/index.d.ts.map +0 -1
- package/dist/browser/logger.d.ts.map +0 -1
- package/dist/browser/util.d.ts +0 -12
- package/dist/browser/util.d.ts.map +0 -1
- package/dist/browser/util.js +0 -26
- package/dist/browser/util.js.map +0 -1
- package/dist/commonjs/configurationClient.d.ts +0 -64
- package/dist/commonjs/configurationClient.d.ts.map +0 -1
- package/dist/commonjs/configurationClient.js +0 -100
- package/dist/commonjs/configurationClient.js.map +0 -1
- package/dist/commonjs/constants.d.ts +0 -2
- package/dist/commonjs/constants.d.ts.map +0 -1
- package/dist/commonjs/constants.js.map +0 -1
- package/dist/commonjs/generated/generatedClient.d.ts +0 -168
- package/dist/commonjs/generated/generatedClient.d.ts.map +0 -1
- package/dist/commonjs/generated/generatedClient.js +0 -871
- package/dist/commonjs/generated/generatedClient.js.map +0 -1
- package/dist/commonjs/generated/generatedClientContext.d.ts +0 -15
- package/dist/commonjs/generated/generatedClientContext.d.ts.map +0 -1
- package/dist/commonjs/generated/generatedClientContext.js +0 -54
- package/dist/commonjs/generated/generatedClientContext.js.map +0 -1
- package/dist/commonjs/generated/index.d.ts +0 -4
- package/dist/commonjs/generated/index.d.ts.map +0 -1
- package/dist/commonjs/generated/index.js +0 -17
- package/dist/commonjs/generated/index.js.map +0 -1
- package/dist/commonjs/generated/lroImpl.d.ts +0 -16
- package/dist/commonjs/generated/lroImpl.d.ts.map +0 -1
- package/dist/commonjs/generated/lroImpl.js +0 -37
- package/dist/commonjs/generated/lroImpl.js.map +0 -1
- package/dist/commonjs/generated/models/index.d.ts +0 -775
- package/dist/commonjs/generated/models/index.d.ts.map +0 -1
- package/dist/commonjs/generated/models/index.js +0 -57
- package/dist/commonjs/generated/models/index.js.map +0 -1
- package/dist/commonjs/generated/models/mappers.d.ts +0 -41
- package/dist/commonjs/generated/models/mappers.d.ts.map +0 -1
- package/dist/commonjs/generated/models/mappers.js +0 -952
- package/dist/commonjs/generated/models/mappers.js.map +0 -1
- package/dist/commonjs/generated/models/parameters.d.ts +0 -35
- package/dist/commonjs/generated/models/parameters.d.ts.map +0 -1
- package/dist/commonjs/generated/models/parameters.js +0 -351
- package/dist/commonjs/generated/models/parameters.js.map +0 -1
- package/dist/commonjs/index.d.ts.map +0 -1
- package/dist/commonjs/logger.d.ts.map +0 -1
- package/dist/commonjs/util.d.ts +0 -12
- package/dist/commonjs/util.d.ts.map +0 -1
- package/dist/commonjs/util.js +0 -29
- package/dist/commonjs/util.js.map +0 -1
- package/dist/esm/configurationClient.d.ts +0 -64
- package/dist/esm/configurationClient.d.ts.map +0 -1
- package/dist/esm/configurationClient.js +0 -96
- package/dist/esm/configurationClient.js.map +0 -1
- package/dist/esm/constants.d.ts +0 -2
- package/dist/esm/constants.d.ts.map +0 -1
- package/dist/esm/constants.js +0 -4
- package/dist/esm/constants.js.map +0 -1
- package/dist/esm/generated/generatedClient.d.ts +0 -168
- package/dist/esm/generated/generatedClient.d.ts.map +0 -1
- package/dist/esm/generated/generatedClient.js +0 -866
- package/dist/esm/generated/generatedClient.js.map +0 -1
- package/dist/esm/generated/generatedClientContext.d.ts +0 -15
- package/dist/esm/generated/generatedClientContext.d.ts.map +0 -1
- package/dist/esm/generated/generatedClientContext.js +0 -49
- package/dist/esm/generated/generatedClientContext.js.map +0 -1
- package/dist/esm/generated/index.d.ts +0 -4
- package/dist/esm/generated/index.d.ts.map +0 -1
- package/dist/esm/generated/index.js +0 -11
- package/dist/esm/generated/index.js.map +0 -1
- package/dist/esm/generated/lroImpl.d.ts +0 -16
- package/dist/esm/generated/lroImpl.d.ts.map +0 -1
- package/dist/esm/generated/lroImpl.js +0 -33
- package/dist/esm/generated/lroImpl.js.map +0 -1
- package/dist/esm/generated/models/index.d.ts +0 -775
- package/dist/esm/generated/models/index.d.ts.map +0 -1
- package/dist/esm/generated/models/index.js +0 -54
- package/dist/esm/generated/models/index.js.map +0 -1
- package/dist/esm/generated/models/mappers.d.ts +0 -41
- package/dist/esm/generated/models/mappers.d.ts.map +0 -1
- package/dist/esm/generated/models/mappers.js +0 -949
- package/dist/esm/generated/models/mappers.js.map +0 -1
- package/dist/esm/generated/models/parameters.d.ts +0 -35
- package/dist/esm/generated/models/parameters.d.ts.map +0 -1
- package/dist/esm/generated/models/parameters.js +0 -348
- package/dist/esm/generated/models/parameters.js.map +0 -1
- package/dist/esm/index.d.ts.map +0 -1
- package/dist/esm/logger.d.ts.map +0 -1
- package/dist/esm/util.d.ts +0 -12
- package/dist/esm/util.d.ts.map +0 -1
- package/dist/esm/util.js +0 -26
- package/dist/esm/util.js.map +0 -1
- package/dist/react-native/configurationClient.d.ts +0 -64
- package/dist/react-native/configurationClient.d.ts.map +0 -1
- package/dist/react-native/configurationClient.js +0 -96
- package/dist/react-native/configurationClient.js.map +0 -1
- package/dist/react-native/constants.d.ts +0 -2
- package/dist/react-native/constants.d.ts.map +0 -1
- package/dist/react-native/constants.js +0 -4
- package/dist/react-native/constants.js.map +0 -1
- package/dist/react-native/generated/generatedClient.d.ts +0 -168
- package/dist/react-native/generated/generatedClient.d.ts.map +0 -1
- package/dist/react-native/generated/generatedClient.js +0 -866
- package/dist/react-native/generated/generatedClient.js.map +0 -1
- package/dist/react-native/generated/generatedClientContext.d.ts +0 -15
- package/dist/react-native/generated/generatedClientContext.d.ts.map +0 -1
- package/dist/react-native/generated/generatedClientContext.js +0 -49
- package/dist/react-native/generated/generatedClientContext.js.map +0 -1
- package/dist/react-native/generated/index.d.ts +0 -4
- package/dist/react-native/generated/index.d.ts.map +0 -1
- package/dist/react-native/generated/index.js +0 -11
- package/dist/react-native/generated/index.js.map +0 -1
- package/dist/react-native/generated/lroImpl.d.ts +0 -16
- package/dist/react-native/generated/lroImpl.d.ts.map +0 -1
- package/dist/react-native/generated/lroImpl.js +0 -33
- package/dist/react-native/generated/lroImpl.js.map +0 -1
- package/dist/react-native/generated/models/index.d.ts +0 -775
- package/dist/react-native/generated/models/index.d.ts.map +0 -1
- package/dist/react-native/generated/models/index.js +0 -54
- package/dist/react-native/generated/models/index.js.map +0 -1
- package/dist/react-native/generated/models/mappers.d.ts +0 -41
- package/dist/react-native/generated/models/mappers.d.ts.map +0 -1
- package/dist/react-native/generated/models/mappers.js +0 -949
- package/dist/react-native/generated/models/mappers.js.map +0 -1
- package/dist/react-native/generated/models/parameters.d.ts +0 -35
- package/dist/react-native/generated/models/parameters.d.ts.map +0 -1
- package/dist/react-native/generated/models/parameters.js +0 -348
- package/dist/react-native/generated/models/parameters.js.map +0 -1
- package/dist/react-native/index.d.ts.map +0 -1
- package/dist/react-native/logger.d.ts.map +0 -1
- package/dist/react-native/util.d.ts +0 -12
- package/dist/react-native/util.d.ts.map +0 -1
- package/dist/react-native/util.js +0 -26
- package/dist/react-native/util.js.map +0 -1
|
@@ -1,775 +0,0 @@
|
|
|
1
|
-
import * as coreClient from "@azure/core-client";
|
|
2
|
-
/** The result of a list request. */
|
|
3
|
-
export interface KeyListResult {
|
|
4
|
-
/** The collection value. */
|
|
5
|
-
items?: Key[];
|
|
6
|
-
/** The URI that can be used to request the next set of paged results. */
|
|
7
|
-
nextLink?: string;
|
|
8
|
-
}
|
|
9
|
-
export interface Key {
|
|
10
|
-
/**
|
|
11
|
-
* The name of the key.
|
|
12
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
13
|
-
*/
|
|
14
|
-
readonly name?: string;
|
|
15
|
-
}
|
|
16
|
-
/** Azure App Configuration error object. */
|
|
17
|
-
export interface ErrorModel {
|
|
18
|
-
/** The type of the error. */
|
|
19
|
-
type?: string;
|
|
20
|
-
/** A brief summary of the error. */
|
|
21
|
-
title?: string;
|
|
22
|
-
/** The name of the parameter that resulted in the error. */
|
|
23
|
-
name?: string;
|
|
24
|
-
/** A detailed description of the error. */
|
|
25
|
-
detail?: string;
|
|
26
|
-
/** The HTTP status code that the error maps to. */
|
|
27
|
-
status?: number;
|
|
28
|
-
}
|
|
29
|
-
/** The result of a list request. */
|
|
30
|
-
export interface KeyValueListResult {
|
|
31
|
-
/** The collection value. */
|
|
32
|
-
items?: ConfigurationSetting[];
|
|
33
|
-
/** An identifier representing the returned state of the resource. */
|
|
34
|
-
etag?: string;
|
|
35
|
-
/** The URI that can be used to request the next set of paged results. */
|
|
36
|
-
nextLink?: string;
|
|
37
|
-
}
|
|
38
|
-
export interface ConfigurationSetting {
|
|
39
|
-
/** The key of the key-value. */
|
|
40
|
-
key?: string;
|
|
41
|
-
/** The label the key-value belongs to. */
|
|
42
|
-
label?: string;
|
|
43
|
-
/** The content type of the value stored within the key-value. */
|
|
44
|
-
contentType?: string;
|
|
45
|
-
/** The value of the key-value. */
|
|
46
|
-
value?: string;
|
|
47
|
-
/** A date representing the last time the key-value was modified. */
|
|
48
|
-
lastModified?: Date;
|
|
49
|
-
/** The tags of the key-value */
|
|
50
|
-
tags?: {
|
|
51
|
-
[propertyName: string]: string;
|
|
52
|
-
};
|
|
53
|
-
/** Indicates whether the key-value is locked. */
|
|
54
|
-
isReadOnly?: boolean;
|
|
55
|
-
/** A value representing the current state of the resource. */
|
|
56
|
-
etag?: string;
|
|
57
|
-
}
|
|
58
|
-
/** The result of a snapshot list request. */
|
|
59
|
-
export interface SnapshotListResult {
|
|
60
|
-
/** The collection value. */
|
|
61
|
-
items?: Snapshot[];
|
|
62
|
-
/** The URI that can be used to request the next set of paged results. */
|
|
63
|
-
nextLink?: string;
|
|
64
|
-
}
|
|
65
|
-
export interface Snapshot {
|
|
66
|
-
/**
|
|
67
|
-
* The name of the snapshot.
|
|
68
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
69
|
-
*/
|
|
70
|
-
readonly name?: string;
|
|
71
|
-
/**
|
|
72
|
-
* The current status of the snapshot.
|
|
73
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
74
|
-
*/
|
|
75
|
-
readonly status?: SnapshotStatus;
|
|
76
|
-
/** A list of filters used to filter the key-values included in the snapshot. */
|
|
77
|
-
filters: KeyValueFilter[];
|
|
78
|
-
/** The composition type describes how the key-values within the snapshot are composed. The 'key' composition type ensures there are no two key-values containing the same key. The 'key_label' composition type ensures there are no two key-values containing the same key and label. */
|
|
79
|
-
compositionType?: CompositionType;
|
|
80
|
-
/**
|
|
81
|
-
* The time that the snapshot was created.
|
|
82
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
83
|
-
*/
|
|
84
|
-
readonly created?: Date;
|
|
85
|
-
/**
|
|
86
|
-
* The time that the snapshot will expire.
|
|
87
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
88
|
-
*/
|
|
89
|
-
readonly expires?: Date;
|
|
90
|
-
/** The amount of time, in seconds, that a snapshot will remain in the archived state before expiring. This property is only writable during the creation of a snapshot. If not specified, the default lifetime of key-value revisions will be used. */
|
|
91
|
-
retentionPeriod?: number;
|
|
92
|
-
/**
|
|
93
|
-
* The size in bytes of the snapshot.
|
|
94
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
95
|
-
*/
|
|
96
|
-
readonly size?: number;
|
|
97
|
-
/**
|
|
98
|
-
* The amount of key-values in the snapshot.
|
|
99
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
100
|
-
*/
|
|
101
|
-
readonly itemsCount?: number;
|
|
102
|
-
/** The tags of the snapshot. */
|
|
103
|
-
tags?: {
|
|
104
|
-
[propertyName: string]: string;
|
|
105
|
-
};
|
|
106
|
-
/**
|
|
107
|
-
* A value representing the current state of the snapshot.
|
|
108
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
109
|
-
*/
|
|
110
|
-
readonly etag?: string;
|
|
111
|
-
}
|
|
112
|
-
/** Enables filtering of key-values. */
|
|
113
|
-
export interface KeyValueFilter {
|
|
114
|
-
/** Filters key-values by their key field. */
|
|
115
|
-
key: string;
|
|
116
|
-
/** Filters key-values by their label field. */
|
|
117
|
-
label?: string;
|
|
118
|
-
}
|
|
119
|
-
/** Parameters used to update a snapshot. */
|
|
120
|
-
export interface SnapshotUpdateParameters {
|
|
121
|
-
/** The desired status of the snapshot. */
|
|
122
|
-
status?: SnapshotStatus;
|
|
123
|
-
}
|
|
124
|
-
/** The result of a list request. */
|
|
125
|
-
export interface LabelListResult {
|
|
126
|
-
/** The collection value. */
|
|
127
|
-
items?: Label[];
|
|
128
|
-
/** The URI that can be used to request the next set of paged results. */
|
|
129
|
-
nextLink?: string;
|
|
130
|
-
}
|
|
131
|
-
export interface Label {
|
|
132
|
-
/**
|
|
133
|
-
* The name of the label.
|
|
134
|
-
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
135
|
-
*/
|
|
136
|
-
readonly name?: string;
|
|
137
|
-
}
|
|
138
|
-
/** Details of a long running operation. */
|
|
139
|
-
export interface OperationDetails {
|
|
140
|
-
/** The unique id of the operation. */
|
|
141
|
-
id: string;
|
|
142
|
-
/** The current status of the operation */
|
|
143
|
-
status: State;
|
|
144
|
-
/** An error, available when the status is `Failed`, describing why the operation failed. */
|
|
145
|
-
error?: ErrorDetail;
|
|
146
|
-
}
|
|
147
|
-
/** The details of an error. */
|
|
148
|
-
export interface ErrorDetail {
|
|
149
|
-
/** One of a server-defined set of error codes. */
|
|
150
|
-
code: string;
|
|
151
|
-
/** A human-readable representation of the error. */
|
|
152
|
-
message: string;
|
|
153
|
-
/** An array of details about specific errors that led to this reported error. */
|
|
154
|
-
details?: ErrorDetail[];
|
|
155
|
-
/** An object containing more specific information than the current object about the error. */
|
|
156
|
-
innererror?: InnerError;
|
|
157
|
-
}
|
|
158
|
-
/** An object containing specific information about an error. */
|
|
159
|
-
export interface InnerError {
|
|
160
|
-
/** One of a server-defined set of error codes. */
|
|
161
|
-
code?: string;
|
|
162
|
-
/** An object containing more specific information than the current object about the error. */
|
|
163
|
-
innererror?: InnerError;
|
|
164
|
-
}
|
|
165
|
-
/** Defines headers for GeneratedClient_getKeys operation. */
|
|
166
|
-
export interface GeneratedClientGetKeysHeaders {
|
|
167
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
168
|
-
syncToken?: string;
|
|
169
|
-
}
|
|
170
|
-
/** Defines headers for GeneratedClient_checkKeys operation. */
|
|
171
|
-
export interface GeneratedClientCheckKeysHeaders {
|
|
172
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
173
|
-
syncToken?: string;
|
|
174
|
-
}
|
|
175
|
-
/** Defines headers for GeneratedClient_getKeyValues operation. */
|
|
176
|
-
export interface GeneratedClientGetKeyValuesHeaders {
|
|
177
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
178
|
-
syncToken?: string;
|
|
179
|
-
/** An identifier representing the returned state of the resource. */
|
|
180
|
-
eTag?: string;
|
|
181
|
-
}
|
|
182
|
-
/** Defines headers for GeneratedClient_checkKeyValues operation. */
|
|
183
|
-
export interface GeneratedClientCheckKeyValuesHeaders {
|
|
184
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
185
|
-
syncToken?: string;
|
|
186
|
-
/** An identifier representing the returned state of the resource. */
|
|
187
|
-
eTag?: string;
|
|
188
|
-
}
|
|
189
|
-
/** Defines headers for GeneratedClient_getKeyValue operation. */
|
|
190
|
-
export interface GeneratedClientGetKeyValueHeaders {
|
|
191
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
192
|
-
syncToken?: string;
|
|
193
|
-
/** An identifier representing the returned state of the resource. */
|
|
194
|
-
eTag?: string;
|
|
195
|
-
}
|
|
196
|
-
/** Defines headers for GeneratedClient_putKeyValue operation. */
|
|
197
|
-
export interface GeneratedClientPutKeyValueHeaders {
|
|
198
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
199
|
-
syncToken?: string;
|
|
200
|
-
/** An identifier representing the returned state of the resource. */
|
|
201
|
-
eTag?: string;
|
|
202
|
-
}
|
|
203
|
-
/** Defines headers for GeneratedClient_deleteKeyValue operation. */
|
|
204
|
-
export interface GeneratedClientDeleteKeyValueHeaders {
|
|
205
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
206
|
-
syncToken?: string;
|
|
207
|
-
/** An identifier representing the returned state of the resource. */
|
|
208
|
-
eTag?: string;
|
|
209
|
-
}
|
|
210
|
-
/** Defines headers for GeneratedClient_checkKeyValue operation. */
|
|
211
|
-
export interface GeneratedClientCheckKeyValueHeaders {
|
|
212
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
213
|
-
syncToken?: string;
|
|
214
|
-
/** An identifier representing the returned state of the resource. */
|
|
215
|
-
eTag?: string;
|
|
216
|
-
}
|
|
217
|
-
/** Defines headers for GeneratedClient_getSnapshots operation. */
|
|
218
|
-
export interface GeneratedClientGetSnapshotsHeaders {
|
|
219
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
220
|
-
syncToken?: string;
|
|
221
|
-
}
|
|
222
|
-
/** Defines headers for GeneratedClient_checkSnapshots operation. */
|
|
223
|
-
export interface GeneratedClientCheckSnapshotsHeaders {
|
|
224
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
225
|
-
syncToken?: string;
|
|
226
|
-
}
|
|
227
|
-
/** Defines headers for GeneratedClient_getSnapshot operation. */
|
|
228
|
-
export interface GeneratedClientGetSnapshotHeaders {
|
|
229
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
230
|
-
syncToken?: string;
|
|
231
|
-
/** An identifier representing the returned state of the resource. */
|
|
232
|
-
eTag?: string;
|
|
233
|
-
/** Includes links to related resources. */
|
|
234
|
-
link?: string;
|
|
235
|
-
}
|
|
236
|
-
/** Defines headers for GeneratedClient_createSnapshot operation. */
|
|
237
|
-
export interface GeneratedClientCreateSnapshotHeaders {
|
|
238
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
239
|
-
syncToken?: string;
|
|
240
|
-
/** An identifier representing the returned state of the resource. */
|
|
241
|
-
eTag?: string;
|
|
242
|
-
/** Includes links to related resources. */
|
|
243
|
-
link?: string;
|
|
244
|
-
/** The URL to track the status of the long running operation. */
|
|
245
|
-
operationLocation?: string;
|
|
246
|
-
}
|
|
247
|
-
/** Defines headers for GeneratedClient_updateSnapshot operation. */
|
|
248
|
-
export interface GeneratedClientUpdateSnapshotHeaders {
|
|
249
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
250
|
-
syncToken?: string;
|
|
251
|
-
/** An identifier representing the returned state of the resource. */
|
|
252
|
-
eTag?: string;
|
|
253
|
-
/** Includes links to related resources. */
|
|
254
|
-
link?: string;
|
|
255
|
-
}
|
|
256
|
-
/** Defines headers for GeneratedClient_checkSnapshot operation. */
|
|
257
|
-
export interface GeneratedClientCheckSnapshotHeaders {
|
|
258
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
259
|
-
syncToken?: string;
|
|
260
|
-
/** An identifier representing the returned state of the resource. */
|
|
261
|
-
eTag?: string;
|
|
262
|
-
/** Includes links to related resources. */
|
|
263
|
-
link?: string;
|
|
264
|
-
}
|
|
265
|
-
/** Defines headers for GeneratedClient_getLabels operation. */
|
|
266
|
-
export interface GeneratedClientGetLabelsHeaders {
|
|
267
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
268
|
-
syncToken?: string;
|
|
269
|
-
}
|
|
270
|
-
/** Defines headers for GeneratedClient_checkLabels operation. */
|
|
271
|
-
export interface GeneratedClientCheckLabelsHeaders {
|
|
272
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
273
|
-
syncToken?: string;
|
|
274
|
-
}
|
|
275
|
-
/** Defines headers for GeneratedClient_putLock operation. */
|
|
276
|
-
export interface GeneratedClientPutLockHeaders {
|
|
277
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
278
|
-
syncToken?: string;
|
|
279
|
-
/** An identifier representing the returned state of the resource. */
|
|
280
|
-
eTag?: string;
|
|
281
|
-
}
|
|
282
|
-
/** Defines headers for GeneratedClient_deleteLock operation. */
|
|
283
|
-
export interface GeneratedClientDeleteLockHeaders {
|
|
284
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
285
|
-
syncToken?: string;
|
|
286
|
-
/** An identifier representing the returned state of the resource. */
|
|
287
|
-
eTag?: string;
|
|
288
|
-
}
|
|
289
|
-
/** Defines headers for GeneratedClient_getRevisions operation. */
|
|
290
|
-
export interface GeneratedClientGetRevisionsHeaders {
|
|
291
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
292
|
-
syncToken?: string;
|
|
293
|
-
/** An identifier representing the returned state of the resource. */
|
|
294
|
-
eTag?: string;
|
|
295
|
-
}
|
|
296
|
-
/** Defines headers for GeneratedClient_checkRevisions operation. */
|
|
297
|
-
export interface GeneratedClientCheckRevisionsHeaders {
|
|
298
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
299
|
-
syncToken?: string;
|
|
300
|
-
/** An identifier representing the returned state of the resource. */
|
|
301
|
-
eTag?: string;
|
|
302
|
-
}
|
|
303
|
-
/** Defines headers for GeneratedClient_getKeysNext operation. */
|
|
304
|
-
export interface GeneratedClientGetKeysNextHeaders {
|
|
305
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
306
|
-
syncToken?: string;
|
|
307
|
-
}
|
|
308
|
-
/** Defines headers for GeneratedClient_getKeyValuesNext operation. */
|
|
309
|
-
export interface GeneratedClientGetKeyValuesNextHeaders {
|
|
310
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
311
|
-
syncToken?: string;
|
|
312
|
-
/** An identifier representing the returned state of the resource. */
|
|
313
|
-
eTag?: string;
|
|
314
|
-
}
|
|
315
|
-
/** Defines headers for GeneratedClient_getSnapshotsNext operation. */
|
|
316
|
-
export interface GeneratedClientGetSnapshotsNextHeaders {
|
|
317
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
318
|
-
syncToken?: string;
|
|
319
|
-
}
|
|
320
|
-
/** Defines headers for GeneratedClient_getLabelsNext operation. */
|
|
321
|
-
export interface GeneratedClientGetLabelsNextHeaders {
|
|
322
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
323
|
-
syncToken?: string;
|
|
324
|
-
}
|
|
325
|
-
/** Defines headers for GeneratedClient_getRevisionsNext operation. */
|
|
326
|
-
export interface GeneratedClientGetRevisionsNextHeaders {
|
|
327
|
-
/** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */
|
|
328
|
-
syncToken?: string;
|
|
329
|
-
/** An identifier representing the returned state of the resource. */
|
|
330
|
-
eTag?: string;
|
|
331
|
-
}
|
|
332
|
-
/** Known values of {@link KeyValueFields} that the service accepts. */
|
|
333
|
-
export declare enum KnownKeyValueFields {
|
|
334
|
-
Key = "key",
|
|
335
|
-
Label = "label",
|
|
336
|
-
ContentType = "content_type",
|
|
337
|
-
Value = "value",
|
|
338
|
-
LastModified = "last_modified",
|
|
339
|
-
Tags = "tags",
|
|
340
|
-
Locked = "locked",
|
|
341
|
-
Etag = "etag"
|
|
342
|
-
}
|
|
343
|
-
/**
|
|
344
|
-
* Defines values for KeyValueFields. \
|
|
345
|
-
* {@link KnownKeyValueFields} can be used interchangeably with KeyValueFields,
|
|
346
|
-
* this enum contains the known values that the service supports.
|
|
347
|
-
* ### Known values supported by the service
|
|
348
|
-
* **key** \
|
|
349
|
-
* **label** \
|
|
350
|
-
* **content_type** \
|
|
351
|
-
* **value** \
|
|
352
|
-
* **last_modified** \
|
|
353
|
-
* **tags** \
|
|
354
|
-
* **locked** \
|
|
355
|
-
* **etag**
|
|
356
|
-
*/
|
|
357
|
-
export type KeyValueFields = string;
|
|
358
|
-
/** Known values of {@link SnapshotFields} that the service accepts. */
|
|
359
|
-
export declare enum KnownSnapshotFields {
|
|
360
|
-
Name = "name",
|
|
361
|
-
Status = "status",
|
|
362
|
-
Filters = "filters",
|
|
363
|
-
CompositionType = "composition_type",
|
|
364
|
-
Created = "created",
|
|
365
|
-
Expires = "expires",
|
|
366
|
-
RetentionPeriod = "retention_period",
|
|
367
|
-
Size = "size",
|
|
368
|
-
ItemsCount = "items_count",
|
|
369
|
-
Tags = "tags",
|
|
370
|
-
Etag = "etag"
|
|
371
|
-
}
|
|
372
|
-
/**
|
|
373
|
-
* Defines values for SnapshotFields. \
|
|
374
|
-
* {@link KnownSnapshotFields} can be used interchangeably with SnapshotFields,
|
|
375
|
-
* this enum contains the known values that the service supports.
|
|
376
|
-
* ### Known values supported by the service
|
|
377
|
-
* **name** \
|
|
378
|
-
* **status** \
|
|
379
|
-
* **filters** \
|
|
380
|
-
* **composition_type** \
|
|
381
|
-
* **created** \
|
|
382
|
-
* **expires** \
|
|
383
|
-
* **retention_period** \
|
|
384
|
-
* **size** \
|
|
385
|
-
* **items_count** \
|
|
386
|
-
* **tags** \
|
|
387
|
-
* **etag**
|
|
388
|
-
*/
|
|
389
|
-
export type SnapshotFields = string;
|
|
390
|
-
/** Known values of {@link SnapshotStatus} that the service accepts. */
|
|
391
|
-
export declare enum KnownSnapshotStatus {
|
|
392
|
-
Provisioning = "provisioning",
|
|
393
|
-
Ready = "ready",
|
|
394
|
-
Archived = "archived",
|
|
395
|
-
Failed = "failed"
|
|
396
|
-
}
|
|
397
|
-
/**
|
|
398
|
-
* Defines values for SnapshotStatus. \
|
|
399
|
-
* {@link KnownSnapshotStatus} can be used interchangeably with SnapshotStatus,
|
|
400
|
-
* this enum contains the known values that the service supports.
|
|
401
|
-
* ### Known values supported by the service
|
|
402
|
-
* **provisioning** \
|
|
403
|
-
* **ready** \
|
|
404
|
-
* **archived** \
|
|
405
|
-
* **failed**
|
|
406
|
-
*/
|
|
407
|
-
export type SnapshotStatus = string;
|
|
408
|
-
/** Known values of {@link CompositionType} that the service accepts. */
|
|
409
|
-
export declare enum KnownCompositionType {
|
|
410
|
-
Key = "key",
|
|
411
|
-
KeyLabel = "key_label"
|
|
412
|
-
}
|
|
413
|
-
/**
|
|
414
|
-
* Defines values for CompositionType. \
|
|
415
|
-
* {@link KnownCompositionType} can be used interchangeably with CompositionType,
|
|
416
|
-
* this enum contains the known values that the service supports.
|
|
417
|
-
* ### Known values supported by the service
|
|
418
|
-
* **key** \
|
|
419
|
-
* **key_label**
|
|
420
|
-
*/
|
|
421
|
-
export type CompositionType = string;
|
|
422
|
-
/** Known values of {@link LabelFields} that the service accepts. */
|
|
423
|
-
export declare enum KnownLabelFields {
|
|
424
|
-
Name = "name"
|
|
425
|
-
}
|
|
426
|
-
/**
|
|
427
|
-
* Defines values for LabelFields. \
|
|
428
|
-
* {@link KnownLabelFields} can be used interchangeably with LabelFields,
|
|
429
|
-
* this enum contains the known values that the service supports.
|
|
430
|
-
* ### Known values supported by the service
|
|
431
|
-
* **name**
|
|
432
|
-
*/
|
|
433
|
-
export type LabelFields = string;
|
|
434
|
-
/** Defines values for State. */
|
|
435
|
-
export type State = "NotStarted" | "Running" | "Succeeded" | "Failed" | "Canceled";
|
|
436
|
-
/** Optional parameters. */
|
|
437
|
-
export interface GetKeysOptionalParams extends coreClient.OperationOptions {
|
|
438
|
-
/** A filter for the name of the returned keys. */
|
|
439
|
-
name?: string;
|
|
440
|
-
/** Instructs the server to return elements that appear after the element referred to by the specified token. */
|
|
441
|
-
after?: string;
|
|
442
|
-
/** Requests the server to respond with the state of the resource at the specified time. */
|
|
443
|
-
acceptDatetime?: string;
|
|
444
|
-
}
|
|
445
|
-
/** Contains response data for the getKeys operation. */
|
|
446
|
-
export type GetKeysResponse = GeneratedClientGetKeysHeaders & KeyListResult;
|
|
447
|
-
/** Optional parameters. */
|
|
448
|
-
export interface CheckKeysOptionalParams extends coreClient.OperationOptions {
|
|
449
|
-
/** A filter for the name of the returned keys. */
|
|
450
|
-
name?: string;
|
|
451
|
-
/** Instructs the server to return elements that appear after the element referred to by the specified token. */
|
|
452
|
-
after?: string;
|
|
453
|
-
/** Requests the server to respond with the state of the resource at the specified time. */
|
|
454
|
-
acceptDatetime?: string;
|
|
455
|
-
}
|
|
456
|
-
/** Contains response data for the checkKeys operation. */
|
|
457
|
-
export type CheckKeysResponse = GeneratedClientCheckKeysHeaders;
|
|
458
|
-
/** Optional parameters. */
|
|
459
|
-
export interface GetKeyValuesOptionalParams extends coreClient.OperationOptions {
|
|
460
|
-
/** Instructs the server to return elements that appear after the element referred to by the specified token. */
|
|
461
|
-
after?: string;
|
|
462
|
-
/** Requests the server to respond with the state of the resource at the specified time. */
|
|
463
|
-
acceptDatetime?: string;
|
|
464
|
-
/** A filter used to match keys. */
|
|
465
|
-
key?: string;
|
|
466
|
-
/** A filter used to match labels */
|
|
467
|
-
label?: string;
|
|
468
|
-
/** Used to select what fields are present in the returned resource(s). */
|
|
469
|
-
select?: KeyValueFields[];
|
|
470
|
-
/** A filter used get key-values for a snapshot. The value should be the name of the snapshot. Not valid when used with 'key' and 'label' filters. */
|
|
471
|
-
snapshot?: string;
|
|
472
|
-
/** Used to perform an operation only if the targeted resource's etag matches the value provided. */
|
|
473
|
-
ifMatch?: string;
|
|
474
|
-
/** Used to perform an operation only if the targeted resource's etag does not match the value provided. */
|
|
475
|
-
ifNoneMatch?: string;
|
|
476
|
-
}
|
|
477
|
-
/** Contains response data for the getKeyValues operation. */
|
|
478
|
-
export type GetKeyValuesResponse = GeneratedClientGetKeyValuesHeaders & KeyValueListResult;
|
|
479
|
-
/** Optional parameters. */
|
|
480
|
-
export interface CheckKeyValuesOptionalParams extends coreClient.OperationOptions {
|
|
481
|
-
/** Instructs the server to return elements that appear after the element referred to by the specified token. */
|
|
482
|
-
after?: string;
|
|
483
|
-
/** Requests the server to respond with the state of the resource at the specified time. */
|
|
484
|
-
acceptDatetime?: string;
|
|
485
|
-
/** A filter used to match keys. */
|
|
486
|
-
key?: string;
|
|
487
|
-
/** A filter used to match labels */
|
|
488
|
-
label?: string;
|
|
489
|
-
/** Used to select what fields are present in the returned resource(s). */
|
|
490
|
-
select?: KeyValueFields[];
|
|
491
|
-
/** A filter used get key-values for a snapshot. Not valid when used with 'key' and 'label' filters. */
|
|
492
|
-
snapshot?: string;
|
|
493
|
-
/** Used to perform an operation only if the targeted resource's etag matches the value provided. */
|
|
494
|
-
ifMatch?: string;
|
|
495
|
-
/** Used to perform an operation only if the targeted resource's etag does not match the value provided. */
|
|
496
|
-
ifNoneMatch?: string;
|
|
497
|
-
}
|
|
498
|
-
/** Contains response data for the checkKeyValues operation. */
|
|
499
|
-
export type CheckKeyValuesResponse = GeneratedClientCheckKeyValuesHeaders;
|
|
500
|
-
/** Optional parameters. */
|
|
501
|
-
export interface GetKeyValueOptionalParams extends coreClient.OperationOptions {
|
|
502
|
-
/** Requests the server to respond with the state of the resource at the specified time. */
|
|
503
|
-
acceptDatetime?: string;
|
|
504
|
-
/** The label of the key-value to retrieve. */
|
|
505
|
-
label?: string;
|
|
506
|
-
/** Used to select what fields are present in the returned resource(s). */
|
|
507
|
-
select?: KeyValueFields[];
|
|
508
|
-
/** Used to perform an operation only if the targeted resource's etag matches the value provided. */
|
|
509
|
-
ifMatch?: string;
|
|
510
|
-
/** Used to perform an operation only if the targeted resource's etag does not match the value provided. */
|
|
511
|
-
ifNoneMatch?: string;
|
|
512
|
-
}
|
|
513
|
-
/** Contains response data for the getKeyValue operation. */
|
|
514
|
-
export type GetKeyValueResponse = GeneratedClientGetKeyValueHeaders & ConfigurationSetting;
|
|
515
|
-
/** Optional parameters. */
|
|
516
|
-
export interface PutKeyValueOptionalParams extends coreClient.OperationOptions {
|
|
517
|
-
/** The label of the key-value to create. */
|
|
518
|
-
label?: string;
|
|
519
|
-
/** Used to perform an operation only if the targeted resource's etag matches the value provided. */
|
|
520
|
-
ifMatch?: string;
|
|
521
|
-
/** Used to perform an operation only if the targeted resource's etag does not match the value provided. */
|
|
522
|
-
ifNoneMatch?: string;
|
|
523
|
-
/** The key-value to create. */
|
|
524
|
-
entity?: ConfigurationSetting;
|
|
525
|
-
}
|
|
526
|
-
/** Contains response data for the putKeyValue operation. */
|
|
527
|
-
export type PutKeyValueResponse = GeneratedClientPutKeyValueHeaders & ConfigurationSetting;
|
|
528
|
-
/** Optional parameters. */
|
|
529
|
-
export interface DeleteKeyValueOptionalParams extends coreClient.OperationOptions {
|
|
530
|
-
/** The label of the key-value to delete. */
|
|
531
|
-
label?: string;
|
|
532
|
-
/** Used to perform an operation only if the targeted resource's etag matches the value provided. */
|
|
533
|
-
ifMatch?: string;
|
|
534
|
-
}
|
|
535
|
-
/** Contains response data for the deleteKeyValue operation. */
|
|
536
|
-
export type DeleteKeyValueResponse = GeneratedClientDeleteKeyValueHeaders & ConfigurationSetting;
|
|
537
|
-
/** Optional parameters. */
|
|
538
|
-
export interface CheckKeyValueOptionalParams extends coreClient.OperationOptions {
|
|
539
|
-
/** Requests the server to respond with the state of the resource at the specified time. */
|
|
540
|
-
acceptDatetime?: string;
|
|
541
|
-
/** The label of the key-value to retrieve. */
|
|
542
|
-
label?: string;
|
|
543
|
-
/** Used to select what fields are present in the returned resource(s). */
|
|
544
|
-
select?: KeyValueFields[];
|
|
545
|
-
/** Used to perform an operation only if the targeted resource's etag matches the value provided. */
|
|
546
|
-
ifMatch?: string;
|
|
547
|
-
/** Used to perform an operation only if the targeted resource's etag does not match the value provided. */
|
|
548
|
-
ifNoneMatch?: string;
|
|
549
|
-
}
|
|
550
|
-
/** Contains response data for the checkKeyValue operation. */
|
|
551
|
-
export type CheckKeyValueResponse = GeneratedClientCheckKeyValueHeaders;
|
|
552
|
-
/** Optional parameters. */
|
|
553
|
-
export interface GetSnapshotsOptionalParams extends coreClient.OperationOptions {
|
|
554
|
-
/** A filter for the name of the returned snapshots. */
|
|
555
|
-
name?: string;
|
|
556
|
-
/** Instructs the server to return elements that appear after the element referred to by the specified token. */
|
|
557
|
-
after?: string;
|
|
558
|
-
/** Used to select what fields are present in the returned resource(s). */
|
|
559
|
-
select?: SnapshotFields[];
|
|
560
|
-
/** Used to filter returned snapshots by their status property. */
|
|
561
|
-
status?: SnapshotStatus[];
|
|
562
|
-
}
|
|
563
|
-
/** Contains response data for the getSnapshots operation. */
|
|
564
|
-
export type GetSnapshotsResponse = GeneratedClientGetSnapshotsHeaders & SnapshotListResult;
|
|
565
|
-
/** Optional parameters. */
|
|
566
|
-
export interface CheckSnapshotsOptionalParams extends coreClient.OperationOptions {
|
|
567
|
-
/** Instructs the server to return elements that appear after the element referred to by the specified token. */
|
|
568
|
-
after?: string;
|
|
569
|
-
}
|
|
570
|
-
/** Contains response data for the checkSnapshots operation. */
|
|
571
|
-
export type CheckSnapshotsResponse = GeneratedClientCheckSnapshotsHeaders;
|
|
572
|
-
/** Optional parameters. */
|
|
573
|
-
export interface GetSnapshotOptionalParams extends coreClient.OperationOptions {
|
|
574
|
-
/** Used to perform an operation only if the targeted resource's etag matches the value provided. */
|
|
575
|
-
ifMatch?: string;
|
|
576
|
-
/** Used to perform an operation only if the targeted resource's etag does not match the value provided. */
|
|
577
|
-
ifNoneMatch?: string;
|
|
578
|
-
/** Used to select what fields are present in the returned resource(s). */
|
|
579
|
-
select?: SnapshotFields[];
|
|
580
|
-
}
|
|
581
|
-
/** Contains response data for the getSnapshot operation. */
|
|
582
|
-
export type GetSnapshotResponse = GeneratedClientGetSnapshotHeaders & Snapshot;
|
|
583
|
-
/** Optional parameters. */
|
|
584
|
-
export interface CreateSnapshotOptionalParams extends coreClient.OperationOptions {
|
|
585
|
-
/** Delay to wait until next poll, in milliseconds. */
|
|
586
|
-
updateIntervalInMs?: number;
|
|
587
|
-
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
588
|
-
resumeFrom?: string;
|
|
589
|
-
}
|
|
590
|
-
/** Contains response data for the createSnapshot operation. */
|
|
591
|
-
export type CreateSnapshotResponse = GeneratedClientCreateSnapshotHeaders & Snapshot;
|
|
592
|
-
/** Optional parameters. */
|
|
593
|
-
export interface UpdateSnapshotOptionalParams extends coreClient.OperationOptions {
|
|
594
|
-
/** Used to perform an operation only if the targeted resource's etag matches the value provided. */
|
|
595
|
-
ifMatch?: string;
|
|
596
|
-
/** Used to perform an operation only if the targeted resource's etag does not match the value provided. */
|
|
597
|
-
ifNoneMatch?: string;
|
|
598
|
-
}
|
|
599
|
-
/** Contains response data for the updateSnapshot operation. */
|
|
600
|
-
export type UpdateSnapshotResponse = GeneratedClientUpdateSnapshotHeaders & Snapshot;
|
|
601
|
-
/** Optional parameters. */
|
|
602
|
-
export interface CheckSnapshotOptionalParams extends coreClient.OperationOptions {
|
|
603
|
-
/** Used to perform an operation only if the targeted resource's etag matches the value provided. */
|
|
604
|
-
ifMatch?: string;
|
|
605
|
-
/** Used to perform an operation only if the targeted resource's etag does not match the value provided. */
|
|
606
|
-
ifNoneMatch?: string;
|
|
607
|
-
}
|
|
608
|
-
/** Contains response data for the checkSnapshot operation. */
|
|
609
|
-
export type CheckSnapshotResponse = GeneratedClientCheckSnapshotHeaders;
|
|
610
|
-
/** Optional parameters. */
|
|
611
|
-
export interface GetLabelsOptionalParams extends coreClient.OperationOptions {
|
|
612
|
-
/** A filter for the name of the returned labels. */
|
|
613
|
-
name?: string;
|
|
614
|
-
/** Instructs the server to return elements that appear after the element referred to by the specified token. */
|
|
615
|
-
after?: string;
|
|
616
|
-
/** Requests the server to respond with the state of the resource at the specified time. */
|
|
617
|
-
acceptDatetime?: string;
|
|
618
|
-
/** Used to select what fields are present in the returned resource(s). */
|
|
619
|
-
select?: LabelFields[];
|
|
620
|
-
}
|
|
621
|
-
/** Contains response data for the getLabels operation. */
|
|
622
|
-
export type GetLabelsResponse = GeneratedClientGetLabelsHeaders & LabelListResult;
|
|
623
|
-
/** Optional parameters. */
|
|
624
|
-
export interface CheckLabelsOptionalParams extends coreClient.OperationOptions {
|
|
625
|
-
/** A filter for the name of the returned labels. */
|
|
626
|
-
name?: string;
|
|
627
|
-
/** Instructs the server to return elements that appear after the element referred to by the specified token. */
|
|
628
|
-
after?: string;
|
|
629
|
-
/** Requests the server to respond with the state of the resource at the specified time. */
|
|
630
|
-
acceptDatetime?: string;
|
|
631
|
-
/** Used to select what fields are present in the returned resource(s). */
|
|
632
|
-
select?: LabelFields[];
|
|
633
|
-
}
|
|
634
|
-
/** Contains response data for the checkLabels operation. */
|
|
635
|
-
export type CheckLabelsResponse = GeneratedClientCheckLabelsHeaders;
|
|
636
|
-
/** Optional parameters. */
|
|
637
|
-
export interface PutLockOptionalParams extends coreClient.OperationOptions {
|
|
638
|
-
/** The label, if any, of the key-value to lock. */
|
|
639
|
-
label?: string;
|
|
640
|
-
/** Used to perform an operation only if the targeted resource's etag matches the value provided. */
|
|
641
|
-
ifMatch?: string;
|
|
642
|
-
/** Used to perform an operation only if the targeted resource's etag does not match the value provided. */
|
|
643
|
-
ifNoneMatch?: string;
|
|
644
|
-
}
|
|
645
|
-
/** Contains response data for the putLock operation. */
|
|
646
|
-
export type PutLockResponse = GeneratedClientPutLockHeaders & ConfigurationSetting;
|
|
647
|
-
/** Optional parameters. */
|
|
648
|
-
export interface DeleteLockOptionalParams extends coreClient.OperationOptions {
|
|
649
|
-
/** The label, if any, of the key-value to unlock. */
|
|
650
|
-
label?: string;
|
|
651
|
-
/** Used to perform an operation only if the targeted resource's etag matches the value provided. */
|
|
652
|
-
ifMatch?: string;
|
|
653
|
-
/** Used to perform an operation only if the targeted resource's etag does not match the value provided. */
|
|
654
|
-
ifNoneMatch?: string;
|
|
655
|
-
}
|
|
656
|
-
/** Contains response data for the deleteLock operation. */
|
|
657
|
-
export type DeleteLockResponse = GeneratedClientDeleteLockHeaders & ConfigurationSetting;
|
|
658
|
-
/** Optional parameters. */
|
|
659
|
-
export interface GetRevisionsOptionalParams extends coreClient.OperationOptions {
|
|
660
|
-
/** Instructs the server to return elements that appear after the element referred to by the specified token. */
|
|
661
|
-
after?: string;
|
|
662
|
-
/** Requests the server to respond with the state of the resource at the specified time. */
|
|
663
|
-
acceptDatetime?: string;
|
|
664
|
-
/** A filter used to match keys. */
|
|
665
|
-
key?: string;
|
|
666
|
-
/** A filter used to match labels */
|
|
667
|
-
label?: string;
|
|
668
|
-
/** Used to select what fields are present in the returned resource(s). */
|
|
669
|
-
select?: KeyValueFields[];
|
|
670
|
-
}
|
|
671
|
-
/** Contains response data for the getRevisions operation. */
|
|
672
|
-
export type GetRevisionsResponse = GeneratedClientGetRevisionsHeaders & KeyValueListResult;
|
|
673
|
-
/** Optional parameters. */
|
|
674
|
-
export interface CheckRevisionsOptionalParams extends coreClient.OperationOptions {
|
|
675
|
-
/** Instructs the server to return elements that appear after the element referred to by the specified token. */
|
|
676
|
-
after?: string;
|
|
677
|
-
/** Requests the server to respond with the state of the resource at the specified time. */
|
|
678
|
-
acceptDatetime?: string;
|
|
679
|
-
/** A filter used to match keys. */
|
|
680
|
-
key?: string;
|
|
681
|
-
/** A filter used to match labels */
|
|
682
|
-
label?: string;
|
|
683
|
-
/** Used to select what fields are present in the returned resource(s). */
|
|
684
|
-
select?: KeyValueFields[];
|
|
685
|
-
}
|
|
686
|
-
/** Contains response data for the checkRevisions operation. */
|
|
687
|
-
export type CheckRevisionsResponse = GeneratedClientCheckRevisionsHeaders;
|
|
688
|
-
/** Optional parameters. */
|
|
689
|
-
export interface GetOperationDetailsOptionalParams extends coreClient.OperationOptions {
|
|
690
|
-
}
|
|
691
|
-
/** Contains response data for the getOperationDetails operation. */
|
|
692
|
-
export type GetOperationDetailsResponse = OperationDetails;
|
|
693
|
-
/** Optional parameters. */
|
|
694
|
-
export interface GetKeysNextOptionalParams extends coreClient.OperationOptions {
|
|
695
|
-
/** A filter for the name of the returned keys. */
|
|
696
|
-
name?: string;
|
|
697
|
-
/** Instructs the server to return elements that appear after the element referred to by the specified token. */
|
|
698
|
-
after?: string;
|
|
699
|
-
/** Requests the server to respond with the state of the resource at the specified time. */
|
|
700
|
-
acceptDatetime?: string;
|
|
701
|
-
}
|
|
702
|
-
/** Contains response data for the getKeysNext operation. */
|
|
703
|
-
export type GetKeysNextResponse = GeneratedClientGetKeysNextHeaders & KeyListResult;
|
|
704
|
-
/** Optional parameters. */
|
|
705
|
-
export interface GetKeyValuesNextOptionalParams extends coreClient.OperationOptions {
|
|
706
|
-
/** Instructs the server to return elements that appear after the element referred to by the specified token. */
|
|
707
|
-
after?: string;
|
|
708
|
-
/** Requests the server to respond with the state of the resource at the specified time. */
|
|
709
|
-
acceptDatetime?: string;
|
|
710
|
-
/** A filter used to match keys. */
|
|
711
|
-
key?: string;
|
|
712
|
-
/** A filter used to match labels */
|
|
713
|
-
label?: string;
|
|
714
|
-
/** Used to select what fields are present in the returned resource(s). */
|
|
715
|
-
select?: KeyValueFields[];
|
|
716
|
-
/** A filter used get key-values for a snapshot. The value should be the name of the snapshot. Not valid when used with 'key' and 'label' filters. */
|
|
717
|
-
snapshot?: string;
|
|
718
|
-
/** Used to perform an operation only if the targeted resource's etag matches the value provided. */
|
|
719
|
-
ifMatch?: string;
|
|
720
|
-
/** Used to perform an operation only if the targeted resource's etag does not match the value provided. */
|
|
721
|
-
ifNoneMatch?: string;
|
|
722
|
-
}
|
|
723
|
-
/** Contains response data for the getKeyValuesNext operation. */
|
|
724
|
-
export type GetKeyValuesNextResponse = GeneratedClientGetKeyValuesNextHeaders & KeyValueListResult;
|
|
725
|
-
/** Optional parameters. */
|
|
726
|
-
export interface GetSnapshotsNextOptionalParams extends coreClient.OperationOptions {
|
|
727
|
-
/** A filter for the name of the returned snapshots. */
|
|
728
|
-
name?: string;
|
|
729
|
-
/** Instructs the server to return elements that appear after the element referred to by the specified token. */
|
|
730
|
-
after?: string;
|
|
731
|
-
/** Used to select what fields are present in the returned resource(s). */
|
|
732
|
-
select?: SnapshotFields[];
|
|
733
|
-
/** Used to filter returned snapshots by their status property. */
|
|
734
|
-
status?: SnapshotStatus[];
|
|
735
|
-
}
|
|
736
|
-
/** Contains response data for the getSnapshotsNext operation. */
|
|
737
|
-
export type GetSnapshotsNextResponse = GeneratedClientGetSnapshotsNextHeaders & SnapshotListResult;
|
|
738
|
-
/** Optional parameters. */
|
|
739
|
-
export interface GetLabelsNextOptionalParams extends coreClient.OperationOptions {
|
|
740
|
-
/** A filter for the name of the returned labels. */
|
|
741
|
-
name?: string;
|
|
742
|
-
/** Instructs the server to return elements that appear after the element referred to by the specified token. */
|
|
743
|
-
after?: string;
|
|
744
|
-
/** Requests the server to respond with the state of the resource at the specified time. */
|
|
745
|
-
acceptDatetime?: string;
|
|
746
|
-
/** Used to select what fields are present in the returned resource(s). */
|
|
747
|
-
select?: LabelFields[];
|
|
748
|
-
}
|
|
749
|
-
/** Contains response data for the getLabelsNext operation. */
|
|
750
|
-
export type GetLabelsNextResponse = GeneratedClientGetLabelsNextHeaders & LabelListResult;
|
|
751
|
-
/** Optional parameters. */
|
|
752
|
-
export interface GetRevisionsNextOptionalParams extends coreClient.OperationOptions {
|
|
753
|
-
/** Instructs the server to return elements that appear after the element referred to by the specified token. */
|
|
754
|
-
after?: string;
|
|
755
|
-
/** Requests the server to respond with the state of the resource at the specified time. */
|
|
756
|
-
acceptDatetime?: string;
|
|
757
|
-
/** A filter used to match keys. */
|
|
758
|
-
key?: string;
|
|
759
|
-
/** A filter used to match labels */
|
|
760
|
-
label?: string;
|
|
761
|
-
/** Used to select what fields are present in the returned resource(s). */
|
|
762
|
-
select?: KeyValueFields[];
|
|
763
|
-
}
|
|
764
|
-
/** Contains response data for the getRevisionsNext operation. */
|
|
765
|
-
export type GetRevisionsNextResponse = GeneratedClientGetRevisionsNextHeaders & KeyValueListResult;
|
|
766
|
-
/** Optional parameters. */
|
|
767
|
-
export interface GeneratedClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
768
|
-
/** Used to guarantee real-time consistency between requests. */
|
|
769
|
-
syncToken?: string;
|
|
770
|
-
/** Api Version */
|
|
771
|
-
apiVersion?: string;
|
|
772
|
-
/** Overrides client endpoint. */
|
|
773
|
-
endpoint?: string;
|
|
774
|
-
}
|
|
775
|
-
//# sourceMappingURL=index.d.ts.map
|