@pulumi/azure 5.78.0-alpha.1716388911 → 5.78.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.
@@ -0,0 +1,177 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Manages a Key Vault Managed Hardware Security Module Key.
4
+ *
5
+ * > **Note:** The Azure Provider includes a Feature Toggle which will purge a Key Vault Managed Hardware Security Module Key resource on destroy, rather than the default soft-delete. See `purgeSoftDeletedHardwareSecurityModulesOnDestroy` for more information.
6
+ *
7
+ * ## Import
8
+ *
9
+ * Key Vault Managed Hardware Security Module Key can be imported using the `resource id`, e.g.
10
+ *
11
+ * ```sh
12
+ * $ pulumi import azure:keyvault/managedHardwareSecurityModuleKey:ManagedHardwareSecurityModuleKey example https://exampleHSM.managedhsm.azure.net/keys/exampleKey
13
+ * ```
14
+ */
15
+ export declare class ManagedHardwareSecurityModuleKey extends pulumi.CustomResource {
16
+ /**
17
+ * Get an existing ManagedHardwareSecurityModuleKey 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?: ManagedHardwareSecurityModuleKeyState, opts?: pulumi.CustomResourceOptions): ManagedHardwareSecurityModuleKey;
26
+ /**
27
+ * Returns true if the given object is an instance of ManagedHardwareSecurityModuleKey. 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 ManagedHardwareSecurityModuleKey;
31
+ /**
32
+ * Specifies the curve to use when creating an `EC-HSM` key. Possible values are `P-256`, `P-256K`, `P-384`, and `P-521`. This field is required if `keyType` is `EC-HSM`. Changing this forces a new resource to be created.
33
+ */
34
+ readonly curve: pulumi.Output<string | undefined>;
35
+ /**
36
+ * Expiration UTC datetime (Y-m-d'T'H:M:S'Z'). When this parameter gets changed on reruns, if newer date is ahead of current date, an update is performed. If the newer date is before the current date, resource will be force created.
37
+ */
38
+ readonly expirationDate: pulumi.Output<string | undefined>;
39
+ /**
40
+ * A list of JSON web key operations. Possible values include: `decrypt`, `encrypt`, `sign`, `unwrapKey`, `verify` and `wrapKey`. Please note these values are case-sensitive.
41
+ */
42
+ readonly keyOpts: pulumi.Output<string[]>;
43
+ /**
44
+ * Specifies the Size of the RSA key to create in bytes. For example, 1024 or 2048. *Note*: This field is required if `keyType` is `RSA-HSM`. Changing this forces a new resource to be created.
45
+ */
46
+ readonly keySize: pulumi.Output<number | undefined>;
47
+ /**
48
+ * Specifies the Key Type to use for this Key Vault Managed Hardware Security Module Key. Possible values are `EC-HSM` and `RSA-HSM`. Changing this forces a new resource to be created.
49
+ */
50
+ readonly keyType: pulumi.Output<string>;
51
+ /**
52
+ * Specifies the ID of the Key Vault Managed Hardware Security Module that they key will be owned by. Changing this forces a new resource to be created.
53
+ */
54
+ readonly managedHsmId: pulumi.Output<string>;
55
+ /**
56
+ * Specifies the name of the Key Vault Managed Hardware Security Module Key. Changing this forces a new resource to be created.
57
+ */
58
+ readonly name: pulumi.Output<string>;
59
+ /**
60
+ * Key not usable before the provided UTC datetime (Y-m-d'T'H:M:S'Z').
61
+ *
62
+ * > **Note:** Once `expirationDate` is set, it's not possible to unset the key even if it is deleted & recreated as underlying Azure API uses the restore of the purged key.
63
+ */
64
+ readonly notBeforeDate: pulumi.Output<string | undefined>;
65
+ /**
66
+ * A mapping of tags to assign to the resource.
67
+ */
68
+ readonly tags: pulumi.Output<{
69
+ [key: string]: string;
70
+ } | undefined>;
71
+ /**
72
+ * The versioned Key Vault Secret Managed Hardware Security Module Key ID.
73
+ */
74
+ readonly versionedId: pulumi.Output<string>;
75
+ /**
76
+ * Create a ManagedHardwareSecurityModuleKey resource with the given unique name, arguments, and options.
77
+ *
78
+ * @param name The _unique_ name of the resource.
79
+ * @param args The arguments to use to populate this resource's properties.
80
+ * @param opts A bag of options that control this resource's behavior.
81
+ */
82
+ constructor(name: string, args: ManagedHardwareSecurityModuleKeyArgs, opts?: pulumi.CustomResourceOptions);
83
+ }
84
+ /**
85
+ * Input properties used for looking up and filtering ManagedHardwareSecurityModuleKey resources.
86
+ */
87
+ export interface ManagedHardwareSecurityModuleKeyState {
88
+ /**
89
+ * Specifies the curve to use when creating an `EC-HSM` key. Possible values are `P-256`, `P-256K`, `P-384`, and `P-521`. This field is required if `keyType` is `EC-HSM`. Changing this forces a new resource to be created.
90
+ */
91
+ curve?: pulumi.Input<string>;
92
+ /**
93
+ * Expiration UTC datetime (Y-m-d'T'H:M:S'Z'). When this parameter gets changed on reruns, if newer date is ahead of current date, an update is performed. If the newer date is before the current date, resource will be force created.
94
+ */
95
+ expirationDate?: pulumi.Input<string>;
96
+ /**
97
+ * A list of JSON web key operations. Possible values include: `decrypt`, `encrypt`, `sign`, `unwrapKey`, `verify` and `wrapKey`. Please note these values are case-sensitive.
98
+ */
99
+ keyOpts?: pulumi.Input<pulumi.Input<string>[]>;
100
+ /**
101
+ * Specifies the Size of the RSA key to create in bytes. For example, 1024 or 2048. *Note*: This field is required if `keyType` is `RSA-HSM`. Changing this forces a new resource to be created.
102
+ */
103
+ keySize?: pulumi.Input<number>;
104
+ /**
105
+ * Specifies the Key Type to use for this Key Vault Managed Hardware Security Module Key. Possible values are `EC-HSM` and `RSA-HSM`. Changing this forces a new resource to be created.
106
+ */
107
+ keyType?: pulumi.Input<string>;
108
+ /**
109
+ * Specifies the ID of the Key Vault Managed Hardware Security Module that they key will be owned by. Changing this forces a new resource to be created.
110
+ */
111
+ managedHsmId?: pulumi.Input<string>;
112
+ /**
113
+ * Specifies the name of the Key Vault Managed Hardware Security Module Key. Changing this forces a new resource to be created.
114
+ */
115
+ name?: pulumi.Input<string>;
116
+ /**
117
+ * Key not usable before the provided UTC datetime (Y-m-d'T'H:M:S'Z').
118
+ *
119
+ * > **Note:** Once `expirationDate` is set, it's not possible to unset the key even if it is deleted & recreated as underlying Azure API uses the restore of the purged key.
120
+ */
121
+ notBeforeDate?: pulumi.Input<string>;
122
+ /**
123
+ * A mapping of tags to assign to the resource.
124
+ */
125
+ tags?: pulumi.Input<{
126
+ [key: string]: pulumi.Input<string>;
127
+ }>;
128
+ /**
129
+ * The versioned Key Vault Secret Managed Hardware Security Module Key ID.
130
+ */
131
+ versionedId?: pulumi.Input<string>;
132
+ }
133
+ /**
134
+ * The set of arguments for constructing a ManagedHardwareSecurityModuleKey resource.
135
+ */
136
+ export interface ManagedHardwareSecurityModuleKeyArgs {
137
+ /**
138
+ * Specifies the curve to use when creating an `EC-HSM` key. Possible values are `P-256`, `P-256K`, `P-384`, and `P-521`. This field is required if `keyType` is `EC-HSM`. Changing this forces a new resource to be created.
139
+ */
140
+ curve?: pulumi.Input<string>;
141
+ /**
142
+ * Expiration UTC datetime (Y-m-d'T'H:M:S'Z'). When this parameter gets changed on reruns, if newer date is ahead of current date, an update is performed. If the newer date is before the current date, resource will be force created.
143
+ */
144
+ expirationDate?: pulumi.Input<string>;
145
+ /**
146
+ * A list of JSON web key operations. Possible values include: `decrypt`, `encrypt`, `sign`, `unwrapKey`, `verify` and `wrapKey`. Please note these values are case-sensitive.
147
+ */
148
+ keyOpts: pulumi.Input<pulumi.Input<string>[]>;
149
+ /**
150
+ * Specifies the Size of the RSA key to create in bytes. For example, 1024 or 2048. *Note*: This field is required if `keyType` is `RSA-HSM`. Changing this forces a new resource to be created.
151
+ */
152
+ keySize?: pulumi.Input<number>;
153
+ /**
154
+ * Specifies the Key Type to use for this Key Vault Managed Hardware Security Module Key. Possible values are `EC-HSM` and `RSA-HSM`. Changing this forces a new resource to be created.
155
+ */
156
+ keyType: pulumi.Input<string>;
157
+ /**
158
+ * Specifies the ID of the Key Vault Managed Hardware Security Module that they key will be owned by. Changing this forces a new resource to be created.
159
+ */
160
+ managedHsmId: pulumi.Input<string>;
161
+ /**
162
+ * Specifies the name of the Key Vault Managed Hardware Security Module Key. Changing this forces a new resource to be created.
163
+ */
164
+ name?: pulumi.Input<string>;
165
+ /**
166
+ * Key not usable before the provided UTC datetime (Y-m-d'T'H:M:S'Z').
167
+ *
168
+ * > **Note:** Once `expirationDate` is set, it's not possible to unset the key even if it is deleted & recreated as underlying Azure API uses the restore of the purged key.
169
+ */
170
+ notBeforeDate?: pulumi.Input<string>;
171
+ /**
172
+ * A mapping of tags to assign to the resource.
173
+ */
174
+ tags?: pulumi.Input<{
175
+ [key: string]: pulumi.Input<string>;
176
+ }>;
177
+ }
@@ -0,0 +1,89 @@
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.ManagedHardwareSecurityModuleKey = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Manages a Key Vault Managed Hardware Security Module Key.
10
+ *
11
+ * > **Note:** The Azure Provider includes a Feature Toggle which will purge a Key Vault Managed Hardware Security Module Key resource on destroy, rather than the default soft-delete. See `purgeSoftDeletedHardwareSecurityModulesOnDestroy` for more information.
12
+ *
13
+ * ## Import
14
+ *
15
+ * Key Vault Managed Hardware Security Module Key can be imported using the `resource id`, e.g.
16
+ *
17
+ * ```sh
18
+ * $ pulumi import azure:keyvault/managedHardwareSecurityModuleKey:ManagedHardwareSecurityModuleKey example https://exampleHSM.managedhsm.azure.net/keys/exampleKey
19
+ * ```
20
+ */
21
+ class ManagedHardwareSecurityModuleKey extends pulumi.CustomResource {
22
+ constructor(name, argsOrState, opts) {
23
+ let resourceInputs = {};
24
+ opts = opts || {};
25
+ if (opts.id) {
26
+ const state = argsOrState;
27
+ resourceInputs["curve"] = state ? state.curve : undefined;
28
+ resourceInputs["expirationDate"] = state ? state.expirationDate : undefined;
29
+ resourceInputs["keyOpts"] = state ? state.keyOpts : undefined;
30
+ resourceInputs["keySize"] = state ? state.keySize : undefined;
31
+ resourceInputs["keyType"] = state ? state.keyType : undefined;
32
+ resourceInputs["managedHsmId"] = state ? state.managedHsmId : undefined;
33
+ resourceInputs["name"] = state ? state.name : undefined;
34
+ resourceInputs["notBeforeDate"] = state ? state.notBeforeDate : undefined;
35
+ resourceInputs["tags"] = state ? state.tags : undefined;
36
+ resourceInputs["versionedId"] = state ? state.versionedId : undefined;
37
+ }
38
+ else {
39
+ const args = argsOrState;
40
+ if ((!args || args.keyOpts === undefined) && !opts.urn) {
41
+ throw new Error("Missing required property 'keyOpts'");
42
+ }
43
+ if ((!args || args.keyType === undefined) && !opts.urn) {
44
+ throw new Error("Missing required property 'keyType'");
45
+ }
46
+ if ((!args || args.managedHsmId === undefined) && !opts.urn) {
47
+ throw new Error("Missing required property 'managedHsmId'");
48
+ }
49
+ resourceInputs["curve"] = args ? args.curve : undefined;
50
+ resourceInputs["expirationDate"] = args ? args.expirationDate : undefined;
51
+ resourceInputs["keyOpts"] = args ? args.keyOpts : undefined;
52
+ resourceInputs["keySize"] = args ? args.keySize : undefined;
53
+ resourceInputs["keyType"] = args ? args.keyType : undefined;
54
+ resourceInputs["managedHsmId"] = args ? args.managedHsmId : undefined;
55
+ resourceInputs["name"] = args ? args.name : undefined;
56
+ resourceInputs["notBeforeDate"] = args ? args.notBeforeDate : undefined;
57
+ resourceInputs["tags"] = args ? args.tags : undefined;
58
+ resourceInputs["versionedId"] = undefined /*out*/;
59
+ }
60
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
61
+ super(ManagedHardwareSecurityModuleKey.__pulumiType, name, resourceInputs, opts);
62
+ }
63
+ /**
64
+ * Get an existing ManagedHardwareSecurityModuleKey resource's state with the given name, ID, and optional extra
65
+ * properties used to qualify the lookup.
66
+ *
67
+ * @param name The _unique_ name of the resulting resource.
68
+ * @param id The _unique_ provider ID of the resource to lookup.
69
+ * @param state Any extra arguments used during the lookup.
70
+ * @param opts Optional settings to control the behavior of the CustomResource.
71
+ */
72
+ static get(name, id, state, opts) {
73
+ return new ManagedHardwareSecurityModuleKey(name, state, Object.assign(Object.assign({}, opts), { id: id }));
74
+ }
75
+ /**
76
+ * Returns true if the given object is an instance of ManagedHardwareSecurityModuleKey. This is designed to work even
77
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
78
+ */
79
+ static isInstance(obj) {
80
+ if (obj === undefined || obj === null) {
81
+ return false;
82
+ }
83
+ return obj['__pulumiType'] === ManagedHardwareSecurityModuleKey.__pulumiType;
84
+ }
85
+ }
86
+ exports.ManagedHardwareSecurityModuleKey = ManagedHardwareSecurityModuleKey;
87
+ /** @internal */
88
+ ManagedHardwareSecurityModuleKey.__pulumiType = 'azure:keyvault/managedHardwareSecurityModuleKey:ManagedHardwareSecurityModuleKey';
89
+ //# sourceMappingURL=managedHardwareSecurityModuleKey.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"managedHardwareSecurityModuleKey.js","sourceRoot":"","sources":["../../keyvault/managedHardwareSecurityModuleKey.ts"],"names":[],"mappings":"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"}
@@ -34,7 +34,6 @@ import * as outputs from "../types/output";
34
34
  * });
35
35
  * const exampleVnpGatewayNatRule = new azure.network.VnpGatewayNatRule("example", {
36
36
  * name: "example-vpngatewaynatrule",
37
- * resourceGroupName: example.name,
38
37
  * vpnGatewayId: exampleVpnGateway.id,
39
38
  * externalMappings: [{
40
39
  * addressSpace: "192.168.21.0/26",
@@ -70,27 +69,19 @@ export declare class VnpGatewayNatRule extends pulumi.CustomResource {
70
69
  */
71
70
  static isInstance(obj: any): obj is VnpGatewayNatRule;
72
71
  /**
73
- * (Deprecated) A list of CIDR Ranges which are used for external mapping of the VPN Gateway NAT Rule.
74
- *
75
- * > **NOTE:** `externalAddressSpaceMappings` is deprecated and will be removed in favour of the property `externalMapping` in version 4.0 of the AzureRM Provider.
76
- *
77
72
  * @deprecated `externalAddressSpaceMappings` will be removed in favour of the property `externalMapping` in version 4.0 of the AzureRM Provider.
78
73
  */
79
74
  readonly externalAddressSpaceMappings: pulumi.Output<string[]>;
80
75
  /**
81
- * One or more `externalMapping` blocks as documented below.
76
+ * One of more `externalMapping` blocks as defined below.
82
77
  */
83
78
  readonly externalMappings: pulumi.Output<outputs.network.VnpGatewayNatRuleExternalMapping[]>;
84
79
  /**
85
- * (Deprecated) A list of CIDR Ranges which are used for internal mapping of the VPN Gateway NAT Rule.
86
- *
87
- * > **NOTE:** `internalAddressSpaceMappings` is deprecated and will be removed in favour of the property `internalMapping` in version 4.0 of the AzureRM Provider.
88
- *
89
80
  * @deprecated `internalAddressSpaceMappings` will be removed in favour of the property `internalMapping` in version 4.0 of the AzureRM Provider.
90
81
  */
91
82
  readonly internalAddressSpaceMappings: pulumi.Output<string[]>;
92
83
  /**
93
- * One or more `internalMapping` blocks as documented below.
84
+ * One of more `internalMapping` blocks as defined below.
94
85
  */
95
86
  readonly internalMappings: pulumi.Output<outputs.network.VnpGatewayNatRuleInternalMapping[]>;
96
87
  /**
@@ -106,7 +97,7 @@ export declare class VnpGatewayNatRule extends pulumi.CustomResource {
106
97
  */
107
98
  readonly name: pulumi.Output<string>;
108
99
  /**
109
- * The Name of the Resource Group in which this VPN Gateway NAT Rule should be created. Changing this forces a new resource to be created.
100
+ * @deprecated The property `resourceGroupName` has been superseded by `vpnGatewayId` and will be removed in v4.0 of the AzureRM provider
110
101
  */
111
102
  readonly resourceGroupName: pulumi.Output<string>;
112
103
  /**
@@ -131,27 +122,19 @@ export declare class VnpGatewayNatRule extends pulumi.CustomResource {
131
122
  */
132
123
  export interface VnpGatewayNatRuleState {
133
124
  /**
134
- * (Deprecated) A list of CIDR Ranges which are used for external mapping of the VPN Gateway NAT Rule.
135
- *
136
- * > **NOTE:** `externalAddressSpaceMappings` is deprecated and will be removed in favour of the property `externalMapping` in version 4.0 of the AzureRM Provider.
137
- *
138
125
  * @deprecated `externalAddressSpaceMappings` will be removed in favour of the property `externalMapping` in version 4.0 of the AzureRM Provider.
139
126
  */
140
127
  externalAddressSpaceMappings?: pulumi.Input<pulumi.Input<string>[]>;
141
128
  /**
142
- * One or more `externalMapping` blocks as documented below.
129
+ * One of more `externalMapping` blocks as defined below.
143
130
  */
144
131
  externalMappings?: pulumi.Input<pulumi.Input<inputs.network.VnpGatewayNatRuleExternalMapping>[]>;
145
132
  /**
146
- * (Deprecated) A list of CIDR Ranges which are used for internal mapping of the VPN Gateway NAT Rule.
147
- *
148
- * > **NOTE:** `internalAddressSpaceMappings` is deprecated and will be removed in favour of the property `internalMapping` in version 4.0 of the AzureRM Provider.
149
- *
150
133
  * @deprecated `internalAddressSpaceMappings` will be removed in favour of the property `internalMapping` in version 4.0 of the AzureRM Provider.
151
134
  */
152
135
  internalAddressSpaceMappings?: pulumi.Input<pulumi.Input<string>[]>;
153
136
  /**
154
- * One or more `internalMapping` blocks as documented below.
137
+ * One of more `internalMapping` blocks as defined below.
155
138
  */
156
139
  internalMappings?: pulumi.Input<pulumi.Input<inputs.network.VnpGatewayNatRuleInternalMapping>[]>;
157
140
  /**
@@ -167,7 +150,7 @@ export interface VnpGatewayNatRuleState {
167
150
  */
168
151
  name?: pulumi.Input<string>;
169
152
  /**
170
- * The Name of the Resource Group in which this VPN Gateway NAT Rule should be created. Changing this forces a new resource to be created.
153
+ * @deprecated The property `resourceGroupName` has been superseded by `vpnGatewayId` and will be removed in v4.0 of the AzureRM provider
171
154
  */
172
155
  resourceGroupName?: pulumi.Input<string>;
173
156
  /**
@@ -184,27 +167,19 @@ export interface VnpGatewayNatRuleState {
184
167
  */
185
168
  export interface VnpGatewayNatRuleArgs {
186
169
  /**
187
- * (Deprecated) A list of CIDR Ranges which are used for external mapping of the VPN Gateway NAT Rule.
188
- *
189
- * > **NOTE:** `externalAddressSpaceMappings` is deprecated and will be removed in favour of the property `externalMapping` in version 4.0 of the AzureRM Provider.
190
- *
191
170
  * @deprecated `externalAddressSpaceMappings` will be removed in favour of the property `externalMapping` in version 4.0 of the AzureRM Provider.
192
171
  */
193
172
  externalAddressSpaceMappings?: pulumi.Input<pulumi.Input<string>[]>;
194
173
  /**
195
- * One or more `externalMapping` blocks as documented below.
174
+ * One of more `externalMapping` blocks as defined below.
196
175
  */
197
176
  externalMappings?: pulumi.Input<pulumi.Input<inputs.network.VnpGatewayNatRuleExternalMapping>[]>;
198
177
  /**
199
- * (Deprecated) A list of CIDR Ranges which are used for internal mapping of the VPN Gateway NAT Rule.
200
- *
201
- * > **NOTE:** `internalAddressSpaceMappings` is deprecated and will be removed in favour of the property `internalMapping` in version 4.0 of the AzureRM Provider.
202
- *
203
178
  * @deprecated `internalAddressSpaceMappings` will be removed in favour of the property `internalMapping` in version 4.0 of the AzureRM Provider.
204
179
  */
205
180
  internalAddressSpaceMappings?: pulumi.Input<pulumi.Input<string>[]>;
206
181
  /**
207
- * One or more `internalMapping` blocks as documented below.
182
+ * One of more `internalMapping` blocks as defined below.
208
183
  */
209
184
  internalMappings?: pulumi.Input<pulumi.Input<inputs.network.VnpGatewayNatRuleInternalMapping>[]>;
210
185
  /**
@@ -220,7 +195,7 @@ export interface VnpGatewayNatRuleArgs {
220
195
  */
221
196
  name?: pulumi.Input<string>;
222
197
  /**
223
- * The Name of the Resource Group in which this VPN Gateway NAT Rule should be created. Changing this forces a new resource to be created.
198
+ * @deprecated The property `resourceGroupName` has been superseded by `vpnGatewayId` and will be removed in v4.0 of the AzureRM provider
224
199
  */
225
200
  resourceGroupName: pulumi.Input<string>;
226
201
  /**
@@ -38,7 +38,6 @@ const utilities = require("../utilities");
38
38
  * });
39
39
  * const exampleVnpGatewayNatRule = new azure.network.VnpGatewayNatRule("example", {
40
40
  * name: "example-vpngatewaynatrule",
41
- * resourceGroupName: example.name,
42
41
  * vpnGatewayId: exampleVpnGateway.id,
43
42
  * externalMappings: [{
44
43
  * addressSpace: "192.168.21.0/26",
@@ -1 +1 @@
1
- {"version":3,"file":"vnpGatewayNatRule.js","sourceRoot":"","sources":["../../network/vnpGatewayNatRule.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"vnpGatewayNatRule.js","sourceRoot":"","sources":["../../network/vnpGatewayNatRule.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IA6ExD,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,8BAA8B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACxG,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,8BAA8B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACxG,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,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;YAClF,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3E;aAAM;YACH,MAAM,IAAI,GAAG,WAAgD,CAAC;YAC9D,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,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,cAAc,CAAC,8BAA8B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,8BAA8B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,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;YAChF,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;SACzE;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;IAhHD;;;;;;;;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,8CAkHC;AApGG,gBAAgB;AACO,8BAAY,GAAG,mDAAmD,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/azure",
3
- "version": "5.78.0-alpha.1716388911",
3
+ "version": "5.78.0",
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": "5.78.0-alpha.1716388911"
33
+ "version": "5.78.0"
34
34
  }
35
35
  }
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "../types/input";
3
3
  import * as outputs from "../types/output";
4
4
  /**
5
- * Manages a Pim Active Role Assignment.
5
+ * Manages a PIM Active Role Assignment.
6
6
  *
7
7
  * ## Example Usage
8
8
  *
@@ -70,7 +70,7 @@ import * as outputs from "../types/output";
70
70
  *
71
71
  * ## Import
72
72
  *
73
- * Pim Active Role Assignments can be imported using the `resource id`, e.g.
73
+ * PIM Active Role Assignments can be imported using the following composite resource ID, e.g.
74
74
  *
75
75
  * ```sh
76
76
  * $ pulumi import azure:pim/activeRoleAssignment:ActiveRoleAssignment example /subscriptions/00000000-0000-0000-0000-000000000000|/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00000000-0000-0000-0000-000000000000|00000000-0000-0000-0000-000000000000
@@ -93,31 +93,31 @@ export declare class ActiveRoleAssignment extends pulumi.CustomResource {
93
93
  */
94
94
  static isInstance(obj: any): obj is ActiveRoleAssignment;
95
95
  /**
96
- * The justification of the role assignment. Changing this forces a new Pim Active Role Assignment to be created.
96
+ * The justification for the role assignment. Changing this forces a new resource to be created.
97
97
  */
98
- readonly justification: pulumi.Output<string | undefined>;
98
+ readonly justification: pulumi.Output<string>;
99
99
  /**
100
- * The principal id. Changing this forces a new Pim Active Role Assignment to be created.
100
+ * Object ID of the principal for this role assignment. Changing this forces a new resource to be created.
101
101
  */
102
102
  readonly principalId: pulumi.Output<string>;
103
103
  /**
104
- * The type of principal.
104
+ * Type of principal to which the role will be assigned.
105
105
  */
106
106
  readonly principalType: pulumi.Output<string>;
107
107
  /**
108
- * The role definition id. Changing this forces a new Pim Active Role Assignment to be created.
108
+ * The role definition ID for this role assignment. Changing this forces a new resource to be created.
109
109
  */
110
110
  readonly roleDefinitionId: pulumi.Output<string>;
111
111
  /**
112
- * A `schedule` block as defined below. Changing this forces a new Pim Active Role Assignment to be created.
112
+ * A `schedule` block as defined below. Changing this forces a new resource to be created.
113
113
  */
114
- readonly schedule: pulumi.Output<outputs.pim.ActiveRoleAssignmentSchedule | undefined>;
114
+ readonly schedule: pulumi.Output<outputs.pim.ActiveRoleAssignmentSchedule>;
115
115
  /**
116
- * The scope. Changing this forces a new Pim Active Role Assignment to be created.
116
+ * The scope for this role assignment, should be a valid resource ID. Changing this forces a new resource to be created.
117
117
  */
118
118
  readonly scope: pulumi.Output<string>;
119
119
  /**
120
- * A `ticket` block as defined below. Changing this forces a new Pim Active Role Assignment to be created.
120
+ * A `ticket` block as defined below. Changing this forces a new resource to be created.
121
121
  */
122
122
  readonly ticket: pulumi.Output<outputs.pim.ActiveRoleAssignmentTicket | undefined>;
123
123
  /**
@@ -134,31 +134,31 @@ export declare class ActiveRoleAssignment extends pulumi.CustomResource {
134
134
  */
135
135
  export interface ActiveRoleAssignmentState {
136
136
  /**
137
- * The justification of the role assignment. Changing this forces a new Pim Active Role Assignment to be created.
137
+ * The justification for the role assignment. Changing this forces a new resource to be created.
138
138
  */
139
139
  justification?: pulumi.Input<string>;
140
140
  /**
141
- * The principal id. Changing this forces a new Pim Active Role Assignment to be created.
141
+ * Object ID of the principal for this role assignment. Changing this forces a new resource to be created.
142
142
  */
143
143
  principalId?: pulumi.Input<string>;
144
144
  /**
145
- * The type of principal.
145
+ * Type of principal to which the role will be assigned.
146
146
  */
147
147
  principalType?: pulumi.Input<string>;
148
148
  /**
149
- * The role definition id. Changing this forces a new Pim Active Role Assignment to be created.
149
+ * The role definition ID for this role assignment. Changing this forces a new resource to be created.
150
150
  */
151
151
  roleDefinitionId?: pulumi.Input<string>;
152
152
  /**
153
- * A `schedule` block as defined below. Changing this forces a new Pim Active Role Assignment to be created.
153
+ * A `schedule` block as defined below. Changing this forces a new resource to be created.
154
154
  */
155
155
  schedule?: pulumi.Input<inputs.pim.ActiveRoleAssignmentSchedule>;
156
156
  /**
157
- * The scope. Changing this forces a new Pim Active Role Assignment to be created.
157
+ * The scope for this role assignment, should be a valid resource ID. Changing this forces a new resource to be created.
158
158
  */
159
159
  scope?: pulumi.Input<string>;
160
160
  /**
161
- * A `ticket` block as defined below. Changing this forces a new Pim Active Role Assignment to be created.
161
+ * A `ticket` block as defined below. Changing this forces a new resource to be created.
162
162
  */
163
163
  ticket?: pulumi.Input<inputs.pim.ActiveRoleAssignmentTicket>;
164
164
  }
@@ -167,27 +167,27 @@ export interface ActiveRoleAssignmentState {
167
167
  */
168
168
  export interface ActiveRoleAssignmentArgs {
169
169
  /**
170
- * The justification of the role assignment. Changing this forces a new Pim Active Role Assignment to be created.
170
+ * The justification for the role assignment. Changing this forces a new resource to be created.
171
171
  */
172
172
  justification?: pulumi.Input<string>;
173
173
  /**
174
- * The principal id. Changing this forces a new Pim Active Role Assignment to be created.
174
+ * Object ID of the principal for this role assignment. Changing this forces a new resource to be created.
175
175
  */
176
176
  principalId: pulumi.Input<string>;
177
177
  /**
178
- * The role definition id. Changing this forces a new Pim Active Role Assignment to be created.
178
+ * The role definition ID for this role assignment. Changing this forces a new resource to be created.
179
179
  */
180
180
  roleDefinitionId: pulumi.Input<string>;
181
181
  /**
182
- * A `schedule` block as defined below. Changing this forces a new Pim Active Role Assignment to be created.
182
+ * A `schedule` block as defined below. Changing this forces a new resource to be created.
183
183
  */
184
184
  schedule?: pulumi.Input<inputs.pim.ActiveRoleAssignmentSchedule>;
185
185
  /**
186
- * The scope. Changing this forces a new Pim Active Role Assignment to be created.
186
+ * The scope for this role assignment, should be a valid resource ID. Changing this forces a new resource to be created.
187
187
  */
188
188
  scope: pulumi.Input<string>;
189
189
  /**
190
- * A `ticket` block as defined below. Changing this forces a new Pim Active Role Assignment to be created.
190
+ * A `ticket` block as defined below. Changing this forces a new resource to be created.
191
191
  */
192
192
  ticket?: pulumi.Input<inputs.pim.ActiveRoleAssignmentTicket>;
193
193
  }
@@ -6,7 +6,7 @@ exports.ActiveRoleAssignment = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  /**
9
- * Manages a Pim Active Role Assignment.
9
+ * Manages a PIM Active Role Assignment.
10
10
  *
11
11
  * ## Example Usage
12
12
  *
@@ -74,7 +74,7 @@ const utilities = require("../utilities");
74
74
  *
75
75
  * ## Import
76
76
  *
77
- * Pim Active Role Assignments can be imported using the `resource id`, e.g.
77
+ * PIM Active Role Assignments can be imported using the following composite resource ID, e.g.
78
78
  *
79
79
  * ```sh
80
80
  * $ pulumi import azure:pim/activeRoleAssignment:ActiveRoleAssignment example /subscriptions/00000000-0000-0000-0000-000000000000|/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00000000-0000-0000-0000-000000000000|00000000-0000-0000-0000-000000000000