@pulumi/azure 6.1.0-alpha.1727225135 → 6.1.0-alpha.1727464111
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/arcmachine/arcMachine.d.ts +113 -0
- package/arcmachine/arcMachine.js +90 -0
- package/arcmachine/arcMachine.js.map +1 -0
- package/arcmachine/automanageConfigurationAssignment.d.ts +105 -0
- package/arcmachine/automanageConfigurationAssignment.js +96 -0
- package/arcmachine/automanageConfigurationAssignment.js.map +1 -0
- package/arcmachine/index.d.ts +6 -0
- package/arcmachine/index.js +11 -1
- package/arcmachine/index.js.map +1 -1
- package/cognitive/deployment.d.ts +40 -0
- package/cognitive/deployment.js +31 -0
- package/cognitive/deployment.js.map +1 -1
- package/dataprotection/backupInstanceKubernetesCluster.d.ts +162 -0
- package/dataprotection/backupInstanceKubernetesCluster.js +162 -0
- package/dataprotection/backupInstanceKubernetesCluster.js.map +1 -1
- package/dataprotection/backupVault.d.ts +18 -0
- package/dataprotection/backupVault.js +2 -0
- package/dataprotection/backupVault.js.map +1 -1
- package/eventhub/queue.d.ts +14 -14
- package/index.d.ts +1 -2
- package/index.js +2 -4
- package/index.js.map +1 -1
- package/mssql/database.d.ts +1 -10
- package/mssql/database.js +1 -10
- package/mssql/database.js.map +1 -1
- package/mssql/managedInstance.d.ts +12 -0
- package/mssql/managedInstance.js +2 -0
- package/mssql/managedInstance.js.map +1 -1
- package/netapp/volume.d.ts +12 -0
- package/netapp/volume.js +2 -0
- package/netapp/volume.js.map +1 -1
- package/network/virtualNetwork.d.ts +41 -0
- package/network/virtualNetwork.js +41 -0
- package/network/virtualNetwork.js.map +1 -1
- package/package.json +2 -2
- package/postgresql/flexibleServerVirtualEndpoint.d.ts +1 -1
- package/postgresql/flexibleServerVirtualEndpoint.js +1 -1
- package/sentinel/alertRuleNrt.d.ts +0 -6
- package/sentinel/alertRuleNrt.js.map +1 -1
- package/sentinel/dataConnectorMicrosoftThreatIntelligence.d.ts +0 -12
- package/sentinel/dataConnectorMicrosoftThreatIntelligence.js.map +1 -1
- package/servicebus/queue.d.ts +14 -14
- package/types/input.d.ts +54 -91
- package/types/output.d.ts +54 -91
- package/media/accountFilter.d.ts +0 -199
- package/media/accountFilter.js +0 -154
- package/media/accountFilter.js.map +0 -1
- package/media/index.d.ts +0 -3
- package/media/index.js +0 -22
- package/media/index.js.map +0 -1
package/media/accountFilter.d.ts
DELETED
|
@@ -1,199 +0,0 @@
|
|
|
1
|
-
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import * as inputs from "../types/input";
|
|
3
|
-
import * as outputs from "../types/output";
|
|
4
|
-
/**
|
|
5
|
-
* Manages a Media Services Account Filter.
|
|
6
|
-
*
|
|
7
|
-
* ## Example Usage
|
|
8
|
-
*
|
|
9
|
-
* ```typescript
|
|
10
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
-
* import * as azure from "@pulumi/azure";
|
|
12
|
-
* import * as azurerm from "@pulumi/azurerm";
|
|
13
|
-
*
|
|
14
|
-
* const example = new azure.core.ResourceGroup("example", {
|
|
15
|
-
* name: "media-resources",
|
|
16
|
-
* location: "West Europe",
|
|
17
|
-
* });
|
|
18
|
-
* const exampleAccount = new azure.storage.Account("example", {
|
|
19
|
-
* name: "examplestoracc",
|
|
20
|
-
* resourceGroupName: example.name,
|
|
21
|
-
* location: example.location,
|
|
22
|
-
* accountTier: "Standard",
|
|
23
|
-
* accountReplicationType: "GRS",
|
|
24
|
-
* });
|
|
25
|
-
* const exampleMediaServicesAccount = new azurerm.index.MediaServicesAccount("example", {
|
|
26
|
-
* name: "examplemediaacc",
|
|
27
|
-
* location: example.location,
|
|
28
|
-
* resourceGroupName: example.name,
|
|
29
|
-
* storageAccount: [{
|
|
30
|
-
* id: exampleAccount.id,
|
|
31
|
-
* isPrimary: true,
|
|
32
|
-
* }],
|
|
33
|
-
* });
|
|
34
|
-
* const exampleAccountFilter = new azure.media.AccountFilter("example", {
|
|
35
|
-
* name: "Filter1",
|
|
36
|
-
* resourceGroupName: testAzurermResourceGroup.name,
|
|
37
|
-
* mediaServicesAccountName: test.name,
|
|
38
|
-
* firstQualityBitrate: 128000,
|
|
39
|
-
* presentationTimeRange: {
|
|
40
|
-
* startInUnits: 0,
|
|
41
|
-
* endInUnits: 15,
|
|
42
|
-
* presentationWindowInUnits: 90,
|
|
43
|
-
* liveBackoffInUnits: 0,
|
|
44
|
-
* unitTimescaleInMilliseconds: 1000,
|
|
45
|
-
* forceEnd: false,
|
|
46
|
-
* },
|
|
47
|
-
* trackSelections: [
|
|
48
|
-
* {
|
|
49
|
-
* conditions: [
|
|
50
|
-
* {
|
|
51
|
-
* property: "Type",
|
|
52
|
-
* operation: "Equal",
|
|
53
|
-
* value: "Audio",
|
|
54
|
-
* },
|
|
55
|
-
* {
|
|
56
|
-
* property: "Language",
|
|
57
|
-
* operation: "NotEqual",
|
|
58
|
-
* value: "en",
|
|
59
|
-
* },
|
|
60
|
-
* {
|
|
61
|
-
* property: "FourCC",
|
|
62
|
-
* operation: "NotEqual",
|
|
63
|
-
* value: "EC-3",
|
|
64
|
-
* },
|
|
65
|
-
* ],
|
|
66
|
-
* },
|
|
67
|
-
* {
|
|
68
|
-
* conditions: [
|
|
69
|
-
* {
|
|
70
|
-
* property: "Type",
|
|
71
|
-
* operation: "Equal",
|
|
72
|
-
* value: "Video",
|
|
73
|
-
* },
|
|
74
|
-
* {
|
|
75
|
-
* property: "Bitrate",
|
|
76
|
-
* operation: "Equal",
|
|
77
|
-
* value: "3000000-5000000",
|
|
78
|
-
* },
|
|
79
|
-
* ],
|
|
80
|
-
* },
|
|
81
|
-
* ],
|
|
82
|
-
* });
|
|
83
|
-
* ```
|
|
84
|
-
*
|
|
85
|
-
* ## Import
|
|
86
|
-
*
|
|
87
|
-
* Account Filters can be imported using the `resource id`, e.g.
|
|
88
|
-
*
|
|
89
|
-
* ```sh
|
|
90
|
-
* $ pulumi import azure:media/accountFilter:AccountFilter example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Media/mediaServices/account1/accountFilters/filter1
|
|
91
|
-
* ```
|
|
92
|
-
*/
|
|
93
|
-
export declare class AccountFilter extends pulumi.CustomResource {
|
|
94
|
-
/**
|
|
95
|
-
* Get an existing AccountFilter resource's state with the given name, ID, and optional extra
|
|
96
|
-
* properties used to qualify the lookup.
|
|
97
|
-
*
|
|
98
|
-
* @param name The _unique_ name of the resulting resource.
|
|
99
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
100
|
-
* @param state Any extra arguments used during the lookup.
|
|
101
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
102
|
-
*/
|
|
103
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AccountFilterState, opts?: pulumi.CustomResourceOptions): AccountFilter;
|
|
104
|
-
/**
|
|
105
|
-
* Returns true if the given object is an instance of AccountFilter. This is designed to work even
|
|
106
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
107
|
-
*/
|
|
108
|
-
static isInstance(obj: any): obj is AccountFilter;
|
|
109
|
-
/**
|
|
110
|
-
* The first quality bitrate. Sets the first video track to appear in the Live Streaming playlist to allow HLS native players to start downloading from this quality level at the beginning.
|
|
111
|
-
*/
|
|
112
|
-
readonly firstQualityBitrate: pulumi.Output<number | undefined>;
|
|
113
|
-
/**
|
|
114
|
-
* The Media Services account name. Changing this forces a new Account Filter to be created.
|
|
115
|
-
*/
|
|
116
|
-
readonly mediaServicesAccountName: pulumi.Output<string>;
|
|
117
|
-
/**
|
|
118
|
-
* The name which should be used for this Account Filter. Changing this forces a new Account Filter to be created.
|
|
119
|
-
*/
|
|
120
|
-
readonly name: pulumi.Output<string>;
|
|
121
|
-
/**
|
|
122
|
-
* A `presentationTimeRange` block as defined below.
|
|
123
|
-
*/
|
|
124
|
-
readonly presentationTimeRange: pulumi.Output<outputs.media.AccountFilterPresentationTimeRange | undefined>;
|
|
125
|
-
/**
|
|
126
|
-
* The name of the Resource Group where the Account Filter should exist. Changing this forces a new Account Filter to be created.
|
|
127
|
-
*/
|
|
128
|
-
readonly resourceGroupName: pulumi.Output<string>;
|
|
129
|
-
/**
|
|
130
|
-
* One or more `trackSelection` blocks as defined below.
|
|
131
|
-
*/
|
|
132
|
-
readonly trackSelections: pulumi.Output<outputs.media.AccountFilterTrackSelection[] | undefined>;
|
|
133
|
-
/**
|
|
134
|
-
* Create a AccountFilter resource with the given unique name, arguments, and options.
|
|
135
|
-
*
|
|
136
|
-
* @param name The _unique_ name of the resource.
|
|
137
|
-
* @param args The arguments to use to populate this resource's properties.
|
|
138
|
-
* @param opts A bag of options that control this resource's behavior.
|
|
139
|
-
*/
|
|
140
|
-
constructor(name: string, args: AccountFilterArgs, opts?: pulumi.CustomResourceOptions);
|
|
141
|
-
}
|
|
142
|
-
/**
|
|
143
|
-
* Input properties used for looking up and filtering AccountFilter resources.
|
|
144
|
-
*/
|
|
145
|
-
export interface AccountFilterState {
|
|
146
|
-
/**
|
|
147
|
-
* The first quality bitrate. Sets the first video track to appear in the Live Streaming playlist to allow HLS native players to start downloading from this quality level at the beginning.
|
|
148
|
-
*/
|
|
149
|
-
firstQualityBitrate?: pulumi.Input<number>;
|
|
150
|
-
/**
|
|
151
|
-
* The Media Services account name. Changing this forces a new Account Filter to be created.
|
|
152
|
-
*/
|
|
153
|
-
mediaServicesAccountName?: pulumi.Input<string>;
|
|
154
|
-
/**
|
|
155
|
-
* The name which should be used for this Account Filter. Changing this forces a new Account Filter to be created.
|
|
156
|
-
*/
|
|
157
|
-
name?: pulumi.Input<string>;
|
|
158
|
-
/**
|
|
159
|
-
* A `presentationTimeRange` block as defined below.
|
|
160
|
-
*/
|
|
161
|
-
presentationTimeRange?: pulumi.Input<inputs.media.AccountFilterPresentationTimeRange>;
|
|
162
|
-
/**
|
|
163
|
-
* The name of the Resource Group where the Account Filter should exist. Changing this forces a new Account Filter to be created.
|
|
164
|
-
*/
|
|
165
|
-
resourceGroupName?: pulumi.Input<string>;
|
|
166
|
-
/**
|
|
167
|
-
* One or more `trackSelection` blocks as defined below.
|
|
168
|
-
*/
|
|
169
|
-
trackSelections?: pulumi.Input<pulumi.Input<inputs.media.AccountFilterTrackSelection>[]>;
|
|
170
|
-
}
|
|
171
|
-
/**
|
|
172
|
-
* The set of arguments for constructing a AccountFilter resource.
|
|
173
|
-
*/
|
|
174
|
-
export interface AccountFilterArgs {
|
|
175
|
-
/**
|
|
176
|
-
* The first quality bitrate. Sets the first video track to appear in the Live Streaming playlist to allow HLS native players to start downloading from this quality level at the beginning.
|
|
177
|
-
*/
|
|
178
|
-
firstQualityBitrate?: pulumi.Input<number>;
|
|
179
|
-
/**
|
|
180
|
-
* The Media Services account name. Changing this forces a new Account Filter to be created.
|
|
181
|
-
*/
|
|
182
|
-
mediaServicesAccountName: pulumi.Input<string>;
|
|
183
|
-
/**
|
|
184
|
-
* The name which should be used for this Account Filter. Changing this forces a new Account Filter to be created.
|
|
185
|
-
*/
|
|
186
|
-
name?: pulumi.Input<string>;
|
|
187
|
-
/**
|
|
188
|
-
* A `presentationTimeRange` block as defined below.
|
|
189
|
-
*/
|
|
190
|
-
presentationTimeRange?: pulumi.Input<inputs.media.AccountFilterPresentationTimeRange>;
|
|
191
|
-
/**
|
|
192
|
-
* The name of the Resource Group where the Account Filter should exist. Changing this forces a new Account Filter to be created.
|
|
193
|
-
*/
|
|
194
|
-
resourceGroupName: pulumi.Input<string>;
|
|
195
|
-
/**
|
|
196
|
-
* One or more `trackSelection` blocks as defined below.
|
|
197
|
-
*/
|
|
198
|
-
trackSelections?: pulumi.Input<pulumi.Input<inputs.media.AccountFilterTrackSelection>[]>;
|
|
199
|
-
}
|
package/media/accountFilter.js
DELETED
|
@@ -1,154 +0,0 @@
|
|
|
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.AccountFilter = void 0;
|
|
6
|
-
const pulumi = require("@pulumi/pulumi");
|
|
7
|
-
const utilities = require("../utilities");
|
|
8
|
-
/**
|
|
9
|
-
* Manages a Media Services Account Filter.
|
|
10
|
-
*
|
|
11
|
-
* ## Example Usage
|
|
12
|
-
*
|
|
13
|
-
* ```typescript
|
|
14
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
-
* import * as azure from "@pulumi/azure";
|
|
16
|
-
* import * as azurerm from "@pulumi/azurerm";
|
|
17
|
-
*
|
|
18
|
-
* const example = new azure.core.ResourceGroup("example", {
|
|
19
|
-
* name: "media-resources",
|
|
20
|
-
* location: "West Europe",
|
|
21
|
-
* });
|
|
22
|
-
* const exampleAccount = new azure.storage.Account("example", {
|
|
23
|
-
* name: "examplestoracc",
|
|
24
|
-
* resourceGroupName: example.name,
|
|
25
|
-
* location: example.location,
|
|
26
|
-
* accountTier: "Standard",
|
|
27
|
-
* accountReplicationType: "GRS",
|
|
28
|
-
* });
|
|
29
|
-
* const exampleMediaServicesAccount = new azurerm.index.MediaServicesAccount("example", {
|
|
30
|
-
* name: "examplemediaacc",
|
|
31
|
-
* location: example.location,
|
|
32
|
-
* resourceGroupName: example.name,
|
|
33
|
-
* storageAccount: [{
|
|
34
|
-
* id: exampleAccount.id,
|
|
35
|
-
* isPrimary: true,
|
|
36
|
-
* }],
|
|
37
|
-
* });
|
|
38
|
-
* const exampleAccountFilter = new azure.media.AccountFilter("example", {
|
|
39
|
-
* name: "Filter1",
|
|
40
|
-
* resourceGroupName: testAzurermResourceGroup.name,
|
|
41
|
-
* mediaServicesAccountName: test.name,
|
|
42
|
-
* firstQualityBitrate: 128000,
|
|
43
|
-
* presentationTimeRange: {
|
|
44
|
-
* startInUnits: 0,
|
|
45
|
-
* endInUnits: 15,
|
|
46
|
-
* presentationWindowInUnits: 90,
|
|
47
|
-
* liveBackoffInUnits: 0,
|
|
48
|
-
* unitTimescaleInMilliseconds: 1000,
|
|
49
|
-
* forceEnd: false,
|
|
50
|
-
* },
|
|
51
|
-
* trackSelections: [
|
|
52
|
-
* {
|
|
53
|
-
* conditions: [
|
|
54
|
-
* {
|
|
55
|
-
* property: "Type",
|
|
56
|
-
* operation: "Equal",
|
|
57
|
-
* value: "Audio",
|
|
58
|
-
* },
|
|
59
|
-
* {
|
|
60
|
-
* property: "Language",
|
|
61
|
-
* operation: "NotEqual",
|
|
62
|
-
* value: "en",
|
|
63
|
-
* },
|
|
64
|
-
* {
|
|
65
|
-
* property: "FourCC",
|
|
66
|
-
* operation: "NotEqual",
|
|
67
|
-
* value: "EC-3",
|
|
68
|
-
* },
|
|
69
|
-
* ],
|
|
70
|
-
* },
|
|
71
|
-
* {
|
|
72
|
-
* conditions: [
|
|
73
|
-
* {
|
|
74
|
-
* property: "Type",
|
|
75
|
-
* operation: "Equal",
|
|
76
|
-
* value: "Video",
|
|
77
|
-
* },
|
|
78
|
-
* {
|
|
79
|
-
* property: "Bitrate",
|
|
80
|
-
* operation: "Equal",
|
|
81
|
-
* value: "3000000-5000000",
|
|
82
|
-
* },
|
|
83
|
-
* ],
|
|
84
|
-
* },
|
|
85
|
-
* ],
|
|
86
|
-
* });
|
|
87
|
-
* ```
|
|
88
|
-
*
|
|
89
|
-
* ## Import
|
|
90
|
-
*
|
|
91
|
-
* Account Filters can be imported using the `resource id`, e.g.
|
|
92
|
-
*
|
|
93
|
-
* ```sh
|
|
94
|
-
* $ pulumi import azure:media/accountFilter:AccountFilter example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Media/mediaServices/account1/accountFilters/filter1
|
|
95
|
-
* ```
|
|
96
|
-
*/
|
|
97
|
-
class AccountFilter extends pulumi.CustomResource {
|
|
98
|
-
constructor(name, argsOrState, opts) {
|
|
99
|
-
let resourceInputs = {};
|
|
100
|
-
opts = opts || {};
|
|
101
|
-
if (opts.id) {
|
|
102
|
-
const state = argsOrState;
|
|
103
|
-
resourceInputs["firstQualityBitrate"] = state ? state.firstQualityBitrate : undefined;
|
|
104
|
-
resourceInputs["mediaServicesAccountName"] = state ? state.mediaServicesAccountName : undefined;
|
|
105
|
-
resourceInputs["name"] = state ? state.name : undefined;
|
|
106
|
-
resourceInputs["presentationTimeRange"] = state ? state.presentationTimeRange : undefined;
|
|
107
|
-
resourceInputs["resourceGroupName"] = state ? state.resourceGroupName : undefined;
|
|
108
|
-
resourceInputs["trackSelections"] = state ? state.trackSelections : undefined;
|
|
109
|
-
}
|
|
110
|
-
else {
|
|
111
|
-
const args = argsOrState;
|
|
112
|
-
if ((!args || args.mediaServicesAccountName === undefined) && !opts.urn) {
|
|
113
|
-
throw new Error("Missing required property 'mediaServicesAccountName'");
|
|
114
|
-
}
|
|
115
|
-
if ((!args || args.resourceGroupName === undefined) && !opts.urn) {
|
|
116
|
-
throw new Error("Missing required property 'resourceGroupName'");
|
|
117
|
-
}
|
|
118
|
-
resourceInputs["firstQualityBitrate"] = args ? args.firstQualityBitrate : undefined;
|
|
119
|
-
resourceInputs["mediaServicesAccountName"] = args ? args.mediaServicesAccountName : undefined;
|
|
120
|
-
resourceInputs["name"] = args ? args.name : undefined;
|
|
121
|
-
resourceInputs["presentationTimeRange"] = args ? args.presentationTimeRange : undefined;
|
|
122
|
-
resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
|
|
123
|
-
resourceInputs["trackSelections"] = args ? args.trackSelections : undefined;
|
|
124
|
-
}
|
|
125
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
126
|
-
super(AccountFilter.__pulumiType, name, resourceInputs, opts);
|
|
127
|
-
}
|
|
128
|
-
/**
|
|
129
|
-
* Get an existing AccountFilter resource's state with the given name, ID, and optional extra
|
|
130
|
-
* properties used to qualify the lookup.
|
|
131
|
-
*
|
|
132
|
-
* @param name The _unique_ name of the resulting resource.
|
|
133
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
134
|
-
* @param state Any extra arguments used during the lookup.
|
|
135
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
136
|
-
*/
|
|
137
|
-
static get(name, id, state, opts) {
|
|
138
|
-
return new AccountFilter(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
139
|
-
}
|
|
140
|
-
/**
|
|
141
|
-
* Returns true if the given object is an instance of AccountFilter. This is designed to work even
|
|
142
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
143
|
-
*/
|
|
144
|
-
static isInstance(obj) {
|
|
145
|
-
if (obj === undefined || obj === null) {
|
|
146
|
-
return false;
|
|
147
|
-
}
|
|
148
|
-
return obj['__pulumiType'] === AccountFilter.__pulumiType;
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
exports.AccountFilter = AccountFilter;
|
|
152
|
-
/** @internal */
|
|
153
|
-
AccountFilter.__pulumiType = 'azure:media/accountFilter:AccountFilter';
|
|
154
|
-
//# sourceMappingURL=accountFilter.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"accountFilter.js","sourceRoot":"","sources":["../../media/accountFilter.ts"],"names":[],"mappings":"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"}
|
package/media/index.d.ts
DELETED
package/media/index.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
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.AccountFilter = void 0;
|
|
6
|
-
const pulumi = require("@pulumi/pulumi");
|
|
7
|
-
const utilities = require("../utilities");
|
|
8
|
-
exports.AccountFilter = null;
|
|
9
|
-
utilities.lazyLoad(exports, ["AccountFilter"], () => require("./accountFilter"));
|
|
10
|
-
const _module = {
|
|
11
|
-
version: utilities.getVersion(),
|
|
12
|
-
construct: (name, type, urn) => {
|
|
13
|
-
switch (type) {
|
|
14
|
-
case "azure:media/accountFilter:AccountFilter":
|
|
15
|
-
return new exports.AccountFilter(name, undefined, { urn });
|
|
16
|
-
default:
|
|
17
|
-
throw new Error(`unknown resource type ${type}`);
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
};
|
|
21
|
-
pulumi.runtime.registerResourceModule("azure", "media/accountFilter", _module);
|
|
22
|
-
//# sourceMappingURL=index.js.map
|
package/media/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../media/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,aAAa,GAAmD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAGjF,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,yCAAyC;gBAC1C,OAAO,IAAI,qBAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA"}
|