@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
package/types/output.d.ts
CHANGED
|
@@ -24385,6 +24385,8 @@ export declare namespace cognitive {
|
|
|
24385
24385
|
interface AccountCustomerManagedKey {
|
|
24386
24386
|
/**
|
|
24387
24387
|
* 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.
|
|
24388
|
+
*
|
|
24389
|
+
* > **Note:** When `projectManagementEnabled` is set to `true`, removing this block forces a new resource to be created.
|
|
24388
24390
|
*/
|
|
24389
24391
|
identityClientId?: string;
|
|
24390
24392
|
/**
|
|
@@ -24416,7 +24418,7 @@ export declare namespace cognitive {
|
|
|
24416
24418
|
/**
|
|
24417
24419
|
* Whether to allow trusted Azure Services to access the service. Possible values are `None` and `AzureServices`.
|
|
24418
24420
|
*
|
|
24419
|
-
* > **Note:** `bypass` can only be set when `kind` is set to `OpenAI`
|
|
24421
|
+
* > **Note:** `bypass` can only be set when `kind` is set to `OpenAI` or `AIServices`.
|
|
24420
24422
|
*/
|
|
24421
24423
|
bypass?: string;
|
|
24422
24424
|
/**
|
|
@@ -24434,7 +24436,7 @@ export declare namespace cognitive {
|
|
|
24434
24436
|
}
|
|
24435
24437
|
interface AccountNetworkAclsVirtualNetworkRule {
|
|
24436
24438
|
/**
|
|
24437
|
-
* Whether ignore missing vnet service endpoint or not.
|
|
24439
|
+
* Whether ignore missing vnet service endpoint or not. Defaults to `false`.
|
|
24438
24440
|
*/
|
|
24439
24441
|
ignoreMissingVnetServiceEndpoint?: boolean;
|
|
24440
24442
|
/**
|
|
@@ -24442,6 +24444,18 @@ export declare namespace cognitive {
|
|
|
24442
24444
|
*/
|
|
24443
24445
|
subnetId: string;
|
|
24444
24446
|
}
|
|
24447
|
+
interface AccountNetworkInjection {
|
|
24448
|
+
/**
|
|
24449
|
+
* Specifies what features network injection applies to. The only possible value is `agent`.
|
|
24450
|
+
*/
|
|
24451
|
+
scenario: string;
|
|
24452
|
+
/**
|
|
24453
|
+
* The ID of the subnet which the Agent Client is injected into.
|
|
24454
|
+
*
|
|
24455
|
+
* > **Note:** The agent subnet must use an address space in the 172.* or 192.* ranges.
|
|
24456
|
+
*/
|
|
24457
|
+
subnetId: string;
|
|
24458
|
+
}
|
|
24445
24459
|
interface AccountRaiPolicyContentFilter {
|
|
24446
24460
|
/**
|
|
24447
24461
|
* Whether the filter should block content. Possible values are `true` or `false`.
|
|
@@ -29568,9 +29582,9 @@ export declare namespace containerapp {
|
|
|
29568
29582
|
*/
|
|
29569
29583
|
commands?: string[];
|
|
29570
29584
|
/**
|
|
29571
|
-
* The amount of vCPU to allocate to the container.
|
|
29585
|
+
* The amount of vCPU to allocate to the container.
|
|
29572
29586
|
*
|
|
29573
|
-
* > **Note:** `cpu` and `memory` must
|
|
29587
|
+
* > **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)
|
|
29574
29588
|
*/
|
|
29575
29589
|
cpu: number;
|
|
29576
29590
|
/**
|
|
@@ -29592,9 +29606,9 @@ export declare namespace containerapp {
|
|
|
29592
29606
|
*/
|
|
29593
29607
|
livenessProbes?: outputs.containerapp.AppTemplateContainerLivenessProbe[];
|
|
29594
29608
|
/**
|
|
29595
|
-
* The amount of memory to allocate to the container.
|
|
29609
|
+
* The amount of memory to allocate to the container.
|
|
29596
29610
|
*
|
|
29597
|
-
* > **Note:** `cpu` and `memory` must
|
|
29611
|
+
* > **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)
|
|
29598
29612
|
*/
|
|
29599
29613
|
memory: string;
|
|
29600
29614
|
/**
|
|
@@ -29864,9 +29878,9 @@ export declare namespace containerapp {
|
|
|
29864
29878
|
*/
|
|
29865
29879
|
commands?: string[];
|
|
29866
29880
|
/**
|
|
29867
|
-
* The amount of vCPU to allocate to the container.
|
|
29881
|
+
* The amount of vCPU to allocate to the container.
|
|
29868
29882
|
*
|
|
29869
|
-
* > **Note:** `cpu` and `memory` must
|
|
29883
|
+
* > **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)
|
|
29870
29884
|
*/
|
|
29871
29885
|
cpu?: number;
|
|
29872
29886
|
/**
|
|
@@ -29884,9 +29898,9 @@ export declare namespace containerapp {
|
|
|
29884
29898
|
*/
|
|
29885
29899
|
image: string;
|
|
29886
29900
|
/**
|
|
29887
|
-
* The amount of memory to allocate to the container.
|
|
29901
|
+
* The amount of memory to allocate to the container.
|
|
29888
29902
|
*
|
|
29889
|
-
* > **Note:** `cpu` and `memory` must
|
|
29903
|
+
* > **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)
|
|
29890
29904
|
*/
|
|
29891
29905
|
memory?: string;
|
|
29892
29906
|
/**
|
|
@@ -30046,19 +30060,19 @@ export declare namespace containerapp {
|
|
|
30046
30060
|
*/
|
|
30047
30061
|
appPort: number;
|
|
30048
30062
|
/**
|
|
30049
|
-
* The protocol for the app.
|
|
30063
|
+
* The protocol for the app.
|
|
30050
30064
|
*/
|
|
30051
30065
|
appProtocol: string;
|
|
30052
30066
|
}
|
|
30053
30067
|
interface GetAppIdentity {
|
|
30054
30068
|
/**
|
|
30055
|
-
* A list of one or more Resource IDs for User Assigned Managed identities to assign.
|
|
30069
|
+
* A list of one or more Resource IDs for User Assigned Managed identities to assign.
|
|
30056
30070
|
*/
|
|
30057
30071
|
identityIds: string[];
|
|
30058
30072
|
principalId: string;
|
|
30059
30073
|
tenantId: string;
|
|
30060
30074
|
/**
|
|
30061
|
-
* The type of managed identity to assign.
|
|
30075
|
+
* The type of managed identity to assign.
|
|
30062
30076
|
*/
|
|
30063
30077
|
type: string;
|
|
30064
30078
|
}
|
|
@@ -30104,7 +30118,7 @@ export declare namespace containerapp {
|
|
|
30104
30118
|
*/
|
|
30105
30119
|
trafficWeights: outputs.containerapp.GetAppIngressTrafficWeight[];
|
|
30106
30120
|
/**
|
|
30107
|
-
* The transport method for the Ingress.
|
|
30121
|
+
* The transport method for the Ingress.
|
|
30108
30122
|
*/
|
|
30109
30123
|
transport: string;
|
|
30110
30124
|
}
|
|
@@ -30136,7 +30150,7 @@ export declare namespace containerapp {
|
|
|
30136
30150
|
}
|
|
30137
30151
|
interface GetAppIngressCustomDomain {
|
|
30138
30152
|
/**
|
|
30139
|
-
* The Binding type.
|
|
30153
|
+
* The Binding type.
|
|
30140
30154
|
*/
|
|
30141
30155
|
certificateBindingType: string;
|
|
30142
30156
|
/**
|
|
@@ -30190,7 +30204,7 @@ export declare namespace containerapp {
|
|
|
30190
30204
|
*/
|
|
30191
30205
|
identity: string;
|
|
30192
30206
|
/**
|
|
30193
|
-
* The name of the Secret Reference containing the password value for
|
|
30207
|
+
* The name of the Secret Reference containing the password value for the user on the Container Registry.
|
|
30194
30208
|
*/
|
|
30195
30209
|
passwordSecretName: string;
|
|
30196
30210
|
/**
|
|
@@ -30198,7 +30212,7 @@ export declare namespace containerapp {
|
|
|
30198
30212
|
*/
|
|
30199
30213
|
server: string;
|
|
30200
30214
|
/**
|
|
30201
|
-
* The username
|
|
30215
|
+
* The username used for this Container Registry.
|
|
30202
30216
|
*/
|
|
30203
30217
|
username: string;
|
|
30204
30218
|
}
|
|
@@ -30272,15 +30286,15 @@ export declare namespace containerapp {
|
|
|
30272
30286
|
}
|
|
30273
30287
|
interface GetAppTemplateContainer {
|
|
30274
30288
|
/**
|
|
30275
|
-
* A list of extra arguments
|
|
30289
|
+
* A list of extra arguments passed to the container.
|
|
30276
30290
|
*/
|
|
30277
30291
|
args: string[];
|
|
30278
30292
|
/**
|
|
30279
|
-
* A command
|
|
30293
|
+
* A command passed to the container to override the default. This is provided as a list of command line elements without spaces.
|
|
30280
30294
|
*/
|
|
30281
30295
|
commands: string[];
|
|
30282
30296
|
/**
|
|
30283
|
-
* The amount of vCPU
|
|
30297
|
+
* The amount of vCPU allocated to the container.
|
|
30284
30298
|
*/
|
|
30285
30299
|
cpu: number;
|
|
30286
30300
|
/**
|
|
@@ -30300,7 +30314,7 @@ export declare namespace containerapp {
|
|
|
30300
30314
|
*/
|
|
30301
30315
|
livenessProbes: outputs.containerapp.GetAppTemplateContainerLivenessProbe[];
|
|
30302
30316
|
/**
|
|
30303
|
-
* The amount of memory
|
|
30317
|
+
* The amount of memory allocated to the container.
|
|
30304
30318
|
*/
|
|
30305
30319
|
memory: string;
|
|
30306
30320
|
/**
|
|
@@ -30336,7 +30350,7 @@ export declare namespace containerapp {
|
|
|
30336
30350
|
}
|
|
30337
30351
|
interface GetAppTemplateContainerLivenessProbe {
|
|
30338
30352
|
/**
|
|
30339
|
-
* The number of consecutive failures required to consider this probe as failed.
|
|
30353
|
+
* The number of consecutive failures required to consider this probe as failed.
|
|
30340
30354
|
*/
|
|
30341
30355
|
failureCountThreshold: number;
|
|
30342
30356
|
/**
|
|
@@ -30344,15 +30358,15 @@ export declare namespace containerapp {
|
|
|
30344
30358
|
*/
|
|
30345
30359
|
headers: outputs.containerapp.GetAppTemplateContainerLivenessProbeHeader[];
|
|
30346
30360
|
/**
|
|
30347
|
-
* The value for the host header which should be sent with this probe.
|
|
30361
|
+
* The value for the host header which should be sent with this probe.
|
|
30348
30362
|
*/
|
|
30349
30363
|
host: string;
|
|
30350
30364
|
/**
|
|
30351
|
-
* The number of seconds elapsed after the container has started before the probe is initiated.
|
|
30365
|
+
* The number of seconds elapsed after the container has started before the probe is initiated.
|
|
30352
30366
|
*/
|
|
30353
30367
|
initialDelay: number;
|
|
30354
30368
|
/**
|
|
30355
|
-
* How often, in seconds, the probe should run.
|
|
30369
|
+
* How often, in seconds, the probe should run.
|
|
30356
30370
|
*/
|
|
30357
30371
|
intervalSeconds: number;
|
|
30358
30372
|
/**
|
|
@@ -30360,7 +30374,7 @@ export declare namespace containerapp {
|
|
|
30360
30374
|
*/
|
|
30361
30375
|
path: string;
|
|
30362
30376
|
/**
|
|
30363
|
-
* The port number on which to connect.
|
|
30377
|
+
* The port number on which to connect.
|
|
30364
30378
|
*/
|
|
30365
30379
|
port: number;
|
|
30366
30380
|
/**
|
|
@@ -30368,11 +30382,11 @@ export declare namespace containerapp {
|
|
|
30368
30382
|
*/
|
|
30369
30383
|
terminationGracePeriodSeconds: number;
|
|
30370
30384
|
/**
|
|
30371
|
-
* Time in seconds after which the probe times out.
|
|
30385
|
+
* Time in seconds after which the probe times out.
|
|
30372
30386
|
*/
|
|
30373
30387
|
timeout: number;
|
|
30374
30388
|
/**
|
|
30375
|
-
* The transport method for the Ingress.
|
|
30389
|
+
* The transport method for the Ingress.
|
|
30376
30390
|
*/
|
|
30377
30391
|
transport: string;
|
|
30378
30392
|
}
|
|
@@ -30388,7 +30402,7 @@ export declare namespace containerapp {
|
|
|
30388
30402
|
}
|
|
30389
30403
|
interface GetAppTemplateContainerReadinessProbe {
|
|
30390
30404
|
/**
|
|
30391
|
-
* The number of consecutive failures required to consider this probe as failed.
|
|
30405
|
+
* The number of consecutive failures required to consider this probe as failed.
|
|
30392
30406
|
*/
|
|
30393
30407
|
failureCountThreshold: number;
|
|
30394
30408
|
/**
|
|
@@ -30396,15 +30410,15 @@ export declare namespace containerapp {
|
|
|
30396
30410
|
*/
|
|
30397
30411
|
headers: outputs.containerapp.GetAppTemplateContainerReadinessProbeHeader[];
|
|
30398
30412
|
/**
|
|
30399
|
-
* The value for the host header which should be sent with this probe.
|
|
30413
|
+
* The value for the host header which should be sent with this probe.
|
|
30400
30414
|
*/
|
|
30401
30415
|
host: string;
|
|
30402
30416
|
/**
|
|
30403
|
-
* The number of seconds elapsed after the container has started before the probe is initiated.
|
|
30417
|
+
* The number of seconds elapsed after the container has started before the probe is initiated.
|
|
30404
30418
|
*/
|
|
30405
30419
|
initialDelay: number;
|
|
30406
30420
|
/**
|
|
30407
|
-
* How often, in seconds, the probe should run.
|
|
30421
|
+
* How often, in seconds, the probe should run.
|
|
30408
30422
|
*/
|
|
30409
30423
|
intervalSeconds: number;
|
|
30410
30424
|
/**
|
|
@@ -30412,19 +30426,19 @@ export declare namespace containerapp {
|
|
|
30412
30426
|
*/
|
|
30413
30427
|
path: string;
|
|
30414
30428
|
/**
|
|
30415
|
-
* The port number on which to connect.
|
|
30429
|
+
* The port number on which to connect.
|
|
30416
30430
|
*/
|
|
30417
30431
|
port: number;
|
|
30418
30432
|
/**
|
|
30419
|
-
* The number of consecutive successful responses required to consider this probe as successful.
|
|
30433
|
+
* The number of consecutive successful responses required to consider this probe as successful.
|
|
30420
30434
|
*/
|
|
30421
30435
|
successCountThreshold: number;
|
|
30422
30436
|
/**
|
|
30423
|
-
* Time in seconds after which the probe times out.
|
|
30437
|
+
* Time in seconds after which the probe times out.
|
|
30424
30438
|
*/
|
|
30425
30439
|
timeout: number;
|
|
30426
30440
|
/**
|
|
30427
|
-
* The transport method for the Ingress.
|
|
30441
|
+
* The transport method for the Ingress.
|
|
30428
30442
|
*/
|
|
30429
30443
|
transport: string;
|
|
30430
30444
|
}
|
|
@@ -30440,7 +30454,7 @@ export declare namespace containerapp {
|
|
|
30440
30454
|
}
|
|
30441
30455
|
interface GetAppTemplateContainerStartupProbe {
|
|
30442
30456
|
/**
|
|
30443
|
-
* The number of consecutive failures required to consider this probe as failed.
|
|
30457
|
+
* The number of consecutive failures required to consider this probe as failed.
|
|
30444
30458
|
*/
|
|
30445
30459
|
failureCountThreshold: number;
|
|
30446
30460
|
/**
|
|
@@ -30448,15 +30462,15 @@ export declare namespace containerapp {
|
|
|
30448
30462
|
*/
|
|
30449
30463
|
headers: outputs.containerapp.GetAppTemplateContainerStartupProbeHeader[];
|
|
30450
30464
|
/**
|
|
30451
|
-
* The value for the host header which should be sent with this probe.
|
|
30465
|
+
* The value for the host header which should be sent with this probe.
|
|
30452
30466
|
*/
|
|
30453
30467
|
host: string;
|
|
30454
30468
|
/**
|
|
30455
|
-
* The number of seconds elapsed after the container has started before the probe is initiated.
|
|
30469
|
+
* The number of seconds elapsed after the container has started before the probe is initiated.
|
|
30456
30470
|
*/
|
|
30457
30471
|
initialDelay: number;
|
|
30458
30472
|
/**
|
|
30459
|
-
* How often, in seconds, the probe should run.
|
|
30473
|
+
* How often, in seconds, the probe should run.
|
|
30460
30474
|
*/
|
|
30461
30475
|
intervalSeconds: number;
|
|
30462
30476
|
/**
|
|
@@ -30464,7 +30478,7 @@ export declare namespace containerapp {
|
|
|
30464
30478
|
*/
|
|
30465
30479
|
path: string;
|
|
30466
30480
|
/**
|
|
30467
|
-
* The port number on which to connect.
|
|
30481
|
+
* The port number on which to connect.
|
|
30468
30482
|
*/
|
|
30469
30483
|
port: number;
|
|
30470
30484
|
/**
|
|
@@ -30472,11 +30486,11 @@ export declare namespace containerapp {
|
|
|
30472
30486
|
*/
|
|
30473
30487
|
terminationGracePeriodSeconds: number;
|
|
30474
30488
|
/**
|
|
30475
|
-
* Time in seconds after which the probe times out.
|
|
30489
|
+
* Time in seconds after which the probe times out.
|
|
30476
30490
|
*/
|
|
30477
30491
|
timeout: number;
|
|
30478
30492
|
/**
|
|
30479
|
-
* The transport method for the Ingress.
|
|
30493
|
+
* The transport method for the Ingress.
|
|
30480
30494
|
*/
|
|
30481
30495
|
transport: string;
|
|
30482
30496
|
}
|
|
@@ -30539,15 +30553,15 @@ export declare namespace containerapp {
|
|
|
30539
30553
|
}
|
|
30540
30554
|
interface GetAppTemplateInitContainer {
|
|
30541
30555
|
/**
|
|
30542
|
-
* A list of extra arguments
|
|
30556
|
+
* A list of extra arguments passed to the container.
|
|
30543
30557
|
*/
|
|
30544
30558
|
args: string[];
|
|
30545
30559
|
/**
|
|
30546
|
-
* A command
|
|
30560
|
+
* A command passed to the container to override the default. This is provided as a list of command line elements without spaces.
|
|
30547
30561
|
*/
|
|
30548
30562
|
commands: string[];
|
|
30549
30563
|
/**
|
|
30550
|
-
* The amount of vCPU
|
|
30564
|
+
* The amount of vCPU allocated to the container.
|
|
30551
30565
|
*/
|
|
30552
30566
|
cpu: number;
|
|
30553
30567
|
/**
|
|
@@ -30563,7 +30577,7 @@ export declare namespace containerapp {
|
|
|
30563
30577
|
*/
|
|
30564
30578
|
image: string;
|
|
30565
30579
|
/**
|
|
30566
|
-
* The amount of memory
|
|
30580
|
+
* The amount of memory allocated to the container.
|
|
30567
30581
|
*/
|
|
30568
30582
|
memory: string;
|
|
30569
30583
|
/**
|
|
@@ -30632,7 +30646,7 @@ export declare namespace containerapp {
|
|
|
30632
30646
|
*/
|
|
30633
30647
|
storageName: string;
|
|
30634
30648
|
/**
|
|
30635
|
-
* The type of storage volume.
|
|
30649
|
+
* The type of storage volume.
|
|
30636
30650
|
*/
|
|
30637
30651
|
storageType: string;
|
|
30638
30652
|
}
|
|
@@ -30806,9 +30820,9 @@ export declare namespace containerapp {
|
|
|
30806
30820
|
*/
|
|
30807
30821
|
commands?: string[];
|
|
30808
30822
|
/**
|
|
30809
|
-
* The amount of vCPU to allocate to the container.
|
|
30823
|
+
* The amount of vCPU to allocate to the container.
|
|
30810
30824
|
*
|
|
30811
|
-
* > **Note:** `cpu` and `memory` must
|
|
30825
|
+
* > **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)
|
|
30812
30826
|
*/
|
|
30813
30827
|
cpu: number;
|
|
30814
30828
|
/**
|
|
@@ -30830,9 +30844,9 @@ export declare namespace containerapp {
|
|
|
30830
30844
|
*/
|
|
30831
30845
|
livenessProbes?: outputs.containerapp.JobTemplateContainerLivenessProbe[];
|
|
30832
30846
|
/**
|
|
30833
|
-
* The amount of memory to allocate to the container.
|
|
30847
|
+
* The amount of memory to allocate to the container.
|
|
30834
30848
|
*
|
|
30835
|
-
* > **Note:** `cpu` and `memory` must
|
|
30849
|
+
* > **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)
|
|
30836
30850
|
*/
|
|
30837
30851
|
memory: string;
|
|
30838
30852
|
/**
|
|
@@ -31046,9 +31060,9 @@ export declare namespace containerapp {
|
|
|
31046
31060
|
*/
|
|
31047
31061
|
commands?: string[];
|
|
31048
31062
|
/**
|
|
31049
|
-
* The amount of vCPU to allocate to the container.
|
|
31063
|
+
* The amount of vCPU to allocate to the container.
|
|
31050
31064
|
*
|
|
31051
|
-
* > **Note:** `cpu` and `memory` must
|
|
31065
|
+
* > **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)
|
|
31052
31066
|
*/
|
|
31053
31067
|
cpu?: number;
|
|
31054
31068
|
/**
|
|
@@ -31066,9 +31080,9 @@ export declare namespace containerapp {
|
|
|
31066
31080
|
*/
|
|
31067
31081
|
image: string;
|
|
31068
31082
|
/**
|
|
31069
|
-
* The amount of memory to allocate to the container.
|
|
31083
|
+
* The amount of memory to allocate to the container.
|
|
31070
31084
|
*
|
|
31071
|
-
* > **Note:** `cpu` and `memory` must
|
|
31085
|
+
* > **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)
|
|
31072
31086
|
*/
|
|
31073
31087
|
memory?: string;
|
|
31074
31088
|
/**
|
|
@@ -65370,13 +65384,13 @@ export declare namespace streamanalytics {
|
|
|
65370
65384
|
/**
|
|
65371
65385
|
* The account key for the Azure storage account.
|
|
65372
65386
|
*/
|
|
65373
|
-
accountKey
|
|
65387
|
+
accountKey?: string;
|
|
65374
65388
|
/**
|
|
65375
65389
|
* The name of the Azure storage account.
|
|
65376
65390
|
*/
|
|
65377
65391
|
accountName: string;
|
|
65378
65392
|
/**
|
|
65379
|
-
* The authentication mode of the storage account.
|
|
65393
|
+
* The authentication mode of the storage account. Possible values are `ConnectionString` and `Msi`. Defaults to `ConnectionString`.
|
|
65380
65394
|
*/
|
|
65381
65395
|
authenticationMode?: string;
|
|
65382
65396
|
}
|