@azure/arm-templatespecs 2.1.1-alpha.20250718.1 → 2.1.1-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/models/mappers.js +42 -19
- package/dist/browser/models/mappers.js.map +1 -1
- package/dist/browser/operations/templateSpecVersions.js +23 -40
- package/dist/browser/operations/templateSpecVersions.js.map +1 -1
- package/dist/browser/operations/templateSpecs.js +45 -79
- package/dist/browser/operations/templateSpecs.js.map +1 -1
- package/dist/browser/pagingHelper.js +2 -4
- package/dist/browser/pagingHelper.js.map +1 -1
- package/dist/browser/templateSpecsClient.js +15 -5
- package/dist/browser/templateSpecsClient.js.map +1 -1
- package/dist/commonjs/models/mappers.js +42 -19
- package/dist/commonjs/models/mappers.js.map +1 -1
- package/dist/commonjs/operations/templateSpecVersions.js +23 -39
- package/dist/commonjs/operations/templateSpecVersions.js.map +1 -1
- package/dist/commonjs/operations/templateSpecs.js +45 -78
- package/dist/commonjs/operations/templateSpecs.js.map +1 -1
- package/dist/commonjs/pagingHelper.js +2 -4
- package/dist/commonjs/pagingHelper.js.map +1 -1
- package/dist/commonjs/templateSpecsClient.js +15 -5
- package/dist/commonjs/templateSpecsClient.js.map +1 -1
- package/dist/commonjs/tsdoc-metadata.json +11 -11
- package/dist/esm/models/mappers.js +42 -19
- package/dist/esm/models/mappers.js.map +1 -1
- package/dist/esm/operations/templateSpecVersions.js +23 -40
- package/dist/esm/operations/templateSpecVersions.js.map +1 -1
- package/dist/esm/operations/templateSpecs.js +45 -79
- package/dist/esm/operations/templateSpecs.js.map +1 -1
- package/dist/esm/pagingHelper.js +2 -4
- package/dist/esm/pagingHelper.js.map +1 -1
- package/dist/esm/templateSpecsClient.js +15 -5
- package/dist/esm/templateSpecsClient.js.map +1 -1
- package/dist/react-native/models/mappers.js +42 -19
- package/dist/react-native/models/mappers.js.map +1 -1
- package/dist/react-native/operations/templateSpecVersions.js +23 -40
- package/dist/react-native/operations/templateSpecVersions.js.map +1 -1
- package/dist/react-native/operations/templateSpecs.js +45 -79
- package/dist/react-native/operations/templateSpecs.js.map +1 -1
- package/dist/react-native/pagingHelper.js +2 -4
- package/dist/react-native/pagingHelper.js.map +1 -1
- package/dist/react-native/templateSpecsClient.js +15 -5
- package/dist/react-native/templateSpecsClient.js.map +1 -1
- package/package.json +2 -2
- package/review/arm-templatespecs-node.api.md +279 -279
@@ -1,279 +1,279 @@
|
|
1
|
-
## API Report File for "@azure/arm-templatespecs"
|
2
|
-
|
3
|
-
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
4
|
-
|
5
|
-
```ts
|
6
|
-
|
7
|
-
import * as coreAuth from '@azure/core-auth';
|
8
|
-
import * as coreClient from '@azure/core-client';
|
9
|
-
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
10
|
-
|
11
|
-
// @public
|
12
|
-
export interface AzureResourceBase {
|
13
|
-
readonly id?: string;
|
14
|
-
readonly name?: string;
|
15
|
-
readonly systemData?: SystemData;
|
16
|
-
readonly type?: string;
|
17
|
-
}
|
18
|
-
|
19
|
-
// @public
|
20
|
-
export type CreatedByType = string;
|
21
|
-
|
22
|
-
// @public
|
23
|
-
export interface ErrorAdditionalInfo {
|
24
|
-
readonly info?: Record<string, unknown>;
|
25
|
-
readonly type?: string;
|
26
|
-
}
|
27
|
-
|
28
|
-
// @public
|
29
|
-
export interface ErrorResponse {
|
30
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
31
|
-
readonly code?: string;
|
32
|
-
readonly details?: ErrorResponse[];
|
33
|
-
readonly message?: string;
|
34
|
-
readonly target?: string;
|
35
|
-
}
|
36
|
-
|
37
|
-
// @public
|
38
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
39
|
-
|
40
|
-
// @public
|
41
|
-
export enum KnownCreatedByType {
|
42
|
-
Application = "Application",
|
43
|
-
Key = "Key",
|
44
|
-
ManagedIdentity = "ManagedIdentity",
|
45
|
-
User = "User"
|
46
|
-
}
|
47
|
-
|
48
|
-
// @public
|
49
|
-
export enum KnownTemplateSpecExpandKind {
|
50
|
-
Versions = "versions"
|
51
|
-
}
|
52
|
-
|
53
|
-
// @public
|
54
|
-
export interface LinkedTemplateArtifact {
|
55
|
-
path: string;
|
56
|
-
template: Record<string, unknown>;
|
57
|
-
}
|
58
|
-
|
59
|
-
// @public
|
60
|
-
export interface SystemData {
|
61
|
-
createdAt?: Date;
|
62
|
-
createdBy?: string;
|
63
|
-
createdByType?: CreatedByType;
|
64
|
-
lastModifiedAt?: Date;
|
65
|
-
lastModifiedBy?: string;
|
66
|
-
lastModifiedByType?: CreatedByType;
|
67
|
-
}
|
68
|
-
|
69
|
-
// @public
|
70
|
-
export interface TemplateSpec extends AzureResourceBase {
|
71
|
-
description?: string;
|
72
|
-
displayName?: string;
|
73
|
-
location: string;
|
74
|
-
metadata?: Record<string, unknown>;
|
75
|
-
tags?: {
|
76
|
-
[propertyName: string]: string;
|
77
|
-
};
|
78
|
-
readonly versions?: {
|
79
|
-
[propertyName: string]: TemplateSpecVersionInfo;
|
80
|
-
};
|
81
|
-
}
|
82
|
-
|
83
|
-
// @public
|
84
|
-
export type TemplateSpecExpandKind = string;
|
85
|
-
|
86
|
-
// @public
|
87
|
-
export interface TemplateSpecs {
|
88
|
-
createOrUpdate(resourceGroupName: string, templateSpecName: string, templateSpec: TemplateSpec, options?: TemplateSpecsCreateOrUpdateOptionalParams): Promise<TemplateSpecsCreateOrUpdateResponse>;
|
89
|
-
delete(resourceGroupName: string, templateSpecName: string, options?: TemplateSpecsDeleteOptionalParams): Promise<void>;
|
90
|
-
get(resourceGroupName: string, templateSpecName: string, options?: TemplateSpecsGetOptionalParams): Promise<TemplateSpecsGetResponse>;
|
91
|
-
listByResourceGroup(resourceGroupName: string, options?: TemplateSpecsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<TemplateSpec>;
|
92
|
-
listBySubscription(options?: TemplateSpecsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<TemplateSpec>;
|
93
|
-
update(resourceGroupName: string, templateSpecName: string, options?: TemplateSpecsUpdateOptionalParams): Promise<TemplateSpecsUpdateResponse>;
|
94
|
-
}
|
95
|
-
|
96
|
-
// @public (undocumented)
|
97
|
-
export class TemplateSpecsClient extends coreClient.ServiceClient {
|
98
|
-
// (undocumented)
|
99
|
-
$host: string;
|
100
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: TemplateSpecsClientOptionalParams);
|
101
|
-
// (undocumented)
|
102
|
-
apiVersion: string;
|
103
|
-
// (undocumented)
|
104
|
-
subscriptionId: string;
|
105
|
-
// (undocumented)
|
106
|
-
templateSpecs: TemplateSpecs;
|
107
|
-
// (undocumented)
|
108
|
-
templateSpecVersions: TemplateSpecVersions;
|
109
|
-
}
|
110
|
-
|
111
|
-
// @public
|
112
|
-
export interface TemplateSpecsClientOptionalParams extends coreClient.ServiceClientOptions {
|
113
|
-
$host?: string;
|
114
|
-
apiVersion?: string;
|
115
|
-
endpoint?: string;
|
116
|
-
}
|
117
|
-
|
118
|
-
// @public
|
119
|
-
export interface TemplateSpecsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
120
|
-
}
|
121
|
-
|
122
|
-
// @public
|
123
|
-
export type TemplateSpecsCreateOrUpdateResponse = TemplateSpec;
|
124
|
-
|
125
|
-
// @public
|
126
|
-
export interface TemplateSpecsDeleteOptionalParams extends coreClient.OperationOptions {
|
127
|
-
}
|
128
|
-
|
129
|
-
// @public
|
130
|
-
export interface TemplateSpecsError {
|
131
|
-
error?: ErrorResponse;
|
132
|
-
}
|
133
|
-
|
134
|
-
// @public
|
135
|
-
export interface TemplateSpecsGetOptionalParams extends coreClient.OperationOptions {
|
136
|
-
expand?: TemplateSpecExpandKind;
|
137
|
-
}
|
138
|
-
|
139
|
-
// @public
|
140
|
-
export type TemplateSpecsGetResponse = TemplateSpec;
|
141
|
-
|
142
|
-
// @public
|
143
|
-
export interface TemplateSpecsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
144
|
-
expand?: TemplateSpecExpandKind;
|
145
|
-
}
|
146
|
-
|
147
|
-
// @public
|
148
|
-
export type TemplateSpecsListByResourceGroupNextResponse = TemplateSpecsListResult;
|
149
|
-
|
150
|
-
// @public
|
151
|
-
export interface TemplateSpecsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
152
|
-
expand?: TemplateSpecExpandKind;
|
153
|
-
}
|
154
|
-
|
155
|
-
// @public
|
156
|
-
export type TemplateSpecsListByResourceGroupResponse = TemplateSpecsListResult;
|
157
|
-
|
158
|
-
// @public
|
159
|
-
export interface TemplateSpecsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
160
|
-
expand?: TemplateSpecExpandKind;
|
161
|
-
}
|
162
|
-
|
163
|
-
// @public
|
164
|
-
export type TemplateSpecsListBySubscriptionNextResponse = TemplateSpecsListResult;
|
165
|
-
|
166
|
-
// @public
|
167
|
-
export interface TemplateSpecsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
168
|
-
expand?: TemplateSpecExpandKind;
|
169
|
-
}
|
170
|
-
|
171
|
-
// @public
|
172
|
-
export type TemplateSpecsListBySubscriptionResponse = TemplateSpecsListResult;
|
173
|
-
|
174
|
-
// @public
|
175
|
-
export interface TemplateSpecsListResult {
|
176
|
-
readonly nextLink?: string;
|
177
|
-
value?: TemplateSpec[];
|
178
|
-
}
|
179
|
-
|
180
|
-
// @public
|
181
|
-
export interface TemplateSpecsUpdateOptionalParams extends coreClient.OperationOptions {
|
182
|
-
templateSpec?: TemplateSpecUpdateModel;
|
183
|
-
}
|
184
|
-
|
185
|
-
// @public
|
186
|
-
export type TemplateSpecsUpdateResponse = TemplateSpec;
|
187
|
-
|
188
|
-
// @public
|
189
|
-
export interface TemplateSpecUpdateModel extends AzureResourceBase {
|
190
|
-
tags?: {
|
191
|
-
[propertyName: string]: string;
|
192
|
-
};
|
193
|
-
}
|
194
|
-
|
195
|
-
// @public
|
196
|
-
export interface TemplateSpecVersion extends AzureResourceBase {
|
197
|
-
description?: string;
|
198
|
-
linkedTemplates?: LinkedTemplateArtifact[];
|
199
|
-
location: string;
|
200
|
-
mainTemplate?: Record<string, unknown>;
|
201
|
-
metadata?: Record<string, unknown>;
|
202
|
-
tags?: {
|
203
|
-
[propertyName: string]: string;
|
204
|
-
};
|
205
|
-
uiFormDefinition?: Record<string, unknown>;
|
206
|
-
}
|
207
|
-
|
208
|
-
// @public
|
209
|
-
export interface TemplateSpecVersionInfo {
|
210
|
-
readonly description?: string;
|
211
|
-
readonly timeCreated?: Date;
|
212
|
-
readonly timeModified?: Date;
|
213
|
-
}
|
214
|
-
|
215
|
-
// @public
|
216
|
-
export interface TemplateSpecVersions {
|
217
|
-
createOrUpdate(resourceGroupName: string, templateSpecName: string, templateSpecVersion: string, templateSpecVersionModel: TemplateSpecVersion, options?: TemplateSpecVersionsCreateOrUpdateOptionalParams): Promise<TemplateSpecVersionsCreateOrUpdateResponse>;
|
218
|
-
delete(resourceGroupName: string, templateSpecName: string, templateSpecVersion: string, options?: TemplateSpecVersionsDeleteOptionalParams): Promise<void>;
|
219
|
-
get(resourceGroupName: string, templateSpecName: string, templateSpecVersion: string, options?: TemplateSpecVersionsGetOptionalParams): Promise<TemplateSpecVersionsGetResponse>;
|
220
|
-
list(resourceGroupName: string, templateSpecName: string, options?: TemplateSpecVersionsListOptionalParams): PagedAsyncIterableIterator<TemplateSpecVersion>;
|
221
|
-
update(resourceGroupName: string, templateSpecName: string, templateSpecVersion: string, options?: TemplateSpecVersionsUpdateOptionalParams): Promise<TemplateSpecVersionsUpdateResponse>;
|
222
|
-
}
|
223
|
-
|
224
|
-
// @public
|
225
|
-
export interface TemplateSpecVersionsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
226
|
-
}
|
227
|
-
|
228
|
-
// @public
|
229
|
-
export type TemplateSpecVersionsCreateOrUpdateResponse = TemplateSpecVersion;
|
230
|
-
|
231
|
-
// @public
|
232
|
-
export interface TemplateSpecVersionsDeleteOptionalParams extends coreClient.OperationOptions {
|
233
|
-
}
|
234
|
-
|
235
|
-
// @public
|
236
|
-
export interface TemplateSpecVersionsGetOptionalParams extends coreClient.OperationOptions {
|
237
|
-
}
|
238
|
-
|
239
|
-
// @public
|
240
|
-
export type TemplateSpecVersionsGetResponse = TemplateSpecVersion;
|
241
|
-
|
242
|
-
// @public
|
243
|
-
export interface TemplateSpecVersionsListNextOptionalParams extends coreClient.OperationOptions {
|
244
|
-
}
|
245
|
-
|
246
|
-
// @public
|
247
|
-
export type TemplateSpecVersionsListNextResponse = TemplateSpecVersionsListResult;
|
248
|
-
|
249
|
-
// @public
|
250
|
-
export interface TemplateSpecVersionsListOptionalParams extends coreClient.OperationOptions {
|
251
|
-
}
|
252
|
-
|
253
|
-
// @public
|
254
|
-
export type TemplateSpecVersionsListResponse = TemplateSpecVersionsListResult;
|
255
|
-
|
256
|
-
// @public
|
257
|
-
export interface TemplateSpecVersionsListResult {
|
258
|
-
readonly nextLink?: string;
|
259
|
-
value?: TemplateSpecVersion[];
|
260
|
-
}
|
261
|
-
|
262
|
-
// @public
|
263
|
-
export interface TemplateSpecVersionsUpdateOptionalParams extends coreClient.OperationOptions {
|
264
|
-
templateSpecVersionUpdateModel?: TemplateSpecVersionUpdateModel;
|
265
|
-
}
|
266
|
-
|
267
|
-
// @public
|
268
|
-
export type TemplateSpecVersionsUpdateResponse = TemplateSpecVersion;
|
269
|
-
|
270
|
-
// @public
|
271
|
-
export interface TemplateSpecVersionUpdateModel extends AzureResourceBase {
|
272
|
-
tags?: {
|
273
|
-
[propertyName: string]: string;
|
274
|
-
};
|
275
|
-
}
|
276
|
-
|
277
|
-
// (No @packageDocumentation comment for this package)
|
278
|
-
|
279
|
-
```
|
1
|
+
## API Report File for "@azure/arm-templatespecs"
|
2
|
+
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
4
|
+
|
5
|
+
```ts
|
6
|
+
|
7
|
+
import * as coreAuth from '@azure/core-auth';
|
8
|
+
import * as coreClient from '@azure/core-client';
|
9
|
+
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
10
|
+
|
11
|
+
// @public
|
12
|
+
export interface AzureResourceBase {
|
13
|
+
readonly id?: string;
|
14
|
+
readonly name?: string;
|
15
|
+
readonly systemData?: SystemData;
|
16
|
+
readonly type?: string;
|
17
|
+
}
|
18
|
+
|
19
|
+
// @public
|
20
|
+
export type CreatedByType = string;
|
21
|
+
|
22
|
+
// @public
|
23
|
+
export interface ErrorAdditionalInfo {
|
24
|
+
readonly info?: Record<string, unknown>;
|
25
|
+
readonly type?: string;
|
26
|
+
}
|
27
|
+
|
28
|
+
// @public
|
29
|
+
export interface ErrorResponse {
|
30
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
31
|
+
readonly code?: string;
|
32
|
+
readonly details?: ErrorResponse[];
|
33
|
+
readonly message?: string;
|
34
|
+
readonly target?: string;
|
35
|
+
}
|
36
|
+
|
37
|
+
// @public
|
38
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
39
|
+
|
40
|
+
// @public
|
41
|
+
export enum KnownCreatedByType {
|
42
|
+
Application = "Application",
|
43
|
+
Key = "Key",
|
44
|
+
ManagedIdentity = "ManagedIdentity",
|
45
|
+
User = "User"
|
46
|
+
}
|
47
|
+
|
48
|
+
// @public
|
49
|
+
export enum KnownTemplateSpecExpandKind {
|
50
|
+
Versions = "versions"
|
51
|
+
}
|
52
|
+
|
53
|
+
// @public
|
54
|
+
export interface LinkedTemplateArtifact {
|
55
|
+
path: string;
|
56
|
+
template: Record<string, unknown>;
|
57
|
+
}
|
58
|
+
|
59
|
+
// @public
|
60
|
+
export interface SystemData {
|
61
|
+
createdAt?: Date;
|
62
|
+
createdBy?: string;
|
63
|
+
createdByType?: CreatedByType;
|
64
|
+
lastModifiedAt?: Date;
|
65
|
+
lastModifiedBy?: string;
|
66
|
+
lastModifiedByType?: CreatedByType;
|
67
|
+
}
|
68
|
+
|
69
|
+
// @public
|
70
|
+
export interface TemplateSpec extends AzureResourceBase {
|
71
|
+
description?: string;
|
72
|
+
displayName?: string;
|
73
|
+
location: string;
|
74
|
+
metadata?: Record<string, unknown>;
|
75
|
+
tags?: {
|
76
|
+
[propertyName: string]: string;
|
77
|
+
};
|
78
|
+
readonly versions?: {
|
79
|
+
[propertyName: string]: TemplateSpecVersionInfo;
|
80
|
+
};
|
81
|
+
}
|
82
|
+
|
83
|
+
// @public
|
84
|
+
export type TemplateSpecExpandKind = string;
|
85
|
+
|
86
|
+
// @public
|
87
|
+
export interface TemplateSpecs {
|
88
|
+
createOrUpdate(resourceGroupName: string, templateSpecName: string, templateSpec: TemplateSpec, options?: TemplateSpecsCreateOrUpdateOptionalParams): Promise<TemplateSpecsCreateOrUpdateResponse>;
|
89
|
+
delete(resourceGroupName: string, templateSpecName: string, options?: TemplateSpecsDeleteOptionalParams): Promise<void>;
|
90
|
+
get(resourceGroupName: string, templateSpecName: string, options?: TemplateSpecsGetOptionalParams): Promise<TemplateSpecsGetResponse>;
|
91
|
+
listByResourceGroup(resourceGroupName: string, options?: TemplateSpecsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<TemplateSpec>;
|
92
|
+
listBySubscription(options?: TemplateSpecsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<TemplateSpec>;
|
93
|
+
update(resourceGroupName: string, templateSpecName: string, options?: TemplateSpecsUpdateOptionalParams): Promise<TemplateSpecsUpdateResponse>;
|
94
|
+
}
|
95
|
+
|
96
|
+
// @public (undocumented)
|
97
|
+
export class TemplateSpecsClient extends coreClient.ServiceClient {
|
98
|
+
// (undocumented)
|
99
|
+
$host: string;
|
100
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: TemplateSpecsClientOptionalParams);
|
101
|
+
// (undocumented)
|
102
|
+
apiVersion: string;
|
103
|
+
// (undocumented)
|
104
|
+
subscriptionId: string;
|
105
|
+
// (undocumented)
|
106
|
+
templateSpecs: TemplateSpecs;
|
107
|
+
// (undocumented)
|
108
|
+
templateSpecVersions: TemplateSpecVersions;
|
109
|
+
}
|
110
|
+
|
111
|
+
// @public
|
112
|
+
export interface TemplateSpecsClientOptionalParams extends coreClient.ServiceClientOptions {
|
113
|
+
$host?: string;
|
114
|
+
apiVersion?: string;
|
115
|
+
endpoint?: string;
|
116
|
+
}
|
117
|
+
|
118
|
+
// @public
|
119
|
+
export interface TemplateSpecsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
120
|
+
}
|
121
|
+
|
122
|
+
// @public
|
123
|
+
export type TemplateSpecsCreateOrUpdateResponse = TemplateSpec;
|
124
|
+
|
125
|
+
// @public
|
126
|
+
export interface TemplateSpecsDeleteOptionalParams extends coreClient.OperationOptions {
|
127
|
+
}
|
128
|
+
|
129
|
+
// @public
|
130
|
+
export interface TemplateSpecsError {
|
131
|
+
error?: ErrorResponse;
|
132
|
+
}
|
133
|
+
|
134
|
+
// @public
|
135
|
+
export interface TemplateSpecsGetOptionalParams extends coreClient.OperationOptions {
|
136
|
+
expand?: TemplateSpecExpandKind;
|
137
|
+
}
|
138
|
+
|
139
|
+
// @public
|
140
|
+
export type TemplateSpecsGetResponse = TemplateSpec;
|
141
|
+
|
142
|
+
// @public
|
143
|
+
export interface TemplateSpecsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
144
|
+
expand?: TemplateSpecExpandKind;
|
145
|
+
}
|
146
|
+
|
147
|
+
// @public
|
148
|
+
export type TemplateSpecsListByResourceGroupNextResponse = TemplateSpecsListResult;
|
149
|
+
|
150
|
+
// @public
|
151
|
+
export interface TemplateSpecsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
152
|
+
expand?: TemplateSpecExpandKind;
|
153
|
+
}
|
154
|
+
|
155
|
+
// @public
|
156
|
+
export type TemplateSpecsListByResourceGroupResponse = TemplateSpecsListResult;
|
157
|
+
|
158
|
+
// @public
|
159
|
+
export interface TemplateSpecsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
160
|
+
expand?: TemplateSpecExpandKind;
|
161
|
+
}
|
162
|
+
|
163
|
+
// @public
|
164
|
+
export type TemplateSpecsListBySubscriptionNextResponse = TemplateSpecsListResult;
|
165
|
+
|
166
|
+
// @public
|
167
|
+
export interface TemplateSpecsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
168
|
+
expand?: TemplateSpecExpandKind;
|
169
|
+
}
|
170
|
+
|
171
|
+
// @public
|
172
|
+
export type TemplateSpecsListBySubscriptionResponse = TemplateSpecsListResult;
|
173
|
+
|
174
|
+
// @public
|
175
|
+
export interface TemplateSpecsListResult {
|
176
|
+
readonly nextLink?: string;
|
177
|
+
value?: TemplateSpec[];
|
178
|
+
}
|
179
|
+
|
180
|
+
// @public
|
181
|
+
export interface TemplateSpecsUpdateOptionalParams extends coreClient.OperationOptions {
|
182
|
+
templateSpec?: TemplateSpecUpdateModel;
|
183
|
+
}
|
184
|
+
|
185
|
+
// @public
|
186
|
+
export type TemplateSpecsUpdateResponse = TemplateSpec;
|
187
|
+
|
188
|
+
// @public
|
189
|
+
export interface TemplateSpecUpdateModel extends AzureResourceBase {
|
190
|
+
tags?: {
|
191
|
+
[propertyName: string]: string;
|
192
|
+
};
|
193
|
+
}
|
194
|
+
|
195
|
+
// @public
|
196
|
+
export interface TemplateSpecVersion extends AzureResourceBase {
|
197
|
+
description?: string;
|
198
|
+
linkedTemplates?: LinkedTemplateArtifact[];
|
199
|
+
location: string;
|
200
|
+
mainTemplate?: Record<string, unknown>;
|
201
|
+
metadata?: Record<string, unknown>;
|
202
|
+
tags?: {
|
203
|
+
[propertyName: string]: string;
|
204
|
+
};
|
205
|
+
uiFormDefinition?: Record<string, unknown>;
|
206
|
+
}
|
207
|
+
|
208
|
+
// @public
|
209
|
+
export interface TemplateSpecVersionInfo {
|
210
|
+
readonly description?: string;
|
211
|
+
readonly timeCreated?: Date;
|
212
|
+
readonly timeModified?: Date;
|
213
|
+
}
|
214
|
+
|
215
|
+
// @public
|
216
|
+
export interface TemplateSpecVersions {
|
217
|
+
createOrUpdate(resourceGroupName: string, templateSpecName: string, templateSpecVersion: string, templateSpecVersionModel: TemplateSpecVersion, options?: TemplateSpecVersionsCreateOrUpdateOptionalParams): Promise<TemplateSpecVersionsCreateOrUpdateResponse>;
|
218
|
+
delete(resourceGroupName: string, templateSpecName: string, templateSpecVersion: string, options?: TemplateSpecVersionsDeleteOptionalParams): Promise<void>;
|
219
|
+
get(resourceGroupName: string, templateSpecName: string, templateSpecVersion: string, options?: TemplateSpecVersionsGetOptionalParams): Promise<TemplateSpecVersionsGetResponse>;
|
220
|
+
list(resourceGroupName: string, templateSpecName: string, options?: TemplateSpecVersionsListOptionalParams): PagedAsyncIterableIterator<TemplateSpecVersion>;
|
221
|
+
update(resourceGroupName: string, templateSpecName: string, templateSpecVersion: string, options?: TemplateSpecVersionsUpdateOptionalParams): Promise<TemplateSpecVersionsUpdateResponse>;
|
222
|
+
}
|
223
|
+
|
224
|
+
// @public
|
225
|
+
export interface TemplateSpecVersionsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
226
|
+
}
|
227
|
+
|
228
|
+
// @public
|
229
|
+
export type TemplateSpecVersionsCreateOrUpdateResponse = TemplateSpecVersion;
|
230
|
+
|
231
|
+
// @public
|
232
|
+
export interface TemplateSpecVersionsDeleteOptionalParams extends coreClient.OperationOptions {
|
233
|
+
}
|
234
|
+
|
235
|
+
// @public
|
236
|
+
export interface TemplateSpecVersionsGetOptionalParams extends coreClient.OperationOptions {
|
237
|
+
}
|
238
|
+
|
239
|
+
// @public
|
240
|
+
export type TemplateSpecVersionsGetResponse = TemplateSpecVersion;
|
241
|
+
|
242
|
+
// @public
|
243
|
+
export interface TemplateSpecVersionsListNextOptionalParams extends coreClient.OperationOptions {
|
244
|
+
}
|
245
|
+
|
246
|
+
// @public
|
247
|
+
export type TemplateSpecVersionsListNextResponse = TemplateSpecVersionsListResult;
|
248
|
+
|
249
|
+
// @public
|
250
|
+
export interface TemplateSpecVersionsListOptionalParams extends coreClient.OperationOptions {
|
251
|
+
}
|
252
|
+
|
253
|
+
// @public
|
254
|
+
export type TemplateSpecVersionsListResponse = TemplateSpecVersionsListResult;
|
255
|
+
|
256
|
+
// @public
|
257
|
+
export interface TemplateSpecVersionsListResult {
|
258
|
+
readonly nextLink?: string;
|
259
|
+
value?: TemplateSpecVersion[];
|
260
|
+
}
|
261
|
+
|
262
|
+
// @public
|
263
|
+
export interface TemplateSpecVersionsUpdateOptionalParams extends coreClient.OperationOptions {
|
264
|
+
templateSpecVersionUpdateModel?: TemplateSpecVersionUpdateModel;
|
265
|
+
}
|
266
|
+
|
267
|
+
// @public
|
268
|
+
export type TemplateSpecVersionsUpdateResponse = TemplateSpecVersion;
|
269
|
+
|
270
|
+
// @public
|
271
|
+
export interface TemplateSpecVersionUpdateModel extends AzureResourceBase {
|
272
|
+
tags?: {
|
273
|
+
[propertyName: string]: string;
|
274
|
+
};
|
275
|
+
}
|
276
|
+
|
277
|
+
// (No @packageDocumentation comment for this package)
|
278
|
+
|
279
|
+
```
|