@pulumi/azure 5.65.0-alpha.1707286518 → 5.65.0
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/appconfiguration/configurationKey.d.ts +15 -3
- package/appconfiguration/configurationKey.js.map +1 -1
- package/appplatform/index.d.ts +6 -0
- package/appplatform/index.js +11 -1
- package/appplatform/index.js.map +1 -1
- package/appplatform/springCloudApiPortal.d.ts +13 -0
- package/appplatform/springCloudApiPortal.js +3 -0
- package/appplatform/springCloudApiPortal.js.map +1 -1
- package/appplatform/springCloudElasticApplicationPerformanceMonitoring.d.ts +145 -0
- package/appplatform/springCloudElasticApplicationPerformanceMonitoring.js +108 -0
- package/appplatform/springCloudElasticApplicationPerformanceMonitoring.js.map +1 -0
- package/appplatform/springCloudGateway.d.ts +28 -0
- package/appplatform/springCloudGateway.js +8 -0
- package/appplatform/springCloudGateway.js.map +1 -1
- package/appplatform/springCloudNewRelicApplicationPerformanceMonitoring.d.ts +224 -0
- package/appplatform/springCloudNewRelicApplicationPerformanceMonitoring.js +120 -0
- package/appplatform/springCloudNewRelicApplicationPerformanceMonitoring.js.map +1 -0
- package/authorization/assignment.d.ts +1 -1
- package/authorization/assignment.js +1 -1
- package/bot/channelEmail.d.ts +14 -2
- package/bot/channelEmail.js +3 -4
- package/bot/channelEmail.js.map +1 -1
- package/compute/getIpGroups.d.ts +2 -2
- package/compute/getIpGroups.js +2 -2
- package/compute/image.d.ts +3 -9
- package/compute/image.js.map +1 -1
- package/containerservice/fleetUpdateStrategy.d.ts +111 -0
- package/containerservice/fleetUpdateStrategy.js +96 -0
- package/containerservice/fleetUpdateStrategy.js.map +1 -0
- package/containerservice/index.d.ts +3 -0
- package/containerservice/index.js +6 -1
- package/containerservice/index.js.map +1 -1
- package/containerservice/kubernetesCluster.d.ts +6 -12
- package/containerservice/kubernetesCluster.js.map +1 -1
- package/containerservice/kubernetesClusterNodePool.d.ts +3 -3
- package/cosmosdb/account.d.ts +12 -0
- package/cosmosdb/account.js +2 -0
- package/cosmosdb/account.js.map +1 -1
- package/desktopvirtualization/getWorkspace.d.ts +94 -0
- package/desktopvirtualization/getWorkspace.js +52 -0
- package/desktopvirtualization/getWorkspace.js.map +1 -0
- package/desktopvirtualization/index.d.ts +3 -0
- package/desktopvirtualization/index.js +4 -1
- package/desktopvirtualization/index.js.map +1 -1
- package/eventhub/topic.d.ts +3 -6
- package/eventhub/topic.js.map +1 -1
- package/lab/lab.d.ts +2 -2
- package/lab/lab.js +3 -0
- package/lab/lab.js.map +1 -1
- package/lb/probe.d.ts +4 -4
- package/machinelearning/workspace.d.ts +3 -3
- package/network/getIpGroups.d.ts +2 -2
- package/network/getIpGroups.js +2 -2
- package/nginx/getConfiguration.d.ts +75 -0
- package/nginx/getConfiguration.js +49 -0
- package/nginx/getConfiguration.js.map +1 -0
- package/nginx/index.d.ts +3 -0
- package/nginx/index.js +4 -1
- package/nginx/index.js.map +1 -1
- package/orbital/contact.d.ts +3 -3
- package/orbital/spacecraft.d.ts +2 -2
- package/orbital/spacecraft.js +2 -2
- package/package.json +1 -1
- package/provider.js +1 -1
- package/provider.js.map +1 -1
- package/role/assignment.d.ts +1 -1
- package/role/assignment.js +1 -1
- package/servicebus/topic.d.ts +3 -6
- package/servicebus/topic.js.map +1 -1
- package/siterecovery/index.d.ts +3 -0
- package/siterecovery/index.js +6 -1
- package/siterecovery/index.js.map +1 -1
- package/siterecovery/vmwareReplicatedVm.d.ts +444 -0
- package/siterecovery/vmwareReplicatedVm.js +182 -0
- package/siterecovery/vmwareReplicatedVm.js.map +1 -0
- package/storage/blob.d.ts +0 -3
- package/storage/blob.js.map +1 -1
- package/storage/getAccountBlobContainerSAS.d.ts +1 -1
- package/types/input.d.ts +171 -3
- package/types/output.d.ts +195 -3
package/types/output.d.ts
CHANGED
|
@@ -2978,6 +2978,26 @@ export declare namespace appplatform {
|
|
|
2978
2978
|
*/
|
|
2979
2979
|
maxAgeSeconds?: number;
|
|
2980
2980
|
}
|
|
2981
|
+
interface SpringCloudGatewayLocalResponseCachePerInstance {
|
|
2982
|
+
/**
|
|
2983
|
+
* Specifies the maximum size of cache (10MB, 900KB, 1GB...) to determine if the cache needs to evict some entries.
|
|
2984
|
+
*/
|
|
2985
|
+
size?: string;
|
|
2986
|
+
/**
|
|
2987
|
+
* Specifies the time before a cached entry is expired (300s, 5m, 1h...).
|
|
2988
|
+
*/
|
|
2989
|
+
timeToLive?: string;
|
|
2990
|
+
}
|
|
2991
|
+
interface SpringCloudGatewayLocalResponseCachePerRoute {
|
|
2992
|
+
/**
|
|
2993
|
+
* Specifies the maximum size of cache (10MB, 900KB, 1GB...) to determine if the cache needs to evict some entries.
|
|
2994
|
+
*/
|
|
2995
|
+
size?: string;
|
|
2996
|
+
/**
|
|
2997
|
+
* Specifies the time before a cached entry is expired (300s, 5m, 1h...).
|
|
2998
|
+
*/
|
|
2999
|
+
timeToLive?: string;
|
|
3000
|
+
}
|
|
2981
3001
|
interface SpringCloudGatewayQuota {
|
|
2982
3002
|
/**
|
|
2983
3003
|
* Specifies the required cpu of the Spring Cloud Deployment. Possible Values are `500m`, `1`, `2`, `3` and `4`. Defaults to `1` if not specified.
|
|
@@ -28332,6 +28352,26 @@ export declare namespace containerservice {
|
|
|
28332
28352
|
*/
|
|
28333
28353
|
tag?: string;
|
|
28334
28354
|
}
|
|
28355
|
+
interface FleetUpdateStrategyStage {
|
|
28356
|
+
/**
|
|
28357
|
+
* Specifies the time in seconds to wait at the end of this stage before starting the next one.
|
|
28358
|
+
*/
|
|
28359
|
+
afterStageWaitInSeconds?: number;
|
|
28360
|
+
/**
|
|
28361
|
+
* One or more `group` blocks as defined below.
|
|
28362
|
+
*/
|
|
28363
|
+
groups: outputs.containerservice.FleetUpdateStrategyStageGroup[];
|
|
28364
|
+
/**
|
|
28365
|
+
* The name which should be used for this stage.
|
|
28366
|
+
*/
|
|
28367
|
+
name: string;
|
|
28368
|
+
}
|
|
28369
|
+
interface FleetUpdateStrategyStageGroup {
|
|
28370
|
+
/**
|
|
28371
|
+
* The name which should be used for this group.
|
|
28372
|
+
*/
|
|
28373
|
+
name: string;
|
|
28374
|
+
}
|
|
28335
28375
|
interface FluxConfigurationBlobStorage {
|
|
28336
28376
|
/**
|
|
28337
28377
|
* Specifies the account key (shared key) to access the storage account.
|
|
@@ -29932,6 +29972,14 @@ export declare namespace containerservice {
|
|
|
29932
29972
|
vmVfsCachePressure?: number;
|
|
29933
29973
|
}
|
|
29934
29974
|
interface KubernetesClusterDefaultNodePoolNodeNetworkProfile {
|
|
29975
|
+
/**
|
|
29976
|
+
* One or more `allowedHostPorts` blocks as defined below.
|
|
29977
|
+
*/
|
|
29978
|
+
allowedHostPorts?: outputs.containerservice.KubernetesClusterDefaultNodePoolNodeNetworkProfileAllowedHostPort[];
|
|
29979
|
+
/**
|
|
29980
|
+
* A list of Application Security Group IDs which should be associated with this Node Pool.
|
|
29981
|
+
*/
|
|
29982
|
+
applicationSecurityGroupIds?: string[];
|
|
29935
29983
|
/**
|
|
29936
29984
|
* Specifies a mapping of tags to the instance-level public IPs. Changing this forces a new resource to be created.
|
|
29937
29985
|
*
|
|
@@ -29941,6 +29989,20 @@ export declare namespace containerservice {
|
|
|
29941
29989
|
[key: string]: string;
|
|
29942
29990
|
};
|
|
29943
29991
|
}
|
|
29992
|
+
interface KubernetesClusterDefaultNodePoolNodeNetworkProfileAllowedHostPort {
|
|
29993
|
+
/**
|
|
29994
|
+
* Specifies the end of the port range.
|
|
29995
|
+
*/
|
|
29996
|
+
portEnd?: number;
|
|
29997
|
+
/**
|
|
29998
|
+
* Specifies the start of the port range.
|
|
29999
|
+
*/
|
|
30000
|
+
portStart?: number;
|
|
30001
|
+
/**
|
|
30002
|
+
* Specifies the protocol of the port range. Possible values are `TCP` and `UDP`.
|
|
30003
|
+
*/
|
|
30004
|
+
protocol?: string;
|
|
30005
|
+
}
|
|
29944
30006
|
interface KubernetesClusterDefaultNodePoolUpgradeSettings {
|
|
29945
30007
|
/**
|
|
29946
30008
|
* The maximum number or percentage of nodes which will be added to the Node Pool size during an upgrade.
|
|
@@ -30342,6 +30404,8 @@ export declare namespace containerservice {
|
|
|
30342
30404
|
annotationsAllowed?: string;
|
|
30343
30405
|
/**
|
|
30344
30406
|
* Specifies a Comma-separated list of additional Kubernetes label keys that will be used in the resource's labels metric.
|
|
30407
|
+
*
|
|
30408
|
+
* > **Note:** Both properties `annotationsAllowed` and `labelsAllowed` are required if you are enabling Managed Prometheus with an existing Azure Monitor Workspace.
|
|
30345
30409
|
*/
|
|
30346
30410
|
labelsAllowed?: string;
|
|
30347
30411
|
}
|
|
@@ -30668,6 +30732,14 @@ export declare namespace containerservice {
|
|
|
30668
30732
|
vmVfsCachePressure?: number;
|
|
30669
30733
|
}
|
|
30670
30734
|
interface KubernetesClusterNodePoolNodeNetworkProfile {
|
|
30735
|
+
/**
|
|
30736
|
+
* One or more `allowedHostPorts` blocks as defined below.
|
|
30737
|
+
*/
|
|
30738
|
+
allowedHostPorts?: outputs.containerservice.KubernetesClusterNodePoolNodeNetworkProfileAllowedHostPort[];
|
|
30739
|
+
/**
|
|
30740
|
+
* A list of Application Security Group IDs which should be associated with this Node Pool.
|
|
30741
|
+
*/
|
|
30742
|
+
applicationSecurityGroupIds?: string[];
|
|
30671
30743
|
/**
|
|
30672
30744
|
* Specifies a mapping of tags to the instance-level public IPs. Changing this forces a new resource to be created.
|
|
30673
30745
|
*
|
|
@@ -30677,6 +30749,20 @@ export declare namespace containerservice {
|
|
|
30677
30749
|
[key: string]: string;
|
|
30678
30750
|
};
|
|
30679
30751
|
}
|
|
30752
|
+
interface KubernetesClusterNodePoolNodeNetworkProfileAllowedHostPort {
|
|
30753
|
+
/**
|
|
30754
|
+
* Specifies the end of the port range.
|
|
30755
|
+
*/
|
|
30756
|
+
portEnd?: number;
|
|
30757
|
+
/**
|
|
30758
|
+
* Specifies the start of the port range.
|
|
30759
|
+
*/
|
|
30760
|
+
portStart?: number;
|
|
30761
|
+
/**
|
|
30762
|
+
* Specifies the protocol of the port range. Possible values are `TCP` and `UDP`.
|
|
30763
|
+
*/
|
|
30764
|
+
protocol?: string;
|
|
30765
|
+
}
|
|
30680
30766
|
interface KubernetesClusterNodePoolUpgradeSettings {
|
|
30681
30767
|
/**
|
|
30682
30768
|
* The maximum number or percentage of nodes which will be added to the Node Pool size during an upgrade.
|
|
@@ -31967,6 +32053,10 @@ export declare namespace cosmosdb {
|
|
|
31967
32053
|
* A `database` block as defined below. Changing this forces a new resource to be created.
|
|
31968
32054
|
*/
|
|
31969
32055
|
databases?: outputs.cosmosdb.AccountRestoreDatabase[];
|
|
32056
|
+
/**
|
|
32057
|
+
* One or more `gremlinDatabase` blocks as defined below. Changing this forces a new resource to be created.
|
|
32058
|
+
*/
|
|
32059
|
+
gremlinDatabases?: outputs.cosmosdb.AccountRestoreGremlinDatabase[];
|
|
31970
32060
|
/**
|
|
31971
32061
|
* The creation time of the database or the collection (Datetime Format `RFC 3339`). Changing this forces a new resource to be created.
|
|
31972
32062
|
*/
|
|
@@ -31977,6 +32067,10 @@ export declare namespace cosmosdb {
|
|
|
31977
32067
|
* > **NOTE:** Any database account with `Continuous` type (live account or accounts deleted in last 30 days) is a restorable database account and there cannot be Create/Update/Delete operations on the restorable database accounts. They can only be read and retrieved by `azure.cosmosdb.getRestorableDatabaseAccounts`.
|
|
31978
32068
|
*/
|
|
31979
32069
|
sourceCosmosdbAccountId: string;
|
|
32070
|
+
/**
|
|
32071
|
+
* A list of specific tables available for restore. Changing this forces a new resource to be created.
|
|
32072
|
+
*/
|
|
32073
|
+
tablesToRestores?: string[];
|
|
31980
32074
|
}
|
|
31981
32075
|
interface AccountRestoreDatabase {
|
|
31982
32076
|
/**
|
|
@@ -31988,6 +32082,16 @@ export declare namespace cosmosdb {
|
|
|
31988
32082
|
*/
|
|
31989
32083
|
name: string;
|
|
31990
32084
|
}
|
|
32085
|
+
interface AccountRestoreGremlinDatabase {
|
|
32086
|
+
/**
|
|
32087
|
+
* A list of the Graph names for the restore request. Changing this forces a new resource to be created.
|
|
32088
|
+
*/
|
|
32089
|
+
graphNames?: string[];
|
|
32090
|
+
/**
|
|
32091
|
+
* The Gremlin Database name for the restore request. Changing this forces a new resource to be created.
|
|
32092
|
+
*/
|
|
32093
|
+
name: string;
|
|
32094
|
+
}
|
|
31991
32095
|
interface AccountVirtualNetworkRule {
|
|
31992
32096
|
/**
|
|
31993
32097
|
* The ID of the virtual network subnet.
|
|
@@ -49400,6 +49504,10 @@ export declare namespace mssql {
|
|
|
49400
49504
|
storageUri: string;
|
|
49401
49505
|
}
|
|
49402
49506
|
interface DatabaseLongTermRetentionPolicy {
|
|
49507
|
+
/**
|
|
49508
|
+
* Specifies if the backups are immutable. Defaults to `false`.
|
|
49509
|
+
*/
|
|
49510
|
+
immutableBackupsEnabled?: boolean;
|
|
49403
49511
|
/**
|
|
49404
49512
|
* The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. `P1Y`, `P1M`, `P4W` or `P30D`.
|
|
49405
49513
|
*/
|
|
@@ -49580,6 +49688,10 @@ export declare namespace mssql {
|
|
|
49580
49688
|
type: string;
|
|
49581
49689
|
}
|
|
49582
49690
|
interface ManagedDatabaseLongTermRetentionPolicy {
|
|
49691
|
+
/**
|
|
49692
|
+
* Specifies if the backups are immutable. Defaults to `false`.
|
|
49693
|
+
*/
|
|
49694
|
+
immutableBackupsEnabled?: boolean;
|
|
49583
49695
|
/**
|
|
49584
49696
|
* The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. `P1Y`, `P1M`, `P4W` or `P30D`.
|
|
49585
49697
|
*/
|
|
@@ -55195,7 +55307,7 @@ export declare namespace network {
|
|
|
55195
55307
|
*/
|
|
55196
55308
|
name: string;
|
|
55197
55309
|
/**
|
|
55198
|
-
* The public certificate of the root certificate authority. The certificate must be provided in Base-64 encoded X.509 format (PEM). In particular, this argument *must not* include the `-----BEGIN CERTIFICATE-----` or `-----END CERTIFICATE-----` markers.
|
|
55310
|
+
* The public certificate of the root certificate authority. The certificate must be provided in Base-64 encoded X.509 format (PEM). In particular, this argument *must not* include the `-----BEGIN CERTIFICATE-----` or `-----END CERTIFICATE-----` markers, nor any newlines.
|
|
55199
55311
|
*/
|
|
55200
55312
|
publicCertData: string;
|
|
55201
55313
|
}
|
|
@@ -55799,6 +55911,26 @@ export declare namespace nginx {
|
|
|
55799
55911
|
*/
|
|
55800
55912
|
subnetId: string;
|
|
55801
55913
|
}
|
|
55914
|
+
interface GetConfigurationConfigFile {
|
|
55915
|
+
/**
|
|
55916
|
+
* The base-64 encoded contents of this configuration file.
|
|
55917
|
+
*/
|
|
55918
|
+
content: string;
|
|
55919
|
+
/**
|
|
55920
|
+
* The path of this configuration file.
|
|
55921
|
+
*/
|
|
55922
|
+
virtualPath: string;
|
|
55923
|
+
}
|
|
55924
|
+
interface GetConfigurationProtectedFile {
|
|
55925
|
+
/**
|
|
55926
|
+
* The base-64 encoded contents of this configuration file.
|
|
55927
|
+
*/
|
|
55928
|
+
content: string;
|
|
55929
|
+
/**
|
|
55930
|
+
* The path of this configuration file.
|
|
55931
|
+
*/
|
|
55932
|
+
virtualPath: string;
|
|
55933
|
+
}
|
|
55802
55934
|
interface GetDeploymentFrontendPrivate {
|
|
55803
55935
|
/**
|
|
55804
55936
|
* The method of allocating the private IP to the Nginx Deployment.
|
|
@@ -56013,6 +56145,8 @@ export declare namespace orbital {
|
|
|
56013
56145
|
bandwidthMhz: number;
|
|
56014
56146
|
/**
|
|
56015
56147
|
* Center frequency in Mhz.
|
|
56148
|
+
*
|
|
56149
|
+
* > **Note:** The value of `centerFrequencyMhz +/- bandwidthMhz / 2` should fall in one of these ranges: `Uplink/LHCP`: [2025, 2120]; `Uplink/Linear`: [399, 403],[435, 438],[449, 451]; `Uplink/RHCP`: [399, 403],[435, 438],[449, 451],[2025, 2120]; `Downlink/LHCP`: [2200, 2300], [7500, 8400]; `Downlink/Linear`: [399, 403], [435, 438], [449, 451]; Downlink/Linear`: [399, 403], [435, 438], [449, 451], [2200, 2300], [7500, 8400]
|
|
56016
56150
|
*/
|
|
56017
56151
|
centerFrequencyMhz: number;
|
|
56018
56152
|
/**
|
|
@@ -56112,6 +56246,7 @@ export declare namespace paloalto {
|
|
|
56112
56246
|
networkVirtualApplianceId: string;
|
|
56113
56247
|
publicIpAddressIds: string[];
|
|
56114
56248
|
publicIpAddresses: string[];
|
|
56249
|
+
trustedAddressRanges?: string[];
|
|
56115
56250
|
trustedSubnetId: string;
|
|
56116
56251
|
untrustedSubnetId: string;
|
|
56117
56252
|
virtualHubId: string;
|
|
@@ -56142,6 +56277,7 @@ export declare namespace paloalto {
|
|
|
56142
56277
|
networkVirtualApplianceId: string;
|
|
56143
56278
|
publicIpAddressIds: string[];
|
|
56144
56279
|
publicIpAddresses: string[];
|
|
56280
|
+
trustedAddressRanges?: string[];
|
|
56145
56281
|
trustedSubnetId: string;
|
|
56146
56282
|
untrustedSubnetId: string;
|
|
56147
56283
|
virtualHubId: string;
|
|
@@ -56217,6 +56353,10 @@ export declare namespace paloalto {
|
|
|
56217
56353
|
*/
|
|
56218
56354
|
publicIpAddressIds: string[];
|
|
56219
56355
|
publicIpAddresses: string[];
|
|
56356
|
+
/**
|
|
56357
|
+
* Specifies a list of trusted ranges to use for the Network.
|
|
56358
|
+
*/
|
|
56359
|
+
trustedAddressRanges?: string[];
|
|
56220
56360
|
/**
|
|
56221
56361
|
* A `vnetConfiguration` block as defined below.
|
|
56222
56362
|
*/
|
|
@@ -56299,6 +56439,10 @@ export declare namespace paloalto {
|
|
|
56299
56439
|
*/
|
|
56300
56440
|
publicIpAddressIds: string[];
|
|
56301
56441
|
publicIpAddresses: string[];
|
|
56442
|
+
/**
|
|
56443
|
+
* Specifies a list of trusted ranges to use for the Network.
|
|
56444
|
+
*/
|
|
56445
|
+
trustedAddressRanges?: string[];
|
|
56302
56446
|
/**
|
|
56303
56447
|
* A `vnetConfiguration` block as defined below.
|
|
56304
56448
|
*/
|
|
@@ -57225,7 +57369,7 @@ export declare namespace redhatopenshift {
|
|
|
57225
57369
|
*/
|
|
57226
57370
|
resourceGroupId: string;
|
|
57227
57371
|
/**
|
|
57228
|
-
* The version of the OpenShift cluster. Changing this forces a new resource to be created.
|
|
57372
|
+
* The version of the OpenShift cluster. Available versions can be found with the Azure CLI command `az aro get-versions --location <region>`. Changing this forces a new resource to be created.
|
|
57229
57373
|
*/
|
|
57230
57374
|
version: string;
|
|
57231
57375
|
}
|
|
@@ -59813,6 +59957,46 @@ export declare namespace siterecovery {
|
|
|
59813
59957
|
*/
|
|
59814
59958
|
type: string;
|
|
59815
59959
|
}
|
|
59960
|
+
interface VmwareReplicatedVmManagedDisk {
|
|
59961
|
+
/**
|
|
59962
|
+
* The ID of the disk to be replicated. Changing this forces a new resource to be created.
|
|
59963
|
+
*/
|
|
59964
|
+
diskId: string;
|
|
59965
|
+
/**
|
|
59966
|
+
* The ID of the storage account that should be used for logging during replication.
|
|
59967
|
+
*/
|
|
59968
|
+
logStorageAccountId?: string;
|
|
59969
|
+
/**
|
|
59970
|
+
* The ID of the Disk Encryption Set that should be used for the disks when a failover is done.
|
|
59971
|
+
*/
|
|
59972
|
+
targetDiskEncryptionSetId?: string;
|
|
59973
|
+
/**
|
|
59974
|
+
* The disk type of the disk to be created when a failover is done. Possible values are `Standard_LRS`, `Standard_LRS` and `StandardSSD_LRS`.
|
|
59975
|
+
*/
|
|
59976
|
+
targetDiskType: string;
|
|
59977
|
+
}
|
|
59978
|
+
interface VmwareReplicatedVmNetworkInterface {
|
|
59979
|
+
/**
|
|
59980
|
+
* Whether this `networkInterface` is primary for the replicated VM.
|
|
59981
|
+
*/
|
|
59982
|
+
isPrimary: boolean;
|
|
59983
|
+
/**
|
|
59984
|
+
* Mac address of the network interface of source VM.
|
|
59985
|
+
*/
|
|
59986
|
+
sourceMacAddress: string;
|
|
59987
|
+
/**
|
|
59988
|
+
* Static IP to assign when a failover is done.
|
|
59989
|
+
*/
|
|
59990
|
+
targetStaticIp?: string;
|
|
59991
|
+
/**
|
|
59992
|
+
* Name of the subnet to use when a failover is done.
|
|
59993
|
+
*/
|
|
59994
|
+
targetSubnetName?: string;
|
|
59995
|
+
/**
|
|
59996
|
+
* Name of the subnet to use when a test failover is done.
|
|
59997
|
+
*/
|
|
59998
|
+
testSubnetName?: string;
|
|
59999
|
+
}
|
|
59816
60000
|
}
|
|
59817
60001
|
export declare namespace sql {
|
|
59818
60002
|
interface DatabaseImport {
|
|
@@ -61234,6 +61418,10 @@ export declare namespace streamanalytics {
|
|
|
61234
61418
|
type: string;
|
|
61235
61419
|
}
|
|
61236
61420
|
interface GetJobIdentity {
|
|
61421
|
+
/**
|
|
61422
|
+
* A list of User Assigned Managed Identity IDs assigned to this resource.
|
|
61423
|
+
*/
|
|
61424
|
+
identityIds: string[];
|
|
61237
61425
|
/**
|
|
61238
61426
|
* The Principal ID associated with this Managed Service Identity.
|
|
61239
61427
|
*/
|
|
@@ -61248,6 +61436,10 @@ export declare namespace streamanalytics {
|
|
|
61248
61436
|
type: string;
|
|
61249
61437
|
}
|
|
61250
61438
|
interface JobIdentity {
|
|
61439
|
+
/**
|
|
61440
|
+
* The identity id of the user assigned identity to use when type is `UserAssigned`
|
|
61441
|
+
*/
|
|
61442
|
+
identityIds?: string[];
|
|
61251
61443
|
/**
|
|
61252
61444
|
* The Principal ID associated with this Managed Service Identity.
|
|
61253
61445
|
*/
|
|
@@ -61257,7 +61449,7 @@ export declare namespace streamanalytics {
|
|
|
61257
61449
|
*/
|
|
61258
61450
|
tenantId: string;
|
|
61259
61451
|
/**
|
|
61260
|
-
* Specifies the type of Managed Service Identity that should be configured on this Stream Analytics Job.
|
|
61452
|
+
* Specifies the type of Managed Service Identity that should be configured on this Stream Analytics Job. Possible values are `SystemAssigned` and `UserAssigned`.
|
|
61261
61453
|
*/
|
|
61262
61454
|
type: string;
|
|
61263
61455
|
}
|