@pulumi/azure 6.1.0-alpha.1727458001 → 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/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/managedInstance.d.ts +12 -0
- package/mssql/managedInstance.js +2 -0
- package/mssql/managedInstance.js.map +1 -1
- package/package.json +2 -2
- package/servicebus/queue.d.ts +14 -14
- package/types/input.d.ts +3 -18
- package/types/output.d.ts +3 -18
- package/media/accountFilter.d.ts +0 -56
- package/media/accountFilter.js +0 -65
- 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
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Manages a Hybrid Compute Machine.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as azure from "@pulumi/azure";
|
|
10
|
+
*
|
|
11
|
+
* const example = new azure.core.ResourceGroup("example", {
|
|
12
|
+
* name: "example-resources",
|
|
13
|
+
* location: "West Europe",
|
|
14
|
+
* });
|
|
15
|
+
* const exampleArcMachine = new azure.arcmachine.ArcMachine("example", {
|
|
16
|
+
* name: "example-arcmachine",
|
|
17
|
+
* resourceGroupName: example.name,
|
|
18
|
+
* location: example.location,
|
|
19
|
+
* kind: "SCVMM",
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* ## Import
|
|
24
|
+
*
|
|
25
|
+
* Arc Machines can be imported using the `resource id`, e.g.
|
|
26
|
+
*
|
|
27
|
+
* ```sh
|
|
28
|
+
* $ pulumi import azure:arcmachine/arcMachine:ArcMachine example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.HybridCompute/machines/machine1
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
31
|
+
export declare class ArcMachine extends pulumi.CustomResource {
|
|
32
|
+
/**
|
|
33
|
+
* Get an existing ArcMachine 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?: ArcMachineState, opts?: pulumi.CustomResourceOptions): ArcMachine;
|
|
42
|
+
/**
|
|
43
|
+
* Returns true if the given object is an instance of ArcMachine. 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 ArcMachine;
|
|
47
|
+
/**
|
|
48
|
+
* The kind of the Arc Machine. Possible values are `AVS`, `AWS`, `EPS`, `GCP`, `HCI`, `SCVMM` and `VMware`. Changing this forces a new resource to be created.
|
|
49
|
+
*/
|
|
50
|
+
readonly kind: pulumi.Output<string>;
|
|
51
|
+
/**
|
|
52
|
+
* The Azure Region where the Arc Machine should exist. Changing this forces a new resource to be created.
|
|
53
|
+
*/
|
|
54
|
+
readonly location: pulumi.Output<string>;
|
|
55
|
+
/**
|
|
56
|
+
* The name of the Arc machine. Changing this forces a new resource to be created.
|
|
57
|
+
*/
|
|
58
|
+
readonly name: pulumi.Output<string>;
|
|
59
|
+
/**
|
|
60
|
+
* The name of the Resource Group where the Arc Machine should exist. Changing this forces a new resource to be created.
|
|
61
|
+
*/
|
|
62
|
+
readonly resourceGroupName: pulumi.Output<string>;
|
|
63
|
+
/**
|
|
64
|
+
* Create a ArcMachine resource with the given unique name, arguments, and options.
|
|
65
|
+
*
|
|
66
|
+
* @param name The _unique_ name of the resource.
|
|
67
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
68
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
69
|
+
*/
|
|
70
|
+
constructor(name: string, args: ArcMachineArgs, opts?: pulumi.CustomResourceOptions);
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* Input properties used for looking up and filtering ArcMachine resources.
|
|
74
|
+
*/
|
|
75
|
+
export interface ArcMachineState {
|
|
76
|
+
/**
|
|
77
|
+
* The kind of the Arc Machine. Possible values are `AVS`, `AWS`, `EPS`, `GCP`, `HCI`, `SCVMM` and `VMware`. Changing this forces a new resource to be created.
|
|
78
|
+
*/
|
|
79
|
+
kind?: pulumi.Input<string>;
|
|
80
|
+
/**
|
|
81
|
+
* The Azure Region where the Arc Machine should exist. Changing this forces a new resource to be created.
|
|
82
|
+
*/
|
|
83
|
+
location?: pulumi.Input<string>;
|
|
84
|
+
/**
|
|
85
|
+
* The name of the Arc machine. Changing this forces a new resource to be created.
|
|
86
|
+
*/
|
|
87
|
+
name?: pulumi.Input<string>;
|
|
88
|
+
/**
|
|
89
|
+
* The name of the Resource Group where the Arc Machine should exist. Changing this forces a new resource to be created.
|
|
90
|
+
*/
|
|
91
|
+
resourceGroupName?: pulumi.Input<string>;
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* The set of arguments for constructing a ArcMachine resource.
|
|
95
|
+
*/
|
|
96
|
+
export interface ArcMachineArgs {
|
|
97
|
+
/**
|
|
98
|
+
* The kind of the Arc Machine. Possible values are `AVS`, `AWS`, `EPS`, `GCP`, `HCI`, `SCVMM` and `VMware`. Changing this forces a new resource to be created.
|
|
99
|
+
*/
|
|
100
|
+
kind: pulumi.Input<string>;
|
|
101
|
+
/**
|
|
102
|
+
* The Azure Region where the Arc Machine should exist. Changing this forces a new resource to be created.
|
|
103
|
+
*/
|
|
104
|
+
location?: pulumi.Input<string>;
|
|
105
|
+
/**
|
|
106
|
+
* The name of the Arc machine. Changing this forces a new resource to be created.
|
|
107
|
+
*/
|
|
108
|
+
name?: pulumi.Input<string>;
|
|
109
|
+
/**
|
|
110
|
+
* The name of the Resource Group where the Arc Machine should exist. Changing this forces a new resource to be created.
|
|
111
|
+
*/
|
|
112
|
+
resourceGroupName: pulumi.Input<string>;
|
|
113
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
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.ArcMachine = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages a Hybrid Compute Machine.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azure from "@pulumi/azure";
|
|
16
|
+
*
|
|
17
|
+
* const example = new azure.core.ResourceGroup("example", {
|
|
18
|
+
* name: "example-resources",
|
|
19
|
+
* location: "West Europe",
|
|
20
|
+
* });
|
|
21
|
+
* const exampleArcMachine = new azure.arcmachine.ArcMachine("example", {
|
|
22
|
+
* name: "example-arcmachine",
|
|
23
|
+
* resourceGroupName: example.name,
|
|
24
|
+
* location: example.location,
|
|
25
|
+
* kind: "SCVMM",
|
|
26
|
+
* });
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
29
|
+
* ## Import
|
|
30
|
+
*
|
|
31
|
+
* Arc Machines can be imported using the `resource id`, e.g.
|
|
32
|
+
*
|
|
33
|
+
* ```sh
|
|
34
|
+
* $ pulumi import azure:arcmachine/arcMachine:ArcMachine example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.HybridCompute/machines/machine1
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
class ArcMachine extends pulumi.CustomResource {
|
|
38
|
+
constructor(name, argsOrState, opts) {
|
|
39
|
+
let resourceInputs = {};
|
|
40
|
+
opts = opts || {};
|
|
41
|
+
if (opts.id) {
|
|
42
|
+
const state = argsOrState;
|
|
43
|
+
resourceInputs["kind"] = state ? state.kind : undefined;
|
|
44
|
+
resourceInputs["location"] = state ? state.location : undefined;
|
|
45
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
46
|
+
resourceInputs["resourceGroupName"] = state ? state.resourceGroupName : undefined;
|
|
47
|
+
}
|
|
48
|
+
else {
|
|
49
|
+
const args = argsOrState;
|
|
50
|
+
if ((!args || args.kind === undefined) && !opts.urn) {
|
|
51
|
+
throw new Error("Missing required property 'kind'");
|
|
52
|
+
}
|
|
53
|
+
if ((!args || args.resourceGroupName === undefined) && !opts.urn) {
|
|
54
|
+
throw new Error("Missing required property 'resourceGroupName'");
|
|
55
|
+
}
|
|
56
|
+
resourceInputs["kind"] = args ? args.kind : undefined;
|
|
57
|
+
resourceInputs["location"] = args ? args.location : undefined;
|
|
58
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
59
|
+
resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
|
|
60
|
+
}
|
|
61
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
62
|
+
super(ArcMachine.__pulumiType, name, resourceInputs, opts);
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Get an existing ArcMachine resource's state with the given name, ID, and optional extra
|
|
66
|
+
* properties used to qualify the lookup.
|
|
67
|
+
*
|
|
68
|
+
* @param name The _unique_ name of the resulting resource.
|
|
69
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
70
|
+
* @param state Any extra arguments used during the lookup.
|
|
71
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
72
|
+
*/
|
|
73
|
+
static get(name, id, state, opts) {
|
|
74
|
+
return new ArcMachine(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Returns true if the given object is an instance of ArcMachine. This is designed to work even
|
|
78
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
79
|
+
*/
|
|
80
|
+
static isInstance(obj) {
|
|
81
|
+
if (obj === undefined || obj === null) {
|
|
82
|
+
return false;
|
|
83
|
+
}
|
|
84
|
+
return obj['__pulumiType'] === ArcMachine.__pulumiType;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
exports.ArcMachine = ArcMachine;
|
|
88
|
+
/** @internal */
|
|
89
|
+
ArcMachine.__pulumiType = 'azure:arcmachine/arcMachine:ArcMachine';
|
|
90
|
+
//# sourceMappingURL=arcMachine.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"arcMachine.js","sourceRoot":"","sources":["../../arcmachine/arcMachine.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;IAqDjD,YAAY,IAAY,EAAE,WAA8C,EAAE,IAAmC;QACzG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0C,CAAC;YACzD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;SACrF;aAAM;YACH,MAAM,IAAI,GAAG,WAAyC,CAAC;YACvD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9D,MAAM,IAAI,KAAK,CAAC,+CAA+C,CAAC,CAAC;aACpE;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;SACnF;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,UAAU,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/D,CAAC;IA5ED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuB,EAAE,IAAmC;QACrH,OAAO,IAAI,UAAU,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACjE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,UAAU,CAAC,YAAY,CAAC;IAC3D,CAAC;;AA1BL,gCA8EC;AAhEG,gBAAgB;AACO,uBAAY,GAAG,wCAAwC,CAAC"}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Manages an Arc Machine Automanage Configuration Profile Assignment.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as azure from "@pulumi/azure";
|
|
10
|
+
*
|
|
11
|
+
* const config = new pulumi.Config();
|
|
12
|
+
* // The name of the Arc Machine.
|
|
13
|
+
* const arcMachineName = config.requireObject("arcMachineName");
|
|
14
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("example", {
|
|
15
|
+
* name: "example-resources",
|
|
16
|
+
* location: "West Europe",
|
|
17
|
+
* });
|
|
18
|
+
* const example = exampleResourceGroup.name.apply(name => azure.arcmachine.getOutput({
|
|
19
|
+
* name: arcMachineName,
|
|
20
|
+
* resourceGroupName: name,
|
|
21
|
+
* }));
|
|
22
|
+
* const exampleConfiguration = new azure.automanage.Configuration("example", {
|
|
23
|
+
* name: "example-configuration",
|
|
24
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
25
|
+
* location: exampleResourceGroup.location,
|
|
26
|
+
* });
|
|
27
|
+
* const exampleAutomanageConfigurationAssignment = new azure.arcmachine.AutomanageConfigurationAssignment("example", {
|
|
28
|
+
* arcMachineId: example.apply(example => example.id),
|
|
29
|
+
* configurationId: exampleConfiguration.id,
|
|
30
|
+
* });
|
|
31
|
+
* ```
|
|
32
|
+
*
|
|
33
|
+
* ## Import
|
|
34
|
+
*
|
|
35
|
+
* Virtual Machine Automanage Configuration Profile Assignment can be imported using the `resource id`, e.g.
|
|
36
|
+
*
|
|
37
|
+
* ```sh
|
|
38
|
+
* $ pulumi import azure:arcmachine/automanageConfigurationAssignment:AutomanageConfigurationAssignment example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.HybridCompute/Microsoft.HybridCompute/machines/machine1/providers/Microsoft.AutoManage/configurationProfileAssignments/default
|
|
39
|
+
* ```
|
|
40
|
+
*/
|
|
41
|
+
export declare class AutomanageConfigurationAssignment extends pulumi.CustomResource {
|
|
42
|
+
/**
|
|
43
|
+
* Get an existing AutomanageConfigurationAssignment resource's state with the given name, ID, and optional extra
|
|
44
|
+
* properties used to qualify the lookup.
|
|
45
|
+
*
|
|
46
|
+
* @param name The _unique_ name of the resulting resource.
|
|
47
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
48
|
+
* @param state Any extra arguments used during the lookup.
|
|
49
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
50
|
+
*/
|
|
51
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AutomanageConfigurationAssignmentState, opts?: pulumi.CustomResourceOptions): AutomanageConfigurationAssignment;
|
|
52
|
+
/**
|
|
53
|
+
* Returns true if the given object is an instance of AutomanageConfigurationAssignment. This is designed to work even
|
|
54
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
55
|
+
*/
|
|
56
|
+
static isInstance(obj: any): obj is AutomanageConfigurationAssignment;
|
|
57
|
+
/**
|
|
58
|
+
* The ARM resource ID of the Arc Machine to assign the Automanage Configuration to. Changing this forces a new resource to be created.
|
|
59
|
+
*/
|
|
60
|
+
readonly arcMachineId: pulumi.Output<string>;
|
|
61
|
+
/**
|
|
62
|
+
* The ARM resource ID of the Automanage Configuration to assign to the Virtual Machine. Changing this forces a new resource to be created.
|
|
63
|
+
*
|
|
64
|
+
* > **NOTE:** For a successful creation of this resource, locate "Automanage API Access" app within your Entra ID tenant. Make sure it's granted access to the scope that includes the arc server.
|
|
65
|
+
*/
|
|
66
|
+
readonly configurationId: pulumi.Output<string>;
|
|
67
|
+
/**
|
|
68
|
+
* Create a AutomanageConfigurationAssignment resource with the given unique name, arguments, and options.
|
|
69
|
+
*
|
|
70
|
+
* @param name The _unique_ name of the resource.
|
|
71
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
72
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
73
|
+
*/
|
|
74
|
+
constructor(name: string, args: AutomanageConfigurationAssignmentArgs, opts?: pulumi.CustomResourceOptions);
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Input properties used for looking up and filtering AutomanageConfigurationAssignment resources.
|
|
78
|
+
*/
|
|
79
|
+
export interface AutomanageConfigurationAssignmentState {
|
|
80
|
+
/**
|
|
81
|
+
* The ARM resource ID of the Arc Machine to assign the Automanage Configuration to. Changing this forces a new resource to be created.
|
|
82
|
+
*/
|
|
83
|
+
arcMachineId?: pulumi.Input<string>;
|
|
84
|
+
/**
|
|
85
|
+
* The ARM resource ID of the Automanage Configuration to assign to the Virtual Machine. Changing this forces a new resource to be created.
|
|
86
|
+
*
|
|
87
|
+
* > **NOTE:** For a successful creation of this resource, locate "Automanage API Access" app within your Entra ID tenant. Make sure it's granted access to the scope that includes the arc server.
|
|
88
|
+
*/
|
|
89
|
+
configurationId?: pulumi.Input<string>;
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* The set of arguments for constructing a AutomanageConfigurationAssignment resource.
|
|
93
|
+
*/
|
|
94
|
+
export interface AutomanageConfigurationAssignmentArgs {
|
|
95
|
+
/**
|
|
96
|
+
* The ARM resource ID of the Arc Machine to assign the Automanage Configuration to. Changing this forces a new resource to be created.
|
|
97
|
+
*/
|
|
98
|
+
arcMachineId: pulumi.Input<string>;
|
|
99
|
+
/**
|
|
100
|
+
* The ARM resource ID of the Automanage Configuration to assign to the Virtual Machine. Changing this forces a new resource to be created.
|
|
101
|
+
*
|
|
102
|
+
* > **NOTE:** For a successful creation of this resource, locate "Automanage API Access" app within your Entra ID tenant. Make sure it's granted access to the scope that includes the arc server.
|
|
103
|
+
*/
|
|
104
|
+
configurationId: pulumi.Input<string>;
|
|
105
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
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.AutomanageConfigurationAssignment = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages an Arc Machine Automanage Configuration Profile Assignment.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azure from "@pulumi/azure";
|
|
16
|
+
*
|
|
17
|
+
* const config = new pulumi.Config();
|
|
18
|
+
* // The name of the Arc Machine.
|
|
19
|
+
* const arcMachineName = config.requireObject("arcMachineName");
|
|
20
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("example", {
|
|
21
|
+
* name: "example-resources",
|
|
22
|
+
* location: "West Europe",
|
|
23
|
+
* });
|
|
24
|
+
* const example = exampleResourceGroup.name.apply(name => azure.arcmachine.getOutput({
|
|
25
|
+
* name: arcMachineName,
|
|
26
|
+
* resourceGroupName: name,
|
|
27
|
+
* }));
|
|
28
|
+
* const exampleConfiguration = new azure.automanage.Configuration("example", {
|
|
29
|
+
* name: "example-configuration",
|
|
30
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
31
|
+
* location: exampleResourceGroup.location,
|
|
32
|
+
* });
|
|
33
|
+
* const exampleAutomanageConfigurationAssignment = new azure.arcmachine.AutomanageConfigurationAssignment("example", {
|
|
34
|
+
* arcMachineId: example.apply(example => example.id),
|
|
35
|
+
* configurationId: exampleConfiguration.id,
|
|
36
|
+
* });
|
|
37
|
+
* ```
|
|
38
|
+
*
|
|
39
|
+
* ## Import
|
|
40
|
+
*
|
|
41
|
+
* Virtual Machine Automanage Configuration Profile Assignment can be imported using the `resource id`, e.g.
|
|
42
|
+
*
|
|
43
|
+
* ```sh
|
|
44
|
+
* $ pulumi import azure:arcmachine/automanageConfigurationAssignment:AutomanageConfigurationAssignment example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.HybridCompute/Microsoft.HybridCompute/machines/machine1/providers/Microsoft.AutoManage/configurationProfileAssignments/default
|
|
45
|
+
* ```
|
|
46
|
+
*/
|
|
47
|
+
class AutomanageConfigurationAssignment extends pulumi.CustomResource {
|
|
48
|
+
constructor(name, argsOrState, opts) {
|
|
49
|
+
let resourceInputs = {};
|
|
50
|
+
opts = opts || {};
|
|
51
|
+
if (opts.id) {
|
|
52
|
+
const state = argsOrState;
|
|
53
|
+
resourceInputs["arcMachineId"] = state ? state.arcMachineId : undefined;
|
|
54
|
+
resourceInputs["configurationId"] = state ? state.configurationId : undefined;
|
|
55
|
+
}
|
|
56
|
+
else {
|
|
57
|
+
const args = argsOrState;
|
|
58
|
+
if ((!args || args.arcMachineId === undefined) && !opts.urn) {
|
|
59
|
+
throw new Error("Missing required property 'arcMachineId'");
|
|
60
|
+
}
|
|
61
|
+
if ((!args || args.configurationId === undefined) && !opts.urn) {
|
|
62
|
+
throw new Error("Missing required property 'configurationId'");
|
|
63
|
+
}
|
|
64
|
+
resourceInputs["arcMachineId"] = args ? args.arcMachineId : undefined;
|
|
65
|
+
resourceInputs["configurationId"] = args ? args.configurationId : undefined;
|
|
66
|
+
}
|
|
67
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
68
|
+
super(AutomanageConfigurationAssignment.__pulumiType, name, resourceInputs, opts);
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Get an existing AutomanageConfigurationAssignment resource's state with the given name, ID, and optional extra
|
|
72
|
+
* properties used to qualify the lookup.
|
|
73
|
+
*
|
|
74
|
+
* @param name The _unique_ name of the resulting resource.
|
|
75
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
76
|
+
* @param state Any extra arguments used during the lookup.
|
|
77
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
78
|
+
*/
|
|
79
|
+
static get(name, id, state, opts) {
|
|
80
|
+
return new AutomanageConfigurationAssignment(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Returns true if the given object is an instance of AutomanageConfigurationAssignment. This is designed to work even
|
|
84
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
85
|
+
*/
|
|
86
|
+
static isInstance(obj) {
|
|
87
|
+
if (obj === undefined || obj === null) {
|
|
88
|
+
return false;
|
|
89
|
+
}
|
|
90
|
+
return obj['__pulumiType'] === AutomanageConfigurationAssignment.__pulumiType;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
exports.AutomanageConfigurationAssignment = AutomanageConfigurationAssignment;
|
|
94
|
+
/** @internal */
|
|
95
|
+
AutomanageConfigurationAssignment.__pulumiType = 'azure:arcmachine/automanageConfigurationAssignment:AutomanageConfigurationAssignment';
|
|
96
|
+
//# sourceMappingURL=automanageConfigurationAssignment.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"automanageConfigurationAssignment.js","sourceRoot":"","sources":["../../arcmachine/automanageConfigurationAssignment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,MAAa,iCAAkC,SAAQ,MAAM,CAAC,cAAc;IA+CxE,YAAY,IAAY,EAAE,WAA4F,EAAE,IAAmC;QACvJ,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAiE,CAAC;YAChF,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;SACjF;aAAM;YACH,MAAM,IAAI,GAAG,WAAgE,CAAC;YAC9E,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,eAAe,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC5D,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;aAClE;YACD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/E;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,iCAAiC,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACtF,CAAC;IAlED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8C,EAAE,IAAmC;QAC5I,OAAO,IAAI,iCAAiC,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACxF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,iCAAiC,CAAC,YAAY,CAAC;IAClF,CAAC;;AA1BL,8EAoEC;AAtDG,gBAAgB;AACO,8CAAY,GAAG,sFAAsF,CAAC"}
|
package/arcmachine/index.d.ts
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
export { ArcMachineArgs, ArcMachineState } from "./arcMachine";
|
|
2
|
+
export declare type ArcMachine = import("./arcMachine").ArcMachine;
|
|
3
|
+
export declare const ArcMachine: typeof import("./arcMachine").ArcMachine;
|
|
4
|
+
export { AutomanageConfigurationAssignmentArgs, AutomanageConfigurationAssignmentState } from "./automanageConfigurationAssignment";
|
|
5
|
+
export declare type AutomanageConfigurationAssignment = import("./automanageConfigurationAssignment").AutomanageConfigurationAssignment;
|
|
6
|
+
export declare const AutomanageConfigurationAssignment: typeof import("./automanageConfigurationAssignment").AutomanageConfigurationAssignment;
|
|
1
7
|
export { ExtensionArgs, ExtensionState } from "./extension";
|
|
2
8
|
export declare type Extension = import("./extension").Extension;
|
|
3
9
|
export declare const Extension: typeof import("./extension").Extension;
|
package/arcmachine/index.js
CHANGED
|
@@ -2,9 +2,13 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getOutput = exports.get = exports.Extension = void 0;
|
|
5
|
+
exports.getOutput = exports.get = exports.Extension = exports.AutomanageConfigurationAssignment = exports.ArcMachine = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
|
+
exports.ArcMachine = null;
|
|
9
|
+
utilities.lazyLoad(exports, ["ArcMachine"], () => require("./arcMachine"));
|
|
10
|
+
exports.AutomanageConfigurationAssignment = null;
|
|
11
|
+
utilities.lazyLoad(exports, ["AutomanageConfigurationAssignment"], () => require("./automanageConfigurationAssignment"));
|
|
8
12
|
exports.Extension = null;
|
|
9
13
|
utilities.lazyLoad(exports, ["Extension"], () => require("./extension"));
|
|
10
14
|
exports.get = null;
|
|
@@ -14,6 +18,10 @@ const _module = {
|
|
|
14
18
|
version: utilities.getVersion(),
|
|
15
19
|
construct: (name, type, urn) => {
|
|
16
20
|
switch (type) {
|
|
21
|
+
case "azure:arcmachine/arcMachine:ArcMachine":
|
|
22
|
+
return new exports.ArcMachine(name, undefined, { urn });
|
|
23
|
+
case "azure:arcmachine/automanageConfigurationAssignment:AutomanageConfigurationAssignment":
|
|
24
|
+
return new exports.AutomanageConfigurationAssignment(name, undefined, { urn });
|
|
17
25
|
case "azure:arcmachine/extension:Extension":
|
|
18
26
|
return new exports.Extension(name, undefined, { urn });
|
|
19
27
|
default:
|
|
@@ -21,5 +29,7 @@ const _module = {
|
|
|
21
29
|
}
|
|
22
30
|
},
|
|
23
31
|
};
|
|
32
|
+
pulumi.runtime.registerResourceModule("azure", "arcmachine/arcMachine", _module);
|
|
33
|
+
pulumi.runtime.registerResourceModule("azure", "arcmachine/automanageConfigurationAssignment", _module);
|
|
24
34
|
pulumi.runtime.registerResourceModule("azure", "arcmachine/extension", _module);
|
|
25
35
|
//# sourceMappingURL=index.js.map
|
package/arcmachine/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../arcmachine/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAG5D,QAAA,GAAG,GAA+B,IAAW,CAAC;AAC9C,QAAA,SAAS,GAAqC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,KAAK,EAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;AAGzE,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,sCAAsC;gBACvC,OAAO,IAAI,iBAAS,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../arcmachine/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAI9D,QAAA,iCAAiC,GAA2F,IAAW,CAAC;AACrJ,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,mCAAmC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,qCAAqC,CAAC,CAAC,CAAC;AAI5G,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAG5D,QAAA,GAAG,GAA+B,IAAW,CAAC;AAC9C,QAAA,SAAS,GAAqC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,KAAK,EAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;AAGzE,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,wCAAwC;gBACzC,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,sFAAsF;gBACvF,OAAO,IAAI,yCAAiC,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC/E,KAAK,sCAAsC;gBACvC,OAAO,IAAI,iBAAS,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AAChF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,8CAA8C,EAAE,OAAO,CAAC,CAAA;AACvG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA"}
|
|
@@ -47,6 +47,12 @@ export declare class BackupVault extends pulumi.CustomResource {
|
|
|
47
47
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
48
48
|
*/
|
|
49
49
|
static isInstance(obj: any): obj is BackupVault;
|
|
50
|
+
/**
|
|
51
|
+
* Whether to enable cross-region restore for the Backup Vault.
|
|
52
|
+
*
|
|
53
|
+
* > **Note:** The `crossRegionRestoreEnabled` can only be specified when `redundancy` is specified for `GeoRedundant`. Once `crossRegionRestoreEnabled` is enabled, it cannot be disabled.
|
|
54
|
+
*/
|
|
55
|
+
readonly crossRegionRestoreEnabled: pulumi.Output<boolean | undefined>;
|
|
50
56
|
/**
|
|
51
57
|
* Specifies the type of the data store. Possible values are `ArchiveStore`, `OperationalStore`, `SnapshotStore` and `VaultStore`. Changing this forces a new resource to be created.
|
|
52
58
|
*
|
|
@@ -104,6 +110,12 @@ export declare class BackupVault extends pulumi.CustomResource {
|
|
|
104
110
|
* Input properties used for looking up and filtering BackupVault resources.
|
|
105
111
|
*/
|
|
106
112
|
export interface BackupVaultState {
|
|
113
|
+
/**
|
|
114
|
+
* Whether to enable cross-region restore for the Backup Vault.
|
|
115
|
+
*
|
|
116
|
+
* > **Note:** The `crossRegionRestoreEnabled` can only be specified when `redundancy` is specified for `GeoRedundant`. Once `crossRegionRestoreEnabled` is enabled, it cannot be disabled.
|
|
117
|
+
*/
|
|
118
|
+
crossRegionRestoreEnabled?: pulumi.Input<boolean>;
|
|
107
119
|
/**
|
|
108
120
|
* Specifies the type of the data store. Possible values are `ArchiveStore`, `OperationalStore`, `SnapshotStore` and `VaultStore`. Changing this forces a new resource to be created.
|
|
109
121
|
*
|
|
@@ -153,6 +165,12 @@ export interface BackupVaultState {
|
|
|
153
165
|
* The set of arguments for constructing a BackupVault resource.
|
|
154
166
|
*/
|
|
155
167
|
export interface BackupVaultArgs {
|
|
168
|
+
/**
|
|
169
|
+
* Whether to enable cross-region restore for the Backup Vault.
|
|
170
|
+
*
|
|
171
|
+
* > **Note:** The `crossRegionRestoreEnabled` can only be specified when `redundancy` is specified for `GeoRedundant`. Once `crossRegionRestoreEnabled` is enabled, it cannot be disabled.
|
|
172
|
+
*/
|
|
173
|
+
crossRegionRestoreEnabled?: pulumi.Input<boolean>;
|
|
156
174
|
/**
|
|
157
175
|
* Specifies the type of the data store. Possible values are `ArchiveStore`, `OperationalStore`, `SnapshotStore` and `VaultStore`. Changing this forces a new resource to be created.
|
|
158
176
|
*
|
|
@@ -41,6 +41,7 @@ class BackupVault extends pulumi.CustomResource {
|
|
|
41
41
|
opts = opts || {};
|
|
42
42
|
if (opts.id) {
|
|
43
43
|
const state = argsOrState;
|
|
44
|
+
resourceInputs["crossRegionRestoreEnabled"] = state ? state.crossRegionRestoreEnabled : undefined;
|
|
44
45
|
resourceInputs["datastoreType"] = state ? state.datastoreType : undefined;
|
|
45
46
|
resourceInputs["identity"] = state ? state.identity : undefined;
|
|
46
47
|
resourceInputs["location"] = state ? state.location : undefined;
|
|
@@ -62,6 +63,7 @@ class BackupVault extends pulumi.CustomResource {
|
|
|
62
63
|
if ((!args || args.resourceGroupName === undefined) && !opts.urn) {
|
|
63
64
|
throw new Error("Missing required property 'resourceGroupName'");
|
|
64
65
|
}
|
|
66
|
+
resourceInputs["crossRegionRestoreEnabled"] = args ? args.crossRegionRestoreEnabled : undefined;
|
|
65
67
|
resourceInputs["datastoreType"] = args ? args.datastoreType : undefined;
|
|
66
68
|
resourceInputs["identity"] = args ? args.identity : undefined;
|
|
67
69
|
resourceInputs["location"] = args ? args.location : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"backupVault.js","sourceRoot":"","sources":["../../dataprotection/backupVault.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"backupVault.js","sourceRoot":"","sources":["../../dataprotection/backupVault.ts"],"names":[],"mappings":"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"}
|
package/eventhub/queue.d.ts
CHANGED
|
@@ -55,9 +55,9 @@ export declare class Queue extends pulumi.CustomResource {
|
|
|
55
55
|
*/
|
|
56
56
|
static isInstance(obj: any): obj is Queue;
|
|
57
57
|
/**
|
|
58
|
-
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
58
|
+
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
59
59
|
*/
|
|
60
|
-
readonly autoDeleteOnIdle: pulumi.Output<string
|
|
60
|
+
readonly autoDeleteOnIdle: pulumi.Output<string>;
|
|
61
61
|
/**
|
|
62
62
|
* Boolean flag which controls whether server-side batched operations are enabled. Defaults to `true`.
|
|
63
63
|
*/
|
|
@@ -67,9 +67,9 @@ export declare class Queue extends pulumi.CustomResource {
|
|
|
67
67
|
*/
|
|
68
68
|
readonly deadLetteringOnMessageExpiration: pulumi.Output<boolean | undefined>;
|
|
69
69
|
/**
|
|
70
|
-
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
70
|
+
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
71
71
|
*/
|
|
72
|
-
readonly defaultMessageTtl: pulumi.Output<string
|
|
72
|
+
readonly defaultMessageTtl: pulumi.Output<string>;
|
|
73
73
|
/**
|
|
74
74
|
* The ISO 8601 timespan duration during which duplicates can be detected. Defaults to `PT10M` (10 Minutes).
|
|
75
75
|
*/
|
|
@@ -97,11 +97,11 @@ export declare class Queue extends pulumi.CustomResource {
|
|
|
97
97
|
*/
|
|
98
98
|
readonly maxDeliveryCount: pulumi.Output<number | undefined>;
|
|
99
99
|
/**
|
|
100
|
-
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
100
|
+
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
101
101
|
*/
|
|
102
102
|
readonly maxMessageSizeInKilobytes: pulumi.Output<number>;
|
|
103
103
|
/**
|
|
104
|
-
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
104
|
+
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
105
105
|
*/
|
|
106
106
|
readonly maxSizeInMegabytes: pulumi.Output<number>;
|
|
107
107
|
/**
|
|
@@ -147,7 +147,7 @@ export declare class Queue extends pulumi.CustomResource {
|
|
|
147
147
|
*/
|
|
148
148
|
export interface QueueState {
|
|
149
149
|
/**
|
|
150
|
-
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
150
|
+
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
151
151
|
*/
|
|
152
152
|
autoDeleteOnIdle?: pulumi.Input<string>;
|
|
153
153
|
/**
|
|
@@ -159,7 +159,7 @@ export interface QueueState {
|
|
|
159
159
|
*/
|
|
160
160
|
deadLetteringOnMessageExpiration?: pulumi.Input<boolean>;
|
|
161
161
|
/**
|
|
162
|
-
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
162
|
+
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
163
163
|
*/
|
|
164
164
|
defaultMessageTtl?: pulumi.Input<string>;
|
|
165
165
|
/**
|
|
@@ -189,11 +189,11 @@ export interface QueueState {
|
|
|
189
189
|
*/
|
|
190
190
|
maxDeliveryCount?: pulumi.Input<number>;
|
|
191
191
|
/**
|
|
192
|
-
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
192
|
+
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
193
193
|
*/
|
|
194
194
|
maxMessageSizeInKilobytes?: pulumi.Input<number>;
|
|
195
195
|
/**
|
|
196
|
-
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
196
|
+
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
197
197
|
*/
|
|
198
198
|
maxSizeInMegabytes?: pulumi.Input<number>;
|
|
199
199
|
/**
|
|
@@ -230,7 +230,7 @@ export interface QueueState {
|
|
|
230
230
|
*/
|
|
231
231
|
export interface QueueArgs {
|
|
232
232
|
/**
|
|
233
|
-
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
233
|
+
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
234
234
|
*/
|
|
235
235
|
autoDeleteOnIdle?: pulumi.Input<string>;
|
|
236
236
|
/**
|
|
@@ -242,7 +242,7 @@ export interface QueueArgs {
|
|
|
242
242
|
*/
|
|
243
243
|
deadLetteringOnMessageExpiration?: pulumi.Input<boolean>;
|
|
244
244
|
/**
|
|
245
|
-
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
245
|
+
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
246
246
|
*/
|
|
247
247
|
defaultMessageTtl?: pulumi.Input<string>;
|
|
248
248
|
/**
|
|
@@ -272,11 +272,11 @@ export interface QueueArgs {
|
|
|
272
272
|
*/
|
|
273
273
|
maxDeliveryCount?: pulumi.Input<number>;
|
|
274
274
|
/**
|
|
275
|
-
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
275
|
+
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
276
276
|
*/
|
|
277
277
|
maxMessageSizeInKilobytes?: pulumi.Input<number>;
|
|
278
278
|
/**
|
|
279
|
-
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
279
|
+
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
280
280
|
*/
|
|
281
281
|
maxSizeInMegabytes?: pulumi.Input<number>;
|
|
282
282
|
/**
|
package/index.d.ts
CHANGED
|
@@ -85,7 +85,6 @@ import * as managementgroups from "./managementgroups";
|
|
|
85
85
|
import * as managementresource from "./managementresource";
|
|
86
86
|
import * as maps from "./maps";
|
|
87
87
|
import * as marketplace from "./marketplace";
|
|
88
|
-
import * as media from "./media";
|
|
89
88
|
import * as mixedreality from "./mixedreality";
|
|
90
89
|
import * as mobile from "./mobile";
|
|
91
90
|
import * as monitoring from "./monitoring";
|
|
@@ -133,4 +132,4 @@ import * as voice from "./voice";
|
|
|
133
132
|
import * as waf from "./waf";
|
|
134
133
|
import * as webpubsub from "./webpubsub";
|
|
135
134
|
import * as workloadssap from "./workloadssap";
|
|
136
|
-
export { aadb2c, advisor, analysisservices, apimanagement, appconfiguration, appinsights, appplatform, appservice, arc, arckubernetes, arcmachine, armmsi, attestation, authorization, automanage, automation, avs, backup, batch, billing, blueprint, bot, cdn, chaosstudio, cognitive, communication, compute, confidentialledger, config, connections, consumption, containerapp, containerservice, core, cosmosdb, costmanagement, customip, dashboard, databasemigration, databoxedge, databricks, datadog, datafactory, dataprotection, datashare, desktopvirtualization, devcenter, devtest, digitaltwins, dns, domainservices, elasticcloud, elasticsan, eventgrid, eventhub, expressroute, extendedlocation, fluidrelay, frontdoor, graph, hdinsight, healthcare, hpc, hsm, iot, iotcentral, keyvault, kusto, lb, lighthouse, loadtest, loganalytics, logicapps, machinelearning, maintenance, managedapplication, managedlustre, management, managementgroups, managementresource, maps, marketplace,
|
|
135
|
+
export { aadb2c, advisor, analysisservices, apimanagement, appconfiguration, appinsights, appplatform, appservice, arc, arckubernetes, arcmachine, armmsi, attestation, authorization, automanage, automation, avs, backup, batch, billing, blueprint, bot, cdn, chaosstudio, cognitive, communication, compute, confidentialledger, config, connections, consumption, containerapp, containerservice, core, cosmosdb, costmanagement, customip, dashboard, databasemigration, databoxedge, databricks, datadog, datafactory, dataprotection, datashare, desktopvirtualization, devcenter, devtest, digitaltwins, dns, domainservices, elasticcloud, elasticsan, eventgrid, eventhub, expressroute, extendedlocation, fluidrelay, frontdoor, graph, hdinsight, healthcare, hpc, hsm, iot, iotcentral, keyvault, kusto, lb, lighthouse, loadtest, loganalytics, logicapps, machinelearning, maintenance, managedapplication, managedlustre, management, managementgroups, managementresource, maps, marketplace, mixedreality, mobile, monitoring, msi, mssql, mysql, netapp, network, networkfunction, newrelic, nginx, notificationhub, operationalinsights, orbital, paloalto, pim, policy, portal, postgresql, powerbi, privatedns, privatelink, proximity, purview, recoveryservices, redhatopenshift, redis, relay, role, search, securitycenter, sentinel, servicebus, servicefabric, signalr, siterecovery, stack, storage, streamanalytics, synapse, systemcenter, trafficmanager, types, voice, waf, webpubsub, workloadssap, };
|
package/index.js
CHANGED
|
@@ -17,8 +17,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
19
|
exports.digitaltwins = exports.devtest = exports.devcenter = exports.desktopvirtualization = exports.datashare = exports.dataprotection = exports.datafactory = exports.datadog = exports.databricks = exports.databoxedge = exports.databasemigration = exports.dashboard = exports.customip = exports.costmanagement = exports.cosmosdb = exports.core = exports.containerservice = exports.containerapp = exports.consumption = exports.connections = exports.config = exports.confidentialledger = exports.compute = exports.communication = exports.cognitive = exports.chaosstudio = exports.cdn = exports.bot = exports.blueprint = exports.billing = exports.batch = exports.backup = exports.avs = exports.automation = exports.automanage = exports.authorization = exports.attestation = exports.armmsi = exports.arcmachine = exports.arckubernetes = exports.arc = exports.appservice = exports.appplatform = exports.appinsights = exports.appconfiguration = exports.apimanagement = exports.analysisservices = exports.advisor = exports.aadb2c = exports.Provider = void 0;
|
|
20
|
-
exports.pim = exports.paloalto = exports.orbital = exports.operationalinsights = exports.notificationhub = exports.nginx = exports.newrelic = exports.networkfunction = exports.network = exports.netapp = exports.mysql = exports.mssql = exports.msi = exports.monitoring = exports.mobile = exports.mixedreality = exports.
|
|
21
|
-
exports.workloadssap = exports.webpubsub = exports.waf = exports.voice = exports.types = exports.trafficmanager = exports.systemcenter = exports.synapse = exports.streamanalytics = exports.storage = exports.stack = exports.siterecovery = exports.signalr = exports.servicefabric = exports.servicebus = exports.sentinel = exports.securitycenter = exports.search = exports.role = exports.relay = exports.redis = exports.redhatopenshift = exports.recoveryservices = exports.purview = exports.proximity = exports.privatelink = exports.privatedns = exports.powerbi = exports.postgresql = exports.portal =
|
|
20
|
+
exports.policy = exports.pim = exports.paloalto = exports.orbital = exports.operationalinsights = exports.notificationhub = exports.nginx = exports.newrelic = exports.networkfunction = exports.network = exports.netapp = exports.mysql = exports.mssql = exports.msi = exports.monitoring = exports.mobile = exports.mixedreality = exports.marketplace = exports.maps = exports.managementresource = exports.managementgroups = exports.management = exports.managedlustre = exports.managedapplication = exports.maintenance = exports.machinelearning = exports.logicapps = exports.loganalytics = exports.loadtest = exports.lighthouse = exports.lb = exports.kusto = exports.keyvault = exports.iotcentral = exports.iot = exports.hsm = exports.hpc = exports.healthcare = exports.hdinsight = exports.graph = exports.frontdoor = exports.fluidrelay = exports.extendedlocation = exports.expressroute = exports.eventhub = exports.eventgrid = exports.elasticsan = exports.elasticcloud = exports.domainservices = exports.dns = void 0;
|
|
21
|
+
exports.workloadssap = exports.webpubsub = exports.waf = exports.voice = exports.types = exports.trafficmanager = exports.systemcenter = exports.synapse = exports.streamanalytics = exports.storage = exports.stack = exports.siterecovery = exports.signalr = exports.servicefabric = exports.servicebus = exports.sentinel = exports.securitycenter = exports.search = exports.role = exports.relay = exports.redis = exports.redhatopenshift = exports.recoveryservices = exports.purview = exports.proximity = exports.privatelink = exports.privatedns = exports.powerbi = exports.postgresql = exports.portal = void 0;
|
|
22
22
|
const pulumi = require("@pulumi/pulumi");
|
|
23
23
|
const utilities = require("./utilities");
|
|
24
24
|
// Export members:
|
|
@@ -191,8 +191,6 @@ const maps = require("./maps");
|
|
|
191
191
|
exports.maps = maps;
|
|
192
192
|
const marketplace = require("./marketplace");
|
|
193
193
|
exports.marketplace = marketplace;
|
|
194
|
-
const media = require("./media");
|
|
195
|
-
exports.media = media;
|
|
196
194
|
const mixedreality = require("./mixedreality");
|
|
197
195
|
exports.mixedreality = mixedreality;
|
|
198
196
|
const mobile = require("./mobile");
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,kBAAkB;AAClB,6CAA2B;AAGd,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAEvE,yCAAuB;AAEvB,sBAAsB;AACtB,mCAAmC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,kBAAkB;AAClB,6CAA2B;AAGd,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAEvE,yCAAuB;AAEvB,sBAAsB;AACtB,mCAAmC;AAmI/B,wBAAM;AAlIV,qCAAqC;AAmIjC,0BAAO;AAlIX,uDAAuD;AAmInD,4CAAgB;AAlIpB,iDAAiD;AAmI7C,sCAAa;AAlIjB,uDAAuD;AAmInD,4CAAgB;AAlIpB,6CAA6C;AAmIzC,kCAAW;AAlIf,6CAA6C;AAmIzC,kCAAW;AAlIf,2CAA2C;AAmIvC,gCAAU;AAlId,6BAA6B;AAmIzB,kBAAG;AAlIP,iDAAiD;AAmI7C,sCAAa;AAlIjB,2CAA2C;AAmIvC,gCAAU;AAlId,mCAAmC;AAmI/B,wBAAM;AAlIV,6CAA6C;AAmIzC,kCAAW;AAlIf,iDAAiD;AAmI7C,sCAAa;AAlIjB,2CAA2C;AAmIvC,gCAAU;AAlId,2CAA2C;AAmIvC,gCAAU;AAlId,6BAA6B;AAmIzB,kBAAG;AAlIP,mCAAmC;AAmI/B,wBAAM;AAlIV,iCAAiC;AAmI7B,sBAAK;AAlIT,qCAAqC;AAmIjC,0BAAO;AAlIX,yCAAyC;AAmIrC,8BAAS;AAlIb,6BAA6B;AAmIzB,kBAAG;AAlIP,6BAA6B;AAmIzB,kBAAG;AAlIP,6CAA6C;AAmIzC,kCAAW;AAlIf,yCAAyC;AAmIrC,8BAAS;AAlIb,iDAAiD;AAmI7C,sCAAa;AAlIjB,qCAAqC;AAmIjC,0BAAO;AAlIX,2DAA2D;AAmIvD,gDAAkB;AAlItB,mCAAmC;AAmI/B,wBAAM;AAlIV,6CAA6C;AAmIzC,kCAAW;AAlIf,6CAA6C;AAmIzC,kCAAW;AAlIf,+CAA+C;AAmI3C,oCAAY;AAlIhB,uDAAuD;AAmInD,4CAAgB;AAlIpB,+BAA+B;AAmI3B,oBAAI;AAlIR,uCAAuC;AAmInC,4BAAQ;AAlIZ,mDAAmD;AAmI/C,wCAAc;AAlIlB,uCAAuC;AAmInC,4BAAQ;AAlIZ,yCAAyC;AAmIrC,8BAAS;AAlIb,yDAAyD;AAmIrD,8CAAiB;AAlIrB,6CAA6C;AAmIzC,kCAAW;AAlIf,2CAA2C;AAmIvC,gCAAU;AAlId,qCAAqC;AAmIjC,0BAAO;AAlIX,6CAA6C;AAmIzC,kCAAW;AAlIf,mDAAmD;AAmI/C,wCAAc;AAlIlB,yCAAyC;AAmIrC,8BAAS;AAlIb,iEAAiE;AAmI7D,sDAAqB;AAlIzB,yCAAyC;AAmIrC,8BAAS;AAlIb,qCAAqC;AAmIjC,0BAAO;AAlIX,+CAA+C;AAmI3C,oCAAY;AAlIhB,6BAA6B;AAmIzB,kBAAG;AAlIP,mDAAmD;AAmI/C,wCAAc;AAlIlB,+CAA+C;AAmI3C,oCAAY;AAlIhB,2CAA2C;AAmIvC,gCAAU;AAlId,yCAAyC;AAmIrC,8BAAS;AAlIb,uCAAuC;AAmInC,4BAAQ;AAlIZ,+CAA+C;AAmI3C,oCAAY;AAlIhB,uDAAuD;AAmInD,4CAAgB;AAlIpB,2CAA2C;AAmIvC,gCAAU;AAlId,yCAAyC;AAmIrC,8BAAS;AAlIb,iCAAiC;AAmI7B,sBAAK;AAlIT,yCAAyC;AAmIrC,8BAAS;AAlIb,2CAA2C;AAmIvC,gCAAU;AAlId,6BAA6B;AAmIzB,kBAAG;AAlIP,6BAA6B;AAmIzB,kBAAG;AAlIP,6BAA6B;AAmIzB,kBAAG;AAlIP,2CAA2C;AAmIvC,gCAAU;AAlId,uCAAuC;AAmInC,4BAAQ;AAlIZ,iCAAiC;AAmI7B,sBAAK;AAlIT,2BAA2B;AAmIvB,gBAAE;AAlIN,2CAA2C;AAmIvC,gCAAU;AAlId,uCAAuC;AAmInC,4BAAQ;AAlIZ,+CAA+C;AAmI3C,oCAAY;AAlIhB,yCAAyC;AAmIrC,8BAAS;AAlIb,qDAAqD;AAmIjD,0CAAe;AAlInB,6CAA6C;AAmIzC,kCAAW;AAlIf,2DAA2D;AAmIvD,gDAAkB;AAlItB,iDAAiD;AAmI7C,sCAAa;AAlIjB,2CAA2C;AAmIvC,gCAAU;AAlId,uDAAuD;AAmInD,4CAAgB;AAlIpB,2DAA2D;AAmIvD,gDAAkB;AAlItB,+BAA+B;AAmI3B,oBAAI;AAlIR,6CAA6C;AAmIzC,kCAAW;AAlIf,+CAA+C;AAmI3C,oCAAY;AAlIhB,mCAAmC;AAmI/B,wBAAM;AAlIV,2CAA2C;AAmIvC,gCAAU;AAlId,6BAA6B;AAmIzB,kBAAG;AAlIP,iCAAiC;AAmI7B,sBAAK;AAlIT,iCAAiC;AAmI7B,sBAAK;AAlIT,mCAAmC;AAmI/B,wBAAM;AAlIV,qCAAqC;AAmIjC,0BAAO;AAlIX,qDAAqD;AAmIjD,0CAAe;AAlInB,uCAAuC;AAmInC,4BAAQ;AAlIZ,iCAAiC;AAmI7B,sBAAK;AAlIT,qDAAqD;AAmIjD,0CAAe;AAlInB,6DAA6D;AAmIzD,kDAAmB;AAlIvB,qCAAqC;AAmIjC,0BAAO;AAlIX,uCAAuC;AAmInC,4BAAQ;AAlIZ,6BAA6B;AAmIzB,kBAAG;AAlIP,mCAAmC;AAmI/B,wBAAM;AAlIV,mCAAmC;AAmI/B,wBAAM;AAlIV,2CAA2C;AAmIvC,gCAAU;AAlId,qCAAqC;AAmIjC,0BAAO;AAlIX,2CAA2C;AAmIvC,gCAAU;AAlId,6CAA6C;AAmIzC,kCAAW;AAlIf,yCAAyC;AAmIrC,8BAAS;AAlIb,qCAAqC;AAmIjC,0BAAO;AAlIX,uDAAuD;AAmInD,4CAAgB;AAlIpB,qDAAqD;AAmIjD,0CAAe;AAlInB,iCAAiC;AAmI7B,sBAAK;AAlIT,iCAAiC;AAmI7B,sBAAK;AAlIT,+BAA+B;AAmI3B,oBAAI;AAlIR,mCAAmC;AAmI/B,wBAAM;AAlIV,mDAAmD;AAmI/C,wCAAc;AAlIlB,uCAAuC;AAmInC,4BAAQ;AAlIZ,2CAA2C;AAmIvC,gCAAU;AAlId,iDAAiD;AAmI7C,sCAAa;AAlIjB,qCAAqC;AAmIjC,0BAAO;AAlIX,+CAA+C;AAmI3C,oCAAY;AAlIhB,iCAAiC;AAmI7B,sBAAK;AAlIT,qCAAqC;AAmIjC,0BAAO;AAlIX,qDAAqD;AAmIjD,0CAAe;AAlInB,qCAAqC;AAmIjC,0BAAO;AAlIX,+CAA+C;AAmI3C,oCAAY;AAlIhB,mDAAmD;AAmI/C,wCAAc;AAlIlB,iCAAiC;AAmI7B,sBAAK;AAlIT,iCAAiC;AAmI7B,sBAAK;AAlIT,6BAA6B;AAmIzB,kBAAG;AAlIP,yCAAyC;AAmIrC,8BAAS;AAlIb,+CAA+C;AAmI3C,oCAAY;AAEhB,MAAM,CAAC,OAAO,CAAC,uBAAuB,CAAC,OAAO,EAAE;IAC5C,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,iBAAiB,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAA2B,EAAE;QACpF,IAAI,IAAI,KAAK,wBAAwB,EAAE;YACnC,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACpD;QACD,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC;IACvD,CAAC;CACJ,CAAC,CAAC"}
|
|
@@ -90,6 +90,10 @@ export declare class ManagedInstance extends pulumi.CustomResource {
|
|
|
90
90
|
* The name of the resource group in which to create the SQL Managed Instance. Changing this forces a new resource to be created.
|
|
91
91
|
*/
|
|
92
92
|
readonly resourceGroupName: pulumi.Output<string>;
|
|
93
|
+
/**
|
|
94
|
+
* The service principal type. The only possible value is `SystemAssigned`.
|
|
95
|
+
*/
|
|
96
|
+
readonly servicePrincipalType: pulumi.Output<string | undefined>;
|
|
93
97
|
/**
|
|
94
98
|
* Specifies the SKU Name for the SQL Managed Instance. Valid values include `GP_Gen4`, `GP_Gen5`, `GP_Gen8IM`, `GP_Gen8IH`, `BC_Gen4`, `BC_Gen5`, `BC_Gen8IM` or `BC_Gen8IH`.
|
|
95
99
|
*/
|
|
@@ -197,6 +201,10 @@ export interface ManagedInstanceState {
|
|
|
197
201
|
* The name of the resource group in which to create the SQL Managed Instance. Changing this forces a new resource to be created.
|
|
198
202
|
*/
|
|
199
203
|
resourceGroupName?: pulumi.Input<string>;
|
|
204
|
+
/**
|
|
205
|
+
* The service principal type. The only possible value is `SystemAssigned`.
|
|
206
|
+
*/
|
|
207
|
+
servicePrincipalType?: pulumi.Input<string>;
|
|
200
208
|
/**
|
|
201
209
|
* Specifies the SKU Name for the SQL Managed Instance. Valid values include `GP_Gen4`, `GP_Gen5`, `GP_Gen8IM`, `GP_Gen8IH`, `BC_Gen4`, `BC_Gen5`, `BC_Gen8IM` or `BC_Gen8IH`.
|
|
202
210
|
*/
|
|
@@ -288,6 +296,10 @@ export interface ManagedInstanceArgs {
|
|
|
288
296
|
* The name of the resource group in which to create the SQL Managed Instance. Changing this forces a new resource to be created.
|
|
289
297
|
*/
|
|
290
298
|
resourceGroupName: pulumi.Input<string>;
|
|
299
|
+
/**
|
|
300
|
+
* The service principal type. The only possible value is `SystemAssigned`.
|
|
301
|
+
*/
|
|
302
|
+
servicePrincipalType?: pulumi.Input<string>;
|
|
291
303
|
/**
|
|
292
304
|
* Specifies the SKU Name for the SQL Managed Instance. Valid values include `GP_Gen4`, `GP_Gen5`, `GP_Gen8IM`, `GP_Gen8IH`, `BC_Gen4`, `BC_Gen5`, `BC_Gen8IM` or `BC_Gen8IH`.
|
|
293
305
|
*/
|
package/mssql/managedInstance.js
CHANGED
|
@@ -39,6 +39,7 @@ class ManagedInstance extends pulumi.CustomResource {
|
|
|
39
39
|
resourceInputs["proxyOverride"] = state ? state.proxyOverride : undefined;
|
|
40
40
|
resourceInputs["publicDataEndpointEnabled"] = state ? state.publicDataEndpointEnabled : undefined;
|
|
41
41
|
resourceInputs["resourceGroupName"] = state ? state.resourceGroupName : undefined;
|
|
42
|
+
resourceInputs["servicePrincipalType"] = state ? state.servicePrincipalType : undefined;
|
|
42
43
|
resourceInputs["skuName"] = state ? state.skuName : undefined;
|
|
43
44
|
resourceInputs["storageAccountType"] = state ? state.storageAccountType : undefined;
|
|
44
45
|
resourceInputs["storageSizeInGb"] = state ? state.storageSizeInGb : undefined;
|
|
@@ -87,6 +88,7 @@ class ManagedInstance extends pulumi.CustomResource {
|
|
|
87
88
|
resourceInputs["proxyOverride"] = args ? args.proxyOverride : undefined;
|
|
88
89
|
resourceInputs["publicDataEndpointEnabled"] = args ? args.publicDataEndpointEnabled : undefined;
|
|
89
90
|
resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
|
|
91
|
+
resourceInputs["servicePrincipalType"] = args ? args.servicePrincipalType : undefined;
|
|
90
92
|
resourceInputs["skuName"] = args ? args.skuName : undefined;
|
|
91
93
|
resourceInputs["storageAccountType"] = args ? args.storageAccountType : undefined;
|
|
92
94
|
resourceInputs["storageSizeInGb"] = args ? args.storageSizeInGb : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"managedInstance.js","sourceRoot":"","sources":["../../mssql/managedInstance.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;GAYG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"managedInstance.js","sourceRoot":"","sources":["../../mssql/managedInstance.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/azure",
|
|
3
|
-
"version": "6.1.0-alpha.
|
|
3
|
+
"version": "6.1.0-alpha.1727464111",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -30,6 +30,6 @@
|
|
|
30
30
|
"pulumi": {
|
|
31
31
|
"resource": true,
|
|
32
32
|
"name": "azure",
|
|
33
|
-
"version": "6.1.0-alpha.
|
|
33
|
+
"version": "6.1.0-alpha.1727464111"
|
|
34
34
|
}
|
|
35
35
|
}
|
package/servicebus/queue.d.ts
CHANGED
|
@@ -53,9 +53,9 @@ export declare class Queue extends pulumi.CustomResource {
|
|
|
53
53
|
*/
|
|
54
54
|
static isInstance(obj: any): obj is Queue;
|
|
55
55
|
/**
|
|
56
|
-
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
56
|
+
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
57
57
|
*/
|
|
58
|
-
readonly autoDeleteOnIdle: pulumi.Output<string
|
|
58
|
+
readonly autoDeleteOnIdle: pulumi.Output<string>;
|
|
59
59
|
/**
|
|
60
60
|
* Boolean flag which controls whether server-side batched operations are enabled. Defaults to `true`.
|
|
61
61
|
*/
|
|
@@ -65,9 +65,9 @@ export declare class Queue extends pulumi.CustomResource {
|
|
|
65
65
|
*/
|
|
66
66
|
readonly deadLetteringOnMessageExpiration: pulumi.Output<boolean | undefined>;
|
|
67
67
|
/**
|
|
68
|
-
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
68
|
+
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
69
69
|
*/
|
|
70
|
-
readonly defaultMessageTtl: pulumi.Output<string
|
|
70
|
+
readonly defaultMessageTtl: pulumi.Output<string>;
|
|
71
71
|
/**
|
|
72
72
|
* The ISO 8601 timespan duration during which duplicates can be detected. Defaults to `PT10M` (10 Minutes).
|
|
73
73
|
*/
|
|
@@ -95,11 +95,11 @@ export declare class Queue extends pulumi.CustomResource {
|
|
|
95
95
|
*/
|
|
96
96
|
readonly maxDeliveryCount: pulumi.Output<number | undefined>;
|
|
97
97
|
/**
|
|
98
|
-
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
98
|
+
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
99
99
|
*/
|
|
100
100
|
readonly maxMessageSizeInKilobytes: pulumi.Output<number>;
|
|
101
101
|
/**
|
|
102
|
-
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
102
|
+
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
103
103
|
*/
|
|
104
104
|
readonly maxSizeInMegabytes: pulumi.Output<number>;
|
|
105
105
|
/**
|
|
@@ -144,7 +144,7 @@ export declare class Queue extends pulumi.CustomResource {
|
|
|
144
144
|
*/
|
|
145
145
|
export interface QueueState {
|
|
146
146
|
/**
|
|
147
|
-
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
147
|
+
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
148
148
|
*/
|
|
149
149
|
autoDeleteOnIdle?: pulumi.Input<string>;
|
|
150
150
|
/**
|
|
@@ -156,7 +156,7 @@ export interface QueueState {
|
|
|
156
156
|
*/
|
|
157
157
|
deadLetteringOnMessageExpiration?: pulumi.Input<boolean>;
|
|
158
158
|
/**
|
|
159
|
-
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
159
|
+
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
160
160
|
*/
|
|
161
161
|
defaultMessageTtl?: pulumi.Input<string>;
|
|
162
162
|
/**
|
|
@@ -186,11 +186,11 @@ export interface QueueState {
|
|
|
186
186
|
*/
|
|
187
187
|
maxDeliveryCount?: pulumi.Input<number>;
|
|
188
188
|
/**
|
|
189
|
-
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
189
|
+
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
190
190
|
*/
|
|
191
191
|
maxMessageSizeInKilobytes?: pulumi.Input<number>;
|
|
192
192
|
/**
|
|
193
|
-
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
193
|
+
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
194
194
|
*/
|
|
195
195
|
maxSizeInMegabytes?: pulumi.Input<number>;
|
|
196
196
|
/**
|
|
@@ -227,7 +227,7 @@ export interface QueueState {
|
|
|
227
227
|
*/
|
|
228
228
|
export interface QueueArgs {
|
|
229
229
|
/**
|
|
230
|
-
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
230
|
+
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
231
231
|
*/
|
|
232
232
|
autoDeleteOnIdle?: pulumi.Input<string>;
|
|
233
233
|
/**
|
|
@@ -239,7 +239,7 @@ export interface QueueArgs {
|
|
|
239
239
|
*/
|
|
240
240
|
deadLetteringOnMessageExpiration?: pulumi.Input<boolean>;
|
|
241
241
|
/**
|
|
242
|
-
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
242
|
+
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
243
243
|
*/
|
|
244
244
|
defaultMessageTtl?: pulumi.Input<string>;
|
|
245
245
|
/**
|
|
@@ -269,11 +269,11 @@ export interface QueueArgs {
|
|
|
269
269
|
*/
|
|
270
270
|
maxDeliveryCount?: pulumi.Input<number>;
|
|
271
271
|
/**
|
|
272
|
-
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
272
|
+
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
273
273
|
*/
|
|
274
274
|
maxMessageSizeInKilobytes?: pulumi.Input<number>;
|
|
275
275
|
/**
|
|
276
|
-
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
276
|
+
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
277
277
|
*/
|
|
278
278
|
maxSizeInMegabytes?: pulumi.Input<number>;
|
|
279
279
|
/**
|
package/types/input.d.ts
CHANGED
|
@@ -36020,24 +36020,6 @@ export declare namespace maps {
|
|
|
36020
36020
|
type: pulumi.Input<string>;
|
|
36021
36021
|
}
|
|
36022
36022
|
}
|
|
36023
|
-
export declare namespace media {
|
|
36024
|
-
interface AccountFilterPresentationTimeRange {
|
|
36025
|
-
endInUnits?: pulumi.Input<number>;
|
|
36026
|
-
forceEnd?: pulumi.Input<boolean>;
|
|
36027
|
-
liveBackoffInUnits?: pulumi.Input<number>;
|
|
36028
|
-
presentationWindowInUnits?: pulumi.Input<number>;
|
|
36029
|
-
startInUnits?: pulumi.Input<number>;
|
|
36030
|
-
unitTimescaleInMilliseconds: pulumi.Input<number>;
|
|
36031
|
-
}
|
|
36032
|
-
interface AccountFilterTrackSelection {
|
|
36033
|
-
conditions: pulumi.Input<pulumi.Input<inputs.media.AccountFilterTrackSelectionCondition>[]>;
|
|
36034
|
-
}
|
|
36035
|
-
interface AccountFilterTrackSelectionCondition {
|
|
36036
|
-
operation: pulumi.Input<string>;
|
|
36037
|
-
property: pulumi.Input<string>;
|
|
36038
|
-
value: pulumi.Input<string>;
|
|
36039
|
-
}
|
|
36040
|
-
}
|
|
36041
36023
|
export declare namespace mobile {
|
|
36042
36024
|
interface NetworkAttachedDataNetworkNetworkAddressPortTranslation {
|
|
36043
36025
|
/**
|
|
@@ -48208,6 +48190,9 @@ export declare namespace waf {
|
|
|
48208
48190
|
* Is Request Body Inspection enabled? Defaults to `true`.
|
|
48209
48191
|
*/
|
|
48210
48192
|
requestBodyCheck?: pulumi.Input<boolean>;
|
|
48193
|
+
/**
|
|
48194
|
+
* Whether the firewall should block a request with body size greater then `maxRequestBodySizeInKb`. Defaults to `true`.
|
|
48195
|
+
*/
|
|
48211
48196
|
requestBodyEnforcement?: pulumi.Input<boolean>;
|
|
48212
48197
|
/**
|
|
48213
48198
|
* Specifies the maximum request body inspection limit in KB for the Web Application Firewall. Defaults to `128`.
|
package/types/output.d.ts
CHANGED
|
@@ -45306,24 +45306,6 @@ export declare namespace maps {
|
|
|
45306
45306
|
type: string;
|
|
45307
45307
|
}
|
|
45308
45308
|
}
|
|
45309
|
-
export declare namespace media {
|
|
45310
|
-
interface AccountFilterPresentationTimeRange {
|
|
45311
|
-
endInUnits?: number;
|
|
45312
|
-
forceEnd?: boolean;
|
|
45313
|
-
liveBackoffInUnits?: number;
|
|
45314
|
-
presentationWindowInUnits?: number;
|
|
45315
|
-
startInUnits?: number;
|
|
45316
|
-
unitTimescaleInMilliseconds: number;
|
|
45317
|
-
}
|
|
45318
|
-
interface AccountFilterTrackSelection {
|
|
45319
|
-
conditions: outputs.media.AccountFilterTrackSelectionCondition[];
|
|
45320
|
-
}
|
|
45321
|
-
interface AccountFilterTrackSelectionCondition {
|
|
45322
|
-
operation: string;
|
|
45323
|
-
property: string;
|
|
45324
|
-
value: string;
|
|
45325
|
-
}
|
|
45326
|
-
}
|
|
45327
45309
|
export declare namespace mobile {
|
|
45328
45310
|
interface GetNetworkAttachedDataNetworkNetworkAddressPortTranslation {
|
|
45329
45311
|
icmpPinholeTimeoutInSeconds: number;
|
|
@@ -61546,6 +61528,9 @@ export declare namespace waf {
|
|
|
61546
61528
|
* Is Request Body Inspection enabled? Defaults to `true`.
|
|
61547
61529
|
*/
|
|
61548
61530
|
requestBodyCheck?: boolean;
|
|
61531
|
+
/**
|
|
61532
|
+
* Whether the firewall should block a request with body size greater then `maxRequestBodySizeInKb`. Defaults to `true`.
|
|
61533
|
+
*/
|
|
61549
61534
|
requestBodyEnforcement?: boolean;
|
|
61550
61535
|
/**
|
|
61551
61536
|
* Specifies the maximum request body inspection limit in KB for the Web Application Firewall. Defaults to `128`.
|
package/media/accountFilter.d.ts
DELETED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import * as inputs from "../types/input";
|
|
3
|
-
import * as outputs from "../types/output";
|
|
4
|
-
export declare class AccountFilter extends pulumi.CustomResource {
|
|
5
|
-
/**
|
|
6
|
-
* Get an existing AccountFilter resource's state with the given name, ID, and optional extra
|
|
7
|
-
* properties used to qualify the lookup.
|
|
8
|
-
*
|
|
9
|
-
* @param name The _unique_ name of the resulting resource.
|
|
10
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
11
|
-
* @param state Any extra arguments used during the lookup.
|
|
12
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
13
|
-
*/
|
|
14
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AccountFilterState, opts?: pulumi.CustomResourceOptions): AccountFilter;
|
|
15
|
-
/**
|
|
16
|
-
* Returns true if the given object is an instance of AccountFilter. This is designed to work even
|
|
17
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
18
|
-
*/
|
|
19
|
-
static isInstance(obj: any): obj is AccountFilter;
|
|
20
|
-
readonly firstQualityBitrate: pulumi.Output<number | undefined>;
|
|
21
|
-
readonly mediaServicesAccountName: pulumi.Output<string>;
|
|
22
|
-
readonly name: pulumi.Output<string>;
|
|
23
|
-
readonly presentationTimeRange: pulumi.Output<outputs.media.AccountFilterPresentationTimeRange | undefined>;
|
|
24
|
-
readonly resourceGroupName: pulumi.Output<string>;
|
|
25
|
-
readonly trackSelections: pulumi.Output<outputs.media.AccountFilterTrackSelection[] | undefined>;
|
|
26
|
-
/**
|
|
27
|
-
* Create a AccountFilter resource with the given unique name, arguments, and options.
|
|
28
|
-
*
|
|
29
|
-
* @param name The _unique_ name of the resource.
|
|
30
|
-
* @param args The arguments to use to populate this resource's properties.
|
|
31
|
-
* @param opts A bag of options that control this resource's behavior.
|
|
32
|
-
*/
|
|
33
|
-
constructor(name: string, args: AccountFilterArgs, opts?: pulumi.CustomResourceOptions);
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* Input properties used for looking up and filtering AccountFilter resources.
|
|
37
|
-
*/
|
|
38
|
-
export interface AccountFilterState {
|
|
39
|
-
firstQualityBitrate?: pulumi.Input<number>;
|
|
40
|
-
mediaServicesAccountName?: pulumi.Input<string>;
|
|
41
|
-
name?: pulumi.Input<string>;
|
|
42
|
-
presentationTimeRange?: pulumi.Input<inputs.media.AccountFilterPresentationTimeRange>;
|
|
43
|
-
resourceGroupName?: pulumi.Input<string>;
|
|
44
|
-
trackSelections?: pulumi.Input<pulumi.Input<inputs.media.AccountFilterTrackSelection>[]>;
|
|
45
|
-
}
|
|
46
|
-
/**
|
|
47
|
-
* The set of arguments for constructing a AccountFilter resource.
|
|
48
|
-
*/
|
|
49
|
-
export interface AccountFilterArgs {
|
|
50
|
-
firstQualityBitrate?: pulumi.Input<number>;
|
|
51
|
-
mediaServicesAccountName: pulumi.Input<string>;
|
|
52
|
-
name?: pulumi.Input<string>;
|
|
53
|
-
presentationTimeRange?: pulumi.Input<inputs.media.AccountFilterPresentationTimeRange>;
|
|
54
|
-
resourceGroupName: pulumi.Input<string>;
|
|
55
|
-
trackSelections?: pulumi.Input<pulumi.Input<inputs.media.AccountFilterTrackSelection>[]>;
|
|
56
|
-
}
|
package/media/accountFilter.js
DELETED
|
@@ -1,65 +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
|
-
class AccountFilter extends pulumi.CustomResource {
|
|
9
|
-
constructor(name, argsOrState, opts) {
|
|
10
|
-
let resourceInputs = {};
|
|
11
|
-
opts = opts || {};
|
|
12
|
-
if (opts.id) {
|
|
13
|
-
const state = argsOrState;
|
|
14
|
-
resourceInputs["firstQualityBitrate"] = state ? state.firstQualityBitrate : undefined;
|
|
15
|
-
resourceInputs["mediaServicesAccountName"] = state ? state.mediaServicesAccountName : undefined;
|
|
16
|
-
resourceInputs["name"] = state ? state.name : undefined;
|
|
17
|
-
resourceInputs["presentationTimeRange"] = state ? state.presentationTimeRange : undefined;
|
|
18
|
-
resourceInputs["resourceGroupName"] = state ? state.resourceGroupName : undefined;
|
|
19
|
-
resourceInputs["trackSelections"] = state ? state.trackSelections : undefined;
|
|
20
|
-
}
|
|
21
|
-
else {
|
|
22
|
-
const args = argsOrState;
|
|
23
|
-
if ((!args || args.mediaServicesAccountName === undefined) && !opts.urn) {
|
|
24
|
-
throw new Error("Missing required property 'mediaServicesAccountName'");
|
|
25
|
-
}
|
|
26
|
-
if ((!args || args.resourceGroupName === undefined) && !opts.urn) {
|
|
27
|
-
throw new Error("Missing required property 'resourceGroupName'");
|
|
28
|
-
}
|
|
29
|
-
resourceInputs["firstQualityBitrate"] = args ? args.firstQualityBitrate : undefined;
|
|
30
|
-
resourceInputs["mediaServicesAccountName"] = args ? args.mediaServicesAccountName : undefined;
|
|
31
|
-
resourceInputs["name"] = args ? args.name : undefined;
|
|
32
|
-
resourceInputs["presentationTimeRange"] = args ? args.presentationTimeRange : undefined;
|
|
33
|
-
resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
|
|
34
|
-
resourceInputs["trackSelections"] = args ? args.trackSelections : undefined;
|
|
35
|
-
}
|
|
36
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
37
|
-
super(AccountFilter.__pulumiType, name, resourceInputs, opts);
|
|
38
|
-
}
|
|
39
|
-
/**
|
|
40
|
-
* Get an existing AccountFilter resource's state with the given name, ID, and optional extra
|
|
41
|
-
* properties used to qualify the lookup.
|
|
42
|
-
*
|
|
43
|
-
* @param name The _unique_ name of the resulting resource.
|
|
44
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
45
|
-
* @param state Any extra arguments used during the lookup.
|
|
46
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
47
|
-
*/
|
|
48
|
-
static get(name, id, state, opts) {
|
|
49
|
-
return new AccountFilter(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
50
|
-
}
|
|
51
|
-
/**
|
|
52
|
-
* Returns true if the given object is an instance of AccountFilter. This is designed to work even
|
|
53
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
54
|
-
*/
|
|
55
|
-
static isInstance(obj) {
|
|
56
|
-
if (obj === undefined || obj === null) {
|
|
57
|
-
return false;
|
|
58
|
-
}
|
|
59
|
-
return obj['__pulumiType'] === AccountFilter.__pulumiType;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
exports.AccountFilter = AccountFilter;
|
|
63
|
-
/** @internal */
|
|
64
|
-
AccountFilter.__pulumiType = 'azure:media/accountFilter:AccountFilter';
|
|
65
|
-
//# 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"}
|