@pulumi/azure 6.1.0-alpha.1727225135 → 6.1.0-alpha.1727464111
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/arcmachine/arcMachine.d.ts +113 -0
- package/arcmachine/arcMachine.js +90 -0
- package/arcmachine/arcMachine.js.map +1 -0
- package/arcmachine/automanageConfigurationAssignment.d.ts +105 -0
- package/arcmachine/automanageConfigurationAssignment.js +96 -0
- package/arcmachine/automanageConfigurationAssignment.js.map +1 -0
- package/arcmachine/index.d.ts +6 -0
- package/arcmachine/index.js +11 -1
- package/arcmachine/index.js.map +1 -1
- package/cognitive/deployment.d.ts +40 -0
- package/cognitive/deployment.js +31 -0
- package/cognitive/deployment.js.map +1 -1
- package/dataprotection/backupInstanceKubernetesCluster.d.ts +162 -0
- package/dataprotection/backupInstanceKubernetesCluster.js +162 -0
- package/dataprotection/backupInstanceKubernetesCluster.js.map +1 -1
- package/dataprotection/backupVault.d.ts +18 -0
- package/dataprotection/backupVault.js +2 -0
- package/dataprotection/backupVault.js.map +1 -1
- package/eventhub/queue.d.ts +14 -14
- package/index.d.ts +1 -2
- package/index.js +2 -4
- package/index.js.map +1 -1
- package/mssql/database.d.ts +1 -10
- package/mssql/database.js +1 -10
- package/mssql/database.js.map +1 -1
- package/mssql/managedInstance.d.ts +12 -0
- package/mssql/managedInstance.js +2 -0
- package/mssql/managedInstance.js.map +1 -1
- package/netapp/volume.d.ts +12 -0
- package/netapp/volume.js +2 -0
- package/netapp/volume.js.map +1 -1
- package/network/virtualNetwork.d.ts +41 -0
- package/network/virtualNetwork.js +41 -0
- package/network/virtualNetwork.js.map +1 -1
- package/package.json +2 -2
- package/postgresql/flexibleServerVirtualEndpoint.d.ts +1 -1
- package/postgresql/flexibleServerVirtualEndpoint.js +1 -1
- package/sentinel/alertRuleNrt.d.ts +0 -6
- package/sentinel/alertRuleNrt.js.map +1 -1
- package/sentinel/dataConnectorMicrosoftThreatIntelligence.d.ts +0 -12
- package/sentinel/dataConnectorMicrosoftThreatIntelligence.js.map +1 -1
- package/servicebus/queue.d.ts +14 -14
- package/types/input.d.ts +54 -91
- package/types/output.d.ts +54 -91
- package/media/accountFilter.d.ts +0 -199
- package/media/accountFilter.js +0 -154
- package/media/accountFilter.js.map +0 -1
- package/media/index.d.ts +0 -3
- package/media/index.js +0 -22
- package/media/index.js.map +0 -1
|
@@ -4,6 +4,168 @@ import * as outputs from "../types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* Manages a Backup Instance to back up a Kubernetes Cluster.
|
|
6
6
|
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as azure from "@pulumi/azure";
|
|
12
|
+
*
|
|
13
|
+
* const current = azure.core.getClientConfig({});
|
|
14
|
+
* const example = new azure.core.ResourceGroup("example", {
|
|
15
|
+
* name: "example",
|
|
16
|
+
* location: "West Europe",
|
|
17
|
+
* });
|
|
18
|
+
* const snap = new azure.core.ResourceGroup("snap", {
|
|
19
|
+
* name: "example-snap",
|
|
20
|
+
* location: "West Europe",
|
|
21
|
+
* });
|
|
22
|
+
* const exampleBackupVault = new azure.dataprotection.BackupVault("example", {
|
|
23
|
+
* name: "example",
|
|
24
|
+
* resourceGroupName: example.name,
|
|
25
|
+
* location: example.location,
|
|
26
|
+
* datastoreType: "VaultStore",
|
|
27
|
+
* redundancy: "LocallyRedundant",
|
|
28
|
+
* identity: {
|
|
29
|
+
* type: "SystemAssigned",
|
|
30
|
+
* },
|
|
31
|
+
* });
|
|
32
|
+
* const exampleKubernetesCluster = new azure.containerservice.KubernetesCluster("example", {
|
|
33
|
+
* name: "example",
|
|
34
|
+
* location: example.location,
|
|
35
|
+
* resourceGroupName: example.name,
|
|
36
|
+
* dnsPrefix: "dns",
|
|
37
|
+
* defaultNodePool: {
|
|
38
|
+
* name: "default",
|
|
39
|
+
* nodeCount: 1,
|
|
40
|
+
* vmSize: "Standard_DS2_v2",
|
|
41
|
+
* hostEncryptionEnabled: true,
|
|
42
|
+
* },
|
|
43
|
+
* identity: {
|
|
44
|
+
* type: "SystemAssigned",
|
|
45
|
+
* },
|
|
46
|
+
* });
|
|
47
|
+
* const aksClusterTrustedAccess = new azure.containerservice.ClusterTrustedAccessRoleBinding("aks_cluster_trusted_access", {
|
|
48
|
+
* kubernetesClusterId: exampleKubernetesCluster.id,
|
|
49
|
+
* name: "example",
|
|
50
|
+
* roles: ["Microsoft.DataProtection/backupVaults/backup-operator"],
|
|
51
|
+
* sourceResourceId: exampleBackupVault.id,
|
|
52
|
+
* });
|
|
53
|
+
* const exampleAccount = new azure.storage.Account("example", {
|
|
54
|
+
* name: "example",
|
|
55
|
+
* resourceGroupName: example.name,
|
|
56
|
+
* location: example.location,
|
|
57
|
+
* accountTier: "Standard",
|
|
58
|
+
* accountReplicationType: "LRS",
|
|
59
|
+
* });
|
|
60
|
+
* const exampleContainer = new azure.storage.Container("example", {
|
|
61
|
+
* name: "example",
|
|
62
|
+
* storageAccountName: exampleAccount.name,
|
|
63
|
+
* containerAccessType: "private",
|
|
64
|
+
* });
|
|
65
|
+
* const exampleKubernetesClusterExtension = new azure.containerservice.KubernetesClusterExtension("example", {
|
|
66
|
+
* name: "example",
|
|
67
|
+
* clusterId: exampleKubernetesCluster.id,
|
|
68
|
+
* extensionType: "Microsoft.DataProtection.Kubernetes",
|
|
69
|
+
* releaseTrain: "stable",
|
|
70
|
+
* releaseNamespace: "dataprotection-microsoft",
|
|
71
|
+
* configurationSettings: {
|
|
72
|
+
* "configuration.backupStorageLocation.bucket": exampleContainer.name,
|
|
73
|
+
* "configuration.backupStorageLocation.config.resourceGroup": example.name,
|
|
74
|
+
* "configuration.backupStorageLocation.config.storageAccount": exampleAccount.name,
|
|
75
|
+
* "configuration.backupStorageLocation.config.subscriptionId": current.then(current => current.subscriptionId),
|
|
76
|
+
* "credentials.tenantId": current.then(current => current.tenantId),
|
|
77
|
+
* },
|
|
78
|
+
* });
|
|
79
|
+
* const testExtensionAndStorageAccountPermission = new azure.authorization.Assignment("test_extension_and_storage_account_permission", {
|
|
80
|
+
* scope: exampleAccount.id,
|
|
81
|
+
* roleDefinitionName: "Storage Account Contributor",
|
|
82
|
+
* principalId: exampleKubernetesClusterExtension.aksAssignedIdentities.apply(aksAssignedIdentities => aksAssignedIdentities[0].principalId),
|
|
83
|
+
* });
|
|
84
|
+
* const testVaultMsiReadOnCluster = new azure.authorization.Assignment("test_vault_msi_read_on_cluster", {
|
|
85
|
+
* scope: exampleKubernetesCluster.id,
|
|
86
|
+
* roleDefinitionName: "Reader",
|
|
87
|
+
* principalId: exampleBackupVault.identity.apply(identity => identity?.principalId),
|
|
88
|
+
* });
|
|
89
|
+
* const testVaultMsiReadOnSnapRg = new azure.authorization.Assignment("test_vault_msi_read_on_snap_rg", {
|
|
90
|
+
* scope: snap.id,
|
|
91
|
+
* roleDefinitionName: "Reader",
|
|
92
|
+
* principalId: exampleBackupVault.identity.apply(identity => identity?.principalId),
|
|
93
|
+
* });
|
|
94
|
+
* const testVaultMsiSnapshotContributorOnSnapRg = new azure.authorization.Assignment("test_vault_msi_snapshot_contributor_on_snap_rg", {
|
|
95
|
+
* scope: snap.id,
|
|
96
|
+
* roleDefinitionName: "Disk Snapshot Contributor",
|
|
97
|
+
* principalId: exampleBackupVault.identity.apply(identity => identity?.principalId),
|
|
98
|
+
* });
|
|
99
|
+
* const testVaultDataOperatorOnSnapRg = new azure.authorization.Assignment("test_vault_data_operator_on_snap_rg", {
|
|
100
|
+
* scope: snap.id,
|
|
101
|
+
* roleDefinitionName: "Data Operator for Managed Disks",
|
|
102
|
+
* principalId: exampleBackupVault.identity.apply(identity => identity?.principalId),
|
|
103
|
+
* });
|
|
104
|
+
* const testVaultDataContributorOnStorage = new azure.authorization.Assignment("test_vault_data_contributor_on_storage", {
|
|
105
|
+
* scope: exampleAccount.id,
|
|
106
|
+
* roleDefinitionName: "Storage Blob Data Contributor",
|
|
107
|
+
* principalId: exampleBackupVault.identity.apply(identity => identity?.principalId),
|
|
108
|
+
* });
|
|
109
|
+
* const testClusterMsiContributorOnSnapRg = new azure.authorization.Assignment("test_cluster_msi_contributor_on_snap_rg", {
|
|
110
|
+
* scope: snap.id,
|
|
111
|
+
* roleDefinitionName: "Contributor",
|
|
112
|
+
* principalId: exampleKubernetesCluster.identity.apply(identity => identity?.principalId),
|
|
113
|
+
* });
|
|
114
|
+
* const exampleBackupPolicyKubernetesCluster = new azure.dataprotection.BackupPolicyKubernetesCluster("example", {
|
|
115
|
+
* name: "example",
|
|
116
|
+
* resourceGroupName: example.name,
|
|
117
|
+
* vaultName: exampleBackupVault.name,
|
|
118
|
+
* backupRepeatingTimeIntervals: ["R/2023-05-23T02:30:00+00:00/P1W"],
|
|
119
|
+
* retentionRules: [{
|
|
120
|
+
* name: "Daily",
|
|
121
|
+
* priority: 25,
|
|
122
|
+
* lifeCycles: [{
|
|
123
|
+
* duration: "P84D",
|
|
124
|
+
* dataStoreType: "OperationalStore",
|
|
125
|
+
* }],
|
|
126
|
+
* criteria: {
|
|
127
|
+
* daysOfWeeks: ["Thursday"],
|
|
128
|
+
* monthsOfYears: ["November"],
|
|
129
|
+
* weeksOfMonths: ["First"],
|
|
130
|
+
* scheduledBackupTimes: ["2023-05-23T02:30:00Z"],
|
|
131
|
+
* },
|
|
132
|
+
* }],
|
|
133
|
+
* defaultRetentionRule: {
|
|
134
|
+
* lifeCycles: [{
|
|
135
|
+
* duration: "P14D",
|
|
136
|
+
* dataStoreType: "OperationalStore",
|
|
137
|
+
* }],
|
|
138
|
+
* },
|
|
139
|
+
* });
|
|
140
|
+
* const exampleBackupInstanceKubernetesCluster = new azure.dataprotection.BackupInstanceKubernetesCluster("example", {
|
|
141
|
+
* name: "example",
|
|
142
|
+
* location: example.location,
|
|
143
|
+
* vaultId: exampleBackupVault.id,
|
|
144
|
+
* kubernetesClusterId: exampleKubernetesCluster.id,
|
|
145
|
+
* snapshotResourceGroupName: snap.name,
|
|
146
|
+
* backupPolicyId: exampleBackupPolicyKubernetesCluster.id,
|
|
147
|
+
* backupDatasourceParameters: {
|
|
148
|
+
* excludedNamespaces: ["test-excluded-namespaces"],
|
|
149
|
+
* excludedResourceTypes: ["exvolumesnapshotcontents.snapshot.storage.k8s.io"],
|
|
150
|
+
* clusterScopedResourcesEnabled: true,
|
|
151
|
+
* includedNamespaces: ["test-included-namespaces"],
|
|
152
|
+
* includedResourceTypes: ["involumesnapshotcontents.snapshot.storage.k8s.io"],
|
|
153
|
+
* labelSelectors: ["kubernetes.io/metadata.name:test"],
|
|
154
|
+
* volumeSnapshotEnabled: true,
|
|
155
|
+
* },
|
|
156
|
+
* }, {
|
|
157
|
+
* dependsOn: [
|
|
158
|
+
* testExtensionAndStorageAccountPermission,
|
|
159
|
+
* testVaultMsiReadOnCluster,
|
|
160
|
+
* testVaultMsiReadOnSnapRg,
|
|
161
|
+
* testClusterMsiContributorOnSnapRg,
|
|
162
|
+
* testVaultMsiSnapshotContributorOnSnapRg,
|
|
163
|
+
* testVaultDataOperatorOnSnapRg,
|
|
164
|
+
* testVaultDataContributorOnStorage,
|
|
165
|
+
* ],
|
|
166
|
+
* });
|
|
167
|
+
* ```
|
|
168
|
+
*
|
|
7
169
|
* ## Import
|
|
8
170
|
*
|
|
9
171
|
* Backup Instance Kubernetes Cluster can be imported using the `resource id`, e.g.
|
|
@@ -8,6 +8,168 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Manages a Backup Instance to back up a Kubernetes Cluster.
|
|
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 current = azure.core.getClientConfig({});
|
|
18
|
+
* const example = new azure.core.ResourceGroup("example", {
|
|
19
|
+
* name: "example",
|
|
20
|
+
* location: "West Europe",
|
|
21
|
+
* });
|
|
22
|
+
* const snap = new azure.core.ResourceGroup("snap", {
|
|
23
|
+
* name: "example-snap",
|
|
24
|
+
* location: "West Europe",
|
|
25
|
+
* });
|
|
26
|
+
* const exampleBackupVault = new azure.dataprotection.BackupVault("example", {
|
|
27
|
+
* name: "example",
|
|
28
|
+
* resourceGroupName: example.name,
|
|
29
|
+
* location: example.location,
|
|
30
|
+
* datastoreType: "VaultStore",
|
|
31
|
+
* redundancy: "LocallyRedundant",
|
|
32
|
+
* identity: {
|
|
33
|
+
* type: "SystemAssigned",
|
|
34
|
+
* },
|
|
35
|
+
* });
|
|
36
|
+
* const exampleKubernetesCluster = new azure.containerservice.KubernetesCluster("example", {
|
|
37
|
+
* name: "example",
|
|
38
|
+
* location: example.location,
|
|
39
|
+
* resourceGroupName: example.name,
|
|
40
|
+
* dnsPrefix: "dns",
|
|
41
|
+
* defaultNodePool: {
|
|
42
|
+
* name: "default",
|
|
43
|
+
* nodeCount: 1,
|
|
44
|
+
* vmSize: "Standard_DS2_v2",
|
|
45
|
+
* hostEncryptionEnabled: true,
|
|
46
|
+
* },
|
|
47
|
+
* identity: {
|
|
48
|
+
* type: "SystemAssigned",
|
|
49
|
+
* },
|
|
50
|
+
* });
|
|
51
|
+
* const aksClusterTrustedAccess = new azure.containerservice.ClusterTrustedAccessRoleBinding("aks_cluster_trusted_access", {
|
|
52
|
+
* kubernetesClusterId: exampleKubernetesCluster.id,
|
|
53
|
+
* name: "example",
|
|
54
|
+
* roles: ["Microsoft.DataProtection/backupVaults/backup-operator"],
|
|
55
|
+
* sourceResourceId: exampleBackupVault.id,
|
|
56
|
+
* });
|
|
57
|
+
* const exampleAccount = new azure.storage.Account("example", {
|
|
58
|
+
* name: "example",
|
|
59
|
+
* resourceGroupName: example.name,
|
|
60
|
+
* location: example.location,
|
|
61
|
+
* accountTier: "Standard",
|
|
62
|
+
* accountReplicationType: "LRS",
|
|
63
|
+
* });
|
|
64
|
+
* const exampleContainer = new azure.storage.Container("example", {
|
|
65
|
+
* name: "example",
|
|
66
|
+
* storageAccountName: exampleAccount.name,
|
|
67
|
+
* containerAccessType: "private",
|
|
68
|
+
* });
|
|
69
|
+
* const exampleKubernetesClusterExtension = new azure.containerservice.KubernetesClusterExtension("example", {
|
|
70
|
+
* name: "example",
|
|
71
|
+
* clusterId: exampleKubernetesCluster.id,
|
|
72
|
+
* extensionType: "Microsoft.DataProtection.Kubernetes",
|
|
73
|
+
* releaseTrain: "stable",
|
|
74
|
+
* releaseNamespace: "dataprotection-microsoft",
|
|
75
|
+
* configurationSettings: {
|
|
76
|
+
* "configuration.backupStorageLocation.bucket": exampleContainer.name,
|
|
77
|
+
* "configuration.backupStorageLocation.config.resourceGroup": example.name,
|
|
78
|
+
* "configuration.backupStorageLocation.config.storageAccount": exampleAccount.name,
|
|
79
|
+
* "configuration.backupStorageLocation.config.subscriptionId": current.then(current => current.subscriptionId),
|
|
80
|
+
* "credentials.tenantId": current.then(current => current.tenantId),
|
|
81
|
+
* },
|
|
82
|
+
* });
|
|
83
|
+
* const testExtensionAndStorageAccountPermission = new azure.authorization.Assignment("test_extension_and_storage_account_permission", {
|
|
84
|
+
* scope: exampleAccount.id,
|
|
85
|
+
* roleDefinitionName: "Storage Account Contributor",
|
|
86
|
+
* principalId: exampleKubernetesClusterExtension.aksAssignedIdentities.apply(aksAssignedIdentities => aksAssignedIdentities[0].principalId),
|
|
87
|
+
* });
|
|
88
|
+
* const testVaultMsiReadOnCluster = new azure.authorization.Assignment("test_vault_msi_read_on_cluster", {
|
|
89
|
+
* scope: exampleKubernetesCluster.id,
|
|
90
|
+
* roleDefinitionName: "Reader",
|
|
91
|
+
* principalId: exampleBackupVault.identity.apply(identity => identity?.principalId),
|
|
92
|
+
* });
|
|
93
|
+
* const testVaultMsiReadOnSnapRg = new azure.authorization.Assignment("test_vault_msi_read_on_snap_rg", {
|
|
94
|
+
* scope: snap.id,
|
|
95
|
+
* roleDefinitionName: "Reader",
|
|
96
|
+
* principalId: exampleBackupVault.identity.apply(identity => identity?.principalId),
|
|
97
|
+
* });
|
|
98
|
+
* const testVaultMsiSnapshotContributorOnSnapRg = new azure.authorization.Assignment("test_vault_msi_snapshot_contributor_on_snap_rg", {
|
|
99
|
+
* scope: snap.id,
|
|
100
|
+
* roleDefinitionName: "Disk Snapshot Contributor",
|
|
101
|
+
* principalId: exampleBackupVault.identity.apply(identity => identity?.principalId),
|
|
102
|
+
* });
|
|
103
|
+
* const testVaultDataOperatorOnSnapRg = new azure.authorization.Assignment("test_vault_data_operator_on_snap_rg", {
|
|
104
|
+
* scope: snap.id,
|
|
105
|
+
* roleDefinitionName: "Data Operator for Managed Disks",
|
|
106
|
+
* principalId: exampleBackupVault.identity.apply(identity => identity?.principalId),
|
|
107
|
+
* });
|
|
108
|
+
* const testVaultDataContributorOnStorage = new azure.authorization.Assignment("test_vault_data_contributor_on_storage", {
|
|
109
|
+
* scope: exampleAccount.id,
|
|
110
|
+
* roleDefinitionName: "Storage Blob Data Contributor",
|
|
111
|
+
* principalId: exampleBackupVault.identity.apply(identity => identity?.principalId),
|
|
112
|
+
* });
|
|
113
|
+
* const testClusterMsiContributorOnSnapRg = new azure.authorization.Assignment("test_cluster_msi_contributor_on_snap_rg", {
|
|
114
|
+
* scope: snap.id,
|
|
115
|
+
* roleDefinitionName: "Contributor",
|
|
116
|
+
* principalId: exampleKubernetesCluster.identity.apply(identity => identity?.principalId),
|
|
117
|
+
* });
|
|
118
|
+
* const exampleBackupPolicyKubernetesCluster = new azure.dataprotection.BackupPolicyKubernetesCluster("example", {
|
|
119
|
+
* name: "example",
|
|
120
|
+
* resourceGroupName: example.name,
|
|
121
|
+
* vaultName: exampleBackupVault.name,
|
|
122
|
+
* backupRepeatingTimeIntervals: ["R/2023-05-23T02:30:00+00:00/P1W"],
|
|
123
|
+
* retentionRules: [{
|
|
124
|
+
* name: "Daily",
|
|
125
|
+
* priority: 25,
|
|
126
|
+
* lifeCycles: [{
|
|
127
|
+
* duration: "P84D",
|
|
128
|
+
* dataStoreType: "OperationalStore",
|
|
129
|
+
* }],
|
|
130
|
+
* criteria: {
|
|
131
|
+
* daysOfWeeks: ["Thursday"],
|
|
132
|
+
* monthsOfYears: ["November"],
|
|
133
|
+
* weeksOfMonths: ["First"],
|
|
134
|
+
* scheduledBackupTimes: ["2023-05-23T02:30:00Z"],
|
|
135
|
+
* },
|
|
136
|
+
* }],
|
|
137
|
+
* defaultRetentionRule: {
|
|
138
|
+
* lifeCycles: [{
|
|
139
|
+
* duration: "P14D",
|
|
140
|
+
* dataStoreType: "OperationalStore",
|
|
141
|
+
* }],
|
|
142
|
+
* },
|
|
143
|
+
* });
|
|
144
|
+
* const exampleBackupInstanceKubernetesCluster = new azure.dataprotection.BackupInstanceKubernetesCluster("example", {
|
|
145
|
+
* name: "example",
|
|
146
|
+
* location: example.location,
|
|
147
|
+
* vaultId: exampleBackupVault.id,
|
|
148
|
+
* kubernetesClusterId: exampleKubernetesCluster.id,
|
|
149
|
+
* snapshotResourceGroupName: snap.name,
|
|
150
|
+
* backupPolicyId: exampleBackupPolicyKubernetesCluster.id,
|
|
151
|
+
* backupDatasourceParameters: {
|
|
152
|
+
* excludedNamespaces: ["test-excluded-namespaces"],
|
|
153
|
+
* excludedResourceTypes: ["exvolumesnapshotcontents.snapshot.storage.k8s.io"],
|
|
154
|
+
* clusterScopedResourcesEnabled: true,
|
|
155
|
+
* includedNamespaces: ["test-included-namespaces"],
|
|
156
|
+
* includedResourceTypes: ["involumesnapshotcontents.snapshot.storage.k8s.io"],
|
|
157
|
+
* labelSelectors: ["kubernetes.io/metadata.name:test"],
|
|
158
|
+
* volumeSnapshotEnabled: true,
|
|
159
|
+
* },
|
|
160
|
+
* }, {
|
|
161
|
+
* dependsOn: [
|
|
162
|
+
* testExtensionAndStorageAccountPermission,
|
|
163
|
+
* testVaultMsiReadOnCluster,
|
|
164
|
+
* testVaultMsiReadOnSnapRg,
|
|
165
|
+
* testClusterMsiContributorOnSnapRg,
|
|
166
|
+
* testVaultMsiSnapshotContributorOnSnapRg,
|
|
167
|
+
* testVaultDataOperatorOnSnapRg,
|
|
168
|
+
* testVaultDataContributorOnStorage,
|
|
169
|
+
* ],
|
|
170
|
+
* });
|
|
171
|
+
* ```
|
|
172
|
+
*
|
|
11
173
|
* ## Import
|
|
12
174
|
*
|
|
13
175
|
* Backup Instance Kubernetes Cluster can be imported using the `resource id`, e.g.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"backupInstanceKubernetesCluster.js","sourceRoot":"","sources":["../../dataprotection/backupInstanceKubernetesCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"backupInstanceKubernetesCluster.js","sourceRoot":"","sources":["../../dataprotection/backupInstanceKubernetesCluster.ts"],"names":[],"mappings":"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"}
|
|
@@ -47,6 +47,12 @@ export declare class BackupVault extends pulumi.CustomResource {
|
|
|
47
47
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
48
48
|
*/
|
|
49
49
|
static isInstance(obj: any): obj is BackupVault;
|
|
50
|
+
/**
|
|
51
|
+
* Whether to enable cross-region restore for the Backup Vault.
|
|
52
|
+
*
|
|
53
|
+
* > **Note:** The `crossRegionRestoreEnabled` can only be specified when `redundancy` is specified for `GeoRedundant`. Once `crossRegionRestoreEnabled` is enabled, it cannot be disabled.
|
|
54
|
+
*/
|
|
55
|
+
readonly crossRegionRestoreEnabled: pulumi.Output<boolean | undefined>;
|
|
50
56
|
/**
|
|
51
57
|
* Specifies the type of the data store. Possible values are `ArchiveStore`, `OperationalStore`, `SnapshotStore` and `VaultStore`. Changing this forces a new resource to be created.
|
|
52
58
|
*
|
|
@@ -104,6 +110,12 @@ export declare class BackupVault extends pulumi.CustomResource {
|
|
|
104
110
|
* Input properties used for looking up and filtering BackupVault resources.
|
|
105
111
|
*/
|
|
106
112
|
export interface BackupVaultState {
|
|
113
|
+
/**
|
|
114
|
+
* Whether to enable cross-region restore for the Backup Vault.
|
|
115
|
+
*
|
|
116
|
+
* > **Note:** The `crossRegionRestoreEnabled` can only be specified when `redundancy` is specified for `GeoRedundant`. Once `crossRegionRestoreEnabled` is enabled, it cannot be disabled.
|
|
117
|
+
*/
|
|
118
|
+
crossRegionRestoreEnabled?: pulumi.Input<boolean>;
|
|
107
119
|
/**
|
|
108
120
|
* Specifies the type of the data store. Possible values are `ArchiveStore`, `OperationalStore`, `SnapshotStore` and `VaultStore`. Changing this forces a new resource to be created.
|
|
109
121
|
*
|
|
@@ -153,6 +165,12 @@ export interface BackupVaultState {
|
|
|
153
165
|
* The set of arguments for constructing a BackupVault resource.
|
|
154
166
|
*/
|
|
155
167
|
export interface BackupVaultArgs {
|
|
168
|
+
/**
|
|
169
|
+
* Whether to enable cross-region restore for the Backup Vault.
|
|
170
|
+
*
|
|
171
|
+
* > **Note:** The `crossRegionRestoreEnabled` can only be specified when `redundancy` is specified for `GeoRedundant`. Once `crossRegionRestoreEnabled` is enabled, it cannot be disabled.
|
|
172
|
+
*/
|
|
173
|
+
crossRegionRestoreEnabled?: pulumi.Input<boolean>;
|
|
156
174
|
/**
|
|
157
175
|
* Specifies the type of the data store. Possible values are `ArchiveStore`, `OperationalStore`, `SnapshotStore` and `VaultStore`. Changing this forces a new resource to be created.
|
|
158
176
|
*
|
|
@@ -41,6 +41,7 @@ class BackupVault extends pulumi.CustomResource {
|
|
|
41
41
|
opts = opts || {};
|
|
42
42
|
if (opts.id) {
|
|
43
43
|
const state = argsOrState;
|
|
44
|
+
resourceInputs["crossRegionRestoreEnabled"] = state ? state.crossRegionRestoreEnabled : undefined;
|
|
44
45
|
resourceInputs["datastoreType"] = state ? state.datastoreType : undefined;
|
|
45
46
|
resourceInputs["identity"] = state ? state.identity : undefined;
|
|
46
47
|
resourceInputs["location"] = state ? state.location : undefined;
|
|
@@ -62,6 +63,7 @@ class BackupVault extends pulumi.CustomResource {
|
|
|
62
63
|
if ((!args || args.resourceGroupName === undefined) && !opts.urn) {
|
|
63
64
|
throw new Error("Missing required property 'resourceGroupName'");
|
|
64
65
|
}
|
|
66
|
+
resourceInputs["crossRegionRestoreEnabled"] = args ? args.crossRegionRestoreEnabled : undefined;
|
|
65
67
|
resourceInputs["datastoreType"] = args ? args.datastoreType : undefined;
|
|
66
68
|
resourceInputs["identity"] = args ? args.identity : undefined;
|
|
67
69
|
resourceInputs["location"] = args ? args.location : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"backupVault.js","sourceRoot":"","sources":["../../dataprotection/backupVault.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"backupVault.js","sourceRoot":"","sources":["../../dataprotection/backupVault.ts"],"names":[],"mappings":"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"}
|
package/eventhub/queue.d.ts
CHANGED
|
@@ -55,9 +55,9 @@ export declare class Queue extends pulumi.CustomResource {
|
|
|
55
55
|
*/
|
|
56
56
|
static isInstance(obj: any): obj is Queue;
|
|
57
57
|
/**
|
|
58
|
-
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
58
|
+
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
59
59
|
*/
|
|
60
|
-
readonly autoDeleteOnIdle: pulumi.Output<string
|
|
60
|
+
readonly autoDeleteOnIdle: pulumi.Output<string>;
|
|
61
61
|
/**
|
|
62
62
|
* Boolean flag which controls whether server-side batched operations are enabled. Defaults to `true`.
|
|
63
63
|
*/
|
|
@@ -67,9 +67,9 @@ export declare class Queue extends pulumi.CustomResource {
|
|
|
67
67
|
*/
|
|
68
68
|
readonly deadLetteringOnMessageExpiration: pulumi.Output<boolean | undefined>;
|
|
69
69
|
/**
|
|
70
|
-
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
70
|
+
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
71
71
|
*/
|
|
72
|
-
readonly defaultMessageTtl: pulumi.Output<string
|
|
72
|
+
readonly defaultMessageTtl: pulumi.Output<string>;
|
|
73
73
|
/**
|
|
74
74
|
* The ISO 8601 timespan duration during which duplicates can be detected. Defaults to `PT10M` (10 Minutes).
|
|
75
75
|
*/
|
|
@@ -97,11 +97,11 @@ export declare class Queue extends pulumi.CustomResource {
|
|
|
97
97
|
*/
|
|
98
98
|
readonly maxDeliveryCount: pulumi.Output<number | undefined>;
|
|
99
99
|
/**
|
|
100
|
-
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
100
|
+
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
101
101
|
*/
|
|
102
102
|
readonly maxMessageSizeInKilobytes: pulumi.Output<number>;
|
|
103
103
|
/**
|
|
104
|
-
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
104
|
+
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
105
105
|
*/
|
|
106
106
|
readonly maxSizeInMegabytes: pulumi.Output<number>;
|
|
107
107
|
/**
|
|
@@ -147,7 +147,7 @@ export declare class Queue extends pulumi.CustomResource {
|
|
|
147
147
|
*/
|
|
148
148
|
export interface QueueState {
|
|
149
149
|
/**
|
|
150
|
-
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
150
|
+
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
151
151
|
*/
|
|
152
152
|
autoDeleteOnIdle?: pulumi.Input<string>;
|
|
153
153
|
/**
|
|
@@ -159,7 +159,7 @@ export interface QueueState {
|
|
|
159
159
|
*/
|
|
160
160
|
deadLetteringOnMessageExpiration?: pulumi.Input<boolean>;
|
|
161
161
|
/**
|
|
162
|
-
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
162
|
+
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
163
163
|
*/
|
|
164
164
|
defaultMessageTtl?: pulumi.Input<string>;
|
|
165
165
|
/**
|
|
@@ -189,11 +189,11 @@ export interface QueueState {
|
|
|
189
189
|
*/
|
|
190
190
|
maxDeliveryCount?: pulumi.Input<number>;
|
|
191
191
|
/**
|
|
192
|
-
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
192
|
+
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
193
193
|
*/
|
|
194
194
|
maxMessageSizeInKilobytes?: pulumi.Input<number>;
|
|
195
195
|
/**
|
|
196
|
-
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
196
|
+
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
197
197
|
*/
|
|
198
198
|
maxSizeInMegabytes?: pulumi.Input<number>;
|
|
199
199
|
/**
|
|
@@ -230,7 +230,7 @@ export interface QueueState {
|
|
|
230
230
|
*/
|
|
231
231
|
export interface QueueArgs {
|
|
232
232
|
/**
|
|
233
|
-
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
233
|
+
* The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
|
|
234
234
|
*/
|
|
235
235
|
autoDeleteOnIdle?: pulumi.Input<string>;
|
|
236
236
|
/**
|
|
@@ -242,7 +242,7 @@ export interface QueueArgs {
|
|
|
242
242
|
*/
|
|
243
243
|
deadLetteringOnMessageExpiration?: pulumi.Input<boolean>;
|
|
244
244
|
/**
|
|
245
|
-
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
245
|
+
* The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on message itself.
|
|
246
246
|
*/
|
|
247
247
|
defaultMessageTtl?: pulumi.Input<string>;
|
|
248
248
|
/**
|
|
@@ -272,11 +272,11 @@ export interface QueueArgs {
|
|
|
272
272
|
*/
|
|
273
273
|
maxDeliveryCount?: pulumi.Input<number>;
|
|
274
274
|
/**
|
|
275
|
-
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
275
|
+
* Integer value which controls the maximum size of a message allowed on the queue for Premium SKU. For supported values see the "Large messages support" section of [this document](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-premium-messaging#large-messages-support-preview).
|
|
276
276
|
*/
|
|
277
277
|
maxMessageSizeInKilobytes?: pulumi.Input<number>;
|
|
278
278
|
/**
|
|
279
|
-
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
279
|
+
* Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of [Service Bus Quotas](https://docs.microsoft.com/azure/service-bus-messaging/service-bus-quotas).
|
|
280
280
|
*/
|
|
281
281
|
maxSizeInMegabytes?: pulumi.Input<number>;
|
|
282
282
|
/**
|
package/index.d.ts
CHANGED
|
@@ -85,7 +85,6 @@ import * as managementgroups from "./managementgroups";
|
|
|
85
85
|
import * as managementresource from "./managementresource";
|
|
86
86
|
import * as maps from "./maps";
|
|
87
87
|
import * as marketplace from "./marketplace";
|
|
88
|
-
import * as media from "./media";
|
|
89
88
|
import * as mixedreality from "./mixedreality";
|
|
90
89
|
import * as mobile from "./mobile";
|
|
91
90
|
import * as monitoring from "./monitoring";
|
|
@@ -133,4 +132,4 @@ import * as voice from "./voice";
|
|
|
133
132
|
import * as waf from "./waf";
|
|
134
133
|
import * as webpubsub from "./webpubsub";
|
|
135
134
|
import * as workloadssap from "./workloadssap";
|
|
136
|
-
export { aadb2c, advisor, analysisservices, apimanagement, appconfiguration, appinsights, appplatform, appservice, arc, arckubernetes, arcmachine, armmsi, attestation, authorization, automanage, automation, avs, backup, batch, billing, blueprint, bot, cdn, chaosstudio, cognitive, communication, compute, confidentialledger, config, connections, consumption, containerapp, containerservice, core, cosmosdb, costmanagement, customip, dashboard, databasemigration, databoxedge, databricks, datadog, datafactory, dataprotection, datashare, desktopvirtualization, devcenter, devtest, digitaltwins, dns, domainservices, elasticcloud, elasticsan, eventgrid, eventhub, expressroute, extendedlocation, fluidrelay, frontdoor, graph, hdinsight, healthcare, hpc, hsm, iot, iotcentral, keyvault, kusto, lb, lighthouse, loadtest, loganalytics, logicapps, machinelearning, maintenance, managedapplication, managedlustre, management, managementgroups, managementresource, maps, marketplace,
|
|
135
|
+
export { aadb2c, advisor, analysisservices, apimanagement, appconfiguration, appinsights, appplatform, appservice, arc, arckubernetes, arcmachine, armmsi, attestation, authorization, automanage, automation, avs, backup, batch, billing, blueprint, bot, cdn, chaosstudio, cognitive, communication, compute, confidentialledger, config, connections, consumption, containerapp, containerservice, core, cosmosdb, costmanagement, customip, dashboard, databasemigration, databoxedge, databricks, datadog, datafactory, dataprotection, datashare, desktopvirtualization, devcenter, devtest, digitaltwins, dns, domainservices, elasticcloud, elasticsan, eventgrid, eventhub, expressroute, extendedlocation, fluidrelay, frontdoor, graph, hdinsight, healthcare, hpc, hsm, iot, iotcentral, keyvault, kusto, lb, lighthouse, loadtest, loganalytics, logicapps, machinelearning, maintenance, managedapplication, managedlustre, management, managementgroups, managementresource, maps, marketplace, mixedreality, mobile, monitoring, msi, mssql, mysql, netapp, network, networkfunction, newrelic, nginx, notificationhub, operationalinsights, orbital, paloalto, pim, policy, portal, postgresql, powerbi, privatedns, privatelink, proximity, purview, recoveryservices, redhatopenshift, redis, relay, role, search, securitycenter, sentinel, servicebus, servicefabric, signalr, siterecovery, stack, storage, streamanalytics, synapse, systemcenter, trafficmanager, types, voice, waf, webpubsub, workloadssap, };
|
package/index.js
CHANGED
|
@@ -17,8 +17,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
19
|
exports.digitaltwins = exports.devtest = exports.devcenter = exports.desktopvirtualization = exports.datashare = exports.dataprotection = exports.datafactory = exports.datadog = exports.databricks = exports.databoxedge = exports.databasemigration = exports.dashboard = exports.customip = exports.costmanagement = exports.cosmosdb = exports.core = exports.containerservice = exports.containerapp = exports.consumption = exports.connections = exports.config = exports.confidentialledger = exports.compute = exports.communication = exports.cognitive = exports.chaosstudio = exports.cdn = exports.bot = exports.blueprint = exports.billing = exports.batch = exports.backup = exports.avs = exports.automation = exports.automanage = exports.authorization = exports.attestation = exports.armmsi = exports.arcmachine = exports.arckubernetes = exports.arc = exports.appservice = exports.appplatform = exports.appinsights = exports.appconfiguration = exports.apimanagement = exports.analysisservices = exports.advisor = exports.aadb2c = exports.Provider = void 0;
|
|
20
|
-
exports.pim = exports.paloalto = exports.orbital = exports.operationalinsights = exports.notificationhub = exports.nginx = exports.newrelic = exports.networkfunction = exports.network = exports.netapp = exports.mysql = exports.mssql = exports.msi = exports.monitoring = exports.mobile = exports.mixedreality = exports.
|
|
21
|
-
exports.workloadssap = exports.webpubsub = exports.waf = exports.voice = exports.types = exports.trafficmanager = exports.systemcenter = exports.synapse = exports.streamanalytics = exports.storage = exports.stack = exports.siterecovery = exports.signalr = exports.servicefabric = exports.servicebus = exports.sentinel = exports.securitycenter = exports.search = exports.role = exports.relay = exports.redis = exports.redhatopenshift = exports.recoveryservices = exports.purview = exports.proximity = exports.privatelink = exports.privatedns = exports.powerbi = exports.postgresql = exports.portal =
|
|
20
|
+
exports.policy = exports.pim = exports.paloalto = exports.orbital = exports.operationalinsights = exports.notificationhub = exports.nginx = exports.newrelic = exports.networkfunction = exports.network = exports.netapp = exports.mysql = exports.mssql = exports.msi = exports.monitoring = exports.mobile = exports.mixedreality = exports.marketplace = exports.maps = exports.managementresource = exports.managementgroups = exports.management = exports.managedlustre = exports.managedapplication = exports.maintenance = exports.machinelearning = exports.logicapps = exports.loganalytics = exports.loadtest = exports.lighthouse = exports.lb = exports.kusto = exports.keyvault = exports.iotcentral = exports.iot = exports.hsm = exports.hpc = exports.healthcare = exports.hdinsight = exports.graph = exports.frontdoor = exports.fluidrelay = exports.extendedlocation = exports.expressroute = exports.eventhub = exports.eventgrid = exports.elasticsan = exports.elasticcloud = exports.domainservices = exports.dns = void 0;
|
|
21
|
+
exports.workloadssap = exports.webpubsub = exports.waf = exports.voice = exports.types = exports.trafficmanager = exports.systemcenter = exports.synapse = exports.streamanalytics = exports.storage = exports.stack = exports.siterecovery = exports.signalr = exports.servicefabric = exports.servicebus = exports.sentinel = exports.securitycenter = exports.search = exports.role = exports.relay = exports.redis = exports.redhatopenshift = exports.recoveryservices = exports.purview = exports.proximity = exports.privatelink = exports.privatedns = exports.powerbi = exports.postgresql = exports.portal = void 0;
|
|
22
22
|
const pulumi = require("@pulumi/pulumi");
|
|
23
23
|
const utilities = require("./utilities");
|
|
24
24
|
// Export members:
|
|
@@ -191,8 +191,6 @@ const maps = require("./maps");
|
|
|
191
191
|
exports.maps = maps;
|
|
192
192
|
const marketplace = require("./marketplace");
|
|
193
193
|
exports.marketplace = marketplace;
|
|
194
|
-
const media = require("./media");
|
|
195
|
-
exports.media = media;
|
|
196
194
|
const mixedreality = require("./mixedreality");
|
|
197
195
|
exports.mixedreality = mixedreality;
|
|
198
196
|
const mobile = require("./mobile");
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,kBAAkB;AAClB,6CAA2B;AAGd,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAEvE,yCAAuB;AAEvB,sBAAsB;AACtB,mCAAmC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/mssql/database.d.ts
CHANGED
|
@@ -12,13 +12,6 @@ import * as outputs from "../types/output";
|
|
|
12
12
|
* name: "example-resources",
|
|
13
13
|
* location: "West Europe",
|
|
14
14
|
* });
|
|
15
|
-
* const exampleAccount = new azure.storage.Account("example", {
|
|
16
|
-
* name: "examplesa",
|
|
17
|
-
* resourceGroupName: example.name,
|
|
18
|
-
* location: example.location,
|
|
19
|
-
* accountTier: "Standard",
|
|
20
|
-
* accountReplicationType: "LRS",
|
|
21
|
-
* });
|
|
22
15
|
* const exampleServer = new azure.mssql.Server("example", {
|
|
23
16
|
* name: "example-sqlserver",
|
|
24
17
|
* resourceGroupName: example.name,
|
|
@@ -32,10 +25,8 @@ import * as outputs from "../types/output";
|
|
|
32
25
|
* serverId: exampleServer.id,
|
|
33
26
|
* collation: "SQL_Latin1_General_CP1_CI_AS",
|
|
34
27
|
* licenseType: "LicenseIncluded",
|
|
35
|
-
* maxSizeGb:
|
|
36
|
-
* readScale: true,
|
|
28
|
+
* maxSizeGb: 2,
|
|
37
29
|
* skuName: "S0",
|
|
38
|
-
* zoneRedundant: true,
|
|
39
30
|
* enclaveType: "VBS",
|
|
40
31
|
* tags: {
|
|
41
32
|
* foo: "bar",
|