@pulumi/azure 5.66.0-alpha.1707498359 → 5.66.0-alpha.1707859387
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/appplatform/index.d.ts +3 -0
- package/appplatform/index.js +6 -1
- package/appplatform/index.js.map +1 -1
- package/appplatform/springCloudAppDynamicsApplicationPerformanceMonitoring.d.ts +220 -0
- package/appplatform/springCloudAppDynamicsApplicationPerformanceMonitoring.js +125 -0
- package/appplatform/springCloudAppDynamicsApplicationPerformanceMonitoring.js.map +1 -0
- package/appservice/environmentV3.d.ts +3 -0
- package/appservice/environmentV3.js +2 -0
- package/appservice/environmentV3.js.map +1 -1
- package/appservice/getEnvironmentV3.d.ts +1 -0
- package/appservice/getEnvironmentV3.js.map +1 -1
- package/chaosstudio/capability.d.ts +116 -0
- package/chaosstudio/capability.js +107 -0
- package/chaosstudio/capability.js.map +1 -0
- package/chaosstudio/experiment.d.ts +207 -0
- package/chaosstudio/experiment.js +165 -0
- package/chaosstudio/experiment.js.map +1 -0
- package/chaosstudio/index.d.ts +6 -0
- package/chaosstudio/index.js +11 -1
- package/chaosstudio/index.js.map +1 -1
- package/containerservice/fleetMember.d.ts +138 -0
- package/containerservice/fleetMember.js +115 -0
- package/containerservice/fleetMember.js.map +1 -0
- package/containerservice/fleetUpdateStrategy.d.ts +1 -1
- package/containerservice/fleetUpdateStrategy.js +1 -1
- package/containerservice/index.d.ts +3 -0
- package/containerservice/index.js +6 -1
- package/containerservice/index.js.map +1 -1
- package/databricks/getAccessConnector.d.ts +87 -0
- package/databricks/getAccessConnector.js +52 -0
- package/databricks/getAccessConnector.js.map +1 -0
- package/databricks/index.d.ts +3 -0
- package/databricks/index.js +4 -1
- package/databricks/index.js.map +1 -1
- package/dataprotection/backupPolicyKubernetesCluster.d.ts +133 -0
- package/dataprotection/backupPolicyKubernetesCluster.js +84 -0
- package/dataprotection/backupPolicyKubernetesCluster.js.map +1 -0
- package/dataprotection/backupPolicyPostgresql.d.ts +3 -3
- package/dataprotection/index.d.ts +3 -0
- package/dataprotection/index.js +6 -1
- package/dataprotection/index.js.map +1 -1
- package/devcenter/gallery.d.ts +120 -0
- package/devcenter/gallery.js +107 -0
- package/devcenter/gallery.js.map +1 -0
- package/devcenter/index.d.ts +3 -0
- package/devcenter/index.js +6 -1
- package/devcenter/index.js.map +1 -1
- package/iotcentral/index.d.ts +3 -0
- package/iotcentral/index.js +6 -1
- package/iotcentral/index.js.map +1 -1
- package/iotcentral/organization.d.ts +126 -0
- package/iotcentral/organization.js +106 -0
- package/iotcentral/organization.js.map +1 -0
- package/lb/rule.d.ts +12 -12
- package/loganalytics/workspaceTable.d.ts +19 -6
- package/loganalytics/workspaceTable.js +3 -0
- package/loganalytics/workspaceTable.js.map +1 -1
- package/machinelearning/workspace.d.ts +24 -0
- package/machinelearning/workspace.js +4 -0
- package/machinelearning/workspace.js.map +1 -1
- package/network/trafficManagerAzureEndpoint.d.ts +13 -0
- package/network/trafficManagerAzureEndpoint.js +3 -0
- package/network/trafficManagerAzureEndpoint.js.map +1 -1
- package/network/trafficManagerExternalEndpoint.d.ts +13 -0
- package/network/trafficManagerExternalEndpoint.js +3 -0
- package/network/trafficManagerExternalEndpoint.js.map +1 -1
- package/package.json +1 -1
- package/storage/account.d.ts +12 -0
- package/storage/account.js +2 -0
- package/storage/account.js.map +1 -1
- package/types/input.d.ts +162 -4
- package/types/output.d.ts +180 -4
package/types/output.d.ts
CHANGED
|
@@ -22617,6 +22617,82 @@ export declare namespace cdn {
|
|
|
22617
22617
|
subjectAlternativeNames: string[];
|
|
22618
22618
|
}
|
|
22619
22619
|
}
|
|
22620
|
+
export declare namespace chaosstudio {
|
|
22621
|
+
interface ExperimentIdentity {
|
|
22622
|
+
/**
|
|
22623
|
+
* A list of User Managed Identity IDs which should be assigned to the Policy Definition.
|
|
22624
|
+
*
|
|
22625
|
+
* > **NOTE:** This is required when `type` is set to `UserAssigned`.
|
|
22626
|
+
*/
|
|
22627
|
+
identityIds?: string[];
|
|
22628
|
+
/**
|
|
22629
|
+
* The Principal ID associated with this Managed Service Identity.
|
|
22630
|
+
*/
|
|
22631
|
+
principalId: string;
|
|
22632
|
+
/**
|
|
22633
|
+
* The Tenant ID associated with this Managed Service Identity.
|
|
22634
|
+
*/
|
|
22635
|
+
tenantId: string;
|
|
22636
|
+
/**
|
|
22637
|
+
* The Type of Managed Identity which should be added to this Policy Definition. Possible values are `SystemAssigned` and `UserAssigned`.
|
|
22638
|
+
*/
|
|
22639
|
+
type: string;
|
|
22640
|
+
}
|
|
22641
|
+
interface ExperimentSelector {
|
|
22642
|
+
/**
|
|
22643
|
+
* A list of Chaos Studio Target IDs that should be part of this Selector.
|
|
22644
|
+
*/
|
|
22645
|
+
chaosStudioTargetIds: string[];
|
|
22646
|
+
/**
|
|
22647
|
+
* The name of this Selector.
|
|
22648
|
+
*/
|
|
22649
|
+
name: string;
|
|
22650
|
+
}
|
|
22651
|
+
interface ExperimentStep {
|
|
22652
|
+
/**
|
|
22653
|
+
* One or more `branch` blocks as defined above.
|
|
22654
|
+
*/
|
|
22655
|
+
branches: outputs.chaosstudio.ExperimentStepBranch[];
|
|
22656
|
+
/**
|
|
22657
|
+
* The name of the Step.
|
|
22658
|
+
*/
|
|
22659
|
+
name: string;
|
|
22660
|
+
}
|
|
22661
|
+
interface ExperimentStepBranch {
|
|
22662
|
+
/**
|
|
22663
|
+
* One or more `actions` blocks as defined above.
|
|
22664
|
+
*/
|
|
22665
|
+
actions: outputs.chaosstudio.ExperimentStepBranchAction[];
|
|
22666
|
+
/**
|
|
22667
|
+
* The name of the branch.
|
|
22668
|
+
*/
|
|
22669
|
+
name: string;
|
|
22670
|
+
}
|
|
22671
|
+
interface ExperimentStepBranchAction {
|
|
22672
|
+
/**
|
|
22673
|
+
* The type of action that should be added to the experiment. Possible values are `continuous`, `delay` and `discrete`.
|
|
22674
|
+
*/
|
|
22675
|
+
actionType: string;
|
|
22676
|
+
/**
|
|
22677
|
+
* An ISO8601 formatted string specifying the duration for a `delay` or `continuous` action.
|
|
22678
|
+
*/
|
|
22679
|
+
duration?: string;
|
|
22680
|
+
/**
|
|
22681
|
+
* A key-value map of additional parameters to configure the action. The values that are accepted by this depend on the `urn` i.e. the capability/fault that is applied. Possible parameter values can be found in this [documentation](https://learn.microsoft.com/azure/chaos-studio/chaos-studio-fault-library)
|
|
22682
|
+
*/
|
|
22683
|
+
parameters?: {
|
|
22684
|
+
[key: string]: string;
|
|
22685
|
+
};
|
|
22686
|
+
/**
|
|
22687
|
+
* The name of the Selector to which this action should apply to. This must be specified if the `actionType` is `continuous` or `discrete`.
|
|
22688
|
+
*/
|
|
22689
|
+
selectorName?: string;
|
|
22690
|
+
/**
|
|
22691
|
+
* The Unique Resource Name of the action, this value is provided by the `azure.chaosstudio.Capability` resource e.g. `azurerm_chaos_studio_capability.example.urn`. This must be specified if the `actionType` is `continuous` or `discrete`.
|
|
22692
|
+
*/
|
|
22693
|
+
urn?: string;
|
|
22694
|
+
}
|
|
22695
|
+
}
|
|
22620
22696
|
export declare namespace cognitive {
|
|
22621
22697
|
interface AccountCustomerManagedKey {
|
|
22622
22698
|
/**
|
|
@@ -27372,7 +27448,7 @@ export declare namespace containerapp {
|
|
|
27372
27448
|
*/
|
|
27373
27449
|
commands?: string[];
|
|
27374
27450
|
/**
|
|
27375
|
-
* The amount of vCPU to allocate to the container. Possible values include `0.25`, `0.5`, `0.75`, `1.0`, `1.25`, `1.5`, `1.75`, and `2.0`.
|
|
27451
|
+
* The amount of vCPU to allocate to the container. Possible values include `0.25`, `0.5`, `0.75`, `1.0`, `1.25`, `1.5`, `1.75`, and `2.0`. When there's a workload profile specified, there's no such constraint.
|
|
27376
27452
|
*
|
|
27377
27453
|
* > **NOTE:** `cpu` and `memory` must be specified in `0.25'/'0.5Gi` combination increments. e.g. `1.0` / `2.0` or `0.5` / `1.0`
|
|
27378
27454
|
*/
|
|
@@ -27396,7 +27472,7 @@ export declare namespace containerapp {
|
|
|
27396
27472
|
*/
|
|
27397
27473
|
livenessProbes?: outputs.containerapp.AppTemplateContainerLivenessProbe[];
|
|
27398
27474
|
/**
|
|
27399
|
-
* The amount of memory to allocate to the container. Possible values are `0.5Gi`, `1Gi`, `1.5Gi`, `2Gi`, `2.5Gi`, `3Gi`, `3.5Gi` and `4Gi`.
|
|
27475
|
+
* The amount of memory to allocate to the container. Possible values are `0.5Gi`, `1Gi`, `1.5Gi`, `2Gi`, `2.5Gi`, `3Gi`, `3.5Gi` and `4Gi`. When there's a workload profile specified, there's no such constraint.
|
|
27400
27476
|
*
|
|
27401
27477
|
* > **NOTE:** `cpu` and `memory` must be specified in `0.25'/'0.5Gi` combination increments. e.g. `1.25` / `2.5Gi` or `0.75` / `1.5Gi`
|
|
27402
27478
|
*/
|
|
@@ -27656,7 +27732,7 @@ export declare namespace containerapp {
|
|
|
27656
27732
|
*/
|
|
27657
27733
|
commands?: string[];
|
|
27658
27734
|
/**
|
|
27659
|
-
* The amount of vCPU to allocate to the container. Possible values include `0.25`, `0.5`, `0.75`, `1.0`, `1.25`, `1.5`, `1.75`, and `2.0`.
|
|
27735
|
+
* The amount of vCPU to allocate to the container. Possible values include `0.25`, `0.5`, `0.75`, `1.0`, `1.25`, `1.5`, `1.75`, and `2.0`. When there's a workload profile specified, there's no such constraint.
|
|
27660
27736
|
*
|
|
27661
27737
|
* > **NOTE:** `cpu` and `memory` must be specified in `0.25'/'0.5Gi` combination increments. e.g. `1.0` / `2.0` or `0.5` / `1.0`
|
|
27662
27738
|
*/
|
|
@@ -27676,7 +27752,7 @@ export declare namespace containerapp {
|
|
|
27676
27752
|
*/
|
|
27677
27753
|
image: string;
|
|
27678
27754
|
/**
|
|
27679
|
-
* The amount of memory to allocate to the container. Possible values are `0.5Gi`, `1Gi`, `1.5Gi`, `2Gi`, `2.5Gi`, `3Gi`, `3.5Gi` and `4Gi`.
|
|
27755
|
+
* The amount of memory to allocate to the container. Possible values are `0.5Gi`, `1Gi`, `1.5Gi`, `2Gi`, `2.5Gi`, `3Gi`, `3.5Gi` and `4Gi`. When there's a workload profile specified, there's no such constraint.
|
|
27680
27756
|
*
|
|
27681
27757
|
* > **NOTE:** `cpu` and `memory` must be specified in `0.25'/'0.5Gi` combination increments. e.g. `1.25` / `2.5Gi` or `0.75` / `1.5Gi`
|
|
27682
27758
|
*/
|
|
@@ -32769,6 +32845,24 @@ export declare namespace databricks {
|
|
|
32769
32845
|
*/
|
|
32770
32846
|
type: string;
|
|
32771
32847
|
}
|
|
32848
|
+
interface GetAccessConnectorIdentity {
|
|
32849
|
+
/**
|
|
32850
|
+
* A `identityIds` block as defined below.
|
|
32851
|
+
*/
|
|
32852
|
+
identityIds: string[];
|
|
32853
|
+
/**
|
|
32854
|
+
* The ID of the TODO.
|
|
32855
|
+
*/
|
|
32856
|
+
principalId: string;
|
|
32857
|
+
/**
|
|
32858
|
+
* The ID of the TODO.
|
|
32859
|
+
*/
|
|
32860
|
+
tenantId: string;
|
|
32861
|
+
/**
|
|
32862
|
+
* TODO.
|
|
32863
|
+
*/
|
|
32864
|
+
type: string;
|
|
32865
|
+
}
|
|
32772
32866
|
interface GetWorkspaceManagedDiskIdentity {
|
|
32773
32867
|
/**
|
|
32774
32868
|
* The principal UUID for the internal databricks storage account needed to provide access to the workspace for enabling Customer Managed Keys.
|
|
@@ -34725,6 +34819,72 @@ export declare namespace dataprotection {
|
|
|
34725
34819
|
*/
|
|
34726
34820
|
absoluteCriteria?: string;
|
|
34727
34821
|
}
|
|
34822
|
+
interface BackupPolicyKubernetesClusterDefaultRetentionRule {
|
|
34823
|
+
/**
|
|
34824
|
+
* A `lifeCycle` block as defined below. Changing this forces a new resource to be created.
|
|
34825
|
+
*/
|
|
34826
|
+
lifeCycles: outputs.dataprotection.BackupPolicyKubernetesClusterDefaultRetentionRuleLifeCycle[];
|
|
34827
|
+
}
|
|
34828
|
+
interface BackupPolicyKubernetesClusterDefaultRetentionRuleLifeCycle {
|
|
34829
|
+
/**
|
|
34830
|
+
* The type of data store. The only possible value is `OperationalStore`.
|
|
34831
|
+
*/
|
|
34832
|
+
dataStoreType: string;
|
|
34833
|
+
/**
|
|
34834
|
+
* The retention duration up to which the backups are to be retained in the data stores. It should follow `ISO 8601` duration format. Changing this forces a new resource to be created.
|
|
34835
|
+
*/
|
|
34836
|
+
duration: string;
|
|
34837
|
+
}
|
|
34838
|
+
interface BackupPolicyKubernetesClusterRetentionRule {
|
|
34839
|
+
/**
|
|
34840
|
+
* A `criteria` block as defined below. Changing this forces a new resource to be created.
|
|
34841
|
+
*/
|
|
34842
|
+
criteria: outputs.dataprotection.BackupPolicyKubernetesClusterRetentionRuleCriteria;
|
|
34843
|
+
/**
|
|
34844
|
+
* A `lifeCycle` block as defined below. Changing this forces a new resource to be created.
|
|
34845
|
+
*/
|
|
34846
|
+
lifeCycles: outputs.dataprotection.BackupPolicyKubernetesClusterRetentionRuleLifeCycle[];
|
|
34847
|
+
/**
|
|
34848
|
+
* The name which should be used for this retention rule. Changing this forces a new resource to be created.
|
|
34849
|
+
*/
|
|
34850
|
+
name: string;
|
|
34851
|
+
/**
|
|
34852
|
+
* Specifies the priority of the rule. The priority number must be unique for each rule. The lower the priority number, the higher the priority of the rule. Changing this forces a new resource to be created.
|
|
34853
|
+
*/
|
|
34854
|
+
priority: number;
|
|
34855
|
+
}
|
|
34856
|
+
interface BackupPolicyKubernetesClusterRetentionRuleCriteria {
|
|
34857
|
+
/**
|
|
34858
|
+
* Possible values are `AllBackup`, `FirstOfDay`, `FirstOfWeek`, `FirstOfMonth` and `FirstOfYear`. These values mean the first successful backup of the day/week/month/year. Changing this forces a new resource to be created.
|
|
34859
|
+
*/
|
|
34860
|
+
absoluteCriteria?: string;
|
|
34861
|
+
/**
|
|
34862
|
+
* Possible values are `Monday`, `Tuesday`, `Thursday`, `Friday`, `Saturday` and `Sunday`. Changing this forces a new resource to be created.
|
|
34863
|
+
*/
|
|
34864
|
+
daysOfWeeks?: string[];
|
|
34865
|
+
/**
|
|
34866
|
+
* Possible values are `January`, `February`, `March`, `April`, `May`, `June`, `July`, `August`, `September`, `October`, `November` and `December`. Changing this forces a new resource to be created.
|
|
34867
|
+
*/
|
|
34868
|
+
monthsOfYears?: string[];
|
|
34869
|
+
/**
|
|
34870
|
+
* Specifies a list of backup times for backup in the `RFC3339` format. Changing this forces a new resource to be created.
|
|
34871
|
+
*/
|
|
34872
|
+
scheduledBackupTimes?: string[];
|
|
34873
|
+
/**
|
|
34874
|
+
* Possible values are `First`, `Second`, `Third`, `Fourth` and `Last`. Changing this forces a new resource to be created.
|
|
34875
|
+
*/
|
|
34876
|
+
weeksOfMonths?: string[];
|
|
34877
|
+
}
|
|
34878
|
+
interface BackupPolicyKubernetesClusterRetentionRuleLifeCycle {
|
|
34879
|
+
/**
|
|
34880
|
+
* The type of data store. The only possible value is `OperationalStore`.
|
|
34881
|
+
*/
|
|
34882
|
+
dataStoreType: string;
|
|
34883
|
+
/**
|
|
34884
|
+
* The retention duration up to which the backups are to be retained in the data stores. It should follow `ISO 8601` duration format. Changing this forces a new resource to be created.
|
|
34885
|
+
*/
|
|
34886
|
+
duration: string;
|
|
34887
|
+
}
|
|
34728
34888
|
interface BackupPolicyPostgresqlRetentionRule {
|
|
34729
34889
|
/**
|
|
34730
34890
|
* A `criteria` block as defined below. Changing this forces a new Backup Policy PostgreSQL to be created.
|
|
@@ -43703,6 +43863,22 @@ export declare namespace machinelearning {
|
|
|
43703
43863
|
*/
|
|
43704
43864
|
userAssignedIdentityId?: string;
|
|
43705
43865
|
}
|
|
43866
|
+
interface WorkspaceFeatureStore {
|
|
43867
|
+
/**
|
|
43868
|
+
* The version of Spark runtime.
|
|
43869
|
+
*/
|
|
43870
|
+
computerSparkRuntimeVersion?: string;
|
|
43871
|
+
/**
|
|
43872
|
+
* The name of offline store connection.
|
|
43873
|
+
*/
|
|
43874
|
+
offlineConnectionName?: string;
|
|
43875
|
+
/**
|
|
43876
|
+
* The name of online store connection.
|
|
43877
|
+
*
|
|
43878
|
+
* > **Note:** `featureStore` must be set when`kind` is `FeatureStore`
|
|
43879
|
+
*/
|
|
43880
|
+
onlineConnectionName?: string;
|
|
43881
|
+
}
|
|
43706
43882
|
interface WorkspaceIdentity {
|
|
43707
43883
|
/**
|
|
43708
43884
|
* Specifies a list of User Assigned Managed Identity IDs to be assigned to this Machine Learning Workspace.
|