@pulumi/azure 5.63.0 → 5.64.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/apimanagement/api.d.ts +1 -1
- package/apimanagement/api.js +1 -1
- package/appconfiguration/configurationKey.d.ts +1 -1
- package/appservice/plan.d.ts +1 -1
- package/appservice/plan.js +1 -1
- package/appservice/servicePlan.d.ts +1 -1
- package/appservice/servicePlan.js +1 -1
- package/authorization/assignment.d.ts +6 -0
- package/authorization/assignment.js.map +1 -1
- package/automation/schedule.d.ts +3 -3
- package/chaosstudio/index.d.ts +3 -0
- package/chaosstudio/index.js +22 -0
- package/chaosstudio/index.js.map +1 -0
- package/chaosstudio/target.d.ts +114 -0
- package/chaosstudio/target.js +101 -0
- package/chaosstudio/target.js.map +1 -0
- package/compute/getIpGroups.d.ts +86 -0
- package/compute/getIpGroups.js +55 -0
- package/compute/getIpGroups.js.map +1 -0
- package/compute/index.d.ts +3 -0
- package/compute/index.js +5 -2
- package/compute/index.js.map +1 -1
- package/compute/runCommand.d.ts +2 -2
- package/compute/runCommand.js +2 -2
- package/containerapp/getApp.d.ts +1 -1
- package/datafactory/getTriggerSchedule.d.ts +113 -0
- package/datafactory/getTriggerSchedule.js +52 -0
- package/datafactory/getTriggerSchedule.js.map +1 -0
- package/datafactory/getTriggerSchedules.d.ts +65 -0
- package/datafactory/getTriggerSchedules.js +49 -0
- package/datafactory/getTriggerSchedules.js.map +1 -0
- package/datafactory/index.d.ts +6 -0
- package/datafactory/index.js +8 -2
- package/datafactory/index.js.map +1 -1
- package/datafactory/integrationRuntimeSsis.d.ts +18 -0
- package/datafactory/integrationRuntimeSsis.js +2 -0
- package/datafactory/integrationRuntimeSsis.js.map +1 -1
- package/dataprotection/backupVault.d.ts +3 -3
- package/elasticsan/index.d.ts +3 -0
- package/elasticsan/index.js +6 -1
- package/elasticsan/index.js.map +1 -1
- package/elasticsan/volumeGroup.d.ts +248 -0
- package/elasticsan/volumeGroup.js +184 -0
- package/elasticsan/volumeGroup.js.map +1 -0
- package/index.d.ts +3 -1
- package/index.js +7 -3
- package/index.js.map +1 -1
- package/netapp/account.d.ts +22 -1
- package/netapp/account.js +12 -1
- package/netapp/account.js.map +1 -1
- package/netapp/accountEncryption.d.ts +97 -0
- package/netapp/accountEncryption.js +74 -0
- package/netapp/accountEncryption.js.map +1 -0
- package/netapp/getAccount.d.ts +8 -0
- package/netapp/getAccount.js +1 -0
- package/netapp/getAccount.js.map +1 -1
- package/netapp/getAccountEncryption.d.ts +88 -0
- package/netapp/getAccountEncryption.js +52 -0
- package/netapp/getAccountEncryption.js.map +1 -0
- package/netapp/getVolume.d.ts +2 -0
- package/netapp/getVolume.js.map +1 -1
- package/netapp/index.d.ts +6 -0
- package/netapp/index.js +9 -1
- package/netapp/index.js.map +1 -1
- package/netapp/volume.d.ts +24 -0
- package/netapp/volume.js +4 -0
- package/netapp/volume.js.map +1 -1
- package/network/getIpGroups.d.ts +84 -0
- package/network/getIpGroups.js +52 -0
- package/network/getIpGroups.js.map +1 -0
- package/network/index.d.ts +3 -0
- package/network/index.js +6 -3
- package/network/index.js.map +1 -1
- package/nginx/certificate.d.ts +3 -3
- package/nginx/getCertificate.d.ts +84 -0
- package/nginx/getCertificate.js +52 -0
- package/nginx/getCertificate.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/package.json +1 -1
- package/postgresql/flexibleServer.d.ts +2 -0
- package/postgresql/flexibleServer.js +2 -0
- package/postgresql/flexibleServer.js.map +1 -1
- package/redhatopenshift/cluster.d.ts +197 -0
- package/redhatopenshift/cluster.js +108 -0
- package/redhatopenshift/cluster.js.map +1 -0
- package/redhatopenshift/index.d.ts +3 -0
- package/redhatopenshift/index.js +22 -0
- package/redhatopenshift/index.js.map +1 -0
- package/role/assignment.d.ts +6 -0
- package/role/assignment.js.map +1 -1
- package/streamanalytics/getJob.d.ts +4 -0
- package/streamanalytics/getJob.js.map +1 -1
- package/streamanalytics/job.d.ts +15 -0
- package/streamanalytics/job.js +2 -0
- package/streamanalytics/job.js.map +1 -1
- package/types/input.d.ts +205 -3
- package/types/output.d.ts +253 -3
package/types/input.d.ts
CHANGED
|
@@ -16732,6 +16732,8 @@ export declare namespace cognitive {
|
|
|
16732
16732
|
interface AccountStorage {
|
|
16733
16733
|
/**
|
|
16734
16734
|
* The client ID of the managed identity associated with the storage resource.
|
|
16735
|
+
*
|
|
16736
|
+
* > **NOTE:** Not all `kind` support a `storage` block. For example the `kind` `OpenAI` does not support it.
|
|
16735
16737
|
*/
|
|
16736
16738
|
identityClientId?: pulumi.Input<string>;
|
|
16737
16739
|
/**
|
|
@@ -16749,9 +16751,9 @@ export declare namespace cognitive {
|
|
|
16749
16751
|
*/
|
|
16750
16752
|
name: pulumi.Input<string>;
|
|
16751
16753
|
/**
|
|
16752
|
-
* The version of Cognitive Services Account Deployment model.
|
|
16754
|
+
* The version of Cognitive Services Account Deployment model. If `version` is not specified, the default version of the model at the time will be assigned.
|
|
16753
16755
|
*/
|
|
16754
|
-
version
|
|
16756
|
+
version?: pulumi.Input<string>;
|
|
16755
16757
|
}
|
|
16756
16758
|
interface DeploymentScale {
|
|
16757
16759
|
/**
|
|
@@ -27104,6 +27106,56 @@ export declare namespace elasticsan {
|
|
|
27104
27106
|
*/
|
|
27105
27107
|
tier?: pulumi.Input<string>;
|
|
27106
27108
|
}
|
|
27109
|
+
interface VolumeGroupEncryption {
|
|
27110
|
+
/**
|
|
27111
|
+
* The timestamp of the expiration time for the current version of the customer managed key.
|
|
27112
|
+
*/
|
|
27113
|
+
currentVersionedKeyExpirationTimestamp?: pulumi.Input<string>;
|
|
27114
|
+
/**
|
|
27115
|
+
* The ID of the current versioned Key Vault Key in use.
|
|
27116
|
+
*/
|
|
27117
|
+
currentVersionedKeyId?: pulumi.Input<string>;
|
|
27118
|
+
/**
|
|
27119
|
+
* The Key Vault key URI for Customer Managed Key encryption, which can be either a full URI or a versionless URI.
|
|
27120
|
+
*/
|
|
27121
|
+
keyVaultKeyId: pulumi.Input<string>;
|
|
27122
|
+
/**
|
|
27123
|
+
* The timestamp of the last rotation of the Key Vault Key.
|
|
27124
|
+
*/
|
|
27125
|
+
lastKeyRotationTimestamp?: pulumi.Input<string>;
|
|
27126
|
+
/**
|
|
27127
|
+
* The ID of the User Assigned Identity used by this Elastic SAN Volume Group.
|
|
27128
|
+
*/
|
|
27129
|
+
userAssignedIdentityId?: pulumi.Input<string>;
|
|
27130
|
+
}
|
|
27131
|
+
interface VolumeGroupIdentity {
|
|
27132
|
+
/**
|
|
27133
|
+
* A list of the User Assigned Identity IDs that should be assigned to this Elastic SAN Volume Group.
|
|
27134
|
+
*/
|
|
27135
|
+
identityIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
27136
|
+
/**
|
|
27137
|
+
* The Principal ID associated with the Managed Service Identity assigned to this Elastic SAN Volume Group.
|
|
27138
|
+
*/
|
|
27139
|
+
principalId?: pulumi.Input<string>;
|
|
27140
|
+
/**
|
|
27141
|
+
* The Tenant ID associated with this Managed Service Identity assigned to this Elastic SAN Volume Group.
|
|
27142
|
+
*/
|
|
27143
|
+
tenantId?: pulumi.Input<string>;
|
|
27144
|
+
/**
|
|
27145
|
+
* Specifies the type of Managed Identity that should be assigned to this Elastic SAN Volume Group. Possible values are `SystemAssigned` and `UserAssigned`.
|
|
27146
|
+
*/
|
|
27147
|
+
type: pulumi.Input<string>;
|
|
27148
|
+
}
|
|
27149
|
+
interface VolumeGroupNetworkRule {
|
|
27150
|
+
/**
|
|
27151
|
+
* The action to take when the Subnet attempts to access this Elastic SAN Volume Group. The only possible value is `Allow`. Defaults to `Allow`.
|
|
27152
|
+
*/
|
|
27153
|
+
action?: pulumi.Input<string>;
|
|
27154
|
+
/**
|
|
27155
|
+
* The ID of the Subnet which should be allowed to access this Elastic SAN Volume Group.
|
|
27156
|
+
*/
|
|
27157
|
+
subnetId: pulumi.Input<string>;
|
|
27158
|
+
}
|
|
27107
27159
|
}
|
|
27108
27160
|
export declare namespace eventgrid {
|
|
27109
27161
|
interface DomainIdentity {
|
|
@@ -39815,6 +39867,30 @@ export declare namespace netapp {
|
|
|
39815
39867
|
*/
|
|
39816
39868
|
username: pulumi.Input<string>;
|
|
39817
39869
|
}
|
|
39870
|
+
interface AccountIdentity {
|
|
39871
|
+
/**
|
|
39872
|
+
* The identity id of the user assigned identity to use when type is `UserAssigned`
|
|
39873
|
+
*/
|
|
39874
|
+
identityIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
39875
|
+
principalId?: pulumi.Input<string>;
|
|
39876
|
+
tenantId?: pulumi.Input<string>;
|
|
39877
|
+
/**
|
|
39878
|
+
* The identity type, which can be `SystemAssigned` or `UserAssigned`. Only one type at a time is supported by Azure NetApp Files.
|
|
39879
|
+
*/
|
|
39880
|
+
type: pulumi.Input<string>;
|
|
39881
|
+
}
|
|
39882
|
+
interface GetAccountIdentity {
|
|
39883
|
+
identityIds?: string[];
|
|
39884
|
+
principalId?: string;
|
|
39885
|
+
tenantId?: string;
|
|
39886
|
+
type: string;
|
|
39887
|
+
}
|
|
39888
|
+
interface GetAccountIdentityArgs {
|
|
39889
|
+
identityIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
39890
|
+
principalId?: pulumi.Input<string>;
|
|
39891
|
+
tenantId?: pulumi.Input<string>;
|
|
39892
|
+
type: pulumi.Input<string>;
|
|
39893
|
+
}
|
|
39818
39894
|
interface SnapshotPolicyDailySchedule {
|
|
39819
39895
|
/**
|
|
39820
39896
|
* Hour of the day that the snapshots will be created, valid range is from 0 to 23.
|
|
@@ -44621,6 +44697,132 @@ export declare namespace recoveryservices {
|
|
|
44621
44697
|
alertsForCriticalOperationFailuresEnabled?: pulumi.Input<boolean>;
|
|
44622
44698
|
}
|
|
44623
44699
|
}
|
|
44700
|
+
export declare namespace redhatopenshift {
|
|
44701
|
+
interface ClusterApiServerProfile {
|
|
44702
|
+
/**
|
|
44703
|
+
* The IP Address the Ingress Profile is associated with.
|
|
44704
|
+
*/
|
|
44705
|
+
ipAddress?: pulumi.Input<string>;
|
|
44706
|
+
/**
|
|
44707
|
+
* The URL the API Server Profile is associated with.
|
|
44708
|
+
*/
|
|
44709
|
+
url?: pulumi.Input<string>;
|
|
44710
|
+
/**
|
|
44711
|
+
* Cluster API server visibility. Supported values are `Public` and `Private`. Defaults to `Public`. Changing this forces a new resource to be created.
|
|
44712
|
+
*/
|
|
44713
|
+
visibility: pulumi.Input<string>;
|
|
44714
|
+
}
|
|
44715
|
+
interface ClusterClusterProfile {
|
|
44716
|
+
/**
|
|
44717
|
+
* The custom domain for the cluster. For more info, see [Prepare a custom domain for your cluster](https://docs.microsoft.com/azure/openshift/tutorial-create-cluster#prepare-a-custom-domain-for-your-cluster-optional). Changing this forces a new resource to be created.
|
|
44718
|
+
*/
|
|
44719
|
+
domain: pulumi.Input<string>;
|
|
44720
|
+
/**
|
|
44721
|
+
* Whether Federal Information Processing Standard (FIPS) validated cryptographic modules are used. Defaults to `false`. Changing this forces a new resource to be created.
|
|
44722
|
+
*/
|
|
44723
|
+
fipsEnabled?: pulumi.Input<boolean>;
|
|
44724
|
+
/**
|
|
44725
|
+
* The Red Hat pull secret for the cluster. For more info, see [Get a Red Hat pull secret](https://learn.microsoft.com/azure/openshift/tutorial-create-cluster#get-a-red-hat-pull-secret-optional). Changing this forces a new resource to be created.
|
|
44726
|
+
*/
|
|
44727
|
+
pullSecret?: pulumi.Input<string>;
|
|
44728
|
+
/**
|
|
44729
|
+
* The resource group that the cluster profile is attached to.
|
|
44730
|
+
*/
|
|
44731
|
+
resourceGroupId?: pulumi.Input<string>;
|
|
44732
|
+
/**
|
|
44733
|
+
* The version of the OpenShift cluster. Changing this forces a new resource to be created.
|
|
44734
|
+
*/
|
|
44735
|
+
version: pulumi.Input<string>;
|
|
44736
|
+
}
|
|
44737
|
+
interface ClusterIngressProfile {
|
|
44738
|
+
/**
|
|
44739
|
+
* The IP Address the Ingress Profile is associated with.
|
|
44740
|
+
*/
|
|
44741
|
+
ipAddress?: pulumi.Input<string>;
|
|
44742
|
+
/**
|
|
44743
|
+
* The name of the Azure Red Hat OpenShift Cluster to create. Changing this forces a new resource to be created.
|
|
44744
|
+
*/
|
|
44745
|
+
name?: pulumi.Input<string>;
|
|
44746
|
+
/**
|
|
44747
|
+
* Cluster Ingress visibility. Supported values are `Public` and `Private`. Defaults to `Public`. Changing this forces a new resource to be created.
|
|
44748
|
+
*/
|
|
44749
|
+
visibility: pulumi.Input<string>;
|
|
44750
|
+
}
|
|
44751
|
+
interface ClusterMainProfile {
|
|
44752
|
+
/**
|
|
44753
|
+
* The resource ID of an associated disk encryption set. Changing this forces a new resource to be created.
|
|
44754
|
+
*/
|
|
44755
|
+
diskEncryptionSetId?: pulumi.Input<string>;
|
|
44756
|
+
/**
|
|
44757
|
+
* Whether main virtual machines are encrypted at host. Defaults to `false`. Changing this forces a new resource to be created.
|
|
44758
|
+
*
|
|
44759
|
+
* **NOTE:** `encryptionAtHostEnabled` is only available for certain VM sizes and the `EncryptionAtHost` feature must be enabled for your subscription. Please see the [Azure documentation](https://learn.microsoft.com/azure/virtual-machines/disks-enable-host-based-encryption-portal?tabs=azure-powershell) for more information.
|
|
44760
|
+
*/
|
|
44761
|
+
encryptionAtHostEnabled?: pulumi.Input<boolean>;
|
|
44762
|
+
/**
|
|
44763
|
+
* The ID of the subnet where main nodes will be hosted. Changing this forces a new resource to be created.
|
|
44764
|
+
*/
|
|
44765
|
+
subnetId: pulumi.Input<string>;
|
|
44766
|
+
/**
|
|
44767
|
+
* The size of the Virtual Machines for the main nodes. Changing this forces a new resource to be created.
|
|
44768
|
+
*/
|
|
44769
|
+
vmSize: pulumi.Input<string>;
|
|
44770
|
+
}
|
|
44771
|
+
interface ClusterNetworkProfile {
|
|
44772
|
+
/**
|
|
44773
|
+
* The outbound (egress) routing method. Possible values are `Loadbalancer` and `UserDefinedRouting`. Defaults to `LoadBalancer`. Changing this forces a new resource to be created.
|
|
44774
|
+
*/
|
|
44775
|
+
outboundType?: pulumi.Input<string>;
|
|
44776
|
+
/**
|
|
44777
|
+
* The CIDR to use for pod IP addresses. Changing this forces a new resource to be created.
|
|
44778
|
+
*/
|
|
44779
|
+
podCidr: pulumi.Input<string>;
|
|
44780
|
+
/**
|
|
44781
|
+
* The network range used by the OpenShift service. Changing this forces a new resource to be created.
|
|
44782
|
+
*/
|
|
44783
|
+
serviceCidr: pulumi.Input<string>;
|
|
44784
|
+
}
|
|
44785
|
+
interface ClusterServicePrincipal {
|
|
44786
|
+
/**
|
|
44787
|
+
* The Client ID for the Service Principal.
|
|
44788
|
+
*/
|
|
44789
|
+
clientId: pulumi.Input<string>;
|
|
44790
|
+
/**
|
|
44791
|
+
* The Client Secret for the Service Principal.
|
|
44792
|
+
*
|
|
44793
|
+
* > **Note:** Currently a service principal cannot be associated with more than one ARO clusters on the Azure subscription.
|
|
44794
|
+
*/
|
|
44795
|
+
clientSecret: pulumi.Input<string>;
|
|
44796
|
+
}
|
|
44797
|
+
interface ClusterWorkerProfile {
|
|
44798
|
+
/**
|
|
44799
|
+
* The resource ID of an associated disk encryption set. Changing this forces a new resource to be created.
|
|
44800
|
+
*/
|
|
44801
|
+
diskEncryptionSetId?: pulumi.Input<string>;
|
|
44802
|
+
/**
|
|
44803
|
+
* The internal OS disk size of the worker Virtual Machines in GB. Changing this forces a new resource to be created.
|
|
44804
|
+
*/
|
|
44805
|
+
diskSizeGb: pulumi.Input<number>;
|
|
44806
|
+
/**
|
|
44807
|
+
* Whether worker virtual machines are encrypted at host. Defaults to `false`. Changing this forces a new resource to be created.
|
|
44808
|
+
*
|
|
44809
|
+
* **NOTE:** `encryptionAtHostEnabled` is only available for certain VM sizes and the `EncryptionAtHost` feature must be enabled for your subscription. Please see the [Azure documentation](https://learn.microsoft.com/azure/virtual-machines/disks-enable-host-based-encryption-portal?tabs=azure-powershell) for more information.
|
|
44810
|
+
*/
|
|
44811
|
+
encryptionAtHostEnabled?: pulumi.Input<boolean>;
|
|
44812
|
+
/**
|
|
44813
|
+
* The initial number of worker nodes which should exist in the cluster. Changing this forces a new resource to be created.
|
|
44814
|
+
*/
|
|
44815
|
+
nodeCount: pulumi.Input<number>;
|
|
44816
|
+
/**
|
|
44817
|
+
* The ID of the subnet where worker nodes will be hosted. Changing this forces a new resource to be created.
|
|
44818
|
+
*/
|
|
44819
|
+
subnetId: pulumi.Input<string>;
|
|
44820
|
+
/**
|
|
44821
|
+
* The size of the Virtual Machines for the worker nodes. Changing this forces a new resource to be created.
|
|
44822
|
+
*/
|
|
44823
|
+
vmSize: pulumi.Input<string>;
|
|
44824
|
+
}
|
|
44825
|
+
}
|
|
44624
44826
|
export declare namespace redis {
|
|
44625
44827
|
interface CacheIdentity {
|
|
44626
44828
|
/**
|
|
@@ -47168,7 +47370,7 @@ export declare namespace storage {
|
|
|
47168
47370
|
}
|
|
47169
47371
|
interface AccountNetworkRulesPrivateLinkAccess {
|
|
47170
47372
|
/**
|
|
47171
|
-
* The
|
|
47373
|
+
* The ID of the Azure resource that should be allowed access to the target storage account.
|
|
47172
47374
|
*/
|
|
47173
47375
|
endpointResourceId: pulumi.Input<string>;
|
|
47174
47376
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -22436,6 +22436,8 @@ export declare namespace cognitive {
|
|
|
22436
22436
|
interface AccountStorage {
|
|
22437
22437
|
/**
|
|
22438
22438
|
* The client ID of the managed identity associated with the storage resource.
|
|
22439
|
+
*
|
|
22440
|
+
* > **NOTE:** Not all `kind` support a `storage` block. For example the `kind` `OpenAI` does not support it.
|
|
22439
22441
|
*/
|
|
22440
22442
|
identityClientId?: string;
|
|
22441
22443
|
/**
|
|
@@ -22453,9 +22455,9 @@ export declare namespace cognitive {
|
|
|
22453
22455
|
*/
|
|
22454
22456
|
name: string;
|
|
22455
22457
|
/**
|
|
22456
|
-
* The version of Cognitive Services Account Deployment model.
|
|
22458
|
+
* The version of Cognitive Services Account Deployment model. If `version` is not specified, the default version of the model at the time will be assigned.
|
|
22457
22459
|
*/
|
|
22458
|
-
version
|
|
22460
|
+
version?: string;
|
|
22459
22461
|
}
|
|
22460
22462
|
interface DeploymentScale {
|
|
22461
22463
|
/**
|
|
@@ -27572,6 +27574,10 @@ export declare namespace containerapp {
|
|
|
27572
27574
|
* The FQDN of the ingress.
|
|
27573
27575
|
*/
|
|
27574
27576
|
fqdn: string;
|
|
27577
|
+
/**
|
|
27578
|
+
* One or more `ipSecurityRestriction` blocks for IP-filtering rules as defined below.
|
|
27579
|
+
*/
|
|
27580
|
+
ipSecurityRestrictions: outputs.containerapp.GetAppIngressIpSecurityRestriction[];
|
|
27575
27581
|
/**
|
|
27576
27582
|
* The target port on the container for the Ingress traffic.
|
|
27577
27583
|
*/
|
|
@@ -27599,6 +27605,24 @@ export declare namespace containerapp {
|
|
|
27599
27605
|
*/
|
|
27600
27606
|
name: string;
|
|
27601
27607
|
}
|
|
27608
|
+
interface GetAppIngressIpSecurityRestriction {
|
|
27609
|
+
/**
|
|
27610
|
+
* The IP-filter action.
|
|
27611
|
+
*/
|
|
27612
|
+
action: string;
|
|
27613
|
+
/**
|
|
27614
|
+
* Description of the IP restriction rule that is being sent to the container-app.
|
|
27615
|
+
*/
|
|
27616
|
+
description: string;
|
|
27617
|
+
/**
|
|
27618
|
+
* CIDR notation that matches the incoming IP address.
|
|
27619
|
+
*/
|
|
27620
|
+
ipAddressRange: string;
|
|
27621
|
+
/**
|
|
27622
|
+
* The name of the Container App.
|
|
27623
|
+
*/
|
|
27624
|
+
name: string;
|
|
27625
|
+
}
|
|
27602
27626
|
interface GetAppIngressTrafficWeight {
|
|
27603
27627
|
/**
|
|
27604
27628
|
* The label to apply to the revision as a name prefix for routing traffic.
|
|
@@ -33750,6 +33774,38 @@ export declare namespace datafactory {
|
|
|
33750
33774
|
*/
|
|
33751
33775
|
tenantId: string;
|
|
33752
33776
|
}
|
|
33777
|
+
interface GetTriggerScheduleSchedule {
|
|
33778
|
+
/**
|
|
33779
|
+
* Day(s) of the month on which the trigger is scheduled.
|
|
33780
|
+
*/
|
|
33781
|
+
daysOfMonths: number[];
|
|
33782
|
+
/**
|
|
33783
|
+
* Day(s) of the week on which the trigger is scheduled.
|
|
33784
|
+
*/
|
|
33785
|
+
daysOfWeeks: string[];
|
|
33786
|
+
/**
|
|
33787
|
+
* Hours of the day on which the trigger is scheduled.
|
|
33788
|
+
*/
|
|
33789
|
+
hours: number[];
|
|
33790
|
+
/**
|
|
33791
|
+
* Minutes of the hour on which the trigger is scheduled.
|
|
33792
|
+
*/
|
|
33793
|
+
minutes: number[];
|
|
33794
|
+
/**
|
|
33795
|
+
* A `monthly` block as documented below, which specifies the days of the month on which the trigger is scheduled.
|
|
33796
|
+
*/
|
|
33797
|
+
monthlies: outputs.datafactory.GetTriggerScheduleScheduleMonthly[];
|
|
33798
|
+
}
|
|
33799
|
+
interface GetTriggerScheduleScheduleMonthly {
|
|
33800
|
+
/**
|
|
33801
|
+
* The occurrence of the specified day during the month.
|
|
33802
|
+
*/
|
|
33803
|
+
week: number;
|
|
33804
|
+
/**
|
|
33805
|
+
* The day of the week on which the trigger runs.
|
|
33806
|
+
*/
|
|
33807
|
+
weekday: string;
|
|
33808
|
+
}
|
|
33753
33809
|
interface IntegrationRuntimeManagedCatalogInfo {
|
|
33754
33810
|
/**
|
|
33755
33811
|
* Administrator login name for the SQL Server.
|
|
@@ -35217,6 +35273,56 @@ export declare namespace elasticsan {
|
|
|
35217
35273
|
*/
|
|
35218
35274
|
tier?: string;
|
|
35219
35275
|
}
|
|
35276
|
+
interface VolumeGroupEncryption {
|
|
35277
|
+
/**
|
|
35278
|
+
* The timestamp of the expiration time for the current version of the customer managed key.
|
|
35279
|
+
*/
|
|
35280
|
+
currentVersionedKeyExpirationTimestamp: string;
|
|
35281
|
+
/**
|
|
35282
|
+
* The ID of the current versioned Key Vault Key in use.
|
|
35283
|
+
*/
|
|
35284
|
+
currentVersionedKeyId: string;
|
|
35285
|
+
/**
|
|
35286
|
+
* The Key Vault key URI for Customer Managed Key encryption, which can be either a full URI or a versionless URI.
|
|
35287
|
+
*/
|
|
35288
|
+
keyVaultKeyId: string;
|
|
35289
|
+
/**
|
|
35290
|
+
* The timestamp of the last rotation of the Key Vault Key.
|
|
35291
|
+
*/
|
|
35292
|
+
lastKeyRotationTimestamp: string;
|
|
35293
|
+
/**
|
|
35294
|
+
* The ID of the User Assigned Identity used by this Elastic SAN Volume Group.
|
|
35295
|
+
*/
|
|
35296
|
+
userAssignedIdentityId?: string;
|
|
35297
|
+
}
|
|
35298
|
+
interface VolumeGroupIdentity {
|
|
35299
|
+
/**
|
|
35300
|
+
* A list of the User Assigned Identity IDs that should be assigned to this Elastic SAN Volume Group.
|
|
35301
|
+
*/
|
|
35302
|
+
identityIds?: string[];
|
|
35303
|
+
/**
|
|
35304
|
+
* The Principal ID associated with the Managed Service Identity assigned to this Elastic SAN Volume Group.
|
|
35305
|
+
*/
|
|
35306
|
+
principalId: string;
|
|
35307
|
+
/**
|
|
35308
|
+
* The Tenant ID associated with this Managed Service Identity assigned to this Elastic SAN Volume Group.
|
|
35309
|
+
*/
|
|
35310
|
+
tenantId: string;
|
|
35311
|
+
/**
|
|
35312
|
+
* Specifies the type of Managed Identity that should be assigned to this Elastic SAN Volume Group. Possible values are `SystemAssigned` and `UserAssigned`.
|
|
35313
|
+
*/
|
|
35314
|
+
type: string;
|
|
35315
|
+
}
|
|
35316
|
+
interface VolumeGroupNetworkRule {
|
|
35317
|
+
/**
|
|
35318
|
+
* The action to take when the Subnet attempts to access this Elastic SAN Volume Group. The only possible value is `Allow`. Defaults to `Allow`.
|
|
35319
|
+
*/
|
|
35320
|
+
action?: string;
|
|
35321
|
+
/**
|
|
35322
|
+
* The ID of the Subnet which should be allowed to access this Elastic SAN Volume Group.
|
|
35323
|
+
*/
|
|
35324
|
+
subnetId: string;
|
|
35325
|
+
}
|
|
35220
35326
|
}
|
|
35221
35327
|
export declare namespace eventgrid {
|
|
35222
35328
|
interface DomainIdentity {
|
|
@@ -49929,6 +50035,24 @@ export declare namespace netapp {
|
|
|
49929
50035
|
*/
|
|
49930
50036
|
username: string;
|
|
49931
50037
|
}
|
|
50038
|
+
interface AccountIdentity {
|
|
50039
|
+
/**
|
|
50040
|
+
* The identity id of the user assigned identity to use when type is `UserAssigned`
|
|
50041
|
+
*/
|
|
50042
|
+
identityIds?: string[];
|
|
50043
|
+
principalId: string;
|
|
50044
|
+
tenantId: string;
|
|
50045
|
+
/**
|
|
50046
|
+
* The identity type, which can be `SystemAssigned` or `UserAssigned`. Only one type at a time is supported by Azure NetApp Files.
|
|
50047
|
+
*/
|
|
50048
|
+
type: string;
|
|
50049
|
+
}
|
|
50050
|
+
interface GetAccountIdentity {
|
|
50051
|
+
identityIds?: string[];
|
|
50052
|
+
principalId: string;
|
|
50053
|
+
tenantId: string;
|
|
50054
|
+
type: string;
|
|
50055
|
+
}
|
|
49932
50056
|
interface GetSnapshotPolicyDailySchedule {
|
|
49933
50057
|
/**
|
|
49934
50058
|
* Hour of the day that the snapshots will be created.
|
|
@@ -56819,6 +56943,132 @@ export declare namespace recoveryservices {
|
|
|
56819
56943
|
alertsForCriticalOperationFailuresEnabled?: boolean;
|
|
56820
56944
|
}
|
|
56821
56945
|
}
|
|
56946
|
+
export declare namespace redhatopenshift {
|
|
56947
|
+
interface ClusterApiServerProfile {
|
|
56948
|
+
/**
|
|
56949
|
+
* The IP Address the Ingress Profile is associated with.
|
|
56950
|
+
*/
|
|
56951
|
+
ipAddress: string;
|
|
56952
|
+
/**
|
|
56953
|
+
* The URL the API Server Profile is associated with.
|
|
56954
|
+
*/
|
|
56955
|
+
url: string;
|
|
56956
|
+
/**
|
|
56957
|
+
* Cluster API server visibility. Supported values are `Public` and `Private`. Defaults to `Public`. Changing this forces a new resource to be created.
|
|
56958
|
+
*/
|
|
56959
|
+
visibility: string;
|
|
56960
|
+
}
|
|
56961
|
+
interface ClusterClusterProfile {
|
|
56962
|
+
/**
|
|
56963
|
+
* The custom domain for the cluster. For more info, see [Prepare a custom domain for your cluster](https://docs.microsoft.com/azure/openshift/tutorial-create-cluster#prepare-a-custom-domain-for-your-cluster-optional). Changing this forces a new resource to be created.
|
|
56964
|
+
*/
|
|
56965
|
+
domain: string;
|
|
56966
|
+
/**
|
|
56967
|
+
* Whether Federal Information Processing Standard (FIPS) validated cryptographic modules are used. Defaults to `false`. Changing this forces a new resource to be created.
|
|
56968
|
+
*/
|
|
56969
|
+
fipsEnabled?: boolean;
|
|
56970
|
+
/**
|
|
56971
|
+
* The Red Hat pull secret for the cluster. For more info, see [Get a Red Hat pull secret](https://learn.microsoft.com/azure/openshift/tutorial-create-cluster#get-a-red-hat-pull-secret-optional). Changing this forces a new resource to be created.
|
|
56972
|
+
*/
|
|
56973
|
+
pullSecret?: string;
|
|
56974
|
+
/**
|
|
56975
|
+
* The resource group that the cluster profile is attached to.
|
|
56976
|
+
*/
|
|
56977
|
+
resourceGroupId: string;
|
|
56978
|
+
/**
|
|
56979
|
+
* The version of the OpenShift cluster. Changing this forces a new resource to be created.
|
|
56980
|
+
*/
|
|
56981
|
+
version: string;
|
|
56982
|
+
}
|
|
56983
|
+
interface ClusterIngressProfile {
|
|
56984
|
+
/**
|
|
56985
|
+
* The IP Address the Ingress Profile is associated with.
|
|
56986
|
+
*/
|
|
56987
|
+
ipAddress: string;
|
|
56988
|
+
/**
|
|
56989
|
+
* The name of the Azure Red Hat OpenShift Cluster to create. Changing this forces a new resource to be created.
|
|
56990
|
+
*/
|
|
56991
|
+
name: string;
|
|
56992
|
+
/**
|
|
56993
|
+
* Cluster Ingress visibility. Supported values are `Public` and `Private`. Defaults to `Public`. Changing this forces a new resource to be created.
|
|
56994
|
+
*/
|
|
56995
|
+
visibility: string;
|
|
56996
|
+
}
|
|
56997
|
+
interface ClusterMainProfile {
|
|
56998
|
+
/**
|
|
56999
|
+
* The resource ID of an associated disk encryption set. Changing this forces a new resource to be created.
|
|
57000
|
+
*/
|
|
57001
|
+
diskEncryptionSetId?: string;
|
|
57002
|
+
/**
|
|
57003
|
+
* Whether main virtual machines are encrypted at host. Defaults to `false`. Changing this forces a new resource to be created.
|
|
57004
|
+
*
|
|
57005
|
+
* **NOTE:** `encryptionAtHostEnabled` is only available for certain VM sizes and the `EncryptionAtHost` feature must be enabled for your subscription. Please see the [Azure documentation](https://learn.microsoft.com/azure/virtual-machines/disks-enable-host-based-encryption-portal?tabs=azure-powershell) for more information.
|
|
57006
|
+
*/
|
|
57007
|
+
encryptionAtHostEnabled?: boolean;
|
|
57008
|
+
/**
|
|
57009
|
+
* The ID of the subnet where main nodes will be hosted. Changing this forces a new resource to be created.
|
|
57010
|
+
*/
|
|
57011
|
+
subnetId: string;
|
|
57012
|
+
/**
|
|
57013
|
+
* The size of the Virtual Machines for the main nodes. Changing this forces a new resource to be created.
|
|
57014
|
+
*/
|
|
57015
|
+
vmSize: string;
|
|
57016
|
+
}
|
|
57017
|
+
interface ClusterNetworkProfile {
|
|
57018
|
+
/**
|
|
57019
|
+
* The outbound (egress) routing method. Possible values are `Loadbalancer` and `UserDefinedRouting`. Defaults to `LoadBalancer`. Changing this forces a new resource to be created.
|
|
57020
|
+
*/
|
|
57021
|
+
outboundType?: string;
|
|
57022
|
+
/**
|
|
57023
|
+
* The CIDR to use for pod IP addresses. Changing this forces a new resource to be created.
|
|
57024
|
+
*/
|
|
57025
|
+
podCidr: string;
|
|
57026
|
+
/**
|
|
57027
|
+
* The network range used by the OpenShift service. Changing this forces a new resource to be created.
|
|
57028
|
+
*/
|
|
57029
|
+
serviceCidr: string;
|
|
57030
|
+
}
|
|
57031
|
+
interface ClusterServicePrincipal {
|
|
57032
|
+
/**
|
|
57033
|
+
* The Client ID for the Service Principal.
|
|
57034
|
+
*/
|
|
57035
|
+
clientId: string;
|
|
57036
|
+
/**
|
|
57037
|
+
* The Client Secret for the Service Principal.
|
|
57038
|
+
*
|
|
57039
|
+
* > **Note:** Currently a service principal cannot be associated with more than one ARO clusters on the Azure subscription.
|
|
57040
|
+
*/
|
|
57041
|
+
clientSecret: string;
|
|
57042
|
+
}
|
|
57043
|
+
interface ClusterWorkerProfile {
|
|
57044
|
+
/**
|
|
57045
|
+
* The resource ID of an associated disk encryption set. Changing this forces a new resource to be created.
|
|
57046
|
+
*/
|
|
57047
|
+
diskEncryptionSetId?: string;
|
|
57048
|
+
/**
|
|
57049
|
+
* The internal OS disk size of the worker Virtual Machines in GB. Changing this forces a new resource to be created.
|
|
57050
|
+
*/
|
|
57051
|
+
diskSizeGb: number;
|
|
57052
|
+
/**
|
|
57053
|
+
* Whether worker virtual machines are encrypted at host. Defaults to `false`. Changing this forces a new resource to be created.
|
|
57054
|
+
*
|
|
57055
|
+
* **NOTE:** `encryptionAtHostEnabled` is only available for certain VM sizes and the `EncryptionAtHost` feature must be enabled for your subscription. Please see the [Azure documentation](https://learn.microsoft.com/azure/virtual-machines/disks-enable-host-based-encryption-portal?tabs=azure-powershell) for more information.
|
|
57056
|
+
*/
|
|
57057
|
+
encryptionAtHostEnabled?: boolean;
|
|
57058
|
+
/**
|
|
57059
|
+
* The initial number of worker nodes which should exist in the cluster. Changing this forces a new resource to be created.
|
|
57060
|
+
*/
|
|
57061
|
+
nodeCount: number;
|
|
57062
|
+
/**
|
|
57063
|
+
* The ID of the subnet where worker nodes will be hosted. Changing this forces a new resource to be created.
|
|
57064
|
+
*/
|
|
57065
|
+
subnetId: string;
|
|
57066
|
+
/**
|
|
57067
|
+
* The size of the Virtual Machines for the worker nodes. Changing this forces a new resource to be created.
|
|
57068
|
+
*/
|
|
57069
|
+
vmSize: string;
|
|
57070
|
+
}
|
|
57071
|
+
}
|
|
56822
57072
|
export declare namespace redis {
|
|
56823
57073
|
interface CacheIdentity {
|
|
56824
57074
|
/**
|
|
@@ -59728,7 +59978,7 @@ export declare namespace storage {
|
|
|
59728
59978
|
}
|
|
59729
59979
|
interface AccountNetworkRulesPrivateLinkAccess {
|
|
59730
59980
|
/**
|
|
59731
|
-
* The
|
|
59981
|
+
* The ID of the Azure resource that should be allowed access to the target storage account.
|
|
59732
59982
|
*/
|
|
59733
59983
|
endpointResourceId: string;
|
|
59734
59984
|
/**
|