@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/netapp/account.js
CHANGED
|
@@ -17,9 +17,14 @@ const utilities = require("../utilities");
|
|
|
17
17
|
* import * as azure from "@pulumi/azure";
|
|
18
18
|
*
|
|
19
19
|
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
20
|
-
* const
|
|
20
|
+
* const current = azure.core.getClientConfig({});
|
|
21
|
+
* const exampleUserAssignedIdentity = new azure.authorization.UserAssignedIdentity("exampleUserAssignedIdentity", {
|
|
22
|
+
* location: exampleResourceGroup.location,
|
|
21
23
|
* resourceGroupName: exampleResourceGroup.name,
|
|
24
|
+
* });
|
|
25
|
+
* const exampleAccount = new azure.netapp.Account("exampleAccount", {
|
|
22
26
|
* location: exampleResourceGroup.location,
|
|
27
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
23
28
|
* activeDirectory: {
|
|
24
29
|
* username: "aduser",
|
|
25
30
|
* password: "aduserpwd",
|
|
@@ -28,6 +33,10 @@ const utilities = require("../utilities");
|
|
|
28
33
|
* domain: "westcentralus.com",
|
|
29
34
|
* organizationalUnit: "OU=FirstLevel",
|
|
30
35
|
* },
|
|
36
|
+
* identity: {
|
|
37
|
+
* type: "UserAssigned",
|
|
38
|
+
* identityIds: [exampleUserAssignedIdentity.id],
|
|
39
|
+
* },
|
|
31
40
|
* });
|
|
32
41
|
* ```
|
|
33
42
|
*
|
|
@@ -46,6 +55,7 @@ class Account extends pulumi.CustomResource {
|
|
|
46
55
|
if (opts.id) {
|
|
47
56
|
const state = argsOrState;
|
|
48
57
|
resourceInputs["activeDirectory"] = state ? state.activeDirectory : undefined;
|
|
58
|
+
resourceInputs["identity"] = state ? state.identity : undefined;
|
|
49
59
|
resourceInputs["location"] = state ? state.location : undefined;
|
|
50
60
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
51
61
|
resourceInputs["resourceGroupName"] = state ? state.resourceGroupName : undefined;
|
|
@@ -57,6 +67,7 @@ class Account extends pulumi.CustomResource {
|
|
|
57
67
|
throw new Error("Missing required property 'resourceGroupName'");
|
|
58
68
|
}
|
|
59
69
|
resourceInputs["activeDirectory"] = args ? args.activeDirectory : undefined;
|
|
70
|
+
resourceInputs["identity"] = args ? args.identity : undefined;
|
|
60
71
|
resourceInputs["location"] = args ? args.location : undefined;
|
|
61
72
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
62
73
|
resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
|
package/netapp/account.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.js","sourceRoot":"","sources":["../../netapp/account.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"account.js","sourceRoot":"","sources":["../../netapp/account.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Manages a NetApp Account Encryption Resource.
|
|
4
|
+
*
|
|
5
|
+
* For more information about Azure NetApp Files Customer-Managed Keys feature, please refer to [Configure customer-managed keys for Azure NetApp Files volume encryption](https://learn.microsoft.com/en-us/azure/azure-netapp-files/configure-customer-managed-keys)
|
|
6
|
+
*
|
|
7
|
+
* ## Import
|
|
8
|
+
*
|
|
9
|
+
* Account Encryption Resources can be imported using the `resource id`, e.g.
|
|
10
|
+
*
|
|
11
|
+
* ```sh
|
|
12
|
+
* $ pulumi import azure:netapp/accountEncryption:AccountEncryption example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.NetApp/netAppAccounts/account1
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare class AccountEncryption extends pulumi.CustomResource {
|
|
16
|
+
/**
|
|
17
|
+
* Get an existing AccountEncryption resource's state with the given name, ID, and optional extra
|
|
18
|
+
* properties used to qualify the lookup.
|
|
19
|
+
*
|
|
20
|
+
* @param name The _unique_ name of the resulting resource.
|
|
21
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
22
|
+
* @param state Any extra arguments used during the lookup.
|
|
23
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
24
|
+
*/
|
|
25
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AccountEncryptionState, opts?: pulumi.CustomResourceOptions): AccountEncryption;
|
|
26
|
+
/**
|
|
27
|
+
* Returns true if the given object is an instance of AccountEncryption. This is designed to work even
|
|
28
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
29
|
+
*/
|
|
30
|
+
static isInstance(obj: any): obj is AccountEncryption;
|
|
31
|
+
/**
|
|
32
|
+
* The versionless encryption key url.
|
|
33
|
+
*/
|
|
34
|
+
readonly encryptionKey: pulumi.Output<string>;
|
|
35
|
+
/**
|
|
36
|
+
* The ID of the NetApp account where volume under it will have customer managed keys-based encryption enabled.
|
|
37
|
+
*/
|
|
38
|
+
readonly netappAccountId: pulumi.Output<string>;
|
|
39
|
+
/**
|
|
40
|
+
* The ID of the System Assigned Manged Identity. Conflicts with `userAssignedIdentityId`.
|
|
41
|
+
*/
|
|
42
|
+
readonly systemAssignedIdentityPrincipalId: pulumi.Output<string | undefined>;
|
|
43
|
+
/**
|
|
44
|
+
* The ID of the User Assigned Managed Identity. Conflicts with `systemAssignedIdentityPrincipalId`.
|
|
45
|
+
*/
|
|
46
|
+
readonly userAssignedIdentityId: pulumi.Output<string | undefined>;
|
|
47
|
+
/**
|
|
48
|
+
* Create a AccountEncryption resource with the given unique name, arguments, and options.
|
|
49
|
+
*
|
|
50
|
+
* @param name The _unique_ name of the resource.
|
|
51
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
52
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
53
|
+
*/
|
|
54
|
+
constructor(name: string, args: AccountEncryptionArgs, opts?: pulumi.CustomResourceOptions);
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Input properties used for looking up and filtering AccountEncryption resources.
|
|
58
|
+
*/
|
|
59
|
+
export interface AccountEncryptionState {
|
|
60
|
+
/**
|
|
61
|
+
* The versionless encryption key url.
|
|
62
|
+
*/
|
|
63
|
+
encryptionKey?: pulumi.Input<string>;
|
|
64
|
+
/**
|
|
65
|
+
* The ID of the NetApp account where volume under it will have customer managed keys-based encryption enabled.
|
|
66
|
+
*/
|
|
67
|
+
netappAccountId?: pulumi.Input<string>;
|
|
68
|
+
/**
|
|
69
|
+
* The ID of the System Assigned Manged Identity. Conflicts with `userAssignedIdentityId`.
|
|
70
|
+
*/
|
|
71
|
+
systemAssignedIdentityPrincipalId?: pulumi.Input<string>;
|
|
72
|
+
/**
|
|
73
|
+
* The ID of the User Assigned Managed Identity. Conflicts with `systemAssignedIdentityPrincipalId`.
|
|
74
|
+
*/
|
|
75
|
+
userAssignedIdentityId?: pulumi.Input<string>;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* The set of arguments for constructing a AccountEncryption resource.
|
|
79
|
+
*/
|
|
80
|
+
export interface AccountEncryptionArgs {
|
|
81
|
+
/**
|
|
82
|
+
* The versionless encryption key url.
|
|
83
|
+
*/
|
|
84
|
+
encryptionKey: pulumi.Input<string>;
|
|
85
|
+
/**
|
|
86
|
+
* The ID of the NetApp account where volume under it will have customer managed keys-based encryption enabled.
|
|
87
|
+
*/
|
|
88
|
+
netappAccountId: pulumi.Input<string>;
|
|
89
|
+
/**
|
|
90
|
+
* The ID of the System Assigned Manged Identity. Conflicts with `userAssignedIdentityId`.
|
|
91
|
+
*/
|
|
92
|
+
systemAssignedIdentityPrincipalId?: pulumi.Input<string>;
|
|
93
|
+
/**
|
|
94
|
+
* The ID of the User Assigned Managed Identity. Conflicts with `systemAssignedIdentityPrincipalId`.
|
|
95
|
+
*/
|
|
96
|
+
userAssignedIdentityId?: pulumi.Input<string>;
|
|
97
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
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.AccountEncryption = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages a NetApp Account Encryption Resource.
|
|
10
|
+
*
|
|
11
|
+
* For more information about Azure NetApp Files Customer-Managed Keys feature, please refer to [Configure customer-managed keys for Azure NetApp Files volume encryption](https://learn.microsoft.com/en-us/azure/azure-netapp-files/configure-customer-managed-keys)
|
|
12
|
+
*
|
|
13
|
+
* ## Import
|
|
14
|
+
*
|
|
15
|
+
* Account Encryption Resources can be imported using the `resource id`, e.g.
|
|
16
|
+
*
|
|
17
|
+
* ```sh
|
|
18
|
+
* $ pulumi import azure:netapp/accountEncryption:AccountEncryption example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.NetApp/netAppAccounts/account1
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
class AccountEncryption extends pulumi.CustomResource {
|
|
22
|
+
constructor(name, argsOrState, opts) {
|
|
23
|
+
let resourceInputs = {};
|
|
24
|
+
opts = opts || {};
|
|
25
|
+
if (opts.id) {
|
|
26
|
+
const state = argsOrState;
|
|
27
|
+
resourceInputs["encryptionKey"] = state ? state.encryptionKey : undefined;
|
|
28
|
+
resourceInputs["netappAccountId"] = state ? state.netappAccountId : undefined;
|
|
29
|
+
resourceInputs["systemAssignedIdentityPrincipalId"] = state ? state.systemAssignedIdentityPrincipalId : undefined;
|
|
30
|
+
resourceInputs["userAssignedIdentityId"] = state ? state.userAssignedIdentityId : undefined;
|
|
31
|
+
}
|
|
32
|
+
else {
|
|
33
|
+
const args = argsOrState;
|
|
34
|
+
if ((!args || args.encryptionKey === undefined) && !opts.urn) {
|
|
35
|
+
throw new Error("Missing required property 'encryptionKey'");
|
|
36
|
+
}
|
|
37
|
+
if ((!args || args.netappAccountId === undefined) && !opts.urn) {
|
|
38
|
+
throw new Error("Missing required property 'netappAccountId'");
|
|
39
|
+
}
|
|
40
|
+
resourceInputs["encryptionKey"] = args ? args.encryptionKey : undefined;
|
|
41
|
+
resourceInputs["netappAccountId"] = args ? args.netappAccountId : undefined;
|
|
42
|
+
resourceInputs["systemAssignedIdentityPrincipalId"] = args ? args.systemAssignedIdentityPrincipalId : undefined;
|
|
43
|
+
resourceInputs["userAssignedIdentityId"] = args ? args.userAssignedIdentityId : undefined;
|
|
44
|
+
}
|
|
45
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
46
|
+
super(AccountEncryption.__pulumiType, name, resourceInputs, opts);
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Get an existing AccountEncryption resource's state with the given name, ID, and optional extra
|
|
50
|
+
* properties used to qualify the lookup.
|
|
51
|
+
*
|
|
52
|
+
* @param name The _unique_ name of the resulting resource.
|
|
53
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
54
|
+
* @param state Any extra arguments used during the lookup.
|
|
55
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
56
|
+
*/
|
|
57
|
+
static get(name, id, state, opts) {
|
|
58
|
+
return new AccountEncryption(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* Returns true if the given object is an instance of AccountEncryption. This is designed to work even
|
|
62
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
63
|
+
*/
|
|
64
|
+
static isInstance(obj) {
|
|
65
|
+
if (obj === undefined || obj === null) {
|
|
66
|
+
return false;
|
|
67
|
+
}
|
|
68
|
+
return obj['__pulumiType'] === AccountEncryption.__pulumiType;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
exports.AccountEncryption = AccountEncryption;
|
|
72
|
+
/** @internal */
|
|
73
|
+
AccountEncryption.__pulumiType = 'azure:netapp/accountEncryption:AccountEncryption';
|
|
74
|
+
//# sourceMappingURL=accountEncryption.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"accountEncryption.js","sourceRoot":"","sources":["../../netapp/accountEncryption.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;GAYG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IAqDxD,YAAY,IAAY,EAAE,WAA4D,EAAE,IAAmC;QACvH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAiD,CAAC;YAChE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,mCAAmC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iCAAiC,CAAC,CAAC,CAAC,SAAS,CAAC;YAClH,cAAc,CAAC,wBAAwB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/F;aAAM;YACH,MAAM,IAAI,GAAG,WAAgD,CAAC;YAC9D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,aAAa,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1D,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;aAChE;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,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,mCAAmC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iCAAiC,CAAC,CAAC,CAAC,SAAS,CAAC;YAChH,cAAc,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7F;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,iBAAiB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACtE,CAAC;IA5ED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8B,EAAE,IAAmC;QAC5H,OAAO,IAAI,iBAAiB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACxE,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,iBAAiB,CAAC,YAAY,CAAC;IAClE,CAAC;;AA1BL,8CA8EC;AAhEG,gBAAgB;AACO,8BAAY,GAAG,kDAAkD,CAAC"}
|
package/netapp/getAccount.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
2
4
|
/**
|
|
3
5
|
* Uses this data source to access information about an existing NetApp Account.
|
|
4
6
|
*
|
|
@@ -20,6 +22,7 @@ export declare function getAccount(args: GetAccountArgs, opts?: pulumi.InvokeOpt
|
|
|
20
22
|
* A collection of arguments for invoking getAccount.
|
|
21
23
|
*/
|
|
22
24
|
export interface GetAccountArgs {
|
|
25
|
+
identity?: inputs.netapp.GetAccountIdentity;
|
|
23
26
|
/**
|
|
24
27
|
* The name of the NetApp Account.
|
|
25
28
|
*/
|
|
@@ -37,12 +40,16 @@ export interface GetAccountResult {
|
|
|
37
40
|
* The provider-assigned unique ID for this managed resource.
|
|
38
41
|
*/
|
|
39
42
|
readonly id: string;
|
|
43
|
+
readonly identity?: outputs.netapp.GetAccountIdentity;
|
|
40
44
|
/**
|
|
41
45
|
* The Azure Region where the NetApp Account exists.
|
|
42
46
|
*/
|
|
43
47
|
readonly location: string;
|
|
44
48
|
readonly name: string;
|
|
45
49
|
readonly resourceGroupName: string;
|
|
50
|
+
readonly tags: {
|
|
51
|
+
[key: string]: string;
|
|
52
|
+
};
|
|
46
53
|
}
|
|
47
54
|
/**
|
|
48
55
|
* Uses this data source to access information about an existing NetApp Account.
|
|
@@ -65,6 +72,7 @@ export declare function getAccountOutput(args: GetAccountOutputArgs, opts?: pulu
|
|
|
65
72
|
* A collection of arguments for invoking getAccount.
|
|
66
73
|
*/
|
|
67
74
|
export interface GetAccountOutputArgs {
|
|
75
|
+
identity?: pulumi.Input<inputs.netapp.GetAccountIdentityArgs>;
|
|
68
76
|
/**
|
|
69
77
|
* The name of the NetApp Account.
|
|
70
78
|
*/
|
package/netapp/getAccount.js
CHANGED
|
@@ -24,6 +24,7 @@ const utilities = require("../utilities");
|
|
|
24
24
|
function getAccount(args, opts) {
|
|
25
25
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
26
26
|
return pulumi.runtime.invoke("azure:netapp/getAccount:getAccount", {
|
|
27
|
+
"identity": args.identity,
|
|
27
28
|
"name": args.name,
|
|
28
29
|
"resourceGroupName": args.resourceGroupName,
|
|
29
30
|
}, opts);
|
package/netapp/getAccount.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAccount.js","sourceRoot":"","sources":["../../netapp/getAccount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getAccount.js","sourceRoot":"","sources":["../../netapp/getAccount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,gCAQC;AAkCD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Use this data source to access information about an existing NetApp Account Encryption Resource.
|
|
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 = azure.netapp.getAccountEncryption({
|
|
12
|
+
* netappAccountId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.NetApp/netAppAccounts/account1",
|
|
13
|
+
* });
|
|
14
|
+
* export const id = example.then(example => example.id);
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export declare function getAccountEncryption(args: GetAccountEncryptionArgs, opts?: pulumi.InvokeOptions): Promise<GetAccountEncryptionResult>;
|
|
18
|
+
/**
|
|
19
|
+
* A collection of arguments for invoking getAccountEncryption.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetAccountEncryptionArgs {
|
|
22
|
+
/**
|
|
23
|
+
* The key vault encryption key.
|
|
24
|
+
*/
|
|
25
|
+
encryptionKey?: string;
|
|
26
|
+
/**
|
|
27
|
+
* The ID of the NetApp account where customer managed keys-based encryption is enabled.
|
|
28
|
+
*/
|
|
29
|
+
netappAccountId: string;
|
|
30
|
+
/**
|
|
31
|
+
* The ID of the System Assigned Manged Identity.
|
|
32
|
+
*/
|
|
33
|
+
systemAssignedIdentityPrincipalId?: string;
|
|
34
|
+
/**
|
|
35
|
+
* The ID of the User Assigned Managed Identity.
|
|
36
|
+
*/
|
|
37
|
+
userAssignedIdentityId?: string;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* A collection of values returned by getAccountEncryption.
|
|
41
|
+
*/
|
|
42
|
+
export interface GetAccountEncryptionResult {
|
|
43
|
+
readonly encryptionKey?: string;
|
|
44
|
+
/**
|
|
45
|
+
* The provider-assigned unique ID for this managed resource.
|
|
46
|
+
*/
|
|
47
|
+
readonly id: string;
|
|
48
|
+
readonly netappAccountId: string;
|
|
49
|
+
readonly systemAssignedIdentityPrincipalId?: string;
|
|
50
|
+
readonly userAssignedIdentityId?: string;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Use this data source to access information about an existing NetApp Account Encryption Resource.
|
|
54
|
+
*
|
|
55
|
+
* ## Example Usage
|
|
56
|
+
*
|
|
57
|
+
* ```typescript
|
|
58
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
59
|
+
* import * as azure from "@pulumi/azure";
|
|
60
|
+
*
|
|
61
|
+
* const example = azure.netapp.getAccountEncryption({
|
|
62
|
+
* netappAccountId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.NetApp/netAppAccounts/account1",
|
|
63
|
+
* });
|
|
64
|
+
* export const id = example.then(example => example.id);
|
|
65
|
+
* ```
|
|
66
|
+
*/
|
|
67
|
+
export declare function getAccountEncryptionOutput(args: GetAccountEncryptionOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAccountEncryptionResult>;
|
|
68
|
+
/**
|
|
69
|
+
* A collection of arguments for invoking getAccountEncryption.
|
|
70
|
+
*/
|
|
71
|
+
export interface GetAccountEncryptionOutputArgs {
|
|
72
|
+
/**
|
|
73
|
+
* The key vault encryption key.
|
|
74
|
+
*/
|
|
75
|
+
encryptionKey?: pulumi.Input<string>;
|
|
76
|
+
/**
|
|
77
|
+
* The ID of the NetApp account where customer managed keys-based encryption is enabled.
|
|
78
|
+
*/
|
|
79
|
+
netappAccountId: pulumi.Input<string>;
|
|
80
|
+
/**
|
|
81
|
+
* The ID of the System Assigned Manged Identity.
|
|
82
|
+
*/
|
|
83
|
+
systemAssignedIdentityPrincipalId?: pulumi.Input<string>;
|
|
84
|
+
/**
|
|
85
|
+
* The ID of the User Assigned Managed Identity.
|
|
86
|
+
*/
|
|
87
|
+
userAssignedIdentityId?: pulumi.Input<string>;
|
|
88
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
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.getAccountEncryptionOutput = exports.getAccountEncryption = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to access information about an existing NetApp Account Encryption 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 example = azure.netapp.getAccountEncryption({
|
|
18
|
+
* netappAccountId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.NetApp/netAppAccounts/account1",
|
|
19
|
+
* });
|
|
20
|
+
* export const id = example.then(example => example.id);
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
function getAccountEncryption(args, opts) {
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
25
|
+
return pulumi.runtime.invoke("azure:netapp/getAccountEncryption:getAccountEncryption", {
|
|
26
|
+
"encryptionKey": args.encryptionKey,
|
|
27
|
+
"netappAccountId": args.netappAccountId,
|
|
28
|
+
"systemAssignedIdentityPrincipalId": args.systemAssignedIdentityPrincipalId,
|
|
29
|
+
"userAssignedIdentityId": args.userAssignedIdentityId,
|
|
30
|
+
}, opts);
|
|
31
|
+
}
|
|
32
|
+
exports.getAccountEncryption = getAccountEncryption;
|
|
33
|
+
/**
|
|
34
|
+
* Use this data source to access information about an existing NetApp Account Encryption Resource.
|
|
35
|
+
*
|
|
36
|
+
* ## Example Usage
|
|
37
|
+
*
|
|
38
|
+
* ```typescript
|
|
39
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
+
* import * as azure from "@pulumi/azure";
|
|
41
|
+
*
|
|
42
|
+
* const example = azure.netapp.getAccountEncryption({
|
|
43
|
+
* netappAccountId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.NetApp/netAppAccounts/account1",
|
|
44
|
+
* });
|
|
45
|
+
* export const id = example.then(example => example.id);
|
|
46
|
+
* ```
|
|
47
|
+
*/
|
|
48
|
+
function getAccountEncryptionOutput(args, opts) {
|
|
49
|
+
return pulumi.output(args).apply((a) => getAccountEncryption(a, opts));
|
|
50
|
+
}
|
|
51
|
+
exports.getAccountEncryptionOutput = getAccountEncryptionOutput;
|
|
52
|
+
//# sourceMappingURL=getAccountEncryption.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getAccountEncryption.js","sourceRoot":"","sources":["../../netapp/getAccountEncryption.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;GAcG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAE5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,mCAAmC,EAAE,IAAI,CAAC,iCAAiC;QAC3E,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;KACxD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,oDASC;AAqCD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAA2B;IACxG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,oBAAoB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC/E,CAAC;AAFD,gEAEC"}
|
package/netapp/getVolume.d.ts
CHANGED
|
@@ -53,10 +53,12 @@ export interface GetVolumeResult {
|
|
|
53
53
|
* Volume data protection block
|
|
54
54
|
*/
|
|
55
55
|
readonly dataProtectionReplications: outputs.netapp.GetVolumeDataProtectionReplication[];
|
|
56
|
+
readonly encryptionKeySource: string;
|
|
56
57
|
/**
|
|
57
58
|
* The provider-assigned unique ID for this managed resource.
|
|
58
59
|
*/
|
|
59
60
|
readonly id: string;
|
|
61
|
+
readonly keyVaultPrivateEndpointId: string;
|
|
60
62
|
/**
|
|
61
63
|
* The Azure Region where the NetApp Volume exists.
|
|
62
64
|
*/
|
package/netapp/getVolume.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getVolume.js","sourceRoot":"","sources":["../../netapp/getVolume.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IAEtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,8BAUC;
|
|
1
|
+
{"version":3,"file":"getVolume.js","sourceRoot":"","sources":["../../netapp/getVolume.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IAEtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,8BAUC;AAuFD;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpE,CAAC;AAFD,0CAEC"}
|
package/netapp/index.d.ts
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
export { AccountArgs, AccountState } from "./account";
|
|
2
2
|
export declare type Account = import("./account").Account;
|
|
3
3
|
export declare const Account: typeof import("./account").Account;
|
|
4
|
+
export { AccountEncryptionArgs, AccountEncryptionState } from "./accountEncryption";
|
|
5
|
+
export declare type AccountEncryption = import("./accountEncryption").AccountEncryption;
|
|
6
|
+
export declare const AccountEncryption: typeof import("./accountEncryption").AccountEncryption;
|
|
4
7
|
export { GetAccountArgs, GetAccountResult, GetAccountOutputArgs } from "./getAccount";
|
|
5
8
|
export declare const getAccount: typeof import("./getAccount").getAccount;
|
|
6
9
|
export declare const getAccountOutput: typeof import("./getAccount").getAccountOutput;
|
|
10
|
+
export { GetAccountEncryptionArgs, GetAccountEncryptionResult, GetAccountEncryptionOutputArgs } from "./getAccountEncryption";
|
|
11
|
+
export declare const getAccountEncryption: typeof import("./getAccountEncryption").getAccountEncryption;
|
|
12
|
+
export declare const getAccountEncryptionOutput: typeof import("./getAccountEncryption").getAccountEncryptionOutput;
|
|
7
13
|
export { GetPoolArgs, GetPoolResult, GetPoolOutputArgs } from "./getPool";
|
|
8
14
|
export declare const getPool: typeof import("./getPool").getPool;
|
|
9
15
|
export declare const getPoolOutput: typeof import("./getPool").getPoolOutput;
|
package/netapp/index.js
CHANGED
|
@@ -2,14 +2,19 @@
|
|
|
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.VolumeQuotaRule = exports.VolumeGroupSapHana = exports.Volume = exports.SnapshotPolicy = exports.Snapshot = exports.Pool = exports.getVolumeQuotaRuleOutput = exports.getVolumeQuotaRule = exports.getVolumeGroupSapHanaOutput = exports.getVolumeGroupSapHana = exports.getVolumeOutput = exports.getVolume = exports.getSnapshotPolicyOutput = exports.getSnapshotPolicy = exports.getSnapshotOutput = exports.getSnapshot = exports.getPoolOutput = exports.getPool = exports.getAccountOutput = exports.getAccount = exports.Account = void 0;
|
|
5
|
+
exports.VolumeQuotaRule = exports.VolumeGroupSapHana = exports.Volume = exports.SnapshotPolicy = exports.Snapshot = exports.Pool = exports.getVolumeQuotaRuleOutput = exports.getVolumeQuotaRule = exports.getVolumeGroupSapHanaOutput = exports.getVolumeGroupSapHana = exports.getVolumeOutput = exports.getVolume = exports.getSnapshotPolicyOutput = exports.getSnapshotPolicy = exports.getSnapshotOutput = exports.getSnapshot = exports.getPoolOutput = exports.getPool = exports.getAccountEncryptionOutput = exports.getAccountEncryption = exports.getAccountOutput = exports.getAccount = exports.AccountEncryption = exports.Account = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.Account = null;
|
|
9
9
|
utilities.lazyLoad(exports, ["Account"], () => require("./account"));
|
|
10
|
+
exports.AccountEncryption = null;
|
|
11
|
+
utilities.lazyLoad(exports, ["AccountEncryption"], () => require("./accountEncryption"));
|
|
10
12
|
exports.getAccount = null;
|
|
11
13
|
exports.getAccountOutput = null;
|
|
12
14
|
utilities.lazyLoad(exports, ["getAccount", "getAccountOutput"], () => require("./getAccount"));
|
|
15
|
+
exports.getAccountEncryption = null;
|
|
16
|
+
exports.getAccountEncryptionOutput = null;
|
|
17
|
+
utilities.lazyLoad(exports, ["getAccountEncryption", "getAccountEncryptionOutput"], () => require("./getAccountEncryption"));
|
|
13
18
|
exports.getPool = null;
|
|
14
19
|
exports.getPoolOutput = null;
|
|
15
20
|
utilities.lazyLoad(exports, ["getPool", "getPoolOutput"], () => require("./getPool"));
|
|
@@ -46,6 +51,8 @@ const _module = {
|
|
|
46
51
|
switch (type) {
|
|
47
52
|
case "azure:netapp/account:Account":
|
|
48
53
|
return new exports.Account(name, undefined, { urn });
|
|
54
|
+
case "azure:netapp/accountEncryption:AccountEncryption":
|
|
55
|
+
return new exports.AccountEncryption(name, undefined, { urn });
|
|
49
56
|
case "azure:netapp/pool:Pool":
|
|
50
57
|
return new exports.Pool(name, undefined, { urn });
|
|
51
58
|
case "azure:netapp/snapshot:Snapshot":
|
|
@@ -64,6 +71,7 @@ const _module = {
|
|
|
64
71
|
},
|
|
65
72
|
};
|
|
66
73
|
pulumi.runtime.registerResourceModule("azure", "netapp/account", _module);
|
|
74
|
+
pulumi.runtime.registerResourceModule("azure", "netapp/accountEncryption", _module);
|
|
67
75
|
pulumi.runtime.registerResourceModule("azure", "netapp/pool", _module);
|
|
68
76
|
pulumi.runtime.registerResourceModule("azure", "netapp/snapshot", _module);
|
|
69
77
|
pulumi.runtime.registerResourceModule("azure", "netapp/snapshotPolicy", _module);
|
package/netapp/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../netapp/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../netapp/index.ts"],"names":[],"mappings":"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"}
|
package/netapp/volume.d.ts
CHANGED
|
@@ -46,10 +46,18 @@ export declare class Volume extends pulumi.CustomResource {
|
|
|
46
46
|
* A `dataProtectionSnapshotPolicy` block as defined below.
|
|
47
47
|
*/
|
|
48
48
|
readonly dataProtectionSnapshotPolicy: pulumi.Output<outputs.netapp.VolumeDataProtectionSnapshotPolicy | undefined>;
|
|
49
|
+
/**
|
|
50
|
+
* The encryption key source, it can be `Microsoft.NetApp` for platform managed keys or `Microsoft.KeyVault` for customer-managed keys. This is required with `keyVaultPrivateEndpointId`.
|
|
51
|
+
*/
|
|
52
|
+
readonly encryptionKeySource: pulumi.Output<string>;
|
|
49
53
|
/**
|
|
50
54
|
* One or more `exportPolicyRule` block defined below.
|
|
51
55
|
*/
|
|
52
56
|
readonly exportPolicyRules: pulumi.Output<outputs.netapp.VolumeExportPolicyRule[] | undefined>;
|
|
57
|
+
/**
|
|
58
|
+
* The Private Endpoint ID for Key Vault, which is required when using customer-managed keys. This is required with `encryptionKeySource`.
|
|
59
|
+
*/
|
|
60
|
+
readonly keyVaultPrivateEndpointId: pulumi.Output<string>;
|
|
53
61
|
/**
|
|
54
62
|
* Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
|
|
55
63
|
*/
|
|
@@ -151,10 +159,18 @@ export interface VolumeState {
|
|
|
151
159
|
* A `dataProtectionSnapshotPolicy` block as defined below.
|
|
152
160
|
*/
|
|
153
161
|
dataProtectionSnapshotPolicy?: pulumi.Input<inputs.netapp.VolumeDataProtectionSnapshotPolicy>;
|
|
162
|
+
/**
|
|
163
|
+
* The encryption key source, it can be `Microsoft.NetApp` for platform managed keys or `Microsoft.KeyVault` for customer-managed keys. This is required with `keyVaultPrivateEndpointId`.
|
|
164
|
+
*/
|
|
165
|
+
encryptionKeySource?: pulumi.Input<string>;
|
|
154
166
|
/**
|
|
155
167
|
* One or more `exportPolicyRule` block defined below.
|
|
156
168
|
*/
|
|
157
169
|
exportPolicyRules?: pulumi.Input<pulumi.Input<inputs.netapp.VolumeExportPolicyRule>[]>;
|
|
170
|
+
/**
|
|
171
|
+
* The Private Endpoint ID for Key Vault, which is required when using customer-managed keys. This is required with `encryptionKeySource`.
|
|
172
|
+
*/
|
|
173
|
+
keyVaultPrivateEndpointId?: pulumi.Input<string>;
|
|
158
174
|
/**
|
|
159
175
|
* Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
|
|
160
176
|
*/
|
|
@@ -248,10 +264,18 @@ export interface VolumeArgs {
|
|
|
248
264
|
* A `dataProtectionSnapshotPolicy` block as defined below.
|
|
249
265
|
*/
|
|
250
266
|
dataProtectionSnapshotPolicy?: pulumi.Input<inputs.netapp.VolumeDataProtectionSnapshotPolicy>;
|
|
267
|
+
/**
|
|
268
|
+
* The encryption key source, it can be `Microsoft.NetApp` for platform managed keys or `Microsoft.KeyVault` for customer-managed keys. This is required with `keyVaultPrivateEndpointId`.
|
|
269
|
+
*/
|
|
270
|
+
encryptionKeySource?: pulumi.Input<string>;
|
|
251
271
|
/**
|
|
252
272
|
* One or more `exportPolicyRule` block defined below.
|
|
253
273
|
*/
|
|
254
274
|
exportPolicyRules?: pulumi.Input<pulumi.Input<inputs.netapp.VolumeExportPolicyRule>[]>;
|
|
275
|
+
/**
|
|
276
|
+
* The Private Endpoint ID for Key Vault, which is required when using customer-managed keys. This is required with `encryptionKeySource`.
|
|
277
|
+
*/
|
|
278
|
+
keyVaultPrivateEndpointId?: pulumi.Input<string>;
|
|
255
279
|
/**
|
|
256
280
|
* Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
|
|
257
281
|
*/
|
package/netapp/volume.js
CHANGED
|
@@ -25,7 +25,9 @@ class Volume extends pulumi.CustomResource {
|
|
|
25
25
|
resourceInputs["createFromSnapshotResourceId"] = state ? state.createFromSnapshotResourceId : undefined;
|
|
26
26
|
resourceInputs["dataProtectionReplication"] = state ? state.dataProtectionReplication : undefined;
|
|
27
27
|
resourceInputs["dataProtectionSnapshotPolicy"] = state ? state.dataProtectionSnapshotPolicy : undefined;
|
|
28
|
+
resourceInputs["encryptionKeySource"] = state ? state.encryptionKeySource : undefined;
|
|
28
29
|
resourceInputs["exportPolicyRules"] = state ? state.exportPolicyRules : undefined;
|
|
30
|
+
resourceInputs["keyVaultPrivateEndpointId"] = state ? state.keyVaultPrivateEndpointId : undefined;
|
|
29
31
|
resourceInputs["location"] = state ? state.location : undefined;
|
|
30
32
|
resourceInputs["mountIpAddresses"] = state ? state.mountIpAddresses : undefined;
|
|
31
33
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
@@ -71,7 +73,9 @@ class Volume extends pulumi.CustomResource {
|
|
|
71
73
|
resourceInputs["createFromSnapshotResourceId"] = args ? args.createFromSnapshotResourceId : undefined;
|
|
72
74
|
resourceInputs["dataProtectionReplication"] = args ? args.dataProtectionReplication : undefined;
|
|
73
75
|
resourceInputs["dataProtectionSnapshotPolicy"] = args ? args.dataProtectionSnapshotPolicy : undefined;
|
|
76
|
+
resourceInputs["encryptionKeySource"] = args ? args.encryptionKeySource : undefined;
|
|
74
77
|
resourceInputs["exportPolicyRules"] = args ? args.exportPolicyRules : undefined;
|
|
78
|
+
resourceInputs["keyVaultPrivateEndpointId"] = args ? args.keyVaultPrivateEndpointId : undefined;
|
|
75
79
|
resourceInputs["location"] = args ? args.location : undefined;
|
|
76
80
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
77
81
|
resourceInputs["networkFeatures"] = args ? args.networkFeatures : undefined;
|