@pulumi/azure 5.75.0-alpha.1715181652 → 5.75.1
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/frontdoor/frontdoor.d.ts +1 -1
- package/netapp/volume.d.ts +6 -6
- package/package.json +1 -1
- package/provider.d.ts +2 -5
package/frontdoor/frontdoor.d.ts
CHANGED
|
@@ -111,7 +111,7 @@ export declare class Frontdoor extends pulumi.CustomResource {
|
|
|
111
111
|
/**
|
|
112
112
|
* A `backendPoolSettings` block as defined below.
|
|
113
113
|
*/
|
|
114
|
-
readonly backendPoolSettings: pulumi.Output<outputs.frontdoor.FrontdoorBackendPoolSetting[]
|
|
114
|
+
readonly backendPoolSettings: pulumi.Output<outputs.frontdoor.FrontdoorBackendPoolSetting[]>;
|
|
115
115
|
/**
|
|
116
116
|
* A `backendPool` block as defined below.
|
|
117
117
|
*
|
package/netapp/volume.d.ts
CHANGED
|
@@ -55,8 +55,8 @@ export declare class Volume extends pulumi.CustomResource {
|
|
|
55
55
|
*/
|
|
56
56
|
readonly exportPolicyRules: pulumi.Output<outputs.netapp.VolumeExportPolicyRule[] | undefined>;
|
|
57
57
|
/**
|
|
58
|
-
* Enable to allow Kerberos secured volumes. Requires appropriate export rules as well as the parent
|
|
59
|
-
*
|
|
58
|
+
* Enable to allow Kerberos secured volumes. Requires appropriate export rules as well as the parent `azure.netapp.Account`
|
|
59
|
+
* having a defined AD connection.
|
|
60
60
|
*/
|
|
61
61
|
readonly kerberosEnabled: pulumi.Output<boolean | undefined>;
|
|
62
62
|
/**
|
|
@@ -185,8 +185,8 @@ export interface VolumeState {
|
|
|
185
185
|
*/
|
|
186
186
|
exportPolicyRules?: pulumi.Input<pulumi.Input<inputs.netapp.VolumeExportPolicyRule>[]>;
|
|
187
187
|
/**
|
|
188
|
-
* Enable to allow Kerberos secured volumes. Requires appropriate export rules as well as the parent
|
|
189
|
-
*
|
|
188
|
+
* Enable to allow Kerberos secured volumes. Requires appropriate export rules as well as the parent `azure.netapp.Account`
|
|
189
|
+
* having a defined AD connection.
|
|
190
190
|
*/
|
|
191
191
|
kerberosEnabled?: pulumi.Input<boolean>;
|
|
192
192
|
/**
|
|
@@ -307,8 +307,8 @@ export interface VolumeArgs {
|
|
|
307
307
|
*/
|
|
308
308
|
exportPolicyRules?: pulumi.Input<pulumi.Input<inputs.netapp.VolumeExportPolicyRule>[]>;
|
|
309
309
|
/**
|
|
310
|
-
* Enable to allow Kerberos secured volumes. Requires appropriate export rules as well as the parent
|
|
311
|
-
*
|
|
310
|
+
* Enable to allow Kerberos secured volumes. Requires appropriate export rules as well as the parent `azure.netapp.Account`
|
|
311
|
+
* having a defined AD connection.
|
|
312
312
|
*/
|
|
313
313
|
kerberosEnabled?: pulumi.Input<boolean>;
|
|
314
314
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/azure",
|
|
3
|
-
"version": "v5.75.
|
|
3
|
+
"version": "v5.75.1",
|
|
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",
|
package/provider.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
45
45
|
readonly clientSecretFilePath: pulumi.Output<string | undefined>;
|
|
46
46
|
/**
|
|
47
47
|
* The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public. Not
|
|
48
|
-
* used and should not be specified when `
|
|
48
|
+
* used and should not be specified when `metadataHost` is specified.
|
|
49
49
|
*/
|
|
50
50
|
readonly environment: pulumi.Output<string | undefined>;
|
|
51
51
|
/**
|
|
@@ -136,13 +136,10 @@ export interface ProviderArgs {
|
|
|
136
136
|
* This will disable the x-ms-correlation-request-id header.
|
|
137
137
|
*/
|
|
138
138
|
disableCorrelationRequestId?: pulumi.Input<boolean>;
|
|
139
|
-
/**
|
|
140
|
-
* This will disable the Terraform Partner ID which is used if a custom `partner_id` isn't specified.
|
|
141
|
-
*/
|
|
142
139
|
disableTerraformPartnerId?: pulumi.Input<boolean>;
|
|
143
140
|
/**
|
|
144
141
|
* The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public. Not
|
|
145
|
-
* used and should not be specified when `
|
|
142
|
+
* used and should not be specified when `metadataHost` is specified.
|
|
146
143
|
*/
|
|
147
144
|
environment?: pulumi.Input<string>;
|
|
148
145
|
features?: pulumi.Input<inputs.ProviderFeatures>;
|