@pulumi/azure 6.9.0-alpha.1731569743 → 6.9.0-alpha.1731596827

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.
Files changed (85) hide show
  1. package/containerservice/kubernetesCluster.d.ts +3 -3
  2. package/cosmosdb/index.d.ts +3 -0
  3. package/cosmosdb/index.js +6 -1
  4. package/cosmosdb/index.js.map +1 -1
  5. package/cosmosdb/mongoCluster.d.ts +306 -0
  6. package/cosmosdb/mongoCluster.js +150 -0
  7. package/cosmosdb/mongoCluster.js.map +1 -0
  8. package/dashboard/grafanaManagedPrivateEndpoint.d.ts +187 -0
  9. package/dashboard/grafanaManagedPrivateEndpoint.js +118 -0
  10. package/dashboard/grafanaManagedPrivateEndpoint.js.map +1 -0
  11. package/dashboard/index.d.ts +3 -0
  12. package/dashboard/index.js +6 -1
  13. package/dashboard/index.js.map +1 -1
  14. package/dataprotection/backupInstanceMysqlFlexibleServer.d.ts +173 -0
  15. package/dataprotection/backupInstanceMysqlFlexibleServer.js +143 -0
  16. package/dataprotection/backupInstanceMysqlFlexibleServer.js.map +1 -0
  17. package/dataprotection/index.d.ts +3 -0
  18. package/dataprotection/index.js +6 -1
  19. package/dataprotection/index.js.map +1 -1
  20. package/dynatrace/index.d.ts +3 -0
  21. package/dynatrace/index.js +22 -0
  22. package/dynatrace/index.js.map +1 -0
  23. package/dynatrace/monitor.d.ts +163 -0
  24. package/dynatrace/monitor.js +91 -0
  25. package/dynatrace/monitor.js.map +1 -0
  26. package/index.d.ts +2 -1
  27. package/index.js +4 -2
  28. package/index.js.map +1 -1
  29. package/lb/natRule.d.ts +51 -0
  30. package/lb/natRule.js +51 -0
  31. package/lb/natRule.js.map +1 -1
  32. package/mssql/managedDatabase.d.ts +18 -0
  33. package/mssql/managedDatabase.js +2 -0
  34. package/mssql/managedDatabase.js.map +1 -1
  35. package/network/getPublicIpPrefix.d.ts +4 -0
  36. package/network/getPublicIpPrefix.js.map +1 -1
  37. package/network/publicIp.d.ts +12 -0
  38. package/network/publicIp.js +2 -0
  39. package/network/publicIp.js.map +1 -1
  40. package/network/publicIpPrefix.d.ts +12 -0
  41. package/network/publicIpPrefix.js +2 -0
  42. package/network/publicIpPrefix.js.map +1 -1
  43. package/oracle/cloudVmCluster.d.ts +48 -0
  44. package/oracle/cloudVmCluster.js +8 -0
  45. package/oracle/cloudVmCluster.js.map +1 -1
  46. package/package.json +2 -2
  47. package/sentinel/alertRuleFusion.d.ts +5 -16
  48. package/sentinel/alertRuleFusion.js +2 -13
  49. package/sentinel/alertRuleFusion.js.map +1 -1
  50. package/stack/hciNetworkInterface.d.ts +157 -0
  51. package/stack/hciNetworkInterface.js +83 -0
  52. package/stack/hciNetworkInterface.js.map +1 -0
  53. package/stack/index.d.ts +3 -0
  54. package/stack/index.js +6 -1
  55. package/stack/index.js.map +1 -1
  56. package/storage/account.d.ts +13 -1
  57. package/storage/account.js.map +1 -1
  58. package/storage/accountQueueProperties.d.ts +165 -0
  59. package/storage/accountQueueProperties.js +121 -0
  60. package/storage/accountQueueProperties.js.map +1 -0
  61. package/storage/accountStaticWebsite.d.ts +110 -0
  62. package/storage/accountStaticWebsite.js +94 -0
  63. package/storage/accountStaticWebsite.js.map +1 -0
  64. package/storage/container.d.ts +32 -4
  65. package/storage/container.js +3 -4
  66. package/storage/container.js.map +1 -1
  67. package/storage/getShare.d.ts +35 -13
  68. package/storage/getShare.js +16 -8
  69. package/storage/getShare.js.map +1 -1
  70. package/storage/getStorageContainer.d.ts +33 -12
  71. package/storage/getStorageContainer.js +16 -6
  72. package/storage/getStorageContainer.js.map +1 -1
  73. package/storage/index.d.ts +6 -0
  74. package/storage/index.js +12 -2
  75. package/storage/index.js.map +1 -1
  76. package/storage/share.d.ts +35 -7
  77. package/storage/share.js +7 -8
  78. package/storage/share.js.map +1 -1
  79. package/storage/zMixins.js +20 -6
  80. package/storage/zMixins.js.map +1 -1
  81. package/trustedsigning/account.d.ts +18 -0
  82. package/trustedsigning/account.js +18 -0
  83. package/trustedsigning/account.js.map +1 -1
  84. package/types/input.d.ts +83 -15
  85. package/types/output.d.ts +81 -13
@@ -0,0 +1,165 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "../types/input";
3
+ import * as outputs from "../types/output";
4
+ /**
5
+ * Manages the Queue Properties of an Azure Storage Account.
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * ```typescript
10
+ * import * as pulumi from "@pulumi/pulumi";
11
+ * import * as azure from "@pulumi/azure";
12
+ *
13
+ * const example = new azure.core.ResourceGroup("example", {
14
+ * name: "example-resources",
15
+ * location: "West Europe",
16
+ * });
17
+ * const exampleAccount = new azure.storage.Account("example", {
18
+ * name: "storageaccountname",
19
+ * resourceGroupName: example.name,
20
+ * location: example.location,
21
+ * accountTier: "Standard",
22
+ * accountReplicationType: "GRS",
23
+ * tags: {
24
+ * environment: "staging",
25
+ * },
26
+ * });
27
+ * const exampleAccountQueueProperties = new azure.storage.AccountQueueProperties("example", {
28
+ * storageAccountId: exampleAccount.id,
29
+ * corsRules: [{
30
+ * allowedOrigins: ["http://www.example.com"],
31
+ * exposedHeaders: ["x-tempo-*"],
32
+ * allowedHeaders: ["x-tempo-*"],
33
+ * allowedMethods: [
34
+ * "GET",
35
+ * "PUT",
36
+ * ],
37
+ * maxAgeInSeconds: 500,
38
+ * }],
39
+ * logging: {
40
+ * version: "1.0",
41
+ * "delete": true,
42
+ * read: true,
43
+ * write: true,
44
+ * retentionPolicyDays: 7,
45
+ * },
46
+ * hourMetrics: {
47
+ * version: "1.0",
48
+ * retentionPolicyDays: 7,
49
+ * },
50
+ * minuteMetrics: {
51
+ * version: "1.0",
52
+ * retentionPolicyDays: 7,
53
+ * },
54
+ * });
55
+ * ```
56
+ *
57
+ * ## Import
58
+ *
59
+ * Storage Account Queue Properties can be imported using the `resource id`, e.g.
60
+ *
61
+ * ```sh
62
+ * $ pulumi import azure:storage/accountQueueProperties:AccountQueueProperties queueprops /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Storage/storageAccounts/myaccount
63
+ * ```
64
+ */
65
+ export declare class AccountQueueProperties extends pulumi.CustomResource {
66
+ /**
67
+ * Get an existing AccountQueueProperties resource's state with the given name, ID, and optional extra
68
+ * properties used to qualify the lookup.
69
+ *
70
+ * @param name The _unique_ name of the resulting resource.
71
+ * @param id The _unique_ provider ID of the resource to lookup.
72
+ * @param state Any extra arguments used during the lookup.
73
+ * @param opts Optional settings to control the behavior of the CustomResource.
74
+ */
75
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AccountQueuePropertiesState, opts?: pulumi.CustomResourceOptions): AccountQueueProperties;
76
+ /**
77
+ * Returns true if the given object is an instance of AccountQueueProperties. This is designed to work even
78
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
79
+ */
80
+ static isInstance(obj: any): obj is AccountQueueProperties;
81
+ /**
82
+ * A `corsRule` block as defined above.
83
+ */
84
+ readonly corsRules: pulumi.Output<outputs.storage.AccountQueuePropertiesCorsRule[] | undefined>;
85
+ /**
86
+ * A `hourMetrics` block as defined below.
87
+ *
88
+ * > **NOTE:** At least one of `corsRule`, `logging`, `minuteMetrics`, or `hourMetrics` must be specified.
89
+ */
90
+ readonly hourMetrics: pulumi.Output<outputs.storage.AccountQueuePropertiesHourMetrics>;
91
+ /**
92
+ * A `logging` block as defined below.
93
+ */
94
+ readonly logging: pulumi.Output<outputs.storage.AccountQueuePropertiesLogging>;
95
+ /**
96
+ * A `minuteMetrics` block as defined below.
97
+ */
98
+ readonly minuteMetrics: pulumi.Output<outputs.storage.AccountQueuePropertiesMinuteMetrics>;
99
+ /**
100
+ * The ID of the Storage Account to set Queue Properties on. Changing this forces a new resource to be created.
101
+ */
102
+ readonly storageAccountId: pulumi.Output<string>;
103
+ /**
104
+ * Create a AccountQueueProperties resource with the given unique name, arguments, and options.
105
+ *
106
+ * @param name The _unique_ name of the resource.
107
+ * @param args The arguments to use to populate this resource's properties.
108
+ * @param opts A bag of options that control this resource's behavior.
109
+ */
110
+ constructor(name: string, args: AccountQueuePropertiesArgs, opts?: pulumi.CustomResourceOptions);
111
+ }
112
+ /**
113
+ * Input properties used for looking up and filtering AccountQueueProperties resources.
114
+ */
115
+ export interface AccountQueuePropertiesState {
116
+ /**
117
+ * A `corsRule` block as defined above.
118
+ */
119
+ corsRules?: pulumi.Input<pulumi.Input<inputs.storage.AccountQueuePropertiesCorsRule>[]>;
120
+ /**
121
+ * A `hourMetrics` block as defined below.
122
+ *
123
+ * > **NOTE:** At least one of `corsRule`, `logging`, `minuteMetrics`, or `hourMetrics` must be specified.
124
+ */
125
+ hourMetrics?: pulumi.Input<inputs.storage.AccountQueuePropertiesHourMetrics>;
126
+ /**
127
+ * A `logging` block as defined below.
128
+ */
129
+ logging?: pulumi.Input<inputs.storage.AccountQueuePropertiesLogging>;
130
+ /**
131
+ * A `minuteMetrics` block as defined below.
132
+ */
133
+ minuteMetrics?: pulumi.Input<inputs.storage.AccountQueuePropertiesMinuteMetrics>;
134
+ /**
135
+ * The ID of the Storage Account to set Queue Properties on. Changing this forces a new resource to be created.
136
+ */
137
+ storageAccountId?: pulumi.Input<string>;
138
+ }
139
+ /**
140
+ * The set of arguments for constructing a AccountQueueProperties resource.
141
+ */
142
+ export interface AccountQueuePropertiesArgs {
143
+ /**
144
+ * A `corsRule` block as defined above.
145
+ */
146
+ corsRules?: pulumi.Input<pulumi.Input<inputs.storage.AccountQueuePropertiesCorsRule>[]>;
147
+ /**
148
+ * A `hourMetrics` block as defined below.
149
+ *
150
+ * > **NOTE:** At least one of `corsRule`, `logging`, `minuteMetrics`, or `hourMetrics` must be specified.
151
+ */
152
+ hourMetrics?: pulumi.Input<inputs.storage.AccountQueuePropertiesHourMetrics>;
153
+ /**
154
+ * A `logging` block as defined below.
155
+ */
156
+ logging?: pulumi.Input<inputs.storage.AccountQueuePropertiesLogging>;
157
+ /**
158
+ * A `minuteMetrics` block as defined below.
159
+ */
160
+ minuteMetrics?: pulumi.Input<inputs.storage.AccountQueuePropertiesMinuteMetrics>;
161
+ /**
162
+ * The ID of the Storage Account to set Queue Properties on. Changing this forces a new resource to be created.
163
+ */
164
+ storageAccountId: pulumi.Input<string>;
165
+ }
@@ -0,0 +1,121 @@
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.AccountQueueProperties = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Manages the Queue Properties of an Azure Storage Account.
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 = new azure.core.ResourceGroup("example", {
18
+ * name: "example-resources",
19
+ * location: "West Europe",
20
+ * });
21
+ * const exampleAccount = new azure.storage.Account("example", {
22
+ * name: "storageaccountname",
23
+ * resourceGroupName: example.name,
24
+ * location: example.location,
25
+ * accountTier: "Standard",
26
+ * accountReplicationType: "GRS",
27
+ * tags: {
28
+ * environment: "staging",
29
+ * },
30
+ * });
31
+ * const exampleAccountQueueProperties = new azure.storage.AccountQueueProperties("example", {
32
+ * storageAccountId: exampleAccount.id,
33
+ * corsRules: [{
34
+ * allowedOrigins: ["http://www.example.com"],
35
+ * exposedHeaders: ["x-tempo-*"],
36
+ * allowedHeaders: ["x-tempo-*"],
37
+ * allowedMethods: [
38
+ * "GET",
39
+ * "PUT",
40
+ * ],
41
+ * maxAgeInSeconds: 500,
42
+ * }],
43
+ * logging: {
44
+ * version: "1.0",
45
+ * "delete": true,
46
+ * read: true,
47
+ * write: true,
48
+ * retentionPolicyDays: 7,
49
+ * },
50
+ * hourMetrics: {
51
+ * version: "1.0",
52
+ * retentionPolicyDays: 7,
53
+ * },
54
+ * minuteMetrics: {
55
+ * version: "1.0",
56
+ * retentionPolicyDays: 7,
57
+ * },
58
+ * });
59
+ * ```
60
+ *
61
+ * ## Import
62
+ *
63
+ * Storage Account Queue Properties can be imported using the `resource id`, e.g.
64
+ *
65
+ * ```sh
66
+ * $ pulumi import azure:storage/accountQueueProperties:AccountQueueProperties queueprops /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Storage/storageAccounts/myaccount
67
+ * ```
68
+ */
69
+ class AccountQueueProperties extends pulumi.CustomResource {
70
+ constructor(name, argsOrState, opts) {
71
+ let resourceInputs = {};
72
+ opts = opts || {};
73
+ if (opts.id) {
74
+ const state = argsOrState;
75
+ resourceInputs["corsRules"] = state ? state.corsRules : undefined;
76
+ resourceInputs["hourMetrics"] = state ? state.hourMetrics : undefined;
77
+ resourceInputs["logging"] = state ? state.logging : undefined;
78
+ resourceInputs["minuteMetrics"] = state ? state.minuteMetrics : undefined;
79
+ resourceInputs["storageAccountId"] = state ? state.storageAccountId : undefined;
80
+ }
81
+ else {
82
+ const args = argsOrState;
83
+ if ((!args || args.storageAccountId === undefined) && !opts.urn) {
84
+ throw new Error("Missing required property 'storageAccountId'");
85
+ }
86
+ resourceInputs["corsRules"] = args ? args.corsRules : undefined;
87
+ resourceInputs["hourMetrics"] = args ? args.hourMetrics : undefined;
88
+ resourceInputs["logging"] = args ? args.logging : undefined;
89
+ resourceInputs["minuteMetrics"] = args ? args.minuteMetrics : undefined;
90
+ resourceInputs["storageAccountId"] = args ? args.storageAccountId : undefined;
91
+ }
92
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
93
+ super(AccountQueueProperties.__pulumiType, name, resourceInputs, opts);
94
+ }
95
+ /**
96
+ * Get an existing AccountQueueProperties resource's state with the given name, ID, and optional extra
97
+ * properties used to qualify the lookup.
98
+ *
99
+ * @param name The _unique_ name of the resulting resource.
100
+ * @param id The _unique_ provider ID of the resource to lookup.
101
+ * @param state Any extra arguments used during the lookup.
102
+ * @param opts Optional settings to control the behavior of the CustomResource.
103
+ */
104
+ static get(name, id, state, opts) {
105
+ return new AccountQueueProperties(name, state, Object.assign(Object.assign({}, opts), { id: id }));
106
+ }
107
+ /**
108
+ * Returns true if the given object is an instance of AccountQueueProperties. This is designed to work even
109
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
110
+ */
111
+ static isInstance(obj) {
112
+ if (obj === undefined || obj === null) {
113
+ return false;
114
+ }
115
+ return obj['__pulumiType'] === AccountQueueProperties.__pulumiType;
116
+ }
117
+ }
118
+ exports.AccountQueueProperties = AccountQueueProperties;
119
+ /** @internal */
120
+ AccountQueueProperties.__pulumiType = 'azure:storage/accountQueueProperties:AccountQueueProperties';
121
+ //# sourceMappingURL=accountQueueProperties.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accountQueueProperties.js","sourceRoot":"","sources":["../../storage/accountQueueProperties.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,110 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Manages the Static Website of an Azure Storage Account.
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 = new azure.core.ResourceGroup("example", {
12
+ * name: "example-resources",
13
+ * location: "West Europe",
14
+ * });
15
+ * const exampleAccount = new azure.storage.Account("example", {
16
+ * name: "storageaccountname",
17
+ * resourceGroupName: example.name,
18
+ * location: example.location,
19
+ * accountTier: "Standard",
20
+ * accountReplicationType: "GRS",
21
+ * tags: {
22
+ * environment: "staging",
23
+ * },
24
+ * });
25
+ * const test = new azure.storage.AccountStaticWebsite("test", {
26
+ * storageAccountId: testAzurermStorageAccount.id,
27
+ * error404Document: "custom_not_found.html",
28
+ * indexDocument: "custom_index.html",
29
+ * });
30
+ * ```
31
+ *
32
+ * ## Import
33
+ *
34
+ * Storage Account Static Websites can be imported using the `resource id`, e.g.
35
+ *
36
+ * ```sh
37
+ * $ pulumi import azure:storage/accountStaticWebsite:AccountStaticWebsite mysite /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Storage/storageAccounts/myaccount
38
+ * ```
39
+ */
40
+ export declare class AccountStaticWebsite extends pulumi.CustomResource {
41
+ /**
42
+ * Get an existing AccountStaticWebsite resource's state with the given name, ID, and optional extra
43
+ * properties used to qualify the lookup.
44
+ *
45
+ * @param name The _unique_ name of the resulting resource.
46
+ * @param id The _unique_ provider ID of the resource to lookup.
47
+ * @param state Any extra arguments used during the lookup.
48
+ * @param opts Optional settings to control the behavior of the CustomResource.
49
+ */
50
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AccountStaticWebsiteState, opts?: pulumi.CustomResourceOptions): AccountStaticWebsite;
51
+ /**
52
+ * Returns true if the given object is an instance of AccountStaticWebsite. This is designed to work even
53
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
54
+ */
55
+ static isInstance(obj: any): obj is AccountStaticWebsite;
56
+ /**
57
+ * The absolute path to a custom webpage that should be used when a request is made which does not correspond to an existing file.
58
+ */
59
+ readonly error404Document: pulumi.Output<string | undefined>;
60
+ /**
61
+ * The webpage that Azure Storage serves for requests to the root of a website or any subfolder. For example, index.html.
62
+ */
63
+ readonly indexDocument: pulumi.Output<string | undefined>;
64
+ /**
65
+ * The ID of the Storage Account to set Static Website on. Changing this forces a new resource to be created.
66
+ */
67
+ readonly storageAccountId: pulumi.Output<string>;
68
+ /**
69
+ * Create a AccountStaticWebsite resource with the given unique name, arguments, and options.
70
+ *
71
+ * @param name The _unique_ name of the resource.
72
+ * @param args The arguments to use to populate this resource's properties.
73
+ * @param opts A bag of options that control this resource's behavior.
74
+ */
75
+ constructor(name: string, args: AccountStaticWebsiteArgs, opts?: pulumi.CustomResourceOptions);
76
+ }
77
+ /**
78
+ * Input properties used for looking up and filtering AccountStaticWebsite resources.
79
+ */
80
+ export interface AccountStaticWebsiteState {
81
+ /**
82
+ * The absolute path to a custom webpage that should be used when a request is made which does not correspond to an existing file.
83
+ */
84
+ error404Document?: pulumi.Input<string>;
85
+ /**
86
+ * The webpage that Azure Storage serves for requests to the root of a website or any subfolder. For example, index.html.
87
+ */
88
+ indexDocument?: pulumi.Input<string>;
89
+ /**
90
+ * The ID of the Storage Account to set Static Website on. Changing this forces a new resource to be created.
91
+ */
92
+ storageAccountId?: pulumi.Input<string>;
93
+ }
94
+ /**
95
+ * The set of arguments for constructing a AccountStaticWebsite resource.
96
+ */
97
+ export interface AccountStaticWebsiteArgs {
98
+ /**
99
+ * The absolute path to a custom webpage that should be used when a request is made which does not correspond to an existing file.
100
+ */
101
+ error404Document?: pulumi.Input<string>;
102
+ /**
103
+ * The webpage that Azure Storage serves for requests to the root of a website or any subfolder. For example, index.html.
104
+ */
105
+ indexDocument?: pulumi.Input<string>;
106
+ /**
107
+ * The ID of the Storage Account to set Static Website on. Changing this forces a new resource to be created.
108
+ */
109
+ storageAccountId: pulumi.Input<string>;
110
+ }
@@ -0,0 +1,94 @@
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.AccountStaticWebsite = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Manages the Static Website of an Azure Storage Account.
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 = new azure.core.ResourceGroup("example", {
18
+ * name: "example-resources",
19
+ * location: "West Europe",
20
+ * });
21
+ * const exampleAccount = new azure.storage.Account("example", {
22
+ * name: "storageaccountname",
23
+ * resourceGroupName: example.name,
24
+ * location: example.location,
25
+ * accountTier: "Standard",
26
+ * accountReplicationType: "GRS",
27
+ * tags: {
28
+ * environment: "staging",
29
+ * },
30
+ * });
31
+ * const test = new azure.storage.AccountStaticWebsite("test", {
32
+ * storageAccountId: testAzurermStorageAccount.id,
33
+ * error404Document: "custom_not_found.html",
34
+ * indexDocument: "custom_index.html",
35
+ * });
36
+ * ```
37
+ *
38
+ * ## Import
39
+ *
40
+ * Storage Account Static Websites can be imported using the `resource id`, e.g.
41
+ *
42
+ * ```sh
43
+ * $ pulumi import azure:storage/accountStaticWebsite:AccountStaticWebsite mysite /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Storage/storageAccounts/myaccount
44
+ * ```
45
+ */
46
+ class AccountStaticWebsite extends pulumi.CustomResource {
47
+ constructor(name, argsOrState, opts) {
48
+ let resourceInputs = {};
49
+ opts = opts || {};
50
+ if (opts.id) {
51
+ const state = argsOrState;
52
+ resourceInputs["error404Document"] = state ? state.error404Document : undefined;
53
+ resourceInputs["indexDocument"] = state ? state.indexDocument : undefined;
54
+ resourceInputs["storageAccountId"] = state ? state.storageAccountId : undefined;
55
+ }
56
+ else {
57
+ const args = argsOrState;
58
+ if ((!args || args.storageAccountId === undefined) && !opts.urn) {
59
+ throw new Error("Missing required property 'storageAccountId'");
60
+ }
61
+ resourceInputs["error404Document"] = args ? args.error404Document : undefined;
62
+ resourceInputs["indexDocument"] = args ? args.indexDocument : undefined;
63
+ resourceInputs["storageAccountId"] = args ? args.storageAccountId : undefined;
64
+ }
65
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
66
+ super(AccountStaticWebsite.__pulumiType, name, resourceInputs, opts);
67
+ }
68
+ /**
69
+ * Get an existing AccountStaticWebsite resource's state with the given name, ID, and optional extra
70
+ * properties used to qualify the lookup.
71
+ *
72
+ * @param name The _unique_ name of the resulting resource.
73
+ * @param id The _unique_ provider ID of the resource to lookup.
74
+ * @param state Any extra arguments used during the lookup.
75
+ * @param opts Optional settings to control the behavior of the CustomResource.
76
+ */
77
+ static get(name, id, state, opts) {
78
+ return new AccountStaticWebsite(name, state, Object.assign(Object.assign({}, opts), { id: id }));
79
+ }
80
+ /**
81
+ * Returns true if the given object is an instance of AccountStaticWebsite. This is designed to work even
82
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
83
+ */
84
+ static isInstance(obj) {
85
+ if (obj === undefined || obj === null) {
86
+ return false;
87
+ }
88
+ return obj['__pulumiType'] === AccountStaticWebsite.__pulumiType;
89
+ }
90
+ }
91
+ exports.AccountStaticWebsite = AccountStaticWebsite;
92
+ /** @internal */
93
+ AccountStaticWebsite.__pulumiType = 'azure:storage/accountStaticWebsite:AccountStaticWebsite';
94
+ //# sourceMappingURL=accountStaticWebsite.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accountStaticWebsite.js","sourceRoot":"","sources":["../../storage/accountStaticWebsite.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,MAAa,oBAAqB,SAAQ,MAAM,CAAC,cAAc;IAiD3D,YAAY,IAAY,EAAE,WAAkE,EAAE,IAAmC;QAC7H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoD,CAAC;YACnE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;SACnF;aAAM;YACH,MAAM,IAAI,GAAG,WAAmD,CAAC;YACjE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,gBAAgB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7D,MAAM,IAAI,KAAK,CAAC,8CAA8C,CAAC,CAAC;aACnE;YACD,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;SACjF;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzE,CAAC;IAnED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiC,EAAE,IAAmC;QAC/H,OAAO,IAAI,oBAAoB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC3E,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,oBAAoB,CAAC,YAAY,CAAC;IACrE,CAAC;;AA1BL,oDAqEC;AAvDG,gBAAgB;AACO,iCAAY,GAAG,yDAAyD,CAAC"}
@@ -24,7 +24,7 @@ import * as pulumi from "@pulumi/pulumi";
24
24
  * });
25
25
  * const exampleContainer = new azure.storage.Container("example", {
26
26
  * name: "vhds",
27
- * storageAccountName: exampleAccount.name,
27
+ * storageAccountId: exampleAccount.id,
28
28
  * containerAccessType: "private",
29
29
  * });
30
30
  * ```
@@ -87,12 +87,22 @@ export declare class Container extends pulumi.CustomResource {
87
87
  readonly name: pulumi.Output<string>;
88
88
  /**
89
89
  * The Resource Manager ID of this Storage Container.
90
+ *
91
+ * @deprecated this property has been deprecated in favour of `id` and will be removed in version 5.0 of the Provider.
90
92
  */
91
93
  readonly resourceManagerId: pulumi.Output<string>;
92
94
  /**
93
95
  * The name of the Storage Account where the Container should be created. Changing this forces a new resource to be created.
96
+ *
97
+ * > **NOTE:** One of `storageAccountName` or `storageAccountId` must be specified. When specifying `storageAccountId` the resource will use the Resource Manager API, rather than the Data Plane API.
98
+ */
99
+ readonly storageAccountId: pulumi.Output<string | undefined>;
100
+ /**
101
+ * The name of the Storage Account where the Container should be created. Changing this forces a new resource to be created. This property is deprecated in favour of `storageAccountId`.
102
+ *
103
+ * @deprecated the `storageAccountName` property has been deprecated in favour of `storageAccountId` and will be removed in version 5.0 of the Provider.
94
104
  */
95
- readonly storageAccountName: pulumi.Output<string>;
105
+ readonly storageAccountName: pulumi.Output<string | undefined>;
96
106
  /**
97
107
  * Create a Container resource with the given unique name, arguments, and options.
98
108
  *
@@ -100,7 +110,7 @@ export declare class Container extends pulumi.CustomResource {
100
110
  * @param args The arguments to use to populate this resource's properties.
101
111
  * @param opts A bag of options that control this resource's behavior.
102
112
  */
103
- constructor(name: string, args: ContainerArgs, opts?: pulumi.CustomResourceOptions);
113
+ constructor(name: string, args?: ContainerArgs, opts?: pulumi.CustomResourceOptions);
104
114
  }
105
115
  /**
106
116
  * Input properties used for looking up and filtering Container resources.
@@ -140,10 +150,20 @@ export interface ContainerState {
140
150
  name?: pulumi.Input<string>;
141
151
  /**
142
152
  * The Resource Manager ID of this Storage Container.
153
+ *
154
+ * @deprecated this property has been deprecated in favour of `id` and will be removed in version 5.0 of the Provider.
143
155
  */
144
156
  resourceManagerId?: pulumi.Input<string>;
145
157
  /**
146
158
  * The name of the Storage Account where the Container should be created. Changing this forces a new resource to be created.
159
+ *
160
+ * > **NOTE:** One of `storageAccountName` or `storageAccountId` must be specified. When specifying `storageAccountId` the resource will use the Resource Manager API, rather than the Data Plane API.
161
+ */
162
+ storageAccountId?: pulumi.Input<string>;
163
+ /**
164
+ * The name of the Storage Account where the Container should be created. Changing this forces a new resource to be created. This property is deprecated in favour of `storageAccountId`.
165
+ *
166
+ * @deprecated the `storageAccountName` property has been deprecated in favour of `storageAccountId` and will be removed in version 5.0 of the Provider.
147
167
  */
148
168
  storageAccountName?: pulumi.Input<string>;
149
169
  }
@@ -177,6 +197,14 @@ export interface ContainerArgs {
177
197
  name?: pulumi.Input<string>;
178
198
  /**
179
199
  * The name of the Storage Account where the Container should be created. Changing this forces a new resource to be created.
200
+ *
201
+ * > **NOTE:** One of `storageAccountName` or `storageAccountId` must be specified. When specifying `storageAccountId` the resource will use the Resource Manager API, rather than the Data Plane API.
180
202
  */
181
- storageAccountName: pulumi.Input<string>;
203
+ storageAccountId?: pulumi.Input<string>;
204
+ /**
205
+ * The name of the Storage Account where the Container should be created. Changing this forces a new resource to be created. This property is deprecated in favour of `storageAccountId`.
206
+ *
207
+ * @deprecated the `storageAccountName` property has been deprecated in favour of `storageAccountId` and will be removed in version 5.0 of the Provider.
208
+ */
209
+ storageAccountName?: pulumi.Input<string>;
182
210
  }
@@ -30,7 +30,7 @@ const utilities = require("../utilities");
30
30
  * });
31
31
  * const exampleContainer = new azure.storage.Container("example", {
32
32
  * name: "vhds",
33
- * storageAccountName: exampleAccount.name,
33
+ * storageAccountId: exampleAccount.id,
34
34
  * containerAccessType: "private",
35
35
  * });
36
36
  * ```
@@ -57,18 +57,17 @@ class Container extends pulumi.CustomResource {
57
57
  resourceInputs["metadata"] = state ? state.metadata : undefined;
58
58
  resourceInputs["name"] = state ? state.name : undefined;
59
59
  resourceInputs["resourceManagerId"] = state ? state.resourceManagerId : undefined;
60
+ resourceInputs["storageAccountId"] = state ? state.storageAccountId : undefined;
60
61
  resourceInputs["storageAccountName"] = state ? state.storageAccountName : undefined;
61
62
  }
62
63
  else {
63
64
  const args = argsOrState;
64
- if ((!args || args.storageAccountName === undefined) && !opts.urn) {
65
- throw new Error("Missing required property 'storageAccountName'");
66
- }
67
65
  resourceInputs["containerAccessType"] = args ? args.containerAccessType : undefined;
68
66
  resourceInputs["defaultEncryptionScope"] = args ? args.defaultEncryptionScope : undefined;
69
67
  resourceInputs["encryptionScopeOverrideEnabled"] = args ? args.encryptionScopeOverrideEnabled : undefined;
70
68
  resourceInputs["metadata"] = args ? args.metadata : undefined;
71
69
  resourceInputs["name"] = args ? args.name : undefined;
70
+ resourceInputs["storageAccountId"] = args ? args.storageAccountId : undefined;
72
71
  resourceInputs["storageAccountName"] = args ? args.storageAccountName : undefined;
73
72
  resourceInputs["hasImmutabilityPolicy"] = undefined /*out*/;
74
73
  resourceInputs["hasLegalHold"] = undefined /*out*/;
@@ -1 +1 @@
1
- {"version":3,"file":"container.js","sourceRoot":"","sources":["../../storage/container.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"container.js","sourceRoot":"","sources":["../../storage/container.ts"],"names":[],"mappings":"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"}