@azure/arm-kubernetesconfiguration-fluxconfigurations 1.0.0-alpha.20250718.1 → 1.0.0-alpha.20250730.1
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/browser/fluxConfigurationClient.js +14 -5
- package/dist/browser/fluxConfigurationClient.js.map +1 -1
- package/dist/browser/lroImpl.js +7 -3
- package/dist/browser/lroImpl.js.map +1 -1
- package/dist/browser/models/mappers.js +48 -23
- package/dist/browser/models/mappers.js.map +1 -1
- package/dist/browser/operations/fluxConfigOperationStatus.js +1 -0
- package/dist/browser/operations/fluxConfigOperationStatus.js.map +1 -1
- package/dist/browser/operations/fluxConfigurations.js +56 -58
- package/dist/browser/operations/fluxConfigurations.js.map +1 -1
- package/dist/browser/pagingHelper.js +2 -4
- package/dist/browser/pagingHelper.js.map +1 -1
- package/dist/commonjs/fluxConfigurationClient.js +14 -5
- package/dist/commonjs/fluxConfigurationClient.js.map +1 -1
- package/dist/commonjs/lroImpl.js +7 -3
- package/dist/commonjs/lroImpl.js.map +1 -1
- package/dist/commonjs/models/mappers.js +48 -23
- package/dist/commonjs/models/mappers.js.map +1 -1
- package/dist/commonjs/operations/fluxConfigOperationStatus.js +1 -0
- package/dist/commonjs/operations/fluxConfigOperationStatus.js.map +1 -1
- package/dist/commonjs/operations/fluxConfigurations.js +56 -57
- package/dist/commonjs/operations/fluxConfigurations.js.map +1 -1
- package/dist/commonjs/pagingHelper.js +2 -4
- package/dist/commonjs/pagingHelper.js.map +1 -1
- package/dist/commonjs/tsdoc-metadata.json +1 -1
- package/dist/esm/fluxConfigurationClient.js +14 -5
- package/dist/esm/fluxConfigurationClient.js.map +1 -1
- package/dist/esm/lroImpl.js +7 -3
- package/dist/esm/lroImpl.js.map +1 -1
- package/dist/esm/models/mappers.js +48 -23
- package/dist/esm/models/mappers.js.map +1 -1
- package/dist/esm/operations/fluxConfigOperationStatus.js +1 -0
- package/dist/esm/operations/fluxConfigOperationStatus.js.map +1 -1
- package/dist/esm/operations/fluxConfigurations.js +56 -58
- package/dist/esm/operations/fluxConfigurations.js.map +1 -1
- package/dist/esm/pagingHelper.js +2 -4
- package/dist/esm/pagingHelper.js.map +1 -1
- package/dist/react-native/fluxConfigurationClient.js +14 -5
- package/dist/react-native/fluxConfigurationClient.js.map +1 -1
- package/dist/react-native/lroImpl.js +7 -3
- package/dist/react-native/lroImpl.js.map +1 -1
- package/dist/react-native/models/mappers.js +48 -23
- package/dist/react-native/models/mappers.js.map +1 -1
- package/dist/react-native/operations/fluxConfigOperationStatus.js +1 -0
- package/dist/react-native/operations/fluxConfigOperationStatus.js.map +1 -1
- package/dist/react-native/operations/fluxConfigurations.js +56 -58
- package/dist/react-native/operations/fluxConfigurations.js.map +1 -1
- package/dist/react-native/pagingHelper.js +2 -4
- package/dist/react-native/pagingHelper.js.map +1 -1
- package/package.json +2 -2
|
@@ -9,6 +9,9 @@ import * as coreClient from "@azure/core-client";
|
|
|
9
9
|
import * as coreRestPipeline from "@azure/core-rest-pipeline";
|
|
10
10
|
import { FluxConfigurationsImpl, FluxConfigOperationStatusImpl } from "./operations/index.js";
|
|
11
11
|
export class FluxConfigurationClient extends coreClient.ServiceClient {
|
|
12
|
+
$host;
|
|
13
|
+
subscriptionId;
|
|
14
|
+
apiVersion;
|
|
12
15
|
/**
|
|
13
16
|
* Initializes a new instance of the FluxConfigurationClient class.
|
|
14
17
|
* @param credentials Subscription credentials which uniquely identify client subscription.
|
|
@@ -16,7 +19,6 @@ export class FluxConfigurationClient extends coreClient.ServiceClient {
|
|
|
16
19
|
* @param options The parameter options
|
|
17
20
|
*/
|
|
18
21
|
constructor(credentials, subscriptionId, options) {
|
|
19
|
-
var _a, _b, _c;
|
|
20
22
|
if (credentials === undefined) {
|
|
21
23
|
throw new Error("'credentials' cannot be null");
|
|
22
24
|
}
|
|
@@ -35,12 +37,17 @@ export class FluxConfigurationClient extends coreClient.ServiceClient {
|
|
|
35
37
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
36
38
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
|
37
39
|
: `${packageDetails}`;
|
|
38
|
-
const optionsWithDefaults =
|
|
40
|
+
const optionsWithDefaults = {
|
|
41
|
+
...defaults,
|
|
42
|
+
...options,
|
|
43
|
+
userAgentOptions: {
|
|
39
44
|
userAgentPrefix,
|
|
40
|
-
},
|
|
45
|
+
},
|
|
46
|
+
endpoint: options.endpoint ?? options.baseUri ?? "https://management.azure.com",
|
|
47
|
+
};
|
|
41
48
|
super(optionsWithDefaults);
|
|
42
49
|
let bearerTokenAuthenticationPolicyFound = false;
|
|
43
|
-
if (
|
|
50
|
+
if (options?.pipeline && options.pipeline.getOrderedPolicies().length > 0) {
|
|
44
51
|
const pipelinePolicies = options.pipeline.getOrderedPolicies();
|
|
45
52
|
bearerTokenAuthenticationPolicyFound = pipelinePolicies.some((pipelinePolicy) => pipelinePolicy.name === coreRestPipeline.bearerTokenAuthenticationPolicyName);
|
|
46
53
|
}
|
|
@@ -53,7 +60,7 @@ export class FluxConfigurationClient extends coreClient.ServiceClient {
|
|
|
53
60
|
});
|
|
54
61
|
this.pipeline.addPolicy(coreRestPipeline.bearerTokenAuthenticationPolicy({
|
|
55
62
|
credential: credentials,
|
|
56
|
-
scopes:
|
|
63
|
+
scopes: optionsWithDefaults.credentialScopes ?? `${optionsWithDefaults.endpoint}/.default`,
|
|
57
64
|
challengeCallbacks: {
|
|
58
65
|
authorizeRequestOnChallenge: coreClient.authorizeRequestOnClaimChallenge,
|
|
59
66
|
},
|
|
@@ -93,5 +100,7 @@ export class FluxConfigurationClient extends coreClient.ServiceClient {
|
|
|
93
100
|
};
|
|
94
101
|
this.pipeline.addPolicy(apiVersionPolicy);
|
|
95
102
|
}
|
|
103
|
+
fluxConfigurations;
|
|
104
|
+
fluxConfigOperationStatus;
|
|
96
105
|
}
|
|
97
106
|
//# sourceMappingURL=fluxConfigurationClient.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fluxConfigurationClient.js","sourceRoot":"","sources":["../../src/fluxConfigurationClient.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,gBAAgB,MAAM,2BAA2B,CAAC;AAG9D,OAAO,EAAE,sBAAsB,EAAE,6BAA6B,EAAE,MAAM,uBAAuB,CAAC;AAI9F,MAAM,OAAO,uBAAwB,SAAQ,UAAU,CAAC,aAAa;
|
|
1
|
+
{"version":3,"file":"fluxConfigurationClient.js","sourceRoot":"","sources":["../../src/fluxConfigurationClient.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\nimport * as coreRestPipeline from \"@azure/core-rest-pipeline\";\nimport { PipelineRequest, PipelineResponse, SendRequest } from \"@azure/core-rest-pipeline\";\nimport * as coreAuth from \"@azure/core-auth\";\nimport { FluxConfigurationsImpl, FluxConfigOperationStatusImpl } from \"./operations/index.js\";\nimport { FluxConfigurations, FluxConfigOperationStatus } from \"./operationsInterfaces/index.js\";\nimport { FluxConfigurationClientOptionalParams } from \"./models/index.js\";\n\nexport class FluxConfigurationClient extends coreClient.ServiceClient {\n $host: string;\n subscriptionId: string;\n apiVersion: string;\n\n /**\n * Initializes a new instance of the FluxConfigurationClient class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param subscriptionId The ID of the target subscription.\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n subscriptionId: string,\n options?: FluxConfigurationClientOptionalParams,\n ) {\n if (credentials === undefined) {\n throw new Error(\"'credentials' cannot be null\");\n }\n if (subscriptionId === undefined) {\n throw new Error(\"'subscriptionId' cannot be null\");\n }\n\n // Initializing default values for options\n if (!options) {\n options = {};\n }\n const defaults: FluxConfigurationClientOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials,\n };\n\n const packageDetails = `azsdk-js-arm-kubernetesconfiguration-fluxconfigurations/1.0.0-beta.1`;\n const userAgentPrefix =\n options.userAgentOptions && options.userAgentOptions.userAgentPrefix\n ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`\n : `${packageDetails}`;\n\n const optionsWithDefaults = {\n ...defaults,\n ...options,\n userAgentOptions: {\n userAgentPrefix,\n },\n endpoint: options.endpoint ?? options.baseUri ?? \"https://management.azure.com\",\n };\n super(optionsWithDefaults);\n\n let bearerTokenAuthenticationPolicyFound: boolean = false;\n if (options?.pipeline && options.pipeline.getOrderedPolicies().length > 0) {\n const pipelinePolicies: coreRestPipeline.PipelinePolicy[] =\n options.pipeline.getOrderedPolicies();\n bearerTokenAuthenticationPolicyFound = pipelinePolicies.some(\n (pipelinePolicy) =>\n pipelinePolicy.name === coreRestPipeline.bearerTokenAuthenticationPolicyName,\n );\n }\n if (\n !options ||\n !options.pipeline ||\n options.pipeline.getOrderedPolicies().length == 0 ||\n !bearerTokenAuthenticationPolicyFound\n ) {\n this.pipeline.removePolicy({\n name: coreRestPipeline.bearerTokenAuthenticationPolicyName,\n });\n this.pipeline.addPolicy(\n coreRestPipeline.bearerTokenAuthenticationPolicy({\n credential: credentials,\n scopes:\n optionsWithDefaults.credentialScopes ?? `${optionsWithDefaults.endpoint}/.default`,\n challengeCallbacks: {\n authorizeRequestOnChallenge: coreClient.authorizeRequestOnClaimChallenge,\n },\n }),\n );\n }\n // Parameter assignments\n this.subscriptionId = subscriptionId;\n\n // Assigning values to Constant parameters\n this.$host = options.$host || \"https://management.azure.com\";\n this.apiVersion = options.apiVersion || \"2025-04-01\";\n this.fluxConfigurations = new FluxConfigurationsImpl(this);\n this.fluxConfigOperationStatus = new FluxConfigOperationStatusImpl(this);\n this.addCustomApiVersionPolicy(options.apiVersion);\n }\n\n /** A function that adds a policy that sets the api-version (or equivalent) to reflect the library version. */\n private addCustomApiVersionPolicy(apiVersion?: string) {\n if (!apiVersion) {\n return;\n }\n const apiVersionPolicy = {\n name: \"CustomApiVersionPolicy\",\n async sendRequest(request: PipelineRequest, next: SendRequest): Promise<PipelineResponse> {\n const param = request.url.split(\"?\");\n if (param.length > 1) {\n const newParams = param[1].split(\"&\").map((item) => {\n if (item.indexOf(\"api-version\") > -1) {\n return \"api-version=\" + apiVersion;\n } else {\n return item;\n }\n });\n request.url = param[0] + \"?\" + newParams.join(\"&\");\n }\n return next(request);\n },\n };\n this.pipeline.addPolicy(apiVersionPolicy);\n }\n\n fluxConfigurations: FluxConfigurations;\n fluxConfigOperationStatus: FluxConfigOperationStatus;\n}\n"]}
|
package/dist/browser/lroImpl.js
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
6
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
7
|
*/
|
|
8
|
-
import { __rest } from "tslib";
|
|
9
8
|
export function createLroSpec(inputs) {
|
|
10
9
|
const { args, spec, sendOperationFn } = inputs;
|
|
11
10
|
return {
|
|
@@ -13,8 +12,13 @@ export function createLroSpec(inputs) {
|
|
|
13
12
|
requestPath: spec.path,
|
|
14
13
|
sendInitialRequest: () => sendOperationFn(args, spec),
|
|
15
14
|
sendPollRequest: (path, options) => {
|
|
16
|
-
const { requestBody
|
|
17
|
-
return sendOperationFn(args,
|
|
15
|
+
const { requestBody, ...restSpec } = spec;
|
|
16
|
+
return sendOperationFn(args, {
|
|
17
|
+
...restSpec,
|
|
18
|
+
httpMethod: "GET",
|
|
19
|
+
path,
|
|
20
|
+
abortSignal: options?.abortSignal,
|
|
21
|
+
});
|
|
18
22
|
},
|
|
19
23
|
};
|
|
20
24
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lroImpl.js","sourceRoot":"","sources":["../../src/lroImpl.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG
|
|
1
|
+
{"version":3,"file":"lroImpl.js","sourceRoot":"","sources":["../../src/lroImpl.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAKH,MAAM,UAAU,aAAa,CAAI,MAQhC;IACC,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,eAAe,EAAE,GAAG,MAAM,CAAC;IAC/C,OAAO;QACL,aAAa,EAAE,IAAI,CAAC,UAAU;QAC9B,WAAW,EAAE,IAAI,CAAC,IAAK;QACvB,kBAAkB,EAAE,GAAG,EAAE,CAAC,eAAe,CAAC,IAAI,EAAE,IAAI,CAAC;QACrD,eAAe,EAAE,CAAC,IAAY,EAAE,OAA2C,EAAE,EAAE;YAC7E,MAAM,EAAE,WAAW,EAAE,GAAG,QAAQ,EAAE,GAAG,IAAI,CAAC;YAC1C,OAAO,eAAe,CAAC,IAAI,EAAE;gBAC3B,GAAG,QAAQ;gBACX,UAAU,EAAE,KAAK;gBACjB,IAAI;gBACJ,WAAW,EAAE,OAAO,EAAE,WAAW;aAClC,CAAC,CAAC;QACL,CAAC;KACF,CAAC;AACJ,CAAC","sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { AbortSignalLike } from \"@azure/abort-controller\";\nimport { LongRunningOperation, LroResponse } from \"@azure/core-lro\";\n\nexport function createLroSpec<T>(inputs: {\n sendOperationFn: (args: any, spec: any) => Promise<LroResponse<T>>;\n args: Record<string, unknown>;\n spec: {\n readonly requestBody?: unknown;\n readonly path?: string;\n readonly httpMethod: string;\n } & Record<string, any>;\n}): LongRunningOperation<T> {\n const { args, spec, sendOperationFn } = inputs;\n return {\n requestMethod: spec.httpMethod,\n requestPath: spec.path!,\n sendInitialRequest: () => sendOperationFn(args, spec),\n sendPollRequest: (path: string, options?: { abortSignal?: AbortSignalLike }) => {\n const { requestBody, ...restSpec } = spec;\n return sendOperationFn(args, {\n ...restSpec,\n httpMethod: \"GET\",\n path,\n abortSignal: options?.abortSignal,\n });\n },\n };\n}\n"]}
|
|
@@ -1759,67 +1759,80 @@ export const ProxyResource = {
|
|
|
1759
1759
|
type: {
|
|
1760
1760
|
name: "Composite",
|
|
1761
1761
|
className: "ProxyResource",
|
|
1762
|
-
modelProperties:
|
|
1762
|
+
modelProperties: {
|
|
1763
|
+
...Resource.type.modelProperties,
|
|
1764
|
+
},
|
|
1763
1765
|
},
|
|
1764
1766
|
};
|
|
1765
1767
|
export const FluxConfiguration = {
|
|
1766
1768
|
type: {
|
|
1767
1769
|
name: "Composite",
|
|
1768
1770
|
className: "FluxConfiguration",
|
|
1769
|
-
modelProperties:
|
|
1771
|
+
modelProperties: {
|
|
1772
|
+
...ProxyResource.type.modelProperties,
|
|
1773
|
+
systemData: {
|
|
1770
1774
|
serializedName: "systemData",
|
|
1771
1775
|
type: {
|
|
1772
1776
|
name: "Composite",
|
|
1773
1777
|
className: "SystemData",
|
|
1774
1778
|
},
|
|
1775
|
-
},
|
|
1779
|
+
},
|
|
1780
|
+
scope: {
|
|
1776
1781
|
defaultValue: "cluster",
|
|
1777
1782
|
serializedName: "properties.scope",
|
|
1778
1783
|
type: {
|
|
1779
1784
|
name: "String",
|
|
1780
1785
|
},
|
|
1781
|
-
},
|
|
1786
|
+
},
|
|
1787
|
+
namespace: {
|
|
1782
1788
|
defaultValue: "default",
|
|
1783
1789
|
serializedName: "properties.namespace",
|
|
1784
1790
|
type: {
|
|
1785
1791
|
name: "String",
|
|
1786
1792
|
},
|
|
1787
|
-
},
|
|
1793
|
+
},
|
|
1794
|
+
sourceKind: {
|
|
1788
1795
|
serializedName: "properties.sourceKind",
|
|
1789
1796
|
type: {
|
|
1790
1797
|
name: "String",
|
|
1791
1798
|
},
|
|
1792
|
-
},
|
|
1799
|
+
},
|
|
1800
|
+
suspend: {
|
|
1793
1801
|
defaultValue: false,
|
|
1794
1802
|
serializedName: "properties.suspend",
|
|
1795
1803
|
type: {
|
|
1796
1804
|
name: "Boolean",
|
|
1797
1805
|
},
|
|
1798
|
-
},
|
|
1806
|
+
},
|
|
1807
|
+
gitRepository: {
|
|
1799
1808
|
serializedName: "properties.gitRepository",
|
|
1800
1809
|
type: {
|
|
1801
1810
|
name: "Composite",
|
|
1802
1811
|
className: "GitRepositoryDefinition",
|
|
1803
1812
|
},
|
|
1804
|
-
},
|
|
1813
|
+
},
|
|
1814
|
+
bucket: {
|
|
1805
1815
|
serializedName: "properties.bucket",
|
|
1806
1816
|
type: {
|
|
1807
1817
|
name: "Composite",
|
|
1808
1818
|
className: "BucketDefinition",
|
|
1809
1819
|
},
|
|
1810
|
-
},
|
|
1820
|
+
},
|
|
1821
|
+
azureBlob: {
|
|
1811
1822
|
serializedName: "properties.azureBlob",
|
|
1812
1823
|
type: {
|
|
1813
1824
|
name: "Composite",
|
|
1814
1825
|
className: "AzureBlobDefinition",
|
|
1815
1826
|
},
|
|
1816
|
-
},
|
|
1827
|
+
},
|
|
1828
|
+
ociRepository: {
|
|
1817
1829
|
serializedName: "properties.ociRepository",
|
|
1818
1830
|
type: {
|
|
1819
1831
|
name: "Composite",
|
|
1820
1832
|
className: "OCIRepositoryDefinition",
|
|
1821
1833
|
},
|
|
1822
|
-
},
|
|
1834
|
+
},
|
|
1835
|
+
kustomizations: {
|
|
1823
1836
|
serializedName: "properties.kustomizations",
|
|
1824
1837
|
nullable: true,
|
|
1825
1838
|
type: {
|
|
@@ -1828,14 +1841,16 @@ export const FluxConfiguration = {
|
|
|
1828
1841
|
type: { name: "Composite", className: "KustomizationDefinition" },
|
|
1829
1842
|
},
|
|
1830
1843
|
},
|
|
1831
|
-
},
|
|
1844
|
+
},
|
|
1845
|
+
configurationProtectedSettings: {
|
|
1832
1846
|
serializedName: "properties.configurationProtectedSettings",
|
|
1833
1847
|
nullable: true,
|
|
1834
1848
|
type: {
|
|
1835
1849
|
name: "Dictionary",
|
|
1836
1850
|
value: { type: { name: "String" } },
|
|
1837
1851
|
},
|
|
1838
|
-
},
|
|
1852
|
+
},
|
|
1853
|
+
statuses: {
|
|
1839
1854
|
serializedName: "properties.statuses",
|
|
1840
1855
|
readOnly: true,
|
|
1841
1856
|
nullable: true,
|
|
@@ -1848,67 +1863,77 @@ export const FluxConfiguration = {
|
|
|
1848
1863
|
},
|
|
1849
1864
|
},
|
|
1850
1865
|
},
|
|
1851
|
-
},
|
|
1866
|
+
},
|
|
1867
|
+
repositoryPublicKey: {
|
|
1852
1868
|
serializedName: "properties.repositoryPublicKey",
|
|
1853
1869
|
readOnly: true,
|
|
1854
1870
|
nullable: true,
|
|
1855
1871
|
type: {
|
|
1856
1872
|
name: "String",
|
|
1857
1873
|
},
|
|
1858
|
-
},
|
|
1874
|
+
},
|
|
1875
|
+
sourceSyncedCommitId: {
|
|
1859
1876
|
serializedName: "properties.sourceSyncedCommitId",
|
|
1860
1877
|
readOnly: true,
|
|
1861
1878
|
nullable: true,
|
|
1862
1879
|
type: {
|
|
1863
1880
|
name: "String",
|
|
1864
1881
|
},
|
|
1865
|
-
},
|
|
1882
|
+
},
|
|
1883
|
+
sourceUpdatedAt: {
|
|
1866
1884
|
serializedName: "properties.sourceUpdatedAt",
|
|
1867
1885
|
readOnly: true,
|
|
1868
1886
|
nullable: true,
|
|
1869
1887
|
type: {
|
|
1870
1888
|
name: "DateTime",
|
|
1871
1889
|
},
|
|
1872
|
-
},
|
|
1890
|
+
},
|
|
1891
|
+
statusUpdatedAt: {
|
|
1873
1892
|
serializedName: "properties.statusUpdatedAt",
|
|
1874
1893
|
readOnly: true,
|
|
1875
1894
|
nullable: true,
|
|
1876
1895
|
type: {
|
|
1877
1896
|
name: "DateTime",
|
|
1878
1897
|
},
|
|
1879
|
-
},
|
|
1898
|
+
},
|
|
1899
|
+
waitForReconciliation: {
|
|
1880
1900
|
serializedName: "properties.waitForReconciliation",
|
|
1881
1901
|
nullable: true,
|
|
1882
1902
|
type: {
|
|
1883
1903
|
name: "Boolean",
|
|
1884
1904
|
},
|
|
1885
|
-
},
|
|
1905
|
+
},
|
|
1906
|
+
reconciliationWaitDuration: {
|
|
1886
1907
|
serializedName: "properties.reconciliationWaitDuration",
|
|
1887
1908
|
nullable: true,
|
|
1888
1909
|
type: {
|
|
1889
1910
|
name: "String",
|
|
1890
1911
|
},
|
|
1891
|
-
},
|
|
1912
|
+
},
|
|
1913
|
+
complianceState: {
|
|
1892
1914
|
defaultValue: "Unknown",
|
|
1893
1915
|
serializedName: "properties.complianceState",
|
|
1894
1916
|
readOnly: true,
|
|
1895
1917
|
type: {
|
|
1896
1918
|
name: "String",
|
|
1897
1919
|
},
|
|
1898
|
-
},
|
|
1920
|
+
},
|
|
1921
|
+
provisioningState: {
|
|
1899
1922
|
serializedName: "properties.provisioningState",
|
|
1900
1923
|
readOnly: true,
|
|
1901
1924
|
type: {
|
|
1902
1925
|
name: "String",
|
|
1903
1926
|
},
|
|
1904
|
-
},
|
|
1927
|
+
},
|
|
1928
|
+
errorMessage: {
|
|
1905
1929
|
serializedName: "properties.errorMessage",
|
|
1906
1930
|
readOnly: true,
|
|
1907
1931
|
nullable: true,
|
|
1908
1932
|
type: {
|
|
1909
1933
|
name: "String",
|
|
1910
1934
|
},
|
|
1911
|
-
}
|
|
1935
|
+
},
|
|
1936
|
+
},
|
|
1912
1937
|
},
|
|
1913
1938
|
};
|
|
1914
1939
|
//# sourceMappingURL=mappers.js.map
|