@pulumi/azure 5.76.0-alpha.1715261857 → 5.76.0-alpha.1715320937

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.
@@ -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
- * `azurerm_netapp_account` having a defined AD connection.
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
- * `azurerm_netapp_account` having a defined AD connection.
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
- * `azurerm_netapp_account` having a defined AD connection.
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.76.0-alpha.1715261857+c2e0273",
3
+ "version": "v5.76.0-alpha.1715320937+51dba69",
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 `metadata_host` is specified.
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 `metadata_host` is specified.
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>;