@pulumi/azure 6.27.0-alpha.1759511969 → 6.28.0-alpha.1759516578
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/index.d.ts +3 -0
- package/apimanagement/index.js +6 -1
- package/apimanagement/index.js.map +1 -1
- package/apimanagement/workspacePolicy.d.ts +130 -0
- package/apimanagement/workspacePolicy.js +108 -0
- package/apimanagement/workspacePolicy.js.map +1 -0
- package/cognitive/account.d.ts +44 -10
- package/cognitive/account.js +9 -1
- package/cognitive/account.js.map +1 -1
- package/management/groupPolicyRemediation.d.ts +3 -3
- package/package.json +2 -2
- package/paloalto/localRulestackRule.d.ts +3 -3
- package/storage/queue.d.ts +1 -1
- package/storage/queue.js +1 -1
- package/types/input.d.ts +34 -20
- package/types/output.d.ts +72 -58
|
@@ -61,7 +61,7 @@ export declare class GroupPolicyRemediation extends pulumi.CustomResource {
|
|
|
61
61
|
*/
|
|
62
62
|
static isInstance(obj: any): obj is GroupPolicyRemediation;
|
|
63
63
|
/**
|
|
64
|
-
*
|
|
64
|
+
* The percentage failure threshold. Possible values range between `0.0` and `1.0`. The remediation will fail if the percentage of failed remediation operations (i.e. failed deployments) exceeds this threshold.
|
|
65
65
|
*/
|
|
66
66
|
readonly failurePercentage: pulumi.Output<number | undefined>;
|
|
67
67
|
/**
|
|
@@ -106,7 +106,7 @@ export declare class GroupPolicyRemediation extends pulumi.CustomResource {
|
|
|
106
106
|
*/
|
|
107
107
|
export interface GroupPolicyRemediationState {
|
|
108
108
|
/**
|
|
109
|
-
*
|
|
109
|
+
* The percentage failure threshold. Possible values range between `0.0` and `1.0`. The remediation will fail if the percentage of failed remediation operations (i.e. failed deployments) exceeds this threshold.
|
|
110
110
|
*/
|
|
111
111
|
failurePercentage?: pulumi.Input<number>;
|
|
112
112
|
/**
|
|
@@ -143,7 +143,7 @@ export interface GroupPolicyRemediationState {
|
|
|
143
143
|
*/
|
|
144
144
|
export interface GroupPolicyRemediationArgs {
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
146
|
+
* The percentage failure threshold. Possible values range between `0.0` and `1.0`. The remediation will fail if the percentage of failed remediation operations (i.e. failed deployments) exceeds this threshold.
|
|
147
147
|
*/
|
|
148
148
|
failurePercentage?: pulumi.Input<number>;
|
|
149
149
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/azure",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.28.0-alpha.1759516578",
|
|
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": "6.
|
|
33
|
+
"version": "6.28.0-alpha.1759516578"
|
|
34
34
|
}
|
|
35
35
|
}
|
|
@@ -119,7 +119,7 @@ export declare class LocalRulestackRule extends pulumi.CustomResource {
|
|
|
119
119
|
*/
|
|
120
120
|
readonly negateSource: pulumi.Output<boolean | undefined>;
|
|
121
121
|
/**
|
|
122
|
-
* The Priority of this rule. Rules are executed in numerical order. Changing this forces a new Palo Alto Local Rulestack Rule to be created.
|
|
122
|
+
* The Priority of this rule. Rules are executed in numerical order. Possible values are between 1 and 1000000. Changing this forces a new Palo Alto Local Rulestack Rule to be created.
|
|
123
123
|
*
|
|
124
124
|
* > **Note:** This is the primary identifier of a rule, as such it is not possible to change the Priority of a rule once created.
|
|
125
125
|
*/
|
|
@@ -214,7 +214,7 @@ export interface LocalRulestackRuleState {
|
|
|
214
214
|
*/
|
|
215
215
|
negateSource?: pulumi.Input<boolean>;
|
|
216
216
|
/**
|
|
217
|
-
* The Priority of this rule. Rules are executed in numerical order. Changing this forces a new Palo Alto Local Rulestack Rule to be created.
|
|
217
|
+
* The Priority of this rule. Rules are executed in numerical order. Possible values are between 1 and 1000000. Changing this forces a new Palo Alto Local Rulestack Rule to be created.
|
|
218
218
|
*
|
|
219
219
|
* > **Note:** This is the primary identifier of a rule, as such it is not possible to change the Priority of a rule once created.
|
|
220
220
|
*/
|
|
@@ -301,7 +301,7 @@ export interface LocalRulestackRuleArgs {
|
|
|
301
301
|
*/
|
|
302
302
|
negateSource?: pulumi.Input<boolean>;
|
|
303
303
|
/**
|
|
304
|
-
* The Priority of this rule. Rules are executed in numerical order. Changing this forces a new Palo Alto Local Rulestack Rule to be created.
|
|
304
|
+
* The Priority of this rule. Rules are executed in numerical order. Possible values are between 1 and 1000000. Changing this forces a new Palo Alto Local Rulestack Rule to be created.
|
|
305
305
|
*
|
|
306
306
|
* > **Note:** This is the primary identifier of a rule, as such it is not possible to change the Priority of a rule once created.
|
|
307
307
|
*/
|
package/storage/queue.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
45
45
|
* If `storage_account_id` is used:
|
|
46
46
|
*
|
|
47
47
|
* ```sh
|
|
48
|
-
* $ pulumi import azure:storage/queue:Queue queue1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Storage/storageAccounts/myaccount/queueServices/default/queues
|
|
48
|
+
* $ pulumi import azure:storage/queue:Queue queue1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Storage/storageAccounts/myaccount/queueServices/default/queues/queue1
|
|
49
49
|
* ```
|
|
50
50
|
*/
|
|
51
51
|
export declare class Queue extends pulumi.CustomResource {
|
package/storage/queue.js
CHANGED
|
@@ -51,7 +51,7 @@ const utilities = require("../utilities");
|
|
|
51
51
|
* If `storage_account_id` is used:
|
|
52
52
|
*
|
|
53
53
|
* ```sh
|
|
54
|
-
* $ pulumi import azure:storage/queue:Queue queue1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Storage/storageAccounts/myaccount/queueServices/default/queues
|
|
54
|
+
* $ pulumi import azure:storage/queue:Queue queue1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Storage/storageAccounts/myaccount/queueServices/default/queues/queue1
|
|
55
55
|
* ```
|
|
56
56
|
*/
|
|
57
57
|
class Queue extends pulumi.CustomResource {
|
package/types/input.d.ts
CHANGED
|
@@ -18447,6 +18447,8 @@ export declare namespace cognitive {
|
|
|
18447
18447
|
interface AccountCustomerManagedKey {
|
|
18448
18448
|
/**
|
|
18449
18449
|
* The Client ID of the User Assigned Identity that has access to the key. This property only needs to be specified when there're multiple identities attached to the Cognitive Account.
|
|
18450
|
+
*
|
|
18451
|
+
* > **Note:** When `projectManagementEnabled` is set to `true`, removing this block forces a new resource to be created.
|
|
18450
18452
|
*/
|
|
18451
18453
|
identityClientId?: pulumi.Input<string>;
|
|
18452
18454
|
/**
|
|
@@ -18478,7 +18480,7 @@ export declare namespace cognitive {
|
|
|
18478
18480
|
/**
|
|
18479
18481
|
* Whether to allow trusted Azure Services to access the service. Possible values are `None` and `AzureServices`.
|
|
18480
18482
|
*
|
|
18481
|
-
* > **Note:** `bypass` can only be set when `kind` is set to `OpenAI`
|
|
18483
|
+
* > **Note:** `bypass` can only be set when `kind` is set to `OpenAI` or `AIServices`.
|
|
18482
18484
|
*/
|
|
18483
18485
|
bypass?: pulumi.Input<string>;
|
|
18484
18486
|
/**
|
|
@@ -18496,7 +18498,7 @@ export declare namespace cognitive {
|
|
|
18496
18498
|
}
|
|
18497
18499
|
interface AccountNetworkAclsVirtualNetworkRule {
|
|
18498
18500
|
/**
|
|
18499
|
-
* Whether ignore missing vnet service endpoint or not.
|
|
18501
|
+
* Whether ignore missing vnet service endpoint or not. Defaults to `false`.
|
|
18500
18502
|
*/
|
|
18501
18503
|
ignoreMissingVnetServiceEndpoint?: pulumi.Input<boolean>;
|
|
18502
18504
|
/**
|
|
@@ -18504,6 +18506,18 @@ export declare namespace cognitive {
|
|
|
18504
18506
|
*/
|
|
18505
18507
|
subnetId: pulumi.Input<string>;
|
|
18506
18508
|
}
|
|
18509
|
+
interface AccountNetworkInjection {
|
|
18510
|
+
/**
|
|
18511
|
+
* Specifies what features network injection applies to. The only possible value is `agent`.
|
|
18512
|
+
*/
|
|
18513
|
+
scenario: pulumi.Input<string>;
|
|
18514
|
+
/**
|
|
18515
|
+
* The ID of the subnet which the Agent Client is injected into.
|
|
18516
|
+
*
|
|
18517
|
+
* > **Note:** The agent subnet must use an address space in the 172.* or 192.* ranges.
|
|
18518
|
+
*/
|
|
18519
|
+
subnetId: pulumi.Input<string>;
|
|
18520
|
+
}
|
|
18507
18521
|
interface AccountRaiPolicyContentFilter {
|
|
18508
18522
|
/**
|
|
18509
18523
|
* Whether the filter should block content. Possible values are `true` or `false`.
|
|
@@ -22493,9 +22507,9 @@ export declare namespace containerapp {
|
|
|
22493
22507
|
*/
|
|
22494
22508
|
commands?: pulumi.Input<pulumi.Input<string>[]>;
|
|
22495
22509
|
/**
|
|
22496
|
-
* The amount of vCPU to allocate to the container.
|
|
22510
|
+
* The amount of vCPU to allocate to the container.
|
|
22497
22511
|
*
|
|
22498
|
-
* > **Note:** `cpu` and `memory` must
|
|
22512
|
+
* > **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
22499
22513
|
*/
|
|
22500
22514
|
cpu: pulumi.Input<number>;
|
|
22501
22515
|
/**
|
|
@@ -22517,9 +22531,9 @@ export declare namespace containerapp {
|
|
|
22517
22531
|
*/
|
|
22518
22532
|
livenessProbes?: pulumi.Input<pulumi.Input<inputs.containerapp.AppTemplateContainerLivenessProbe>[]>;
|
|
22519
22533
|
/**
|
|
22520
|
-
* The amount of memory to allocate to the container.
|
|
22534
|
+
* The amount of memory to allocate to the container.
|
|
22521
22535
|
*
|
|
22522
|
-
* > **Note:** `cpu` and `memory` must
|
|
22536
|
+
* > **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
22523
22537
|
*/
|
|
22524
22538
|
memory: pulumi.Input<string>;
|
|
22525
22539
|
/**
|
|
@@ -22789,9 +22803,9 @@ export declare namespace containerapp {
|
|
|
22789
22803
|
*/
|
|
22790
22804
|
commands?: pulumi.Input<pulumi.Input<string>[]>;
|
|
22791
22805
|
/**
|
|
22792
|
-
* The amount of vCPU to allocate to the container.
|
|
22806
|
+
* The amount of vCPU to allocate to the container.
|
|
22793
22807
|
*
|
|
22794
|
-
* > **Note:** `cpu` and `memory` must
|
|
22808
|
+
* > **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
22795
22809
|
*/
|
|
22796
22810
|
cpu?: pulumi.Input<number>;
|
|
22797
22811
|
/**
|
|
@@ -22809,9 +22823,9 @@ export declare namespace containerapp {
|
|
|
22809
22823
|
*/
|
|
22810
22824
|
image: pulumi.Input<string>;
|
|
22811
22825
|
/**
|
|
22812
|
-
* The amount of memory to allocate to the container.
|
|
22826
|
+
* The amount of memory to allocate to the container.
|
|
22813
22827
|
*
|
|
22814
|
-
* > **Note:** `cpu` and `memory` must
|
|
22828
|
+
* > **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
22815
22829
|
*/
|
|
22816
22830
|
memory?: pulumi.Input<string>;
|
|
22817
22831
|
/**
|
|
@@ -23131,9 +23145,9 @@ export declare namespace containerapp {
|
|
|
23131
23145
|
*/
|
|
23132
23146
|
commands?: pulumi.Input<pulumi.Input<string>[]>;
|
|
23133
23147
|
/**
|
|
23134
|
-
* The amount of vCPU to allocate to the container.
|
|
23148
|
+
* The amount of vCPU to allocate to the container.
|
|
23135
23149
|
*
|
|
23136
|
-
* > **Note:** `cpu` and `memory` must
|
|
23150
|
+
* > **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
23137
23151
|
*/
|
|
23138
23152
|
cpu: pulumi.Input<number>;
|
|
23139
23153
|
/**
|
|
@@ -23155,9 +23169,9 @@ export declare namespace containerapp {
|
|
|
23155
23169
|
*/
|
|
23156
23170
|
livenessProbes?: pulumi.Input<pulumi.Input<inputs.containerapp.JobTemplateContainerLivenessProbe>[]>;
|
|
23157
23171
|
/**
|
|
23158
|
-
* The amount of memory to allocate to the container.
|
|
23172
|
+
* The amount of memory to allocate to the container.
|
|
23159
23173
|
*
|
|
23160
|
-
* > **Note:** `cpu` and `memory` must
|
|
23174
|
+
* > **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
23161
23175
|
*/
|
|
23162
23176
|
memory: pulumi.Input<string>;
|
|
23163
23177
|
/**
|
|
@@ -23371,9 +23385,9 @@ export declare namespace containerapp {
|
|
|
23371
23385
|
*/
|
|
23372
23386
|
commands?: pulumi.Input<pulumi.Input<string>[]>;
|
|
23373
23387
|
/**
|
|
23374
|
-
* The amount of vCPU to allocate to the container.
|
|
23388
|
+
* The amount of vCPU to allocate to the container.
|
|
23375
23389
|
*
|
|
23376
|
-
* > **Note:** `cpu` and `memory` must
|
|
23390
|
+
* > **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
23377
23391
|
*/
|
|
23378
23392
|
cpu?: pulumi.Input<number>;
|
|
23379
23393
|
/**
|
|
@@ -23391,9 +23405,9 @@ export declare namespace containerapp {
|
|
|
23391
23405
|
*/
|
|
23392
23406
|
image: pulumi.Input<string>;
|
|
23393
23407
|
/**
|
|
23394
|
-
* The amount of memory to allocate to the container.
|
|
23408
|
+
* The amount of memory to allocate to the container.
|
|
23395
23409
|
*
|
|
23396
|
-
* > **Note:** `cpu` and `memory` must
|
|
23410
|
+
* > **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
23397
23411
|
*/
|
|
23398
23412
|
memory?: pulumi.Input<string>;
|
|
23399
23413
|
/**
|
|
@@ -50416,13 +50430,13 @@ export declare namespace streamanalytics {
|
|
|
50416
50430
|
/**
|
|
50417
50431
|
* The account key for the Azure storage account.
|
|
50418
50432
|
*/
|
|
50419
|
-
accountKey
|
|
50433
|
+
accountKey?: pulumi.Input<string>;
|
|
50420
50434
|
/**
|
|
50421
50435
|
* The name of the Azure storage account.
|
|
50422
50436
|
*/
|
|
50423
50437
|
accountName: pulumi.Input<string>;
|
|
50424
50438
|
/**
|
|
50425
|
-
* The authentication mode of the storage account.
|
|
50439
|
+
* The authentication mode of the storage account. Possible values are `ConnectionString` and `Msi`. Defaults to `ConnectionString`.
|
|
50426
50440
|
*/
|
|
50427
50441
|
authenticationMode?: pulumi.Input<string>;
|
|
50428
50442
|
}
|