@pulumi/azure 5.63.0 → 5.64.0
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/apimanagement/api.d.ts +1 -1
- package/apimanagement/api.js +1 -1
- package/appconfiguration/configurationKey.d.ts +1 -1
- package/appservice/plan.d.ts +1 -1
- package/appservice/plan.js +1 -1
- package/appservice/servicePlan.d.ts +1 -1
- package/appservice/servicePlan.js +1 -1
- package/authorization/assignment.d.ts +6 -0
- package/authorization/assignment.js.map +1 -1
- package/automation/schedule.d.ts +3 -3
- package/chaosstudio/index.d.ts +3 -0
- package/chaosstudio/index.js +22 -0
- package/chaosstudio/index.js.map +1 -0
- package/chaosstudio/target.d.ts +114 -0
- package/chaosstudio/target.js +101 -0
- package/chaosstudio/target.js.map +1 -0
- package/compute/getIpGroups.d.ts +86 -0
- package/compute/getIpGroups.js +55 -0
- package/compute/getIpGroups.js.map +1 -0
- package/compute/index.d.ts +3 -0
- package/compute/index.js +5 -2
- package/compute/index.js.map +1 -1
- package/compute/runCommand.d.ts +2 -2
- package/compute/runCommand.js +2 -2
- package/containerapp/getApp.d.ts +1 -1
- package/datafactory/getTriggerSchedule.d.ts +113 -0
- package/datafactory/getTriggerSchedule.js +52 -0
- package/datafactory/getTriggerSchedule.js.map +1 -0
- package/datafactory/getTriggerSchedules.d.ts +65 -0
- package/datafactory/getTriggerSchedules.js +49 -0
- package/datafactory/getTriggerSchedules.js.map +1 -0
- package/datafactory/index.d.ts +6 -0
- package/datafactory/index.js +8 -2
- package/datafactory/index.js.map +1 -1
- package/datafactory/integrationRuntimeSsis.d.ts +18 -0
- package/datafactory/integrationRuntimeSsis.js +2 -0
- package/datafactory/integrationRuntimeSsis.js.map +1 -1
- package/dataprotection/backupVault.d.ts +3 -3
- package/elasticsan/index.d.ts +3 -0
- package/elasticsan/index.js +6 -1
- package/elasticsan/index.js.map +1 -1
- package/elasticsan/volumeGroup.d.ts +248 -0
- package/elasticsan/volumeGroup.js +184 -0
- package/elasticsan/volumeGroup.js.map +1 -0
- package/index.d.ts +3 -1
- package/index.js +7 -3
- package/index.js.map +1 -1
- package/netapp/account.d.ts +22 -1
- package/netapp/account.js +12 -1
- package/netapp/account.js.map +1 -1
- package/netapp/accountEncryption.d.ts +97 -0
- package/netapp/accountEncryption.js +74 -0
- package/netapp/accountEncryption.js.map +1 -0
- package/netapp/getAccount.d.ts +8 -0
- package/netapp/getAccount.js +1 -0
- package/netapp/getAccount.js.map +1 -1
- package/netapp/getAccountEncryption.d.ts +88 -0
- package/netapp/getAccountEncryption.js +52 -0
- package/netapp/getAccountEncryption.js.map +1 -0
- package/netapp/getVolume.d.ts +2 -0
- package/netapp/getVolume.js.map +1 -1
- package/netapp/index.d.ts +6 -0
- package/netapp/index.js +9 -1
- package/netapp/index.js.map +1 -1
- package/netapp/volume.d.ts +24 -0
- package/netapp/volume.js +4 -0
- package/netapp/volume.js.map +1 -1
- package/network/getIpGroups.d.ts +84 -0
- package/network/getIpGroups.js +52 -0
- package/network/getIpGroups.js.map +1 -0
- package/network/index.d.ts +3 -0
- package/network/index.js +6 -3
- package/network/index.js.map +1 -1
- package/nginx/certificate.d.ts +3 -3
- package/nginx/getCertificate.d.ts +84 -0
- package/nginx/getCertificate.js +52 -0
- package/nginx/getCertificate.js.map +1 -0
- package/nginx/index.d.ts +3 -0
- package/nginx/index.js +4 -1
- package/nginx/index.js.map +1 -1
- package/package.json +1 -1
- package/postgresql/flexibleServer.d.ts +2 -0
- package/postgresql/flexibleServer.js +2 -0
- package/postgresql/flexibleServer.js.map +1 -1
- package/redhatopenshift/cluster.d.ts +197 -0
- package/redhatopenshift/cluster.js +108 -0
- package/redhatopenshift/cluster.js.map +1 -0
- package/redhatopenshift/index.d.ts +3 -0
- package/redhatopenshift/index.js +22 -0
- package/redhatopenshift/index.js.map +1 -0
- package/role/assignment.d.ts +6 -0
- package/role/assignment.js.map +1 -1
- package/streamanalytics/getJob.d.ts +4 -0
- package/streamanalytics/getJob.js.map +1 -1
- package/streamanalytics/job.d.ts +15 -0
- package/streamanalytics/job.js +2 -0
- package/streamanalytics/job.js.map +1 -1
- package/types/input.d.ts +205 -3
- package/types/output.d.ts +253 -3
package/elasticsan/index.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
export { ElasticSanArgs, ElasticSanState } from "./elasticSan";
|
|
2
2
|
export declare type ElasticSan = import("./elasticSan").ElasticSan;
|
|
3
3
|
export declare const ElasticSan: typeof import("./elasticSan").ElasticSan;
|
|
4
|
+
export { VolumeGroupArgs, VolumeGroupState } from "./volumeGroup";
|
|
5
|
+
export declare type VolumeGroup = import("./volumeGroup").VolumeGroup;
|
|
6
|
+
export declare const VolumeGroup: typeof import("./volumeGroup").VolumeGroup;
|
package/elasticsan/index.js
CHANGED
|
@@ -2,21 +2,26 @@
|
|
|
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.ElasticSan = void 0;
|
|
5
|
+
exports.VolumeGroup = exports.ElasticSan = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.ElasticSan = null;
|
|
9
9
|
utilities.lazyLoad(exports, ["ElasticSan"], () => require("./elasticSan"));
|
|
10
|
+
exports.VolumeGroup = null;
|
|
11
|
+
utilities.lazyLoad(exports, ["VolumeGroup"], () => require("./volumeGroup"));
|
|
10
12
|
const _module = {
|
|
11
13
|
version: utilities.getVersion(),
|
|
12
14
|
construct: (name, type, urn) => {
|
|
13
15
|
switch (type) {
|
|
14
16
|
case "azure:elasticsan/elasticSan:ElasticSan":
|
|
15
17
|
return new exports.ElasticSan(name, undefined, { urn });
|
|
18
|
+
case "azure:elasticsan/volumeGroup:VolumeGroup":
|
|
19
|
+
return new exports.VolumeGroup(name, undefined, { urn });
|
|
16
20
|
default:
|
|
17
21
|
throw new Error(`unknown resource type ${type}`);
|
|
18
22
|
}
|
|
19
23
|
},
|
|
20
24
|
};
|
|
21
25
|
pulumi.runtime.registerResourceModule("azure", "elasticsan/elasticSan", _module);
|
|
26
|
+
pulumi.runtime.registerResourceModule("azure", "elasticsan/volumeGroup", _module);
|
|
22
27
|
//# sourceMappingURL=index.js.map
|
package/elasticsan/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../elasticsan/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;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../elasticsan/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,WAAW,GAA+C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAG7E,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,0CAA0C;gBAC3C,OAAO,IAAI,mBAAW,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzD;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,wBAAwB,EAAE,OAAO,CAAC,CAAA"}
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Manages an Elastic SAN Volume Group resource.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as azure from "@pulumi/azure";
|
|
12
|
+
*
|
|
13
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
14
|
+
* const exampleElasticSan = new azure.elasticsan.ElasticSan("exampleElasticSan", {
|
|
15
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
16
|
+
* location: exampleResourceGroup.location,
|
|
17
|
+
* baseSizeInTib: 1,
|
|
18
|
+
* sku: {
|
|
19
|
+
* name: "Premium_LRS",
|
|
20
|
+
* },
|
|
21
|
+
* });
|
|
22
|
+
* const current = azure.core.getClientConfig({});
|
|
23
|
+
* const exampleUserAssignedIdentity = new azure.authorization.UserAssignedIdentity("exampleUserAssignedIdentity", {
|
|
24
|
+
* location: exampleResourceGroup.location,
|
|
25
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
26
|
+
* });
|
|
27
|
+
* const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
|
|
28
|
+
* addressSpaces: ["10.0.0.0/16"],
|
|
29
|
+
* location: exampleResourceGroup.location,
|
|
30
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
31
|
+
* });
|
|
32
|
+
* const exampleSubnet = new azure.network.Subnet("exampleSubnet", {
|
|
33
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
34
|
+
* virtualNetworkName: exampleVirtualNetwork.name,
|
|
35
|
+
* addressPrefixes: ["10.0.1.0/24"],
|
|
36
|
+
* serviceEndpoints: ["Microsoft.Storage.Global"],
|
|
37
|
+
* });
|
|
38
|
+
* const exampleKeyVault = new azure.keyvault.KeyVault("exampleKeyVault", {
|
|
39
|
+
* location: exampleResourceGroup.location,
|
|
40
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
41
|
+
* enabledForDiskEncryption: true,
|
|
42
|
+
* tenantId: current.then(current => current.tenantId),
|
|
43
|
+
* softDeleteRetentionDays: 7,
|
|
44
|
+
* purgeProtectionEnabled: true,
|
|
45
|
+
* skuName: "standard",
|
|
46
|
+
* });
|
|
47
|
+
* const userAssignedIdentity = new azure.keyvault.AccessPolicy("userAssignedIdentity", {
|
|
48
|
+
* keyVaultId: exampleKeyVault.id,
|
|
49
|
+
* tenantId: current.then(current => current.tenantId),
|
|
50
|
+
* objectId: exampleUserAssignedIdentity.principalId,
|
|
51
|
+
* keyPermissions: [
|
|
52
|
+
* "Get",
|
|
53
|
+
* "UnwrapKey",
|
|
54
|
+
* "WrapKey",
|
|
55
|
+
* ],
|
|
56
|
+
* secretPermissions: ["Get"],
|
|
57
|
+
* });
|
|
58
|
+
* const client = new azure.keyvault.AccessPolicy("client", {
|
|
59
|
+
* keyVaultId: exampleKeyVault.id,
|
|
60
|
+
* tenantId: current.then(current => current.tenantId),
|
|
61
|
+
* objectId: current.then(current => current.objectId),
|
|
62
|
+
* keyPermissions: [
|
|
63
|
+
* "Get",
|
|
64
|
+
* "Create",
|
|
65
|
+
* "Delete",
|
|
66
|
+
* "List",
|
|
67
|
+
* "Restore",
|
|
68
|
+
* "Recover",
|
|
69
|
+
* "UnwrapKey",
|
|
70
|
+
* "WrapKey",
|
|
71
|
+
* "Purge",
|
|
72
|
+
* "Encrypt",
|
|
73
|
+
* "Decrypt",
|
|
74
|
+
* "Sign",
|
|
75
|
+
* "Verify",
|
|
76
|
+
* "GetRotationPolicy",
|
|
77
|
+
* ],
|
|
78
|
+
* secretPermissions: ["Get"],
|
|
79
|
+
* });
|
|
80
|
+
* const exampleKey = new azure.keyvault.Key("exampleKey", {
|
|
81
|
+
* keyVaultId: exampleKeyVault.id,
|
|
82
|
+
* keyType: "RSA",
|
|
83
|
+
* keySize: 2048,
|
|
84
|
+
* keyOpts: [
|
|
85
|
+
* "decrypt",
|
|
86
|
+
* "encrypt",
|
|
87
|
+
* "sign",
|
|
88
|
+
* "unwrapKey",
|
|
89
|
+
* "verify",
|
|
90
|
+
* "wrapKey",
|
|
91
|
+
* ],
|
|
92
|
+
* }, {
|
|
93
|
+
* dependsOn: [
|
|
94
|
+
* userAssignedIdentity,
|
|
95
|
+
* client,
|
|
96
|
+
* ],
|
|
97
|
+
* });
|
|
98
|
+
* const exampleVolumeGroup = new azure.elasticsan.VolumeGroup("exampleVolumeGroup", {
|
|
99
|
+
* elasticSanId: exampleElasticSan.id,
|
|
100
|
+
* encryptionType: "EncryptionAtRestWithCustomerManagedKey",
|
|
101
|
+
* encryption: {
|
|
102
|
+
* keyVaultKeyId: exampleKey.versionlessId,
|
|
103
|
+
* userAssignedIdentityId: exampleUserAssignedIdentity.id,
|
|
104
|
+
* },
|
|
105
|
+
* identity: {
|
|
106
|
+
* type: "UserAssigned",
|
|
107
|
+
* identityIds: [exampleUserAssignedIdentity.id],
|
|
108
|
+
* },
|
|
109
|
+
* networkRules: [{
|
|
110
|
+
* subnetId: exampleSubnet.id,
|
|
111
|
+
* action: "Allow",
|
|
112
|
+
* }],
|
|
113
|
+
* });
|
|
114
|
+
* ```
|
|
115
|
+
*
|
|
116
|
+
* ## Import
|
|
117
|
+
*
|
|
118
|
+
* An existing Elastic SAN Volume Group can be imported into Terraform using the `resource id`, e.g.
|
|
119
|
+
*
|
|
120
|
+
* ```sh
|
|
121
|
+
* $ pulumi import azure:elasticsan/volumeGroup:VolumeGroup example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ElasticSan/elasticSans/esan1/volumeGroups/vg1
|
|
122
|
+
* ```
|
|
123
|
+
*/
|
|
124
|
+
export declare class VolumeGroup extends pulumi.CustomResource {
|
|
125
|
+
/**
|
|
126
|
+
* Get an existing VolumeGroup resource's state with the given name, ID, and optional extra
|
|
127
|
+
* properties used to qualify the lookup.
|
|
128
|
+
*
|
|
129
|
+
* @param name The _unique_ name of the resulting resource.
|
|
130
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
131
|
+
* @param state Any extra arguments used during the lookup.
|
|
132
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
133
|
+
*/
|
|
134
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: VolumeGroupState, opts?: pulumi.CustomResourceOptions): VolumeGroup;
|
|
135
|
+
/**
|
|
136
|
+
* Returns true if the given object is an instance of VolumeGroup. This is designed to work even
|
|
137
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
138
|
+
*/
|
|
139
|
+
static isInstance(obj: any): obj is VolumeGroup;
|
|
140
|
+
/**
|
|
141
|
+
* Specifies the Elastic SAN ID within which this Elastic SAN Volume Group should exist. Changing this forces a new resource to be created.
|
|
142
|
+
*/
|
|
143
|
+
readonly elasticSanId: pulumi.Output<string>;
|
|
144
|
+
/**
|
|
145
|
+
* An `encryption` block as defined below.
|
|
146
|
+
*
|
|
147
|
+
* > **NOTE:** The `encryption` block can only be set when `encryptionType` is set to `EncryptionAtRestWithCustomerManagedKey`.
|
|
148
|
+
*/
|
|
149
|
+
readonly encryption: pulumi.Output<outputs.elasticsan.VolumeGroupEncryption | undefined>;
|
|
150
|
+
/**
|
|
151
|
+
* Specifies the type of the key used to encrypt the data of the disk. Possible values are `EncryptionAtRestWithCustomerManagedKey` and `EncryptionAtRestWithPlatformKey`. Defaults to `EncryptionAtRestWithPlatformKey`.
|
|
152
|
+
*/
|
|
153
|
+
readonly encryptionType: pulumi.Output<string | undefined>;
|
|
154
|
+
/**
|
|
155
|
+
* An `identity` block as defined below. Specifies the Managed Identity which should be assigned to this Elastic SAN Volume Group.
|
|
156
|
+
*/
|
|
157
|
+
readonly identity: pulumi.Output<outputs.elasticsan.VolumeGroupIdentity | undefined>;
|
|
158
|
+
/**
|
|
159
|
+
* Specifies the name of this Elastic SAN Volume Group. Changing this forces a new resource to be created.
|
|
160
|
+
*/
|
|
161
|
+
readonly name: pulumi.Output<string>;
|
|
162
|
+
/**
|
|
163
|
+
* One or more `networkRule` blocks as defined below.
|
|
164
|
+
*/
|
|
165
|
+
readonly networkRules: pulumi.Output<outputs.elasticsan.VolumeGroupNetworkRule[] | undefined>;
|
|
166
|
+
/**
|
|
167
|
+
* Specifies the type of the storage target. The only possible value is `Iscsi`. Defaults to `Iscsi`.
|
|
168
|
+
*/
|
|
169
|
+
readonly protocolType: pulumi.Output<string | undefined>;
|
|
170
|
+
/**
|
|
171
|
+
* Create a VolumeGroup resource with the given unique name, arguments, and options.
|
|
172
|
+
*
|
|
173
|
+
* @param name The _unique_ name of the resource.
|
|
174
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
175
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
176
|
+
*/
|
|
177
|
+
constructor(name: string, args: VolumeGroupArgs, opts?: pulumi.CustomResourceOptions);
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* Input properties used for looking up and filtering VolumeGroup resources.
|
|
181
|
+
*/
|
|
182
|
+
export interface VolumeGroupState {
|
|
183
|
+
/**
|
|
184
|
+
* Specifies the Elastic SAN ID within which this Elastic SAN Volume Group should exist. Changing this forces a new resource to be created.
|
|
185
|
+
*/
|
|
186
|
+
elasticSanId?: pulumi.Input<string>;
|
|
187
|
+
/**
|
|
188
|
+
* An `encryption` block as defined below.
|
|
189
|
+
*
|
|
190
|
+
* > **NOTE:** The `encryption` block can only be set when `encryptionType` is set to `EncryptionAtRestWithCustomerManagedKey`.
|
|
191
|
+
*/
|
|
192
|
+
encryption?: pulumi.Input<inputs.elasticsan.VolumeGroupEncryption>;
|
|
193
|
+
/**
|
|
194
|
+
* Specifies the type of the key used to encrypt the data of the disk. Possible values are `EncryptionAtRestWithCustomerManagedKey` and `EncryptionAtRestWithPlatformKey`. Defaults to `EncryptionAtRestWithPlatformKey`.
|
|
195
|
+
*/
|
|
196
|
+
encryptionType?: pulumi.Input<string>;
|
|
197
|
+
/**
|
|
198
|
+
* An `identity` block as defined below. Specifies the Managed Identity which should be assigned to this Elastic SAN Volume Group.
|
|
199
|
+
*/
|
|
200
|
+
identity?: pulumi.Input<inputs.elasticsan.VolumeGroupIdentity>;
|
|
201
|
+
/**
|
|
202
|
+
* Specifies the name of this Elastic SAN Volume Group. Changing this forces a new resource to be created.
|
|
203
|
+
*/
|
|
204
|
+
name?: pulumi.Input<string>;
|
|
205
|
+
/**
|
|
206
|
+
* One or more `networkRule` blocks as defined below.
|
|
207
|
+
*/
|
|
208
|
+
networkRules?: pulumi.Input<pulumi.Input<inputs.elasticsan.VolumeGroupNetworkRule>[]>;
|
|
209
|
+
/**
|
|
210
|
+
* Specifies the type of the storage target. The only possible value is `Iscsi`. Defaults to `Iscsi`.
|
|
211
|
+
*/
|
|
212
|
+
protocolType?: pulumi.Input<string>;
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* The set of arguments for constructing a VolumeGroup resource.
|
|
216
|
+
*/
|
|
217
|
+
export interface VolumeGroupArgs {
|
|
218
|
+
/**
|
|
219
|
+
* Specifies the Elastic SAN ID within which this Elastic SAN Volume Group should exist. Changing this forces a new resource to be created.
|
|
220
|
+
*/
|
|
221
|
+
elasticSanId: pulumi.Input<string>;
|
|
222
|
+
/**
|
|
223
|
+
* An `encryption` block as defined below.
|
|
224
|
+
*
|
|
225
|
+
* > **NOTE:** The `encryption` block can only be set when `encryptionType` is set to `EncryptionAtRestWithCustomerManagedKey`.
|
|
226
|
+
*/
|
|
227
|
+
encryption?: pulumi.Input<inputs.elasticsan.VolumeGroupEncryption>;
|
|
228
|
+
/**
|
|
229
|
+
* Specifies the type of the key used to encrypt the data of the disk. Possible values are `EncryptionAtRestWithCustomerManagedKey` and `EncryptionAtRestWithPlatformKey`. Defaults to `EncryptionAtRestWithPlatformKey`.
|
|
230
|
+
*/
|
|
231
|
+
encryptionType?: pulumi.Input<string>;
|
|
232
|
+
/**
|
|
233
|
+
* An `identity` block as defined below. Specifies the Managed Identity which should be assigned to this Elastic SAN Volume Group.
|
|
234
|
+
*/
|
|
235
|
+
identity?: pulumi.Input<inputs.elasticsan.VolumeGroupIdentity>;
|
|
236
|
+
/**
|
|
237
|
+
* Specifies the name of this Elastic SAN Volume Group. Changing this forces a new resource to be created.
|
|
238
|
+
*/
|
|
239
|
+
name?: pulumi.Input<string>;
|
|
240
|
+
/**
|
|
241
|
+
* One or more `networkRule` blocks as defined below.
|
|
242
|
+
*/
|
|
243
|
+
networkRules?: pulumi.Input<pulumi.Input<inputs.elasticsan.VolumeGroupNetworkRule>[]>;
|
|
244
|
+
/**
|
|
245
|
+
* Specifies the type of the storage target. The only possible value is `Iscsi`. Defaults to `Iscsi`.
|
|
246
|
+
*/
|
|
247
|
+
protocolType?: pulumi.Input<string>;
|
|
248
|
+
}
|
|
@@ -0,0 +1,184 @@
|
|
|
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.VolumeGroup = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages an Elastic SAN Volume Group resource.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azure from "@pulumi/azure";
|
|
16
|
+
*
|
|
17
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
18
|
+
* const exampleElasticSan = new azure.elasticsan.ElasticSan("exampleElasticSan", {
|
|
19
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
20
|
+
* location: exampleResourceGroup.location,
|
|
21
|
+
* baseSizeInTib: 1,
|
|
22
|
+
* sku: {
|
|
23
|
+
* name: "Premium_LRS",
|
|
24
|
+
* },
|
|
25
|
+
* });
|
|
26
|
+
* const current = azure.core.getClientConfig({});
|
|
27
|
+
* const exampleUserAssignedIdentity = new azure.authorization.UserAssignedIdentity("exampleUserAssignedIdentity", {
|
|
28
|
+
* location: exampleResourceGroup.location,
|
|
29
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
30
|
+
* });
|
|
31
|
+
* const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
|
|
32
|
+
* addressSpaces: ["10.0.0.0/16"],
|
|
33
|
+
* location: exampleResourceGroup.location,
|
|
34
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
35
|
+
* });
|
|
36
|
+
* const exampleSubnet = new azure.network.Subnet("exampleSubnet", {
|
|
37
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
38
|
+
* virtualNetworkName: exampleVirtualNetwork.name,
|
|
39
|
+
* addressPrefixes: ["10.0.1.0/24"],
|
|
40
|
+
* serviceEndpoints: ["Microsoft.Storage.Global"],
|
|
41
|
+
* });
|
|
42
|
+
* const exampleKeyVault = new azure.keyvault.KeyVault("exampleKeyVault", {
|
|
43
|
+
* location: exampleResourceGroup.location,
|
|
44
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
45
|
+
* enabledForDiskEncryption: true,
|
|
46
|
+
* tenantId: current.then(current => current.tenantId),
|
|
47
|
+
* softDeleteRetentionDays: 7,
|
|
48
|
+
* purgeProtectionEnabled: true,
|
|
49
|
+
* skuName: "standard",
|
|
50
|
+
* });
|
|
51
|
+
* const userAssignedIdentity = new azure.keyvault.AccessPolicy("userAssignedIdentity", {
|
|
52
|
+
* keyVaultId: exampleKeyVault.id,
|
|
53
|
+
* tenantId: current.then(current => current.tenantId),
|
|
54
|
+
* objectId: exampleUserAssignedIdentity.principalId,
|
|
55
|
+
* keyPermissions: [
|
|
56
|
+
* "Get",
|
|
57
|
+
* "UnwrapKey",
|
|
58
|
+
* "WrapKey",
|
|
59
|
+
* ],
|
|
60
|
+
* secretPermissions: ["Get"],
|
|
61
|
+
* });
|
|
62
|
+
* const client = new azure.keyvault.AccessPolicy("client", {
|
|
63
|
+
* keyVaultId: exampleKeyVault.id,
|
|
64
|
+
* tenantId: current.then(current => current.tenantId),
|
|
65
|
+
* objectId: current.then(current => current.objectId),
|
|
66
|
+
* keyPermissions: [
|
|
67
|
+
* "Get",
|
|
68
|
+
* "Create",
|
|
69
|
+
* "Delete",
|
|
70
|
+
* "List",
|
|
71
|
+
* "Restore",
|
|
72
|
+
* "Recover",
|
|
73
|
+
* "UnwrapKey",
|
|
74
|
+
* "WrapKey",
|
|
75
|
+
* "Purge",
|
|
76
|
+
* "Encrypt",
|
|
77
|
+
* "Decrypt",
|
|
78
|
+
* "Sign",
|
|
79
|
+
* "Verify",
|
|
80
|
+
* "GetRotationPolicy",
|
|
81
|
+
* ],
|
|
82
|
+
* secretPermissions: ["Get"],
|
|
83
|
+
* });
|
|
84
|
+
* const exampleKey = new azure.keyvault.Key("exampleKey", {
|
|
85
|
+
* keyVaultId: exampleKeyVault.id,
|
|
86
|
+
* keyType: "RSA",
|
|
87
|
+
* keySize: 2048,
|
|
88
|
+
* keyOpts: [
|
|
89
|
+
* "decrypt",
|
|
90
|
+
* "encrypt",
|
|
91
|
+
* "sign",
|
|
92
|
+
* "unwrapKey",
|
|
93
|
+
* "verify",
|
|
94
|
+
* "wrapKey",
|
|
95
|
+
* ],
|
|
96
|
+
* }, {
|
|
97
|
+
* dependsOn: [
|
|
98
|
+
* userAssignedIdentity,
|
|
99
|
+
* client,
|
|
100
|
+
* ],
|
|
101
|
+
* });
|
|
102
|
+
* const exampleVolumeGroup = new azure.elasticsan.VolumeGroup("exampleVolumeGroup", {
|
|
103
|
+
* elasticSanId: exampleElasticSan.id,
|
|
104
|
+
* encryptionType: "EncryptionAtRestWithCustomerManagedKey",
|
|
105
|
+
* encryption: {
|
|
106
|
+
* keyVaultKeyId: exampleKey.versionlessId,
|
|
107
|
+
* userAssignedIdentityId: exampleUserAssignedIdentity.id,
|
|
108
|
+
* },
|
|
109
|
+
* identity: {
|
|
110
|
+
* type: "UserAssigned",
|
|
111
|
+
* identityIds: [exampleUserAssignedIdentity.id],
|
|
112
|
+
* },
|
|
113
|
+
* networkRules: [{
|
|
114
|
+
* subnetId: exampleSubnet.id,
|
|
115
|
+
* action: "Allow",
|
|
116
|
+
* }],
|
|
117
|
+
* });
|
|
118
|
+
* ```
|
|
119
|
+
*
|
|
120
|
+
* ## Import
|
|
121
|
+
*
|
|
122
|
+
* An existing Elastic SAN Volume Group can be imported into Terraform using the `resource id`, e.g.
|
|
123
|
+
*
|
|
124
|
+
* ```sh
|
|
125
|
+
* $ pulumi import azure:elasticsan/volumeGroup:VolumeGroup example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ElasticSan/elasticSans/esan1/volumeGroups/vg1
|
|
126
|
+
* ```
|
|
127
|
+
*/
|
|
128
|
+
class VolumeGroup extends pulumi.CustomResource {
|
|
129
|
+
constructor(name, argsOrState, opts) {
|
|
130
|
+
let resourceInputs = {};
|
|
131
|
+
opts = opts || {};
|
|
132
|
+
if (opts.id) {
|
|
133
|
+
const state = argsOrState;
|
|
134
|
+
resourceInputs["elasticSanId"] = state ? state.elasticSanId : undefined;
|
|
135
|
+
resourceInputs["encryption"] = state ? state.encryption : undefined;
|
|
136
|
+
resourceInputs["encryptionType"] = state ? state.encryptionType : undefined;
|
|
137
|
+
resourceInputs["identity"] = state ? state.identity : undefined;
|
|
138
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
139
|
+
resourceInputs["networkRules"] = state ? state.networkRules : undefined;
|
|
140
|
+
resourceInputs["protocolType"] = state ? state.protocolType : undefined;
|
|
141
|
+
}
|
|
142
|
+
else {
|
|
143
|
+
const args = argsOrState;
|
|
144
|
+
if ((!args || args.elasticSanId === undefined) && !opts.urn) {
|
|
145
|
+
throw new Error("Missing required property 'elasticSanId'");
|
|
146
|
+
}
|
|
147
|
+
resourceInputs["elasticSanId"] = args ? args.elasticSanId : undefined;
|
|
148
|
+
resourceInputs["encryption"] = args ? args.encryption : undefined;
|
|
149
|
+
resourceInputs["encryptionType"] = args ? args.encryptionType : undefined;
|
|
150
|
+
resourceInputs["identity"] = args ? args.identity : undefined;
|
|
151
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
152
|
+
resourceInputs["networkRules"] = args ? args.networkRules : undefined;
|
|
153
|
+
resourceInputs["protocolType"] = args ? args.protocolType : undefined;
|
|
154
|
+
}
|
|
155
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
156
|
+
super(VolumeGroup.__pulumiType, name, resourceInputs, opts);
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* Get an existing VolumeGroup resource's state with the given name, ID, and optional extra
|
|
160
|
+
* properties used to qualify the lookup.
|
|
161
|
+
*
|
|
162
|
+
* @param name The _unique_ name of the resulting resource.
|
|
163
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
164
|
+
* @param state Any extra arguments used during the lookup.
|
|
165
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
166
|
+
*/
|
|
167
|
+
static get(name, id, state, opts) {
|
|
168
|
+
return new VolumeGroup(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* Returns true if the given object is an instance of VolumeGroup. This is designed to work even
|
|
172
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
173
|
+
*/
|
|
174
|
+
static isInstance(obj) {
|
|
175
|
+
if (obj === undefined || obj === null) {
|
|
176
|
+
return false;
|
|
177
|
+
}
|
|
178
|
+
return obj['__pulumiType'] === VolumeGroup.__pulumiType;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
exports.VolumeGroup = VolumeGroup;
|
|
182
|
+
/** @internal */
|
|
183
|
+
VolumeGroup.__pulumiType = 'azure:elasticsan/volumeGroup:VolumeGroup';
|
|
184
|
+
//# sourceMappingURL=volumeGroup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"volumeGroup.js","sourceRoot":"","sources":["../../elasticsan/volumeGroup.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ import * as billing from "./billing";
|
|
|
26
26
|
import * as blueprint from "./blueprint";
|
|
27
27
|
import * as bot from "./bot";
|
|
28
28
|
import * as cdn from "./cdn";
|
|
29
|
+
import * as chaosstudio from "./chaosstudio";
|
|
29
30
|
import * as cognitive from "./cognitive";
|
|
30
31
|
import * as communication from "./communication";
|
|
31
32
|
import * as compute from "./compute";
|
|
@@ -112,6 +113,7 @@ import * as privatelink from "./privatelink";
|
|
|
112
113
|
import * as proximity from "./proximity";
|
|
113
114
|
import * as purview from "./purview";
|
|
114
115
|
import * as recoveryservices from "./recoveryservices";
|
|
116
|
+
import * as redhatopenshift from "./redhatopenshift";
|
|
115
117
|
import * as redis from "./redis";
|
|
116
118
|
import * as relay from "./relay";
|
|
117
119
|
import * as role from "./role";
|
|
@@ -133,4 +135,4 @@ import * as videoanalyzer from "./videoanalyzer";
|
|
|
133
135
|
import * as voice from "./voice";
|
|
134
136
|
import * as waf from "./waf";
|
|
135
137
|
import * as webpubsub from "./webpubsub";
|
|
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, 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, fluidrelay, frontdoor, graph, hdinsight, healthcare, hpc, hsm, hybrid, iot, iotcentral, keyvault, kusto, lab, lb, lighthouse, loadtest, loganalytics, logicapps, machinelearning, maintenance, managedapplication, managedlustre, management, managementgroups, managementresource, maps, mariadb, marketplace, media, mediaservices, 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, redis, relay, role, search, securitycenter, sentinel, servicebus, servicefabric, signalr, siterecovery, sql, stack, storage, streamanalytics, synapse, trafficmanager, types, videoanalyzer, voice, waf, webpubsub, };
|
|
138
|
+
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, fluidrelay, frontdoor, graph, hdinsight, healthcare, hpc, hsm, hybrid, iot, iotcentral, keyvault, kusto, lab, lb, lighthouse, loadtest, loganalytics, logicapps, machinelearning, maintenance, managedapplication, managedlustre, management, managementgroups, managementresource, maps, mariadb, marketplace, media, mediaservices, 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, sql, stack, storage, streamanalytics, synapse, trafficmanager, types, videoanalyzer, voice, waf, webpubsub, };
|
package/index.js
CHANGED
|
@@ -16,9 +16,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
21
|
-
exports.webpubsub = exports.waf = exports.voice = exports.videoanalyzer = exports.types = exports.trafficmanager = exports.synapse = exports.streamanalytics = exports.storage = exports.stack = exports.sql = exports.siterecovery = exports.signalr = exports.servicefabric = exports.servicebus = exports.sentinel = exports.securitycenter = exports.search = exports.role = exports.relay = exports.redis = exports.recoveryservices = exports.purview = exports.proximity = exports.privatelink = exports.privatedns = exports.powerbi = exports.postgresql = exports.portal = exports.policy = exports.pim = void 0;
|
|
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.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.mediaservices = exports.media = exports.marketplace = exports.mariadb = 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.lab = exports.kusto = exports.keyvault = exports.iotcentral = exports.iot = exports.hybrid = exports.hsm = exports.hpc = exports.healthcare = exports.hdinsight = exports.graph = exports.frontdoor = exports.fluidrelay = exports.eventhub = exports.eventgrid = exports.elasticsan = exports.elasticcloud = exports.domainservices = exports.dns = void 0;
|
|
21
|
+
exports.webpubsub = exports.waf = exports.voice = exports.videoanalyzer = exports.types = exports.trafficmanager = exports.synapse = exports.streamanalytics = exports.storage = exports.stack = exports.sql = 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 = exports.policy = exports.pim = exports.paloalto = void 0;
|
|
22
22
|
const pulumi = require("@pulumi/pulumi");
|
|
23
23
|
const utilities = require("./utilities");
|
|
24
24
|
// Export members:
|
|
@@ -73,6 +73,8 @@ const bot = require("./bot");
|
|
|
73
73
|
exports.bot = bot;
|
|
74
74
|
const cdn = require("./cdn");
|
|
75
75
|
exports.cdn = cdn;
|
|
76
|
+
const chaosstudio = require("./chaosstudio");
|
|
77
|
+
exports.chaosstudio = chaosstudio;
|
|
76
78
|
const cognitive = require("./cognitive");
|
|
77
79
|
exports.cognitive = cognitive;
|
|
78
80
|
const communication = require("./communication");
|
|
@@ -245,6 +247,8 @@ const purview = require("./purview");
|
|
|
245
247
|
exports.purview = purview;
|
|
246
248
|
const recoveryservices = require("./recoveryservices");
|
|
247
249
|
exports.recoveryservices = recoveryservices;
|
|
250
|
+
const redhatopenshift = require("./redhatopenshift");
|
|
251
|
+
exports.redhatopenshift = redhatopenshift;
|
|
248
252
|
const redis = require("./redis");
|
|
249
253
|
exports.redis = redis;
|
|
250
254
|
const relay = require("./relay");
|
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":"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"}
|
package/netapp/account.d.ts
CHANGED
|
@@ -13,9 +13,14 @@ import * as outputs from "../types/output";
|
|
|
13
13
|
* import * as azure from "@pulumi/azure";
|
|
14
14
|
*
|
|
15
15
|
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
16
|
-
* const
|
|
16
|
+
* const current = azure.core.getClientConfig({});
|
|
17
|
+
* const exampleUserAssignedIdentity = new azure.authorization.UserAssignedIdentity("exampleUserAssignedIdentity", {
|
|
18
|
+
* location: exampleResourceGroup.location,
|
|
17
19
|
* resourceGroupName: exampleResourceGroup.name,
|
|
20
|
+
* });
|
|
21
|
+
* const exampleAccount = new azure.netapp.Account("exampleAccount", {
|
|
18
22
|
* location: exampleResourceGroup.location,
|
|
23
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
19
24
|
* activeDirectory: {
|
|
20
25
|
* username: "aduser",
|
|
21
26
|
* password: "aduserpwd",
|
|
@@ -24,6 +29,10 @@ import * as outputs from "../types/output";
|
|
|
24
29
|
* domain: "westcentralus.com",
|
|
25
30
|
* organizationalUnit: "OU=FirstLevel",
|
|
26
31
|
* },
|
|
32
|
+
* identity: {
|
|
33
|
+
* type: "UserAssigned",
|
|
34
|
+
* identityIds: [exampleUserAssignedIdentity.id],
|
|
35
|
+
* },
|
|
27
36
|
* });
|
|
28
37
|
* ```
|
|
29
38
|
*
|
|
@@ -55,6 +64,10 @@ export declare class Account extends pulumi.CustomResource {
|
|
|
55
64
|
* A `activeDirectory` block as defined below.
|
|
56
65
|
*/
|
|
57
66
|
readonly activeDirectory: pulumi.Output<outputs.netapp.AccountActiveDirectory | undefined>;
|
|
67
|
+
/**
|
|
68
|
+
* The identity block where it is used when customer managed keys based encryption will be enabled.
|
|
69
|
+
*/
|
|
70
|
+
readonly identity: pulumi.Output<outputs.netapp.AccountIdentity | undefined>;
|
|
58
71
|
/**
|
|
59
72
|
* Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
|
|
60
73
|
*/
|
|
@@ -90,6 +103,10 @@ export interface AccountState {
|
|
|
90
103
|
* A `activeDirectory` block as defined below.
|
|
91
104
|
*/
|
|
92
105
|
activeDirectory?: pulumi.Input<inputs.netapp.AccountActiveDirectory>;
|
|
106
|
+
/**
|
|
107
|
+
* The identity block where it is used when customer managed keys based encryption will be enabled.
|
|
108
|
+
*/
|
|
109
|
+
identity?: pulumi.Input<inputs.netapp.AccountIdentity>;
|
|
93
110
|
/**
|
|
94
111
|
* Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
|
|
95
112
|
*/
|
|
@@ -117,6 +134,10 @@ export interface AccountArgs {
|
|
|
117
134
|
* A `activeDirectory` block as defined below.
|
|
118
135
|
*/
|
|
119
136
|
activeDirectory?: pulumi.Input<inputs.netapp.AccountActiveDirectory>;
|
|
137
|
+
/**
|
|
138
|
+
* The identity block where it is used when customer managed keys based encryption will be enabled.
|
|
139
|
+
*/
|
|
140
|
+
identity?: pulumi.Input<inputs.netapp.AccountIdentity>;
|
|
120
141
|
/**
|
|
121
142
|
* Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
|
|
122
143
|
*/
|