@pulumi/azure 6.13.0-alpha.1733292692 → 6.13.0-alpha.1733738669
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/backend.d.ts +4 -4
- package/apimanagement/backend.js +1 -1
- package/apimanagement/policy.d.ts +3 -3
- package/cognitive/deployment.d.ts +12 -0
- package/cognitive/deployment.js +2 -0
- package/cognitive/deployment.js.map +1 -1
- package/dataprotection/backupInstanceBlogStorage.d.ts +48 -0
- package/dataprotection/backupInstanceBlogStorage.js +48 -0
- package/dataprotection/backupInstanceBlogStorage.js.map +1 -1
- package/keyvault/managedHardwareSecurityModuleKey.d.ts +6 -6
- package/network/natGateway.d.ts +1 -1
- package/network/natGateway.js +1 -1
- package/package.json +2 -2
- package/search/service.d.ts +3 -3
- package/servicebus/getSubscription.d.ts +1 -1
- package/types/input.d.ts +5 -1
- package/types/output.d.ts +6 -1
|
@@ -27,7 +27,7 @@ import * as outputs from "../types/output";
|
|
|
27
27
|
* resourceGroupName: example.name,
|
|
28
28
|
* apiManagementName: exampleService.name,
|
|
29
29
|
* protocol: "http",
|
|
30
|
-
* url: "https://backend",
|
|
30
|
+
* url: "https://backend.com/api",
|
|
31
31
|
* });
|
|
32
32
|
* ```
|
|
33
33
|
*
|
|
@@ -100,7 +100,7 @@ export declare class Backend extends pulumi.CustomResource {
|
|
|
100
100
|
*/
|
|
101
101
|
readonly tls: pulumi.Output<outputs.apimanagement.BackendTls | undefined>;
|
|
102
102
|
/**
|
|
103
|
-
* The URL
|
|
103
|
+
* The backend host URL should be specified in the format `"https://backend.com/api"`, avoiding trailing slashes (/) to minimize misconfiguration risks. Azure API Management instance will append the backend resource name to this URL. This URL typically serves as the `base-url` in the [`set-backend-service`](https://learn.microsoft.com/azure/api-management/set-backend-service-policy) policy, enabling seamless transitions from frontend to backend.
|
|
104
104
|
*/
|
|
105
105
|
readonly url: pulumi.Output<string>;
|
|
106
106
|
/**
|
|
@@ -161,7 +161,7 @@ export interface BackendState {
|
|
|
161
161
|
*/
|
|
162
162
|
tls?: pulumi.Input<inputs.apimanagement.BackendTls>;
|
|
163
163
|
/**
|
|
164
|
-
* The URL
|
|
164
|
+
* The backend host URL should be specified in the format `"https://backend.com/api"`, avoiding trailing slashes (/) to minimize misconfiguration risks. Azure API Management instance will append the backend resource name to this URL. This URL typically serves as the `base-url` in the [`set-backend-service`](https://learn.microsoft.com/azure/api-management/set-backend-service-policy) policy, enabling seamless transitions from frontend to backend.
|
|
165
165
|
*/
|
|
166
166
|
url?: pulumi.Input<string>;
|
|
167
167
|
}
|
|
@@ -214,7 +214,7 @@ export interface BackendArgs {
|
|
|
214
214
|
*/
|
|
215
215
|
tls?: pulumi.Input<inputs.apimanagement.BackendTls>;
|
|
216
216
|
/**
|
|
217
|
-
* The URL
|
|
217
|
+
* The backend host URL should be specified in the format `"https://backend.com/api"`, avoiding trailing slashes (/) to minimize misconfiguration risks. Azure API Management instance will append the backend resource name to this URL. This URL typically serves as the `base-url` in the [`set-backend-service`](https://learn.microsoft.com/azure/api-management/set-backend-service-policy) policy, enabling seamless transitions from frontend to backend.
|
|
218
218
|
*/
|
|
219
219
|
url: pulumi.Input<string>;
|
|
220
220
|
}
|
package/apimanagement/backend.js
CHANGED
|
@@ -67,7 +67,7 @@ export declare class Policy extends pulumi.CustomResource {
|
|
|
67
67
|
*/
|
|
68
68
|
readonly apiManagementId: pulumi.Output<string>;
|
|
69
69
|
/**
|
|
70
|
-
* The XML Content for this Policy as a string.
|
|
70
|
+
* The XML Content for this Policy as a string. To integrate frontend and backend services in Azure API Management, utilize the [`set-backend-service`](https://learn.microsoft.com/azure/api-management/set-backend-service-policy) policy, specifying the `base-url` value. Typically, this value corresponds to the `url` property defined in the `Backend` resource configuration.
|
|
71
71
|
*/
|
|
72
72
|
readonly xmlContent: pulumi.Output<string>;
|
|
73
73
|
/**
|
|
@@ -92,7 +92,7 @@ export interface PolicyState {
|
|
|
92
92
|
*/
|
|
93
93
|
apiManagementId?: pulumi.Input<string>;
|
|
94
94
|
/**
|
|
95
|
-
* The XML Content for this Policy as a string.
|
|
95
|
+
* The XML Content for this Policy as a string. To integrate frontend and backend services in Azure API Management, utilize the [`set-backend-service`](https://learn.microsoft.com/azure/api-management/set-backend-service-policy) policy, specifying the `base-url` value. Typically, this value corresponds to the `url` property defined in the `Backend` resource configuration.
|
|
96
96
|
*/
|
|
97
97
|
xmlContent?: pulumi.Input<string>;
|
|
98
98
|
/**
|
|
@@ -109,7 +109,7 @@ export interface PolicyArgs {
|
|
|
109
109
|
*/
|
|
110
110
|
apiManagementId: pulumi.Input<string>;
|
|
111
111
|
/**
|
|
112
|
-
* The XML Content for this Policy as a string.
|
|
112
|
+
* The XML Content for this Policy as a string. To integrate frontend and backend services in Azure API Management, utilize the [`set-backend-service`](https://learn.microsoft.com/azure/api-management/set-backend-service-policy) policy, specifying the `base-url` value. Typically, this value corresponds to the `url` property defined in the `Backend` resource configuration.
|
|
113
113
|
*/
|
|
114
114
|
xmlContent?: pulumi.Input<string>;
|
|
115
115
|
/**
|
|
@@ -63,6 +63,10 @@ export declare class Deployment extends pulumi.CustomResource {
|
|
|
63
63
|
* The ID of the Cognitive Services Account. Changing this forces a new resource to be created.
|
|
64
64
|
*/
|
|
65
65
|
readonly cognitiveAccountId: pulumi.Output<string>;
|
|
66
|
+
/**
|
|
67
|
+
* Whether dynamic throttling is enabled.
|
|
68
|
+
*/
|
|
69
|
+
readonly dynamicThrottlingEnabled: pulumi.Output<boolean | undefined>;
|
|
66
70
|
/**
|
|
67
71
|
* A `model` block as defined below. Changing this forces a new resource to be created.
|
|
68
72
|
*/
|
|
@@ -100,6 +104,10 @@ export interface DeploymentState {
|
|
|
100
104
|
* The ID of the Cognitive Services Account. Changing this forces a new resource to be created.
|
|
101
105
|
*/
|
|
102
106
|
cognitiveAccountId?: pulumi.Input<string>;
|
|
107
|
+
/**
|
|
108
|
+
* Whether dynamic throttling is enabled.
|
|
109
|
+
*/
|
|
110
|
+
dynamicThrottlingEnabled?: pulumi.Input<boolean>;
|
|
103
111
|
/**
|
|
104
112
|
* A `model` block as defined below. Changing this forces a new resource to be created.
|
|
105
113
|
*/
|
|
@@ -129,6 +137,10 @@ export interface DeploymentArgs {
|
|
|
129
137
|
* The ID of the Cognitive Services Account. Changing this forces a new resource to be created.
|
|
130
138
|
*/
|
|
131
139
|
cognitiveAccountId: pulumi.Input<string>;
|
|
140
|
+
/**
|
|
141
|
+
* Whether dynamic throttling is enabled.
|
|
142
|
+
*/
|
|
143
|
+
dynamicThrottlingEnabled?: pulumi.Input<boolean>;
|
|
132
144
|
/**
|
|
133
145
|
* A `model` block as defined below. Changing this forces a new resource to be created.
|
|
134
146
|
*/
|
package/cognitive/deployment.js
CHANGED
|
@@ -54,6 +54,7 @@ class Deployment extends pulumi.CustomResource {
|
|
|
54
54
|
if (opts.id) {
|
|
55
55
|
const state = argsOrState;
|
|
56
56
|
resourceInputs["cognitiveAccountId"] = state ? state.cognitiveAccountId : undefined;
|
|
57
|
+
resourceInputs["dynamicThrottlingEnabled"] = state ? state.dynamicThrottlingEnabled : undefined;
|
|
57
58
|
resourceInputs["model"] = state ? state.model : undefined;
|
|
58
59
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
59
60
|
resourceInputs["raiPolicyName"] = state ? state.raiPolicyName : undefined;
|
|
@@ -72,6 +73,7 @@ class Deployment extends pulumi.CustomResource {
|
|
|
72
73
|
throw new Error("Missing required property 'sku'");
|
|
73
74
|
}
|
|
74
75
|
resourceInputs["cognitiveAccountId"] = args ? args.cognitiveAccountId : undefined;
|
|
76
|
+
resourceInputs["dynamicThrottlingEnabled"] = args ? args.dynamicThrottlingEnabled : undefined;
|
|
75
77
|
resourceInputs["model"] = args ? args.model : undefined;
|
|
76
78
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
77
79
|
resourceInputs["raiPolicyName"] = args ? args.raiPolicyName : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deployment.js","sourceRoot":"","sources":["../../cognitive/deployment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyCG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"deployment.js","sourceRoot":"","sources":["../../cognitive/deployment.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,6 +2,54 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* Manages a Backup Instance Blob Storage.
|
|
4
4
|
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as azure from "@pulumi/azure";
|
|
10
|
+
*
|
|
11
|
+
* const example = new azure.core.ResourceGroup("example", {
|
|
12
|
+
* name: "example-resources",
|
|
13
|
+
* location: "West Europe",
|
|
14
|
+
* });
|
|
15
|
+
* const exampleAccount = new azure.storage.Account("example", {
|
|
16
|
+
* name: "storageaccountname",
|
|
17
|
+
* resourceGroupName: example.name,
|
|
18
|
+
* location: example.location,
|
|
19
|
+
* accountTier: "Standard",
|
|
20
|
+
* accountReplicationType: "LRS",
|
|
21
|
+
* });
|
|
22
|
+
* const exampleBackupVault = new azure.dataprotection.BackupVault("example", {
|
|
23
|
+
* name: "example-backup-vault",
|
|
24
|
+
* resourceGroupName: example.name,
|
|
25
|
+
* location: example.location,
|
|
26
|
+
* datastoreType: "VaultStore",
|
|
27
|
+
* redundancy: "LocallyRedundant",
|
|
28
|
+
* identity: {
|
|
29
|
+
* type: "SystemAssigned",
|
|
30
|
+
* },
|
|
31
|
+
* });
|
|
32
|
+
* const exampleAssignment = new azure.authorization.Assignment("example", {
|
|
33
|
+
* scope: exampleAccount.id,
|
|
34
|
+
* roleDefinitionName: "Storage Account Backup Contributor",
|
|
35
|
+
* principalId: exampleBackupVault.identity.apply(identity => identity?.principalId),
|
|
36
|
+
* });
|
|
37
|
+
* const exampleBackupPolicyBlobStorage = new azure.dataprotection.BackupPolicyBlobStorage("example", {
|
|
38
|
+
* name: "example-backup-policy",
|
|
39
|
+
* vaultId: exampleBackupVault.id,
|
|
40
|
+
* operationalDefaultRetentionDuration: "P30D",
|
|
41
|
+
* });
|
|
42
|
+
* const exampleBackupInstanceBlogStorage = new azure.dataprotection.BackupInstanceBlogStorage("example", {
|
|
43
|
+
* name: "example-backup-instance",
|
|
44
|
+
* vaultId: exampleBackupVault.id,
|
|
45
|
+
* location: example.location,
|
|
46
|
+
* storageAccountId: exampleAccount.id,
|
|
47
|
+
* backupPolicyId: exampleBackupPolicyBlobStorage.id,
|
|
48
|
+
* }, {
|
|
49
|
+
* dependsOn: [exampleAssignment],
|
|
50
|
+
* });
|
|
51
|
+
* ```
|
|
52
|
+
*
|
|
5
53
|
* ## Import
|
|
6
54
|
*
|
|
7
55
|
* Backup Instance Blob Storages can be imported using the `resource id`, e.g.
|
|
@@ -8,6 +8,54 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Manages a Backup Instance Blob Storage.
|
|
10
10
|
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azure from "@pulumi/azure";
|
|
16
|
+
*
|
|
17
|
+
* const example = new azure.core.ResourceGroup("example", {
|
|
18
|
+
* name: "example-resources",
|
|
19
|
+
* location: "West Europe",
|
|
20
|
+
* });
|
|
21
|
+
* const exampleAccount = new azure.storage.Account("example", {
|
|
22
|
+
* name: "storageaccountname",
|
|
23
|
+
* resourceGroupName: example.name,
|
|
24
|
+
* location: example.location,
|
|
25
|
+
* accountTier: "Standard",
|
|
26
|
+
* accountReplicationType: "LRS",
|
|
27
|
+
* });
|
|
28
|
+
* const exampleBackupVault = new azure.dataprotection.BackupVault("example", {
|
|
29
|
+
* name: "example-backup-vault",
|
|
30
|
+
* resourceGroupName: example.name,
|
|
31
|
+
* location: example.location,
|
|
32
|
+
* datastoreType: "VaultStore",
|
|
33
|
+
* redundancy: "LocallyRedundant",
|
|
34
|
+
* identity: {
|
|
35
|
+
* type: "SystemAssigned",
|
|
36
|
+
* },
|
|
37
|
+
* });
|
|
38
|
+
* const exampleAssignment = new azure.authorization.Assignment("example", {
|
|
39
|
+
* scope: exampleAccount.id,
|
|
40
|
+
* roleDefinitionName: "Storage Account Backup Contributor",
|
|
41
|
+
* principalId: exampleBackupVault.identity.apply(identity => identity?.principalId),
|
|
42
|
+
* });
|
|
43
|
+
* const exampleBackupPolicyBlobStorage = new azure.dataprotection.BackupPolicyBlobStorage("example", {
|
|
44
|
+
* name: "example-backup-policy",
|
|
45
|
+
* vaultId: exampleBackupVault.id,
|
|
46
|
+
* operationalDefaultRetentionDuration: "P30D",
|
|
47
|
+
* });
|
|
48
|
+
* const exampleBackupInstanceBlogStorage = new azure.dataprotection.BackupInstanceBlogStorage("example", {
|
|
49
|
+
* name: "example-backup-instance",
|
|
50
|
+
* vaultId: exampleBackupVault.id,
|
|
51
|
+
* location: example.location,
|
|
52
|
+
* storageAccountId: exampleAccount.id,
|
|
53
|
+
* backupPolicyId: exampleBackupPolicyBlobStorage.id,
|
|
54
|
+
* }, {
|
|
55
|
+
* dependsOn: [exampleAssignment],
|
|
56
|
+
* });
|
|
57
|
+
* ```
|
|
58
|
+
*
|
|
11
59
|
* ## Import
|
|
12
60
|
*
|
|
13
61
|
* Backup Instance Blob Storages can be imported using the `resource id`, e.g.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"backupInstanceBlogStorage.js","sourceRoot":"","sources":["../../dataprotection/backupInstanceBlogStorage.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"backupInstanceBlogStorage.js","sourceRoot":"","sources":["../../dataprotection/backupInstanceBlogStorage.ts"],"names":[],"mappings":"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"}
|
|
@@ -41,11 +41,11 @@ export declare class ManagedHardwareSecurityModuleKey extends pulumi.CustomResou
|
|
|
41
41
|
*/
|
|
42
42
|
readonly keyOpts: pulumi.Output<string[]>;
|
|
43
43
|
/**
|
|
44
|
-
* Specifies the Size of the RSA key to create in bytes. For example, 1024 or 2048. *Note*: This field is required if `keyType` is `RSA-HSM`. Changing this forces a new resource to be created.
|
|
44
|
+
* Specifies the Size of the RSA key to create in bytes. For example, 1024 or 2048. *Note*: This field is required if `keyType` is `RSA-HSM` or `oct-HSM`. Changing this forces a new resource to be created.
|
|
45
45
|
*/
|
|
46
46
|
readonly keySize: pulumi.Output<number | undefined>;
|
|
47
47
|
/**
|
|
48
|
-
* Specifies the Key Type to use for this Key Vault Managed Hardware Security Module Key. Possible values are `EC-HSM` and `RSA-HSM`. Changing this forces a new resource to be created.
|
|
48
|
+
* Specifies the Key Type to use for this Key Vault Managed Hardware Security Module Key. Possible values are `EC-HSM`, `oct-HSM` and `RSA-HSM`. More details see [HSM-protected keys](https://learn.microsoft.com/en-us/azure/key-vault/keys/about-keys#hsm-protected-keys). Changing this forces a new resource to be created.
|
|
49
49
|
*/
|
|
50
50
|
readonly keyType: pulumi.Output<string>;
|
|
51
51
|
/**
|
|
@@ -98,11 +98,11 @@ export interface ManagedHardwareSecurityModuleKeyState {
|
|
|
98
98
|
*/
|
|
99
99
|
keyOpts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
100
100
|
/**
|
|
101
|
-
* Specifies the Size of the RSA key to create in bytes. For example, 1024 or 2048. *Note*: This field is required if `keyType` is `RSA-HSM`. Changing this forces a new resource to be created.
|
|
101
|
+
* Specifies the Size of the RSA key to create in bytes. For example, 1024 or 2048. *Note*: This field is required if `keyType` is `RSA-HSM` or `oct-HSM`. Changing this forces a new resource to be created.
|
|
102
102
|
*/
|
|
103
103
|
keySize?: pulumi.Input<number>;
|
|
104
104
|
/**
|
|
105
|
-
* Specifies the Key Type to use for this Key Vault Managed Hardware Security Module Key. Possible values are `EC-HSM` and `RSA-HSM`. Changing this forces a new resource to be created.
|
|
105
|
+
* Specifies the Key Type to use for this Key Vault Managed Hardware Security Module Key. Possible values are `EC-HSM`, `oct-HSM` and `RSA-HSM`. More details see [HSM-protected keys](https://learn.microsoft.com/en-us/azure/key-vault/keys/about-keys#hsm-protected-keys). Changing this forces a new resource to be created.
|
|
106
106
|
*/
|
|
107
107
|
keyType?: pulumi.Input<string>;
|
|
108
108
|
/**
|
|
@@ -147,11 +147,11 @@ export interface ManagedHardwareSecurityModuleKeyArgs {
|
|
|
147
147
|
*/
|
|
148
148
|
keyOpts: pulumi.Input<pulumi.Input<string>[]>;
|
|
149
149
|
/**
|
|
150
|
-
* Specifies the Size of the RSA key to create in bytes. For example, 1024 or 2048. *Note*: This field is required if `keyType` is `RSA-HSM`. Changing this forces a new resource to be created.
|
|
150
|
+
* Specifies the Size of the RSA key to create in bytes. For example, 1024 or 2048. *Note*: This field is required if `keyType` is `RSA-HSM` or `oct-HSM`. Changing this forces a new resource to be created.
|
|
151
151
|
*/
|
|
152
152
|
keySize?: pulumi.Input<number>;
|
|
153
153
|
/**
|
|
154
|
-
* Specifies the Key Type to use for this Key Vault Managed Hardware Security Module Key. Possible values are `EC-HSM` and `RSA-HSM`. Changing this forces a new resource to be created.
|
|
154
|
+
* Specifies the Key Type to use for this Key Vault Managed Hardware Security Module Key. Possible values are `EC-HSM`, `oct-HSM` and `RSA-HSM`. More details see [HSM-protected keys](https://learn.microsoft.com/en-us/azure/key-vault/keys/about-keys#hsm-protected-keys). Changing this forces a new resource to be created.
|
|
155
155
|
*/
|
|
156
156
|
keyType: pulumi.Input<string>;
|
|
157
157
|
/**
|
package/network/natGateway.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
13
13
|
* location: "West Europe",
|
|
14
14
|
* });
|
|
15
15
|
* const exampleNatGateway = new azure.network.NatGateway("example", {
|
|
16
|
-
* name: "nat-
|
|
16
|
+
* name: "nat-gateway",
|
|
17
17
|
* location: example.location,
|
|
18
18
|
* resourceGroupName: example.name,
|
|
19
19
|
* skuName: "Standard",
|
package/network/natGateway.js
CHANGED
|
@@ -19,7 +19,7 @@ const utilities = require("../utilities");
|
|
|
19
19
|
* location: "West Europe",
|
|
20
20
|
* });
|
|
21
21
|
* const exampleNatGateway = new azure.network.NatGateway("example", {
|
|
22
|
-
* name: "nat-
|
|
22
|
+
* name: "nat-gateway",
|
|
23
23
|
* location: example.location,
|
|
24
24
|
* resourceGroupName: example.name,
|
|
25
25
|
* skuName: "Standard",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/azure",
|
|
3
|
-
"version": "6.13.0-alpha.
|
|
3
|
+
"version": "6.13.0-alpha.1733738669",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -30,6 +30,6 @@
|
|
|
30
30
|
"pulumi": {
|
|
31
31
|
"resource": true,
|
|
32
32
|
"name": "azure",
|
|
33
|
-
"version": "6.13.0-alpha.
|
|
33
|
+
"version": "6.13.0-alpha.1733738669"
|
|
34
34
|
}
|
|
35
35
|
}
|
package/search/service.d.ts
CHANGED
|
@@ -130,7 +130,7 @@ export declare class Service extends pulumi.CustomResource {
|
|
|
130
130
|
*/
|
|
131
131
|
readonly name: pulumi.Output<string>;
|
|
132
132
|
/**
|
|
133
|
-
* Specifies the number of partitions which should be created. This field cannot be set when using a `free`
|
|
133
|
+
* Specifies the number of partitions which should be created. This field cannot be set when using a `free` sku ([see the Microsoft documentation](https://learn.microsoft.com/azure/search/search-sku-tier)). Possible values include `1`, `2`, `3`, `4`, `6`, or `12`. Defaults to `1`.
|
|
134
134
|
*
|
|
135
135
|
* > **NOTE:** when `hostingMode` is set to `highDensity` the maximum number of partitions allowed is `3`.
|
|
136
136
|
*/
|
|
@@ -235,7 +235,7 @@ export interface ServiceState {
|
|
|
235
235
|
*/
|
|
236
236
|
name?: pulumi.Input<string>;
|
|
237
237
|
/**
|
|
238
|
-
* Specifies the number of partitions which should be created. This field cannot be set when using a `free`
|
|
238
|
+
* Specifies the number of partitions which should be created. This field cannot be set when using a `free` sku ([see the Microsoft documentation](https://learn.microsoft.com/azure/search/search-sku-tier)). Possible values include `1`, `2`, `3`, `4`, `6`, or `12`. Defaults to `1`.
|
|
239
239
|
*
|
|
240
240
|
* > **NOTE:** when `hostingMode` is set to `highDensity` the maximum number of partitions allowed is `3`.
|
|
241
241
|
*/
|
|
@@ -328,7 +328,7 @@ export interface ServiceArgs {
|
|
|
328
328
|
*/
|
|
329
329
|
name?: pulumi.Input<string>;
|
|
330
330
|
/**
|
|
331
|
-
* Specifies the number of partitions which should be created. This field cannot be set when using a `free`
|
|
331
|
+
* Specifies the number of partitions which should be created. This field cannot be set when using a `free` sku ([see the Microsoft documentation](https://learn.microsoft.com/azure/search/search-sku-tier)). Possible values include `1`, `2`, `3`, `4`, `6`, or `12`. Defaults to `1`.
|
|
332
332
|
*
|
|
333
333
|
* > **NOTE:** when `hostingMode` is set to `highDensity` the maximum number of partitions allowed is `3`.
|
|
334
334
|
*/
|
|
@@ -46,7 +46,7 @@ export interface GetSubscriptionArgs {
|
|
|
46
46
|
*/
|
|
47
47
|
export interface GetSubscriptionResult {
|
|
48
48
|
/**
|
|
49
|
-
* The idle interval after which the
|
|
49
|
+
* The idle interval after which the Subscription is automatically deleted.
|
|
50
50
|
*/
|
|
51
51
|
readonly autoDeleteOnIdle: string;
|
|
52
52
|
/**
|
package/types/input.d.ts
CHANGED
|
@@ -15709,6 +15709,8 @@ export declare namespace cdn {
|
|
|
15709
15709
|
protocolType: pulumi.Input<string>;
|
|
15710
15710
|
/**
|
|
15711
15711
|
* The minimum TLS protocol version that is used for HTTPS. Possible values are `TLS10` (representing TLS 1.0/1.1), `TLS12` (representing TLS 1.2) and `None` (representing no minimums). Defaults to `TLS12`.
|
|
15712
|
+
*
|
|
15713
|
+
* > **Note** Azure Services will require TLS 1.2+ by August 2025, please see this [announcement](https://azure.microsoft.com/en-us/updates/v2/update-retirement-tls1-0-tls1-1-versions-azure-services/) for more.
|
|
15712
15714
|
*/
|
|
15713
15715
|
tlsVersion?: pulumi.Input<string>;
|
|
15714
15716
|
}
|
|
@@ -15719,6 +15721,8 @@ export declare namespace cdn {
|
|
|
15719
15721
|
keyVaultSecretId: pulumi.Input<string>;
|
|
15720
15722
|
/**
|
|
15721
15723
|
* The minimum TLS protocol version that is used for HTTPS. Possible values are `TLS10` (representing TLS 1.0/1.1), `TLS12` (representing TLS 1.2) and `None` (representing no minimums). Defaults to `TLS12`.
|
|
15724
|
+
*
|
|
15725
|
+
* > **Note** Azure Services will require TLS 1.2+ by August 2025, please see this [announcement](https://azure.microsoft.com/en-us/updates/v2/update-retirement-tls1-0-tls1-1-versions-azure-services/) for more.
|
|
15722
15726
|
*/
|
|
15723
15727
|
tlsVersion?: pulumi.Input<string>;
|
|
15724
15728
|
}
|
|
@@ -16480,7 +16484,7 @@ export declare namespace cdn {
|
|
|
16480
16484
|
}
|
|
16481
16485
|
interface FrontdoorOriginGroupHealthProbe {
|
|
16482
16486
|
/**
|
|
16483
|
-
* Specifies the number of seconds between health probes. Possible values are between `
|
|
16487
|
+
* Specifies the number of seconds between health probes. Possible values are between `1` and `255` seconds (inclusive).
|
|
16484
16488
|
*/
|
|
16485
16489
|
intervalInSeconds: pulumi.Input<number>;
|
|
16486
16490
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -21569,6 +21569,8 @@ export declare namespace cdn {
|
|
|
21569
21569
|
protocolType: string;
|
|
21570
21570
|
/**
|
|
21571
21571
|
* The minimum TLS protocol version that is used for HTTPS. Possible values are `TLS10` (representing TLS 1.0/1.1), `TLS12` (representing TLS 1.2) and `None` (representing no minimums). Defaults to `TLS12`.
|
|
21572
|
+
*
|
|
21573
|
+
* > **Note** Azure Services will require TLS 1.2+ by August 2025, please see this [announcement](https://azure.microsoft.com/en-us/updates/v2/update-retirement-tls1-0-tls1-1-versions-azure-services/) for more.
|
|
21572
21574
|
*/
|
|
21573
21575
|
tlsVersion?: string;
|
|
21574
21576
|
}
|
|
@@ -21579,6 +21581,8 @@ export declare namespace cdn {
|
|
|
21579
21581
|
keyVaultSecretId: string;
|
|
21580
21582
|
/**
|
|
21581
21583
|
* The minimum TLS protocol version that is used for HTTPS. Possible values are `TLS10` (representing TLS 1.0/1.1), `TLS12` (representing TLS 1.2) and `None` (representing no minimums). Defaults to `TLS12`.
|
|
21584
|
+
*
|
|
21585
|
+
* > **Note** Azure Services will require TLS 1.2+ by August 2025, please see this [announcement](https://azure.microsoft.com/en-us/updates/v2/update-retirement-tls1-0-tls1-1-versions-azure-services/) for more.
|
|
21582
21586
|
*/
|
|
21583
21587
|
tlsVersion?: string;
|
|
21584
21588
|
}
|
|
@@ -22340,7 +22344,7 @@ export declare namespace cdn {
|
|
|
22340
22344
|
}
|
|
22341
22345
|
interface FrontdoorOriginGroupHealthProbe {
|
|
22342
22346
|
/**
|
|
22343
|
-
* Specifies the number of seconds between health probes. Possible values are between `
|
|
22347
|
+
* Specifies the number of seconds between health probes. Possible values are between `1` and `255` seconds (inclusive).
|
|
22344
22348
|
*/
|
|
22345
22349
|
intervalInSeconds: number;
|
|
22346
22350
|
/**
|
|
@@ -44422,6 +44426,7 @@ export declare namespace logicapps {
|
|
|
44422
44426
|
value: string;
|
|
44423
44427
|
}
|
|
44424
44428
|
interface GetStandardIdentity {
|
|
44429
|
+
identityIds: string[];
|
|
44425
44430
|
/**
|
|
44426
44431
|
* The Principal ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.
|
|
44427
44432
|
*/
|