@pulumi/azure 5.63.0-alpha.1706544707 → 5.63.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/appservice/environmentV3.d.ts +60 -0
- package/appservice/environmentV3.js +60 -0
- package/appservice/environmentV3.js.map +1 -1
- package/arckubernetes/cluster.d.ts +27 -0
- package/arckubernetes/cluster.js +27 -0
- package/arckubernetes/cluster.js.map +1 -1
- package/cdn/endpoint.d.ts +4 -0
- package/cdn/endpoint.js +4 -0
- package/cdn/endpoint.js.map +1 -1
- package/cdn/frontdoorOrigin.d.ts +158 -0
- package/cdn/frontdoorOrigin.js +158 -0
- package/cdn/frontdoorOrigin.js.map +1 -1
- package/cdn/profile.d.ts +4 -0
- package/cdn/profile.js +4 -0
- package/cdn/profile.js.map +1 -1
- package/compute/image.d.ts +21 -0
- package/compute/image.js +21 -0
- package/compute/image.js.map +1 -1
- package/compute/windowsVirtualMachine.d.ts +15 -0
- package/compute/windowsVirtualMachine.js.map +1 -1
- package/databricks/workspaceCustomerManagedKey.d.ts +92 -0
- package/databricks/workspaceCustomerManagedKey.js +92 -0
- package/databricks/workspaceCustomerManagedKey.js.map +1 -1
- package/databricks/workspaceRootDbfsCustomerManagedKey.d.ts +90 -0
- package/databricks/workspaceRootDbfsCustomerManagedKey.js +90 -0
- package/databricks/workspaceRootDbfsCustomerManagedKey.js.map +1 -1
- package/frontdoor/customHttpsConfiguration.d.ts +79 -0
- package/frontdoor/customHttpsConfiguration.js +79 -0
- package/frontdoor/customHttpsConfiguration.js.map +1 -1
- package/frontdoor/firewallPolicy.d.ts +6 -0
- package/frontdoor/firewallPolicy.js +6 -0
- package/frontdoor/firewallPolicy.js.map +1 -1
- package/mssql/databaseExtendedAuditingPolicy.d.ts +18 -0
- package/mssql/databaseExtendedAuditingPolicy.js.map +1 -1
- package/mssql/managedInstanceFailoverGroup.d.ts +86 -0
- package/mssql/managedInstanceFailoverGroup.js +86 -0
- package/mssql/managedInstanceFailoverGroup.js.map +1 -1
- package/network/networkWatcherFlowLog.d.ts +4 -0
- package/network/networkWatcherFlowLog.js +4 -0
- package/network/networkWatcherFlowLog.js.map +1 -1
- package/package.json +1 -1
- package/privatelink/endpoint.d.ts +151 -0
- package/privatelink/endpoint.js +151 -0
- package/privatelink/endpoint.js.map +1 -1
- package/sql/managedInstanceFailoverGroup.d.ts +63 -0
- package/sql/managedInstanceFailoverGroup.js +63 -0
- package/sql/managedInstanceFailoverGroup.js.map +1 -1
- package/types/input.d.ts +38 -0
- package/types/output.d.ts +38 -0
|
@@ -2,6 +2,157 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
import * as outputs from "../types/output";
|
|
4
4
|
/**
|
|
5
|
+
* Manages a Private Endpoint.
|
|
6
|
+
*
|
|
7
|
+
* Azure Private Endpoint is a network interface that connects you privately and securely to a service powered by Azure Private Link. Private Endpoint uses a private IP address from your VNet, effectively bringing the service into your VNet. The service could be an Azure service such as Azure Storage, SQL, etc. or your own Private Link Service.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as azure from "@pulumi/azure";
|
|
14
|
+
*
|
|
15
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
16
|
+
* const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
|
|
17
|
+
* addressSpaces: ["10.0.0.0/16"],
|
|
18
|
+
* location: exampleResourceGroup.location,
|
|
19
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
20
|
+
* });
|
|
21
|
+
* const service = new azure.network.Subnet("service", {
|
|
22
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
23
|
+
* virtualNetworkName: exampleVirtualNetwork.name,
|
|
24
|
+
* addressPrefixes: ["10.0.1.0/24"],
|
|
25
|
+
* enforcePrivateLinkServiceNetworkPolicies: true,
|
|
26
|
+
* });
|
|
27
|
+
* const endpoint = new azure.network.Subnet("endpoint", {
|
|
28
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
29
|
+
* virtualNetworkName: exampleVirtualNetwork.name,
|
|
30
|
+
* addressPrefixes: ["10.0.2.0/24"],
|
|
31
|
+
* enforcePrivateLinkEndpointNetworkPolicies: true,
|
|
32
|
+
* });
|
|
33
|
+
* const examplePublicIp = new azure.network.PublicIp("examplePublicIp", {
|
|
34
|
+
* sku: "Standard",
|
|
35
|
+
* location: exampleResourceGroup.location,
|
|
36
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
37
|
+
* allocationMethod: "Static",
|
|
38
|
+
* });
|
|
39
|
+
* const exampleLoadBalancer = new azure.lb.LoadBalancer("exampleLoadBalancer", {
|
|
40
|
+
* sku: "Standard",
|
|
41
|
+
* location: exampleResourceGroup.location,
|
|
42
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
43
|
+
* frontendIpConfigurations: [{
|
|
44
|
+
* name: examplePublicIp.name,
|
|
45
|
+
* publicIpAddressId: examplePublicIp.id,
|
|
46
|
+
* }],
|
|
47
|
+
* });
|
|
48
|
+
* const exampleLinkService = new azure.privatedns.LinkService("exampleLinkService", {
|
|
49
|
+
* location: exampleResourceGroup.location,
|
|
50
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
51
|
+
* natIpConfigurations: [{
|
|
52
|
+
* name: examplePublicIp.name,
|
|
53
|
+
* primary: true,
|
|
54
|
+
* subnetId: service.id,
|
|
55
|
+
* }],
|
|
56
|
+
* loadBalancerFrontendIpConfigurationIds: [exampleLoadBalancer.frontendIpConfigurations.apply(frontendIpConfigurations => frontendIpConfigurations?.[0]?.id)],
|
|
57
|
+
* });
|
|
58
|
+
* const exampleEndpoint = new azure.privatelink.Endpoint("exampleEndpoint", {
|
|
59
|
+
* location: exampleResourceGroup.location,
|
|
60
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
61
|
+
* subnetId: endpoint.id,
|
|
62
|
+
* privateServiceConnection: {
|
|
63
|
+
* name: "example-privateserviceconnection",
|
|
64
|
+
* privateConnectionResourceId: exampleLinkService.id,
|
|
65
|
+
* isManualConnection: false,
|
|
66
|
+
* },
|
|
67
|
+
* });
|
|
68
|
+
* ```
|
|
69
|
+
*
|
|
70
|
+
* Using a Private Link Service Alias with existing resources:
|
|
71
|
+
*
|
|
72
|
+
* ```typescript
|
|
73
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
74
|
+
* import * as azure from "@pulumi/azure";
|
|
75
|
+
*
|
|
76
|
+
* const exampleResourceGroup = azure.core.getResourceGroup({
|
|
77
|
+
* name: "example-resources",
|
|
78
|
+
* });
|
|
79
|
+
* const vnet = exampleResourceGroup.then(exampleResourceGroup => azure.network.getVirtualNetwork({
|
|
80
|
+
* name: "example-network",
|
|
81
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
82
|
+
* }));
|
|
83
|
+
* const subnet = Promise.all([vnet, exampleResourceGroup]).then(([vnet, exampleResourceGroup]) => azure.network.getSubnet({
|
|
84
|
+
* name: "default",
|
|
85
|
+
* virtualNetworkName: vnet.name,
|
|
86
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
87
|
+
* }));
|
|
88
|
+
* const exampleEndpoint = new azure.privatelink.Endpoint("exampleEndpoint", {
|
|
89
|
+
* location: exampleResourceGroup.then(exampleResourceGroup => exampleResourceGroup.location),
|
|
90
|
+
* resourceGroupName: exampleResourceGroup.then(exampleResourceGroup => exampleResourceGroup.name),
|
|
91
|
+
* subnetId: subnet.then(subnet => subnet.id),
|
|
92
|
+
* privateServiceConnection: {
|
|
93
|
+
* name: "example-privateserviceconnection",
|
|
94
|
+
* privateConnectionResourceAlias: "example-privatelinkservice.d20286c8-4ea5-11eb-9584-8f53157226c6.centralus.azure.privatelinkservice",
|
|
95
|
+
* isManualConnection: true,
|
|
96
|
+
* requestMessage: "PL",
|
|
97
|
+
* },
|
|
98
|
+
* });
|
|
99
|
+
* ```
|
|
100
|
+
*
|
|
101
|
+
* Using a Private Endpoint pointing to an *owned* Azure service, with proper DNS configuration:
|
|
102
|
+
*
|
|
103
|
+
* ```typescript
|
|
104
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
105
|
+
* import * as azure from "@pulumi/azure";
|
|
106
|
+
*
|
|
107
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
108
|
+
* const exampleAccount = new azure.storage.Account("exampleAccount", {
|
|
109
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
110
|
+
* location: exampleResourceGroup.location,
|
|
111
|
+
* accountTier: "Standard",
|
|
112
|
+
* accountReplicationType: "LRS",
|
|
113
|
+
* });
|
|
114
|
+
* const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
|
|
115
|
+
* addressSpaces: ["10.0.0.0/16"],
|
|
116
|
+
* location: exampleResourceGroup.location,
|
|
117
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
118
|
+
* });
|
|
119
|
+
* const exampleSubnet = new azure.network.Subnet("exampleSubnet", {
|
|
120
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
121
|
+
* virtualNetworkName: exampleVirtualNetwork.name,
|
|
122
|
+
* addressPrefixes: ["10.0.2.0/24"],
|
|
123
|
+
* });
|
|
124
|
+
* const exampleZone = new azure.privatedns.Zone("exampleZone", {resourceGroupName: exampleResourceGroup.name});
|
|
125
|
+
* const exampleEndpoint = new azure.privatelink.Endpoint("exampleEndpoint", {
|
|
126
|
+
* location: exampleResourceGroup.location,
|
|
127
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
128
|
+
* subnetId: exampleSubnet.id,
|
|
129
|
+
* privateServiceConnection: {
|
|
130
|
+
* name: "example-privateserviceconnection",
|
|
131
|
+
* privateConnectionResourceId: exampleAccount.id,
|
|
132
|
+
* subresourceNames: ["blob"],
|
|
133
|
+
* isManualConnection: false,
|
|
134
|
+
* },
|
|
135
|
+
* privateDnsZoneGroup: {
|
|
136
|
+
* name: "example-dns-zone-group",
|
|
137
|
+
* privateDnsZoneIds: [exampleZone.id],
|
|
138
|
+
* },
|
|
139
|
+
* });
|
|
140
|
+
* const exampleZoneVirtualNetworkLink = new azure.privatedns.ZoneVirtualNetworkLink("exampleZoneVirtualNetworkLink", {
|
|
141
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
142
|
+
* privateDnsZoneName: exampleZone.name,
|
|
143
|
+
* virtualNetworkId: exampleVirtualNetwork.id,
|
|
144
|
+
* });
|
|
145
|
+
* ```
|
|
146
|
+
* ## Example HCL Configurations
|
|
147
|
+
*
|
|
148
|
+
* * How to conneca `Private Endpoint` to a Application Gateway
|
|
149
|
+
* * How to connect a `Private Endpoint` to a Cosmos MongoDB
|
|
150
|
+
* * How to connect a `Private Endpoint` to a Cosmos PostgreSQL
|
|
151
|
+
* * How to connect a `Private Endpoint` to a PostgreSQL Server
|
|
152
|
+
* * How to connect a `Private Endpoint` to a Private Link Service
|
|
153
|
+
* * How to connect a `Private Endpoint` to a Private DNS Group
|
|
154
|
+
* * How to connect a `Private Endpoint` to a Databricks Workspace
|
|
155
|
+
*
|
|
5
156
|
* ## Import
|
|
6
157
|
*
|
|
7
158
|
* Private Endpoints can be imported using the `resource id`, e.g.
|
package/privatelink/endpoint.js
CHANGED
|
@@ -6,6 +6,157 @@ exports.Endpoint = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
+
* Manages a Private Endpoint.
|
|
10
|
+
*
|
|
11
|
+
* Azure Private Endpoint is a network interface that connects you privately and securely to a service powered by Azure Private Link. Private Endpoint uses a private IP address from your VNet, effectively bringing the service into your VNet. The service could be an Azure service such as Azure Storage, SQL, etc. or your own Private Link Service.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as azure from "@pulumi/azure";
|
|
18
|
+
*
|
|
19
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
20
|
+
* const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
|
|
21
|
+
* addressSpaces: ["10.0.0.0/16"],
|
|
22
|
+
* location: exampleResourceGroup.location,
|
|
23
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
24
|
+
* });
|
|
25
|
+
* const service = new azure.network.Subnet("service", {
|
|
26
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
27
|
+
* virtualNetworkName: exampleVirtualNetwork.name,
|
|
28
|
+
* addressPrefixes: ["10.0.1.0/24"],
|
|
29
|
+
* enforcePrivateLinkServiceNetworkPolicies: true,
|
|
30
|
+
* });
|
|
31
|
+
* const endpoint = new azure.network.Subnet("endpoint", {
|
|
32
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
33
|
+
* virtualNetworkName: exampleVirtualNetwork.name,
|
|
34
|
+
* addressPrefixes: ["10.0.2.0/24"],
|
|
35
|
+
* enforcePrivateLinkEndpointNetworkPolicies: true,
|
|
36
|
+
* });
|
|
37
|
+
* const examplePublicIp = new azure.network.PublicIp("examplePublicIp", {
|
|
38
|
+
* sku: "Standard",
|
|
39
|
+
* location: exampleResourceGroup.location,
|
|
40
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
41
|
+
* allocationMethod: "Static",
|
|
42
|
+
* });
|
|
43
|
+
* const exampleLoadBalancer = new azure.lb.LoadBalancer("exampleLoadBalancer", {
|
|
44
|
+
* sku: "Standard",
|
|
45
|
+
* location: exampleResourceGroup.location,
|
|
46
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
47
|
+
* frontendIpConfigurations: [{
|
|
48
|
+
* name: examplePublicIp.name,
|
|
49
|
+
* publicIpAddressId: examplePublicIp.id,
|
|
50
|
+
* }],
|
|
51
|
+
* });
|
|
52
|
+
* const exampleLinkService = new azure.privatedns.LinkService("exampleLinkService", {
|
|
53
|
+
* location: exampleResourceGroup.location,
|
|
54
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
55
|
+
* natIpConfigurations: [{
|
|
56
|
+
* name: examplePublicIp.name,
|
|
57
|
+
* primary: true,
|
|
58
|
+
* subnetId: service.id,
|
|
59
|
+
* }],
|
|
60
|
+
* loadBalancerFrontendIpConfigurationIds: [exampleLoadBalancer.frontendIpConfigurations.apply(frontendIpConfigurations => frontendIpConfigurations?.[0]?.id)],
|
|
61
|
+
* });
|
|
62
|
+
* const exampleEndpoint = new azure.privatelink.Endpoint("exampleEndpoint", {
|
|
63
|
+
* location: exampleResourceGroup.location,
|
|
64
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
65
|
+
* subnetId: endpoint.id,
|
|
66
|
+
* privateServiceConnection: {
|
|
67
|
+
* name: "example-privateserviceconnection",
|
|
68
|
+
* privateConnectionResourceId: exampleLinkService.id,
|
|
69
|
+
* isManualConnection: false,
|
|
70
|
+
* },
|
|
71
|
+
* });
|
|
72
|
+
* ```
|
|
73
|
+
*
|
|
74
|
+
* Using a Private Link Service Alias with existing resources:
|
|
75
|
+
*
|
|
76
|
+
* ```typescript
|
|
77
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
78
|
+
* import * as azure from "@pulumi/azure";
|
|
79
|
+
*
|
|
80
|
+
* const exampleResourceGroup = azure.core.getResourceGroup({
|
|
81
|
+
* name: "example-resources",
|
|
82
|
+
* });
|
|
83
|
+
* const vnet = exampleResourceGroup.then(exampleResourceGroup => azure.network.getVirtualNetwork({
|
|
84
|
+
* name: "example-network",
|
|
85
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
86
|
+
* }));
|
|
87
|
+
* const subnet = Promise.all([vnet, exampleResourceGroup]).then(([vnet, exampleResourceGroup]) => azure.network.getSubnet({
|
|
88
|
+
* name: "default",
|
|
89
|
+
* virtualNetworkName: vnet.name,
|
|
90
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
91
|
+
* }));
|
|
92
|
+
* const exampleEndpoint = new azure.privatelink.Endpoint("exampleEndpoint", {
|
|
93
|
+
* location: exampleResourceGroup.then(exampleResourceGroup => exampleResourceGroup.location),
|
|
94
|
+
* resourceGroupName: exampleResourceGroup.then(exampleResourceGroup => exampleResourceGroup.name),
|
|
95
|
+
* subnetId: subnet.then(subnet => subnet.id),
|
|
96
|
+
* privateServiceConnection: {
|
|
97
|
+
* name: "example-privateserviceconnection",
|
|
98
|
+
* privateConnectionResourceAlias: "example-privatelinkservice.d20286c8-4ea5-11eb-9584-8f53157226c6.centralus.azure.privatelinkservice",
|
|
99
|
+
* isManualConnection: true,
|
|
100
|
+
* requestMessage: "PL",
|
|
101
|
+
* },
|
|
102
|
+
* });
|
|
103
|
+
* ```
|
|
104
|
+
*
|
|
105
|
+
* Using a Private Endpoint pointing to an *owned* Azure service, with proper DNS configuration:
|
|
106
|
+
*
|
|
107
|
+
* ```typescript
|
|
108
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
109
|
+
* import * as azure from "@pulumi/azure";
|
|
110
|
+
*
|
|
111
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
112
|
+
* const exampleAccount = new azure.storage.Account("exampleAccount", {
|
|
113
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
114
|
+
* location: exampleResourceGroup.location,
|
|
115
|
+
* accountTier: "Standard",
|
|
116
|
+
* accountReplicationType: "LRS",
|
|
117
|
+
* });
|
|
118
|
+
* const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
|
|
119
|
+
* addressSpaces: ["10.0.0.0/16"],
|
|
120
|
+
* location: exampleResourceGroup.location,
|
|
121
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
122
|
+
* });
|
|
123
|
+
* const exampleSubnet = new azure.network.Subnet("exampleSubnet", {
|
|
124
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
125
|
+
* virtualNetworkName: exampleVirtualNetwork.name,
|
|
126
|
+
* addressPrefixes: ["10.0.2.0/24"],
|
|
127
|
+
* });
|
|
128
|
+
* const exampleZone = new azure.privatedns.Zone("exampleZone", {resourceGroupName: exampleResourceGroup.name});
|
|
129
|
+
* const exampleEndpoint = new azure.privatelink.Endpoint("exampleEndpoint", {
|
|
130
|
+
* location: exampleResourceGroup.location,
|
|
131
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
132
|
+
* subnetId: exampleSubnet.id,
|
|
133
|
+
* privateServiceConnection: {
|
|
134
|
+
* name: "example-privateserviceconnection",
|
|
135
|
+
* privateConnectionResourceId: exampleAccount.id,
|
|
136
|
+
* subresourceNames: ["blob"],
|
|
137
|
+
* isManualConnection: false,
|
|
138
|
+
* },
|
|
139
|
+
* privateDnsZoneGroup: {
|
|
140
|
+
* name: "example-dns-zone-group",
|
|
141
|
+
* privateDnsZoneIds: [exampleZone.id],
|
|
142
|
+
* },
|
|
143
|
+
* });
|
|
144
|
+
* const exampleZoneVirtualNetworkLink = new azure.privatedns.ZoneVirtualNetworkLink("exampleZoneVirtualNetworkLink", {
|
|
145
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
146
|
+
* privateDnsZoneName: exampleZone.name,
|
|
147
|
+
* virtualNetworkId: exampleVirtualNetwork.id,
|
|
148
|
+
* });
|
|
149
|
+
* ```
|
|
150
|
+
* ## Example HCL Configurations
|
|
151
|
+
*
|
|
152
|
+
* * How to conneca `Private Endpoint` to a Application Gateway
|
|
153
|
+
* * How to connect a `Private Endpoint` to a Cosmos MongoDB
|
|
154
|
+
* * How to connect a `Private Endpoint` to a Cosmos PostgreSQL
|
|
155
|
+
* * How to connect a `Private Endpoint` to a PostgreSQL Server
|
|
156
|
+
* * How to connect a `Private Endpoint` to a Private Link Service
|
|
157
|
+
* * How to connect a `Private Endpoint` to a Private DNS Group
|
|
158
|
+
* * How to connect a `Private Endpoint` to a Databricks Workspace
|
|
159
|
+
*
|
|
9
160
|
* ## Import
|
|
10
161
|
*
|
|
11
162
|
* Private Endpoints can be imported using the `resource id`, e.g.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"endpoint.js","sourceRoot":"","sources":["../../privatelink/endpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"endpoint.js","sourceRoot":"","sources":["../../privatelink/endpoint.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,6 +2,69 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
import * as outputs from "../types/output";
|
|
4
4
|
/**
|
|
5
|
+
* Manages a SQL Instance Failover Group.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* > **Note:** The `azure.sql.ManagedInstanceFailoverGroup` resource is deprecated in version 3.0 of the AzureRM provider and will be removed in version 4.0. Please use the `azure.mssql.ManagedInstanceFailoverGroup` resource instead.
|
|
10
|
+
*
|
|
11
|
+
* > **Note:** For a more complete example, see the the `examples/sql-azure/managed_instance_failover_group` directory within the GitHub Repository.
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azure from "@pulumi/azure";
|
|
16
|
+
*
|
|
17
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
18
|
+
* const primary = new azure.sql.ManagedInstance("primary", {
|
|
19
|
+
* resourceGroupName: azurerm_resource_group.primary.name,
|
|
20
|
+
* location: azurerm_resource_group.primary.location,
|
|
21
|
+
* administratorLogin: "mradministrator",
|
|
22
|
+
* administratorLoginPassword: "thisIsDog11",
|
|
23
|
+
* licenseType: "BasePrice",
|
|
24
|
+
* subnetId: azurerm_subnet.primary.id,
|
|
25
|
+
* skuName: "GP_Gen5",
|
|
26
|
+
* vcores: 4,
|
|
27
|
+
* storageSizeInGb: 32,
|
|
28
|
+
* tags: {
|
|
29
|
+
* environment: "prod",
|
|
30
|
+
* },
|
|
31
|
+
* }, {
|
|
32
|
+
* dependsOn: [
|
|
33
|
+
* azurerm_subnet_network_security_group_association.primary,
|
|
34
|
+
* azurerm_subnet_route_table_association.primary,
|
|
35
|
+
* ],
|
|
36
|
+
* });
|
|
37
|
+
* const secondary = new azure.sql.ManagedInstance("secondary", {
|
|
38
|
+
* resourceGroupName: azurerm_resource_group.secondary.name,
|
|
39
|
+
* location: azurerm_resource_group.secondary.location,
|
|
40
|
+
* administratorLogin: "mradministrator",
|
|
41
|
+
* administratorLoginPassword: "thisIsDog11",
|
|
42
|
+
* licenseType: "BasePrice",
|
|
43
|
+
* subnetId: azurerm_subnet.secondary.id,
|
|
44
|
+
* skuName: "GP_Gen5",
|
|
45
|
+
* vcores: 4,
|
|
46
|
+
* storageSizeInGb: 32,
|
|
47
|
+
* tags: {
|
|
48
|
+
* environment: "prod",
|
|
49
|
+
* },
|
|
50
|
+
* }, {
|
|
51
|
+
* dependsOn: [
|
|
52
|
+
* azurerm_subnet_network_security_group_association.secondary,
|
|
53
|
+
* azurerm_subnet_route_table_association.secondary,
|
|
54
|
+
* ],
|
|
55
|
+
* });
|
|
56
|
+
* const exampleManagedInstanceFailoverGroup = new azure.sql.ManagedInstanceFailoverGroup("exampleManagedInstanceFailoverGroup", {
|
|
57
|
+
* resourceGroupName: azurerm_resource_group.primary.name,
|
|
58
|
+
* location: primary.location,
|
|
59
|
+
* managedInstanceName: primary.name,
|
|
60
|
+
* partnerManagedInstanceId: secondary.id,
|
|
61
|
+
* readWriteEndpointFailoverPolicy: {
|
|
62
|
+
* mode: "Automatic",
|
|
63
|
+
* graceMinutes: 60,
|
|
64
|
+
* },
|
|
65
|
+
* });
|
|
66
|
+
* ```
|
|
67
|
+
*
|
|
5
68
|
* ## Import
|
|
6
69
|
*
|
|
7
70
|
* SQL Instance Failover Groups can be imported using the `resource id`, e.g.
|
|
@@ -6,6 +6,69 @@ exports.ManagedInstanceFailoverGroup = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
+
* Manages a SQL Instance Failover Group.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* > **Note:** The `azure.sql.ManagedInstanceFailoverGroup` resource is deprecated in version 3.0 of the AzureRM provider and will be removed in version 4.0. Please use the `azure.mssql.ManagedInstanceFailoverGroup` resource instead.
|
|
14
|
+
*
|
|
15
|
+
* > **Note:** For a more complete example, see the the `examples/sql-azure/managed_instance_failover_group` directory within the GitHub Repository.
|
|
16
|
+
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as azure from "@pulumi/azure";
|
|
20
|
+
*
|
|
21
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
22
|
+
* const primary = new azure.sql.ManagedInstance("primary", {
|
|
23
|
+
* resourceGroupName: azurerm_resource_group.primary.name,
|
|
24
|
+
* location: azurerm_resource_group.primary.location,
|
|
25
|
+
* administratorLogin: "mradministrator",
|
|
26
|
+
* administratorLoginPassword: "thisIsDog11",
|
|
27
|
+
* licenseType: "BasePrice",
|
|
28
|
+
* subnetId: azurerm_subnet.primary.id,
|
|
29
|
+
* skuName: "GP_Gen5",
|
|
30
|
+
* vcores: 4,
|
|
31
|
+
* storageSizeInGb: 32,
|
|
32
|
+
* tags: {
|
|
33
|
+
* environment: "prod",
|
|
34
|
+
* },
|
|
35
|
+
* }, {
|
|
36
|
+
* dependsOn: [
|
|
37
|
+
* azurerm_subnet_network_security_group_association.primary,
|
|
38
|
+
* azurerm_subnet_route_table_association.primary,
|
|
39
|
+
* ],
|
|
40
|
+
* });
|
|
41
|
+
* const secondary = new azure.sql.ManagedInstance("secondary", {
|
|
42
|
+
* resourceGroupName: azurerm_resource_group.secondary.name,
|
|
43
|
+
* location: azurerm_resource_group.secondary.location,
|
|
44
|
+
* administratorLogin: "mradministrator",
|
|
45
|
+
* administratorLoginPassword: "thisIsDog11",
|
|
46
|
+
* licenseType: "BasePrice",
|
|
47
|
+
* subnetId: azurerm_subnet.secondary.id,
|
|
48
|
+
* skuName: "GP_Gen5",
|
|
49
|
+
* vcores: 4,
|
|
50
|
+
* storageSizeInGb: 32,
|
|
51
|
+
* tags: {
|
|
52
|
+
* environment: "prod",
|
|
53
|
+
* },
|
|
54
|
+
* }, {
|
|
55
|
+
* dependsOn: [
|
|
56
|
+
* azurerm_subnet_network_security_group_association.secondary,
|
|
57
|
+
* azurerm_subnet_route_table_association.secondary,
|
|
58
|
+
* ],
|
|
59
|
+
* });
|
|
60
|
+
* const exampleManagedInstanceFailoverGroup = new azure.sql.ManagedInstanceFailoverGroup("exampleManagedInstanceFailoverGroup", {
|
|
61
|
+
* resourceGroupName: azurerm_resource_group.primary.name,
|
|
62
|
+
* location: primary.location,
|
|
63
|
+
* managedInstanceName: primary.name,
|
|
64
|
+
* partnerManagedInstanceId: secondary.id,
|
|
65
|
+
* readWriteEndpointFailoverPolicy: {
|
|
66
|
+
* mode: "Automatic",
|
|
67
|
+
* graceMinutes: 60,
|
|
68
|
+
* },
|
|
69
|
+
* });
|
|
70
|
+
* ```
|
|
71
|
+
*
|
|
9
72
|
* ## Import
|
|
10
73
|
*
|
|
11
74
|
* SQL Instance Failover Groups can be imported using the `resource id`, e.g.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"managedInstanceFailoverGroup.js","sourceRoot":"","sources":["../../sql/managedInstanceFailoverGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"managedInstanceFailoverGroup.js","sourceRoot":"","sources":["../../sql/managedInstanceFailoverGroup.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -8842,6 +8842,11 @@ export declare namespace appservice {
|
|
|
8842
8842
|
* Should WebSockets be enabled?
|
|
8843
8843
|
*/
|
|
8844
8844
|
websocketsEnabled?: pulumi.Input<boolean>;
|
|
8845
|
+
/**
|
|
8846
|
+
* The Windows Docker container image (`DOCKER|<user/image:tag>`)
|
|
8847
|
+
*
|
|
8848
|
+
* Additional examples of how to run Containers via the `azure.appservice.Slot` resource can be found in the `./examples/app-service` directory within the GitHub Repository.
|
|
8849
|
+
*/
|
|
8845
8850
|
windowsFxVersion?: pulumi.Input<string>;
|
|
8846
8851
|
}
|
|
8847
8852
|
interface SlotSiteConfigCors {
|
|
@@ -17960,6 +17965,11 @@ export declare namespace compute {
|
|
|
17960
17965
|
* > **NOTE:** If the `patchAssessmentMode` is set to `AutomaticByPlatform` then the `provisionVmAgent` field must be set to `true`.
|
|
17961
17966
|
*/
|
|
17962
17967
|
patchAssessmentMode?: pulumi.Input<string>;
|
|
17968
|
+
/**
|
|
17969
|
+
* Specifies the mode of in-guest patching of this Windows Virtual Machine. Possible values are `ImageDefault` or `AutomaticByPlatform`. Defaults to `ImageDefault`. For more information on patch modes please see the [product documentation](https://docs.microsoft.com/azure/virtual-machines/automatic-vm-guest-patching#patch-orchestration-modes).
|
|
17970
|
+
*
|
|
17971
|
+
* > **NOTE:** If `patchMode` is set to `AutomaticByPlatform` the `provisionVmAgent` must be set to `true` and the `extension` must contain at least one application health extension. An example of how to correctly configure a Virtual Machine Scale Set to provision a Linux Virtual Machine with Automatic VM Guest Patching enabled can be found in the `./examples/orchestrated-vm-scale-set/automatic-vm-guest-patching` directory within the GitHub Repository.
|
|
17972
|
+
*/
|
|
17963
17973
|
patchMode?: pulumi.Input<string>;
|
|
17964
17974
|
/**
|
|
17965
17975
|
* Should the Azure VM Agent be provisioned on each Virtual Machine in the Scale Set? Defaults to `true`. Changing this value forces a new resource to be created.
|
|
@@ -18019,6 +18029,11 @@ export declare namespace compute {
|
|
|
18019
18029
|
* Are automatic updates enabled for this Virtual Machine? Defaults to `true`.
|
|
18020
18030
|
*/
|
|
18021
18031
|
enableAutomaticUpdates?: pulumi.Input<boolean>;
|
|
18032
|
+
/**
|
|
18033
|
+
* Should the VM be patched without requiring a reboot? Possible values are `true` or `false`. Defaults to `false`. For more information about hot patching please see the [product documentation](https://docs.microsoft.com/azure/automanage/automanage-hotpatch).
|
|
18034
|
+
*
|
|
18035
|
+
* > **NOTE:** Hotpatching can only be enabled if the `patchMode` is set to `AutomaticByPlatform`, the `provisionVmAgent` is set to `true`, your `sourceImageReference` references a hotpatching enabled image, the VM's `skuName` is set to a Azure generation 2 directory within the GitHub Repository.
|
|
18036
|
+
*/
|
|
18022
18037
|
hotpatchingEnabled?: pulumi.Input<boolean>;
|
|
18023
18038
|
/**
|
|
18024
18039
|
* Specifies the mode of VM Guest Patching for the virtual machines that are associated to the Virtual Machine Scale Set. Possible values are `AutomaticByPlatform` or `ImageDefault`. Defaults to `ImageDefault`.
|
|
@@ -39873,9 +39888,23 @@ export declare namespace netapp {
|
|
|
39873
39888
|
* Resource ID of the primary volume.
|
|
39874
39889
|
*/
|
|
39875
39890
|
remoteVolumeResourceId: pulumi.Input<string>;
|
|
39891
|
+
/**
|
|
39892
|
+
* Replication frequency, supported values are '10minutes', 'hourly', 'daily', values are case sensitive.
|
|
39893
|
+
*
|
|
39894
|
+
* A full example of the `dataProtectionReplication` attribute can be found in the `./examples/netapp/volume_crr` directory within the GitHub Repository
|
|
39895
|
+
*
|
|
39896
|
+
* > **NOTE:** `dataProtectionReplication` can be defined only once per secondary volume, adding a second instance of it is not supported.
|
|
39897
|
+
*/
|
|
39876
39898
|
replicationFrequency: pulumi.Input<string>;
|
|
39877
39899
|
}
|
|
39878
39900
|
interface VolumeDataProtectionSnapshotPolicy {
|
|
39901
|
+
/**
|
|
39902
|
+
* Resource ID of the snapshot policy to apply to the volume.
|
|
39903
|
+
*
|
|
39904
|
+
* A full example of the `dataProtectionSnapshotPolicy` attribute usage can be found in the `./examples/netapp/nfsv3_volume_with_snapshot_policy` directory within the GitHub Repository
|
|
39905
|
+
*
|
|
39906
|
+
* > **NOTE:** `dataProtectionSnapshotPolicy` block can be used alone or with dataProtectionReplication in the primary volume only, if enabling it in the secondary, an error will be thrown.
|
|
39907
|
+
*/
|
|
39879
39908
|
snapshotPolicyId: pulumi.Input<string>;
|
|
39880
39909
|
}
|
|
39881
39910
|
interface VolumeExportPolicyRule {
|
|
@@ -41222,6 +41251,15 @@ export declare namespace network {
|
|
|
41222
41251
|
* The private IP address associated with the Firewall.
|
|
41223
41252
|
*/
|
|
41224
41253
|
privateIpAddress?: pulumi.Input<string>;
|
|
41254
|
+
/**
|
|
41255
|
+
* The ID of the Public IP Address associated with the firewall.
|
|
41256
|
+
*
|
|
41257
|
+
* > **NOTE** A public ip address is required unless a `managementIpConfiguration` block is specified.
|
|
41258
|
+
*
|
|
41259
|
+
* > **NOTE** When multiple `ipConfiguration` blocks with `publicIpAddressId` are configured, `pulumi up` will raise an error when one or some of these `ipConfiguration` blocks are removed. because the `publicIpAddressId` is still used by the `firewall` resource until the `firewall` resource is updated. and the destruction of `azure.network.PublicIp` happens before the update of firewall by default. to destroy of `azure.network.PublicIp` will cause the error. The workaround is to set `create_before_destroy=true` to the `azure.network.PublicIp` resource `lifecycle` block. See more detail: destroying.md#create-before-destroy
|
|
41260
|
+
*
|
|
41261
|
+
* > **NOTE** The Public IP must have a `Static` allocation and `Standard` SKU.
|
|
41262
|
+
*/
|
|
41225
41263
|
publicIpAddressId?: pulumi.Input<string>;
|
|
41226
41264
|
/**
|
|
41227
41265
|
* Reference to the subnet associated with the IP Configuration. Changing this forces a new resource to be created.
|
package/types/output.d.ts
CHANGED
|
@@ -13615,6 +13615,11 @@ export declare namespace appservice {
|
|
|
13615
13615
|
* Should WebSockets be enabled?
|
|
13616
13616
|
*/
|
|
13617
13617
|
websocketsEnabled: boolean;
|
|
13618
|
+
/**
|
|
13619
|
+
* The Windows Docker container image (`DOCKER|<user/image:tag>`)
|
|
13620
|
+
*
|
|
13621
|
+
* Additional examples of how to run Containers via the `azure.appservice.Slot` resource can be found in the `./examples/app-service` directory within the GitHub Repository.
|
|
13622
|
+
*/
|
|
13618
13623
|
windowsFxVersion: string;
|
|
13619
13624
|
}
|
|
13620
13625
|
interface SlotSiteConfigCors {
|
|
@@ -24302,6 +24307,11 @@ export declare namespace compute {
|
|
|
24302
24307
|
* > **NOTE:** If the `patchAssessmentMode` is set to `AutomaticByPlatform` then the `provisionVmAgent` field must be set to `true`.
|
|
24303
24308
|
*/
|
|
24304
24309
|
patchAssessmentMode?: string;
|
|
24310
|
+
/**
|
|
24311
|
+
* Specifies the mode of in-guest patching of this Windows Virtual Machine. Possible values are `ImageDefault` or `AutomaticByPlatform`. Defaults to `ImageDefault`. For more information on patch modes please see the [product documentation](https://docs.microsoft.com/azure/virtual-machines/automatic-vm-guest-patching#patch-orchestration-modes).
|
|
24312
|
+
*
|
|
24313
|
+
* > **NOTE:** If `patchMode` is set to `AutomaticByPlatform` the `provisionVmAgent` must be set to `true` and the `extension` must contain at least one application health extension. An example of how to correctly configure a Virtual Machine Scale Set to provision a Linux Virtual Machine with Automatic VM Guest Patching enabled can be found in the `./examples/orchestrated-vm-scale-set/automatic-vm-guest-patching` directory within the GitHub Repository.
|
|
24314
|
+
*/
|
|
24305
24315
|
patchMode?: string;
|
|
24306
24316
|
/**
|
|
24307
24317
|
* Should the Azure VM Agent be provisioned on each Virtual Machine in the Scale Set? Defaults to `true`. Changing this value forces a new resource to be created.
|
|
@@ -24361,6 +24371,11 @@ export declare namespace compute {
|
|
|
24361
24371
|
* Are automatic updates enabled for this Virtual Machine? Defaults to `true`.
|
|
24362
24372
|
*/
|
|
24363
24373
|
enableAutomaticUpdates?: boolean;
|
|
24374
|
+
/**
|
|
24375
|
+
* Should the VM be patched without requiring a reboot? Possible values are `true` or `false`. Defaults to `false`. For more information about hot patching please see the [product documentation](https://docs.microsoft.com/azure/automanage/automanage-hotpatch).
|
|
24376
|
+
*
|
|
24377
|
+
* > **NOTE:** Hotpatching can only be enabled if the `patchMode` is set to `AutomaticByPlatform`, the `provisionVmAgent` is set to `true`, your `sourceImageReference` references a hotpatching enabled image, the VM's `skuName` is set to a Azure generation 2 directory within the GitHub Repository.
|
|
24378
|
+
*/
|
|
24364
24379
|
hotpatchingEnabled?: boolean;
|
|
24365
24380
|
/**
|
|
24366
24381
|
* Specifies the mode of VM Guest Patching for the virtual machines that are associated to the Virtual Machine Scale Set. Possible values are `AutomaticByPlatform` or `ImageDefault`. Defaults to `ImageDefault`.
|
|
@@ -50192,9 +50207,23 @@ export declare namespace netapp {
|
|
|
50192
50207
|
* Resource ID of the primary volume.
|
|
50193
50208
|
*/
|
|
50194
50209
|
remoteVolumeResourceId: string;
|
|
50210
|
+
/**
|
|
50211
|
+
* Replication frequency, supported values are '10minutes', 'hourly', 'daily', values are case sensitive.
|
|
50212
|
+
*
|
|
50213
|
+
* A full example of the `dataProtectionReplication` attribute can be found in the `./examples/netapp/volume_crr` directory within the GitHub Repository
|
|
50214
|
+
*
|
|
50215
|
+
* > **NOTE:** `dataProtectionReplication` can be defined only once per secondary volume, adding a second instance of it is not supported.
|
|
50216
|
+
*/
|
|
50195
50217
|
replicationFrequency: string;
|
|
50196
50218
|
}
|
|
50197
50219
|
interface VolumeDataProtectionSnapshotPolicy {
|
|
50220
|
+
/**
|
|
50221
|
+
* Resource ID of the snapshot policy to apply to the volume.
|
|
50222
|
+
*
|
|
50223
|
+
* A full example of the `dataProtectionSnapshotPolicy` attribute usage can be found in the `./examples/netapp/nfsv3_volume_with_snapshot_policy` directory within the GitHub Repository
|
|
50224
|
+
*
|
|
50225
|
+
* > **NOTE:** `dataProtectionSnapshotPolicy` block can be used alone or with dataProtectionReplication in the primary volume only, if enabling it in the secondary, an error will be thrown.
|
|
50226
|
+
*/
|
|
50198
50227
|
snapshotPolicyId: string;
|
|
50199
50228
|
}
|
|
50200
50229
|
interface VolumeExportPolicyRule {
|
|
@@ -51541,6 +51570,15 @@ export declare namespace network {
|
|
|
51541
51570
|
* The private IP address associated with the Firewall.
|
|
51542
51571
|
*/
|
|
51543
51572
|
privateIpAddress: string;
|
|
51573
|
+
/**
|
|
51574
|
+
* The ID of the Public IP Address associated with the firewall.
|
|
51575
|
+
*
|
|
51576
|
+
* > **NOTE** A public ip address is required unless a `managementIpConfiguration` block is specified.
|
|
51577
|
+
*
|
|
51578
|
+
* > **NOTE** When multiple `ipConfiguration` blocks with `publicIpAddressId` are configured, `pulumi up` will raise an error when one or some of these `ipConfiguration` blocks are removed. because the `publicIpAddressId` is still used by the `firewall` resource until the `firewall` resource is updated. and the destruction of `azure.network.PublicIp` happens before the update of firewall by default. to destroy of `azure.network.PublicIp` will cause the error. The workaround is to set `create_before_destroy=true` to the `azure.network.PublicIp` resource `lifecycle` block. See more detail: destroying.md#create-before-destroy
|
|
51579
|
+
*
|
|
51580
|
+
* > **NOTE** The Public IP must have a `Static` allocation and `Standard` SKU.
|
|
51581
|
+
*/
|
|
51544
51582
|
publicIpAddressId?: string;
|
|
51545
51583
|
/**
|
|
51546
51584
|
* Reference to the subnet associated with the IP Configuration. Changing this forces a new resource to be created.
|