@pulumi/azure 5.12.0 → 5.13.0-alpha.1658239718
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/appinsights/index.d.ts +1 -0
- package/appinsights/index.js +5 -0
- package/appinsights/index.js.map +1 -1
- package/appinsights/workbookTemplate.d.ts +228 -0
- package/appinsights/workbookTemplate.js +151 -0
- package/appinsights/workbookTemplate.js.map +1 -0
- package/cognitive/account.d.ts +3 -3
- package/compute/galleryApplication.d.ts +191 -0
- package/compute/galleryApplication.js +102 -0
- package/compute/galleryApplication.js.map +1 -0
- package/compute/galleryApplicationVersion.d.ts +223 -0
- package/compute/galleryApplicationVersion.js +139 -0
- package/compute/galleryApplicationVersion.js.map +1 -0
- package/compute/index.d.ts +2 -0
- package/compute/index.js +10 -0
- package/compute/index.js.map +1 -1
- package/compute/linuxVirtualMachineScaleSet.d.ts +12 -0
- package/compute/linuxVirtualMachineScaleSet.js +2 -0
- package/compute/linuxVirtualMachineScaleSet.js.map +1 -1
- package/compute/sharedImage.d.ts +72 -0
- package/compute/sharedImage.js +12 -0
- package/compute/sharedImage.js.map +1 -1
- package/compute/windowsVirtualMachineScaleSet.d.ts +12 -0
- package/compute/windowsVirtualMachineScaleSet.js +2 -0
- package/compute/windowsVirtualMachineScaleSet.js.map +1 -1
- package/containerservice/kubernetesClusterNodePool.d.ts +3 -0
- package/containerservice/kubernetesClusterNodePool.js +2 -0
- package/containerservice/kubernetesClusterNodePool.js.map +1 -1
- package/databricks/workspaceCustomerManagedKey.d.ts +4 -4
- package/databricks/workspaceCustomerManagedKey.js +1 -1
- package/eventhub/queue.d.ts +3 -3
- package/kusto/cluster.d.ts +12 -0
- package/kusto/cluster.js +2 -0
- package/kusto/cluster.js.map +1 -1
- package/kusto/eventGridDataConnection.d.ts +39 -3
- package/kusto/eventGridDataConnection.js +6 -0
- package/kusto/eventGridDataConnection.js.map +1 -1
- package/kusto/eventhubDataConnection.d.ts +12 -0
- package/kusto/eventhubDataConnection.js +2 -0
- package/kusto/eventhubDataConnection.js.map +1 -1
- package/kusto/iotHubDataConnection.d.ts +12 -0
- package/kusto/iotHubDataConnection.js +2 -0
- package/kusto/iotHubDataConnection.js.map +1 -1
- package/kusto/script.d.ts +22 -10
- package/kusto/script.js +2 -6
- package/kusto/script.js.map +1 -1
- package/mssql/database.d.ts +0 -2
- package/mssql/database.js +0 -2
- package/mssql/database.js.map +1 -1
- package/network/trafficManagerAzureEndpoint.d.ts +4 -4
- package/network/trafficManagerAzureEndpoint.js +0 -3
- package/network/trafficManagerAzureEndpoint.js.map +1 -1
- package/network/trafficManagerExternalEndpoint.d.ts +4 -7
- package/network/trafficManagerExternalEndpoint.js +0 -3
- package/network/trafficManagerExternalEndpoint.js.map +1 -1
- package/network/trafficManagerNestedEndpoint.d.ts +4 -7
- package/network/trafficManagerNestedEndpoint.js +0 -3
- package/network/trafficManagerNestedEndpoint.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/postgresql/flexibleServerConfiguration.d.ts +21 -0
- package/postgresql/flexibleServerConfiguration.js +21 -0
- package/postgresql/flexibleServerConfiguration.js.map +1 -1
- package/servicebus/queue.d.ts +3 -3
- package/signalr/service.d.ts +18 -0
- package/signalr/service.js +2 -0
- package/signalr/service.js.map +1 -1
- package/storage/getPolicy.d.ts +3 -3
- package/storage/getPolicy.js +3 -3
- package/streamanalytics/outputBlob.d.ts +14 -2
- package/streamanalytics/outputBlob.js +2 -3
- package/streamanalytics/outputBlob.js.map +1 -1
- package/types/input.d.ts +111 -0
- package/types/output.d.ts +123 -1
package/appinsights/index.d.ts
CHANGED
package/appinsights/index.js
CHANGED
|
@@ -25,12 +25,14 @@ __exportStar(require("./getInsights"), exports);
|
|
|
25
25
|
__exportStar(require("./insights"), exports);
|
|
26
26
|
__exportStar(require("./smartDetectionRule"), exports);
|
|
27
27
|
__exportStar(require("./webTest"), exports);
|
|
28
|
+
__exportStar(require("./workbookTemplate"), exports);
|
|
28
29
|
// Import resources to register:
|
|
29
30
|
const analyticsItem_1 = require("./analyticsItem");
|
|
30
31
|
const apiKey_1 = require("./apiKey");
|
|
31
32
|
const insights_1 = require("./insights");
|
|
32
33
|
const smartDetectionRule_1 = require("./smartDetectionRule");
|
|
33
34
|
const webTest_1 = require("./webTest");
|
|
35
|
+
const workbookTemplate_1 = require("./workbookTemplate");
|
|
34
36
|
const _module = {
|
|
35
37
|
version: utilities.getVersion(),
|
|
36
38
|
construct: (name, type, urn) => {
|
|
@@ -45,6 +47,8 @@ const _module = {
|
|
|
45
47
|
return new smartDetectionRule_1.SmartDetectionRule(name, undefined, { urn });
|
|
46
48
|
case "azure:appinsights/webTest:WebTest":
|
|
47
49
|
return new webTest_1.WebTest(name, undefined, { urn });
|
|
50
|
+
case "azure:appinsights/workbookTemplate:WorkbookTemplate":
|
|
51
|
+
return new workbookTemplate_1.WorkbookTemplate(name, undefined, { urn });
|
|
48
52
|
default:
|
|
49
53
|
throw new Error(`unknown resource type ${type}`);
|
|
50
54
|
}
|
|
@@ -55,4 +59,5 @@ pulumi.runtime.registerResourceModule("azure", "appinsights/apiKey", _module);
|
|
|
55
59
|
pulumi.runtime.registerResourceModule("azure", "appinsights/insights", _module);
|
|
56
60
|
pulumi.runtime.registerResourceModule("azure", "appinsights/smartDetectionRule", _module);
|
|
57
61
|
pulumi.runtime.registerResourceModule("azure", "appinsights/webTest", _module);
|
|
62
|
+
pulumi.runtime.registerResourceModule("azure", "appinsights/workbookTemplate", _module);
|
|
58
63
|
//# sourceMappingURL=index.js.map
|
package/appinsights/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../appinsights/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C,kBAAkB;AAClB,kDAAgC;AAChC,2CAAyB;AACzB,gDAA8B;AAC9B,6CAA2B;AAC3B,uDAAqC;AACrC,4CAA0B;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../appinsights/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C,kBAAkB;AAClB,kDAAgC;AAChC,2CAAyB;AACzB,gDAA8B;AAC9B,6CAA2B;AAC3B,uDAAqC;AACrC,4CAA0B;AAC1B,qDAAmC;AAEnC,gCAAgC;AAChC,mDAAgD;AAChD,qCAAkC;AAClC,yCAAsC;AACtC,6DAA0D;AAC1D,uCAAoC;AACpC,yDAAsD;AAEtD,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,+CAA+C;gBAChD,OAAO,IAAI,6BAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D,KAAK,iCAAiC;gBAClC,OAAO,IAAI,eAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD,KAAK,qCAAqC;gBACtC,OAAO,IAAI,mBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,yDAAyD;gBAC1D,OAAO,IAAI,uCAAkB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAChE,KAAK,mCAAmC;gBACpC,OAAO,IAAI,iBAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD,KAAK,qDAAqD;gBACtD,OAAO,IAAI,mCAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,2BAA2B,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,oBAAoB,EAAE,OAAO,CAAC,CAAA;AAC7E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,gCAAgC,EAAE,OAAO,CAAC,CAAA;AACzF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAC9E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,8BAA8B,EAAE,OAAO,CAAC,CAAA"}
|
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "../types";
|
|
3
|
+
/**
|
|
4
|
+
* Manages an Application Insights Workbook Template.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as azure from "@pulumi/azure";
|
|
11
|
+
*
|
|
12
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
13
|
+
* const exampleWorkbookTemplate = new azure.appinsights.WorkbookTemplate("exampleWorkbookTemplate", {
|
|
14
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
15
|
+
* location: "West Europe",
|
|
16
|
+
* author: "test author",
|
|
17
|
+
* priority: 1,
|
|
18
|
+
* galleries: [{
|
|
19
|
+
* category: "workbook",
|
|
20
|
+
* name: "test",
|
|
21
|
+
* order: 100,
|
|
22
|
+
* resourceType: "microsoft.insights/components",
|
|
23
|
+
* type: "tsg",
|
|
24
|
+
* }],
|
|
25
|
+
* templateData: JSON.stringify({
|
|
26
|
+
* version: "Notebook/1.0",
|
|
27
|
+
* items: [{
|
|
28
|
+
* type: 1,
|
|
29
|
+
* content: {
|
|
30
|
+
* json: `## New workbook
|
|
31
|
+
* ---
|
|
32
|
+
*
|
|
33
|
+
* Welcome to your new workbook.`,
|
|
34
|
+
* },
|
|
35
|
+
* name: "text - 2",
|
|
36
|
+
* }],
|
|
37
|
+
* styleSettings: {},
|
|
38
|
+
* `$schema`: "https://github.com/Microsoft/Application-Insights-Workbooks/blob/master/schema/workbook.json",
|
|
39
|
+
* }),
|
|
40
|
+
* localized: JSON.stringify({
|
|
41
|
+
* ar: [{
|
|
42
|
+
* galleries: [{
|
|
43
|
+
* name: "test",
|
|
44
|
+
* category: "Failures",
|
|
45
|
+
* type: "tsg",
|
|
46
|
+
* resourceType: "microsoft.insights/components",
|
|
47
|
+
* order: 100,
|
|
48
|
+
* }],
|
|
49
|
+
* templateData: {
|
|
50
|
+
* version: "Notebook/1.0",
|
|
51
|
+
* items: [{
|
|
52
|
+
* type: 1,
|
|
53
|
+
* content: {
|
|
54
|
+
* json: `## New workbook
|
|
55
|
+
* ---
|
|
56
|
+
*
|
|
57
|
+
* Welcome to your new workbook.`,
|
|
58
|
+
* },
|
|
59
|
+
* name: "text - 2",
|
|
60
|
+
* }],
|
|
61
|
+
* styleSettings: {},
|
|
62
|
+
* `$schema`: "https://github.com/Microsoft/Application-Insights-Workbooks/blob/master/schema/workbook.json",
|
|
63
|
+
* },
|
|
64
|
+
* }],
|
|
65
|
+
* }),
|
|
66
|
+
* tags: {
|
|
67
|
+
* key: "value",
|
|
68
|
+
* },
|
|
69
|
+
* });
|
|
70
|
+
* ```
|
|
71
|
+
*
|
|
72
|
+
* ## Import
|
|
73
|
+
*
|
|
74
|
+
* Application Insights Workbook Template can be imported using the `resource id`, e.g.
|
|
75
|
+
*
|
|
76
|
+
* ```sh
|
|
77
|
+
* $ pulumi import azure:appinsights/workbookTemplate:WorkbookTemplate example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.Insights/workbooktemplates/resource1
|
|
78
|
+
* ```
|
|
79
|
+
*/
|
|
80
|
+
export declare class WorkbookTemplate extends pulumi.CustomResource {
|
|
81
|
+
/**
|
|
82
|
+
* Get an existing WorkbookTemplate resource's state with the given name, ID, and optional extra
|
|
83
|
+
* properties used to qualify the lookup.
|
|
84
|
+
*
|
|
85
|
+
* @param name The _unique_ name of the resulting resource.
|
|
86
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
87
|
+
* @param state Any extra arguments used during the lookup.
|
|
88
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
89
|
+
*/
|
|
90
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: WorkbookTemplateState, opts?: pulumi.CustomResourceOptions): WorkbookTemplate;
|
|
91
|
+
/**
|
|
92
|
+
* Returns true if the given object is an instance of WorkbookTemplate. This is designed to work even
|
|
93
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
94
|
+
*/
|
|
95
|
+
static isInstance(obj: any): obj is WorkbookTemplate;
|
|
96
|
+
/**
|
|
97
|
+
* Information about the author of the workbook template.
|
|
98
|
+
*/
|
|
99
|
+
readonly author: pulumi.Output<string | undefined>;
|
|
100
|
+
/**
|
|
101
|
+
* A `galleries` block as defined below.
|
|
102
|
+
*/
|
|
103
|
+
readonly galleries: pulumi.Output<outputs.appinsights.WorkbookTemplateGallery[]>;
|
|
104
|
+
/**
|
|
105
|
+
* Key value pairs of localized gallery. Each key is the locale code of languages supported by the Azure portal.
|
|
106
|
+
*/
|
|
107
|
+
readonly localized: pulumi.Output<string | undefined>;
|
|
108
|
+
/**
|
|
109
|
+
* Specifies the Azure Region where the Application Insights Workbook Template should exist. Changing this forces a new Application Insights Workbook Template to be created.
|
|
110
|
+
*/
|
|
111
|
+
readonly location: pulumi.Output<string>;
|
|
112
|
+
/**
|
|
113
|
+
* Specifies the name which should be used for this Application Insights Workbook Template. Changing this forces a new Application Insights Workbook Template to be created.
|
|
114
|
+
*/
|
|
115
|
+
readonly name: pulumi.Output<string>;
|
|
116
|
+
/**
|
|
117
|
+
* Priority of the template. Determines which template to open when a workbook gallery is opened in viewer mode. Defaults to `0`.
|
|
118
|
+
*/
|
|
119
|
+
readonly priority: pulumi.Output<number | undefined>;
|
|
120
|
+
/**
|
|
121
|
+
* Specifies the name of the Resource Group where the Application Insights Workbook Template should exist. Changing this forces a new Application Insights Workbook Template to be created.
|
|
122
|
+
*/
|
|
123
|
+
readonly resourceGroupName: pulumi.Output<string>;
|
|
124
|
+
/**
|
|
125
|
+
* A mapping of tags which should be assigned to the Application Insights Workbook Template.
|
|
126
|
+
*/
|
|
127
|
+
readonly tags: pulumi.Output<{
|
|
128
|
+
[key: string]: string;
|
|
129
|
+
} | undefined>;
|
|
130
|
+
/**
|
|
131
|
+
* Valid JSON object containing workbook template payload.
|
|
132
|
+
*/
|
|
133
|
+
readonly templateData: pulumi.Output<string>;
|
|
134
|
+
/**
|
|
135
|
+
* Create a WorkbookTemplate resource with the given unique name, arguments, and options.
|
|
136
|
+
*
|
|
137
|
+
* @param name The _unique_ name of the resource.
|
|
138
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
139
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
140
|
+
*/
|
|
141
|
+
constructor(name: string, args: WorkbookTemplateArgs, opts?: pulumi.CustomResourceOptions);
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* Input properties used for looking up and filtering WorkbookTemplate resources.
|
|
145
|
+
*/
|
|
146
|
+
export interface WorkbookTemplateState {
|
|
147
|
+
/**
|
|
148
|
+
* Information about the author of the workbook template.
|
|
149
|
+
*/
|
|
150
|
+
author?: pulumi.Input<string>;
|
|
151
|
+
/**
|
|
152
|
+
* A `galleries` block as defined below.
|
|
153
|
+
*/
|
|
154
|
+
galleries?: pulumi.Input<pulumi.Input<inputs.appinsights.WorkbookTemplateGallery>[]>;
|
|
155
|
+
/**
|
|
156
|
+
* Key value pairs of localized gallery. Each key is the locale code of languages supported by the Azure portal.
|
|
157
|
+
*/
|
|
158
|
+
localized?: pulumi.Input<string>;
|
|
159
|
+
/**
|
|
160
|
+
* Specifies the Azure Region where the Application Insights Workbook Template should exist. Changing this forces a new Application Insights Workbook Template to be created.
|
|
161
|
+
*/
|
|
162
|
+
location?: pulumi.Input<string>;
|
|
163
|
+
/**
|
|
164
|
+
* Specifies the name which should be used for this Application Insights Workbook Template. Changing this forces a new Application Insights Workbook Template to be created.
|
|
165
|
+
*/
|
|
166
|
+
name?: pulumi.Input<string>;
|
|
167
|
+
/**
|
|
168
|
+
* Priority of the template. Determines which template to open when a workbook gallery is opened in viewer mode. Defaults to `0`.
|
|
169
|
+
*/
|
|
170
|
+
priority?: pulumi.Input<number>;
|
|
171
|
+
/**
|
|
172
|
+
* Specifies the name of the Resource Group where the Application Insights Workbook Template should exist. Changing this forces a new Application Insights Workbook Template to be created.
|
|
173
|
+
*/
|
|
174
|
+
resourceGroupName?: pulumi.Input<string>;
|
|
175
|
+
/**
|
|
176
|
+
* A mapping of tags which should be assigned to the Application Insights Workbook Template.
|
|
177
|
+
*/
|
|
178
|
+
tags?: pulumi.Input<{
|
|
179
|
+
[key: string]: pulumi.Input<string>;
|
|
180
|
+
}>;
|
|
181
|
+
/**
|
|
182
|
+
* Valid JSON object containing workbook template payload.
|
|
183
|
+
*/
|
|
184
|
+
templateData?: pulumi.Input<string>;
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* The set of arguments for constructing a WorkbookTemplate resource.
|
|
188
|
+
*/
|
|
189
|
+
export interface WorkbookTemplateArgs {
|
|
190
|
+
/**
|
|
191
|
+
* Information about the author of the workbook template.
|
|
192
|
+
*/
|
|
193
|
+
author?: pulumi.Input<string>;
|
|
194
|
+
/**
|
|
195
|
+
* A `galleries` block as defined below.
|
|
196
|
+
*/
|
|
197
|
+
galleries: pulumi.Input<pulumi.Input<inputs.appinsights.WorkbookTemplateGallery>[]>;
|
|
198
|
+
/**
|
|
199
|
+
* Key value pairs of localized gallery. Each key is the locale code of languages supported by the Azure portal.
|
|
200
|
+
*/
|
|
201
|
+
localized?: pulumi.Input<string>;
|
|
202
|
+
/**
|
|
203
|
+
* Specifies the Azure Region where the Application Insights Workbook Template should exist. Changing this forces a new Application Insights Workbook Template to be created.
|
|
204
|
+
*/
|
|
205
|
+
location?: pulumi.Input<string>;
|
|
206
|
+
/**
|
|
207
|
+
* Specifies the name which should be used for this Application Insights Workbook Template. Changing this forces a new Application Insights Workbook Template to be created.
|
|
208
|
+
*/
|
|
209
|
+
name?: pulumi.Input<string>;
|
|
210
|
+
/**
|
|
211
|
+
* Priority of the template. Determines which template to open when a workbook gallery is opened in viewer mode. Defaults to `0`.
|
|
212
|
+
*/
|
|
213
|
+
priority?: pulumi.Input<number>;
|
|
214
|
+
/**
|
|
215
|
+
* Specifies the name of the Resource Group where the Application Insights Workbook Template should exist. Changing this forces a new Application Insights Workbook Template to be created.
|
|
216
|
+
*/
|
|
217
|
+
resourceGroupName: pulumi.Input<string>;
|
|
218
|
+
/**
|
|
219
|
+
* A mapping of tags which should be assigned to the Application Insights Workbook Template.
|
|
220
|
+
*/
|
|
221
|
+
tags?: pulumi.Input<{
|
|
222
|
+
[key: string]: pulumi.Input<string>;
|
|
223
|
+
}>;
|
|
224
|
+
/**
|
|
225
|
+
* Valid JSON object containing workbook template payload.
|
|
226
|
+
*/
|
|
227
|
+
templateData: pulumi.Input<string>;
|
|
228
|
+
}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.WorkbookTemplate = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages an Application Insights Workbook Template.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azure from "@pulumi/azure";
|
|
16
|
+
*
|
|
17
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
18
|
+
* const exampleWorkbookTemplate = new azure.appinsights.WorkbookTemplate("exampleWorkbookTemplate", {
|
|
19
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
20
|
+
* location: "West Europe",
|
|
21
|
+
* author: "test author",
|
|
22
|
+
* priority: 1,
|
|
23
|
+
* galleries: [{
|
|
24
|
+
* category: "workbook",
|
|
25
|
+
* name: "test",
|
|
26
|
+
* order: 100,
|
|
27
|
+
* resourceType: "microsoft.insights/components",
|
|
28
|
+
* type: "tsg",
|
|
29
|
+
* }],
|
|
30
|
+
* templateData: JSON.stringify({
|
|
31
|
+
* version: "Notebook/1.0",
|
|
32
|
+
* items: [{
|
|
33
|
+
* type: 1,
|
|
34
|
+
* content: {
|
|
35
|
+
* json: `## New workbook
|
|
36
|
+
* ---
|
|
37
|
+
*
|
|
38
|
+
* Welcome to your new workbook.`,
|
|
39
|
+
* },
|
|
40
|
+
* name: "text - 2",
|
|
41
|
+
* }],
|
|
42
|
+
* styleSettings: {},
|
|
43
|
+
* `$schema`: "https://github.com/Microsoft/Application-Insights-Workbooks/blob/master/schema/workbook.json",
|
|
44
|
+
* }),
|
|
45
|
+
* localized: JSON.stringify({
|
|
46
|
+
* ar: [{
|
|
47
|
+
* galleries: [{
|
|
48
|
+
* name: "test",
|
|
49
|
+
* category: "Failures",
|
|
50
|
+
* type: "tsg",
|
|
51
|
+
* resourceType: "microsoft.insights/components",
|
|
52
|
+
* order: 100,
|
|
53
|
+
* }],
|
|
54
|
+
* templateData: {
|
|
55
|
+
* version: "Notebook/1.0",
|
|
56
|
+
* items: [{
|
|
57
|
+
* type: 1,
|
|
58
|
+
* content: {
|
|
59
|
+
* json: `## New workbook
|
|
60
|
+
* ---
|
|
61
|
+
*
|
|
62
|
+
* Welcome to your new workbook.`,
|
|
63
|
+
* },
|
|
64
|
+
* name: "text - 2",
|
|
65
|
+
* }],
|
|
66
|
+
* styleSettings: {},
|
|
67
|
+
* `$schema`: "https://github.com/Microsoft/Application-Insights-Workbooks/blob/master/schema/workbook.json",
|
|
68
|
+
* },
|
|
69
|
+
* }],
|
|
70
|
+
* }),
|
|
71
|
+
* tags: {
|
|
72
|
+
* key: "value",
|
|
73
|
+
* },
|
|
74
|
+
* });
|
|
75
|
+
* ```
|
|
76
|
+
*
|
|
77
|
+
* ## Import
|
|
78
|
+
*
|
|
79
|
+
* Application Insights Workbook Template can be imported using the `resource id`, e.g.
|
|
80
|
+
*
|
|
81
|
+
* ```sh
|
|
82
|
+
* $ pulumi import azure:appinsights/workbookTemplate:WorkbookTemplate example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.Insights/workbooktemplates/resource1
|
|
83
|
+
* ```
|
|
84
|
+
*/
|
|
85
|
+
class WorkbookTemplate extends pulumi.CustomResource {
|
|
86
|
+
constructor(name, argsOrState, opts) {
|
|
87
|
+
let resourceInputs = {};
|
|
88
|
+
opts = opts || {};
|
|
89
|
+
if (opts.id) {
|
|
90
|
+
const state = argsOrState;
|
|
91
|
+
resourceInputs["author"] = state ? state.author : undefined;
|
|
92
|
+
resourceInputs["galleries"] = state ? state.galleries : undefined;
|
|
93
|
+
resourceInputs["localized"] = state ? state.localized : undefined;
|
|
94
|
+
resourceInputs["location"] = state ? state.location : undefined;
|
|
95
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
96
|
+
resourceInputs["priority"] = state ? state.priority : undefined;
|
|
97
|
+
resourceInputs["resourceGroupName"] = state ? state.resourceGroupName : undefined;
|
|
98
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
99
|
+
resourceInputs["templateData"] = state ? state.templateData : undefined;
|
|
100
|
+
}
|
|
101
|
+
else {
|
|
102
|
+
const args = argsOrState;
|
|
103
|
+
if ((!args || args.galleries === undefined) && !opts.urn) {
|
|
104
|
+
throw new Error("Missing required property 'galleries'");
|
|
105
|
+
}
|
|
106
|
+
if ((!args || args.resourceGroupName === undefined) && !opts.urn) {
|
|
107
|
+
throw new Error("Missing required property 'resourceGroupName'");
|
|
108
|
+
}
|
|
109
|
+
if ((!args || args.templateData === undefined) && !opts.urn) {
|
|
110
|
+
throw new Error("Missing required property 'templateData'");
|
|
111
|
+
}
|
|
112
|
+
resourceInputs["author"] = args ? args.author : undefined;
|
|
113
|
+
resourceInputs["galleries"] = args ? args.galleries : undefined;
|
|
114
|
+
resourceInputs["localized"] = args ? args.localized : undefined;
|
|
115
|
+
resourceInputs["location"] = args ? args.location : undefined;
|
|
116
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
117
|
+
resourceInputs["priority"] = args ? args.priority : undefined;
|
|
118
|
+
resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
|
|
119
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
120
|
+
resourceInputs["templateData"] = args ? args.templateData : undefined;
|
|
121
|
+
}
|
|
122
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
123
|
+
super(WorkbookTemplate.__pulumiType, name, resourceInputs, opts);
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Get an existing WorkbookTemplate resource's state with the given name, ID, and optional extra
|
|
127
|
+
* properties used to qualify the lookup.
|
|
128
|
+
*
|
|
129
|
+
* @param name The _unique_ name of the resulting resource.
|
|
130
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
131
|
+
* @param state Any extra arguments used during the lookup.
|
|
132
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
133
|
+
*/
|
|
134
|
+
static get(name, id, state, opts) {
|
|
135
|
+
return new WorkbookTemplate(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* Returns true if the given object is an instance of WorkbookTemplate. This is designed to work even
|
|
139
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
140
|
+
*/
|
|
141
|
+
static isInstance(obj) {
|
|
142
|
+
if (obj === undefined || obj === null) {
|
|
143
|
+
return false;
|
|
144
|
+
}
|
|
145
|
+
return obj['__pulumiType'] === WorkbookTemplate.__pulumiType;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
exports.WorkbookTemplate = WorkbookTemplate;
|
|
149
|
+
/** @internal */
|
|
150
|
+
WorkbookTemplate.__pulumiType = 'azure:appinsights/workbookTemplate:WorkbookTemplate';
|
|
151
|
+
//# sourceMappingURL=workbookTemplate.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workbookTemplate.js","sourceRoot":"","sources":["../../appinsights/workbookTemplate.ts"],"names":[],"mappings":"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"}
|
package/cognitive/account.d.ts
CHANGED
|
@@ -64,7 +64,7 @@ export declare class Account extends pulumi.CustomResource {
|
|
|
64
64
|
*/
|
|
65
65
|
readonly identity: pulumi.Output<outputs.cognitive.AccountIdentity | undefined>;
|
|
66
66
|
/**
|
|
67
|
-
* Specifies the type of Cognitive Service Account that should be created. Possible values are `Academic`, `AnomalyDetector`, `Bing.Autosuggest`, `Bing.Autosuggest.v7`, `Bing.CustomSearch`, `Bing.Search`, `Bing.Search.v7`, `Bing.Speech`, `Bing.SpellCheck`, `Bing.SpellCheck.v7`, `CognitiveServices`, `ComputerVision`, `ContentModerator`, `CustomSpeech`, `CustomVision.Prediction`, `CustomVision.Training`, `Emotion`, `Face`,`FormRecognizer`, `ImmersiveReader`, `LUIS`, `LUIS.Authoring`, `MetricsAdvisor`, `Personalizer`, `QnAMaker`, `Recommendations`, `SpeakerRecognition`, `Speech`, `SpeechServices`, `SpeechTranslation`, `TextAnalytics
|
|
67
|
+
* Specifies the type of Cognitive Service Account that should be created. Possible values are `Academic`, `AnomalyDetector`, `Bing.Autosuggest`, `Bing.Autosuggest.v7`, `Bing.CustomSearch`, `Bing.Search`, `Bing.Search.v7`, `Bing.Speech`, `Bing.SpellCheck`, `Bing.SpellCheck.v7`, `CognitiveServices`, `ComputerVision`, `ContentModerator`, `CustomSpeech`, `CustomVision.Prediction`, `CustomVision.Training`, `Emotion`, `Face`,`FormRecognizer`, `ImmersiveReader`, `LUIS`, `LUIS.Authoring`, `MetricsAdvisor`, `Personalizer`, `QnAMaker`, `Recommendations`, `SpeakerRecognition`, `Speech`, `SpeechServices`, `SpeechTranslation`, `TextAnalytics`(Language service), `TextTranslation` and `WebLM`. Changing this forces a new resource to be created.
|
|
68
68
|
*/
|
|
69
69
|
readonly kind: pulumi.Output<string>;
|
|
70
70
|
/**
|
|
@@ -171,7 +171,7 @@ export interface AccountState {
|
|
|
171
171
|
*/
|
|
172
172
|
identity?: pulumi.Input<inputs.cognitive.AccountIdentity>;
|
|
173
173
|
/**
|
|
174
|
-
* Specifies the type of Cognitive Service Account that should be created. Possible values are `Academic`, `AnomalyDetector`, `Bing.Autosuggest`, `Bing.Autosuggest.v7`, `Bing.CustomSearch`, `Bing.Search`, `Bing.Search.v7`, `Bing.Speech`, `Bing.SpellCheck`, `Bing.SpellCheck.v7`, `CognitiveServices`, `ComputerVision`, `ContentModerator`, `CustomSpeech`, `CustomVision.Prediction`, `CustomVision.Training`, `Emotion`, `Face`,`FormRecognizer`, `ImmersiveReader`, `LUIS`, `LUIS.Authoring`, `MetricsAdvisor`, `Personalizer`, `QnAMaker`, `Recommendations`, `SpeakerRecognition`, `Speech`, `SpeechServices`, `SpeechTranslation`, `TextAnalytics
|
|
174
|
+
* Specifies the type of Cognitive Service Account that should be created. Possible values are `Academic`, `AnomalyDetector`, `Bing.Autosuggest`, `Bing.Autosuggest.v7`, `Bing.CustomSearch`, `Bing.Search`, `Bing.Search.v7`, `Bing.Speech`, `Bing.SpellCheck`, `Bing.SpellCheck.v7`, `CognitiveServices`, `ComputerVision`, `ContentModerator`, `CustomSpeech`, `CustomVision.Prediction`, `CustomVision.Training`, `Emotion`, `Face`,`FormRecognizer`, `ImmersiveReader`, `LUIS`, `LUIS.Authoring`, `MetricsAdvisor`, `Personalizer`, `QnAMaker`, `Recommendations`, `SpeakerRecognition`, `Speech`, `SpeechServices`, `SpeechTranslation`, `TextAnalytics`(Language service), `TextTranslation` and `WebLM`. Changing this forces a new resource to be created.
|
|
175
175
|
*/
|
|
176
176
|
kind?: pulumi.Input<string>;
|
|
177
177
|
/**
|
|
@@ -266,7 +266,7 @@ export interface AccountArgs {
|
|
|
266
266
|
*/
|
|
267
267
|
identity?: pulumi.Input<inputs.cognitive.AccountIdentity>;
|
|
268
268
|
/**
|
|
269
|
-
* Specifies the type of Cognitive Service Account that should be created. Possible values are `Academic`, `AnomalyDetector`, `Bing.Autosuggest`, `Bing.Autosuggest.v7`, `Bing.CustomSearch`, `Bing.Search`, `Bing.Search.v7`, `Bing.Speech`, `Bing.SpellCheck`, `Bing.SpellCheck.v7`, `CognitiveServices`, `ComputerVision`, `ContentModerator`, `CustomSpeech`, `CustomVision.Prediction`, `CustomVision.Training`, `Emotion`, `Face`,`FormRecognizer`, `ImmersiveReader`, `LUIS`, `LUIS.Authoring`, `MetricsAdvisor`, `Personalizer`, `QnAMaker`, `Recommendations`, `SpeakerRecognition`, `Speech`, `SpeechServices`, `SpeechTranslation`, `TextAnalytics
|
|
269
|
+
* Specifies the type of Cognitive Service Account that should be created. Possible values are `Academic`, `AnomalyDetector`, `Bing.Autosuggest`, `Bing.Autosuggest.v7`, `Bing.CustomSearch`, `Bing.Search`, `Bing.Search.v7`, `Bing.Speech`, `Bing.SpellCheck`, `Bing.SpellCheck.v7`, `CognitiveServices`, `ComputerVision`, `ContentModerator`, `CustomSpeech`, `CustomVision.Prediction`, `CustomVision.Training`, `Emotion`, `Face`,`FormRecognizer`, `ImmersiveReader`, `LUIS`, `LUIS.Authoring`, `MetricsAdvisor`, `Personalizer`, `QnAMaker`, `Recommendations`, `SpeakerRecognition`, `Speech`, `SpeechServices`, `SpeechTranslation`, `TextAnalytics`(Language service), `TextTranslation` and `WebLM`. Changing this forces a new resource to be created.
|
|
270
270
|
*/
|
|
271
271
|
kind: pulumi.Input<string>;
|
|
272
272
|
/**
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Manages a Gallery Application.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as azure from "@pulumi/azure";
|
|
10
|
+
*
|
|
11
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
12
|
+
* const exampleSharedImageGallery = new azure.compute.SharedImageGallery("exampleSharedImageGallery", {
|
|
13
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
14
|
+
* location: exampleResourceGroup.location,
|
|
15
|
+
* });
|
|
16
|
+
* const exampleGalleryApplication = new azure.compute.GalleryApplication("exampleGalleryApplication", {
|
|
17
|
+
* galleryId: exampleSharedImageGallery.id,
|
|
18
|
+
* location: exampleResourceGroup.location,
|
|
19
|
+
* supportedOsType: "Linux",
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* ## Import
|
|
24
|
+
*
|
|
25
|
+
* Gallery Applications can be imported using the `resource id`, e.g.
|
|
26
|
+
*
|
|
27
|
+
* ```sh
|
|
28
|
+
* $ pulumi import azure:compute/galleryApplication:GalleryApplication example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Compute/galleries/gallery1/applications/galleryApplication1
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
31
|
+
export declare class GalleryApplication extends pulumi.CustomResource {
|
|
32
|
+
/**
|
|
33
|
+
* Get an existing GalleryApplication resource's state with the given name, ID, and optional extra
|
|
34
|
+
* properties used to qualify the lookup.
|
|
35
|
+
*
|
|
36
|
+
* @param name The _unique_ name of the resulting resource.
|
|
37
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
38
|
+
* @param state Any extra arguments used during the lookup.
|
|
39
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
40
|
+
*/
|
|
41
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: GalleryApplicationState, opts?: pulumi.CustomResourceOptions): GalleryApplication;
|
|
42
|
+
/**
|
|
43
|
+
* Returns true if the given object is an instance of GalleryApplication. This is designed to work even
|
|
44
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
45
|
+
*/
|
|
46
|
+
static isInstance(obj: any): obj is GalleryApplication;
|
|
47
|
+
/**
|
|
48
|
+
* A description of the Gallery Application.
|
|
49
|
+
*/
|
|
50
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
51
|
+
/**
|
|
52
|
+
* The end of life date in RFC3339 format of the Gallery Application.
|
|
53
|
+
*/
|
|
54
|
+
readonly endOfLifeDate: pulumi.Output<string | undefined>;
|
|
55
|
+
/**
|
|
56
|
+
* The End User Licence Agreement of the Gallery Application.
|
|
57
|
+
*/
|
|
58
|
+
readonly eula: pulumi.Output<string | undefined>;
|
|
59
|
+
/**
|
|
60
|
+
* The ID of the Shared Image Gallery. Changing this forces a new resource to be created.
|
|
61
|
+
*/
|
|
62
|
+
readonly galleryId: pulumi.Output<string>;
|
|
63
|
+
/**
|
|
64
|
+
* The Azure Region where the Gallery Application exists. Changing this forces a new resource to be created.
|
|
65
|
+
*/
|
|
66
|
+
readonly location: pulumi.Output<string>;
|
|
67
|
+
/**
|
|
68
|
+
* The name of the Gallery Application. Changing this forces a new resource to be created.
|
|
69
|
+
*/
|
|
70
|
+
readonly name: pulumi.Output<string>;
|
|
71
|
+
/**
|
|
72
|
+
* The URI containing the Privacy Statement associated with the Gallery Application.
|
|
73
|
+
*/
|
|
74
|
+
readonly privacyStatementUri: pulumi.Output<string | undefined>;
|
|
75
|
+
/**
|
|
76
|
+
* The URI containing the Release Notes associated with the Gallery Application.
|
|
77
|
+
*/
|
|
78
|
+
readonly releaseNoteUri: pulumi.Output<string | undefined>;
|
|
79
|
+
/**
|
|
80
|
+
* The type of the Operating System supported for the Gallery Application. Possible values are `Linux` and `Windows`. Changing this forces a new resource to be created.
|
|
81
|
+
*/
|
|
82
|
+
readonly supportedOsType: pulumi.Output<string>;
|
|
83
|
+
/**
|
|
84
|
+
* A mapping of tags to assign to the Gallery Application.
|
|
85
|
+
*/
|
|
86
|
+
readonly tags: pulumi.Output<{
|
|
87
|
+
[key: string]: string;
|
|
88
|
+
} | undefined>;
|
|
89
|
+
/**
|
|
90
|
+
* Create a GalleryApplication resource with the given unique name, arguments, and options.
|
|
91
|
+
*
|
|
92
|
+
* @param name The _unique_ name of the resource.
|
|
93
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
94
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
95
|
+
*/
|
|
96
|
+
constructor(name: string, args: GalleryApplicationArgs, opts?: pulumi.CustomResourceOptions);
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* Input properties used for looking up and filtering GalleryApplication resources.
|
|
100
|
+
*/
|
|
101
|
+
export interface GalleryApplicationState {
|
|
102
|
+
/**
|
|
103
|
+
* A description of the Gallery Application.
|
|
104
|
+
*/
|
|
105
|
+
description?: pulumi.Input<string>;
|
|
106
|
+
/**
|
|
107
|
+
* The end of life date in RFC3339 format of the Gallery Application.
|
|
108
|
+
*/
|
|
109
|
+
endOfLifeDate?: pulumi.Input<string>;
|
|
110
|
+
/**
|
|
111
|
+
* The End User Licence Agreement of the Gallery Application.
|
|
112
|
+
*/
|
|
113
|
+
eula?: pulumi.Input<string>;
|
|
114
|
+
/**
|
|
115
|
+
* The ID of the Shared Image Gallery. Changing this forces a new resource to be created.
|
|
116
|
+
*/
|
|
117
|
+
galleryId?: pulumi.Input<string>;
|
|
118
|
+
/**
|
|
119
|
+
* The Azure Region where the Gallery Application exists. Changing this forces a new resource to be created.
|
|
120
|
+
*/
|
|
121
|
+
location?: pulumi.Input<string>;
|
|
122
|
+
/**
|
|
123
|
+
* The name of the Gallery Application. Changing this forces a new resource to be created.
|
|
124
|
+
*/
|
|
125
|
+
name?: pulumi.Input<string>;
|
|
126
|
+
/**
|
|
127
|
+
* The URI containing the Privacy Statement associated with the Gallery Application.
|
|
128
|
+
*/
|
|
129
|
+
privacyStatementUri?: pulumi.Input<string>;
|
|
130
|
+
/**
|
|
131
|
+
* The URI containing the Release Notes associated with the Gallery Application.
|
|
132
|
+
*/
|
|
133
|
+
releaseNoteUri?: pulumi.Input<string>;
|
|
134
|
+
/**
|
|
135
|
+
* The type of the Operating System supported for the Gallery Application. Possible values are `Linux` and `Windows`. Changing this forces a new resource to be created.
|
|
136
|
+
*/
|
|
137
|
+
supportedOsType?: pulumi.Input<string>;
|
|
138
|
+
/**
|
|
139
|
+
* A mapping of tags to assign to the Gallery Application.
|
|
140
|
+
*/
|
|
141
|
+
tags?: pulumi.Input<{
|
|
142
|
+
[key: string]: pulumi.Input<string>;
|
|
143
|
+
}>;
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
* The set of arguments for constructing a GalleryApplication resource.
|
|
147
|
+
*/
|
|
148
|
+
export interface GalleryApplicationArgs {
|
|
149
|
+
/**
|
|
150
|
+
* A description of the Gallery Application.
|
|
151
|
+
*/
|
|
152
|
+
description?: pulumi.Input<string>;
|
|
153
|
+
/**
|
|
154
|
+
* The end of life date in RFC3339 format of the Gallery Application.
|
|
155
|
+
*/
|
|
156
|
+
endOfLifeDate?: pulumi.Input<string>;
|
|
157
|
+
/**
|
|
158
|
+
* The End User Licence Agreement of the Gallery Application.
|
|
159
|
+
*/
|
|
160
|
+
eula?: pulumi.Input<string>;
|
|
161
|
+
/**
|
|
162
|
+
* The ID of the Shared Image Gallery. Changing this forces a new resource to be created.
|
|
163
|
+
*/
|
|
164
|
+
galleryId: pulumi.Input<string>;
|
|
165
|
+
/**
|
|
166
|
+
* The Azure Region where the Gallery Application exists. Changing this forces a new resource to be created.
|
|
167
|
+
*/
|
|
168
|
+
location?: pulumi.Input<string>;
|
|
169
|
+
/**
|
|
170
|
+
* The name of the Gallery Application. Changing this forces a new resource to be created.
|
|
171
|
+
*/
|
|
172
|
+
name?: pulumi.Input<string>;
|
|
173
|
+
/**
|
|
174
|
+
* The URI containing the Privacy Statement associated with the Gallery Application.
|
|
175
|
+
*/
|
|
176
|
+
privacyStatementUri?: pulumi.Input<string>;
|
|
177
|
+
/**
|
|
178
|
+
* The URI containing the Release Notes associated with the Gallery Application.
|
|
179
|
+
*/
|
|
180
|
+
releaseNoteUri?: pulumi.Input<string>;
|
|
181
|
+
/**
|
|
182
|
+
* The type of the Operating System supported for the Gallery Application. Possible values are `Linux` and `Windows`. Changing this forces a new resource to be created.
|
|
183
|
+
*/
|
|
184
|
+
supportedOsType: pulumi.Input<string>;
|
|
185
|
+
/**
|
|
186
|
+
* A mapping of tags to assign to the Gallery Application.
|
|
187
|
+
*/
|
|
188
|
+
tags?: pulumi.Input<{
|
|
189
|
+
[key: string]: pulumi.Input<string>;
|
|
190
|
+
}>;
|
|
191
|
+
}
|