azure-native.hybridconnectivity.Endpoint
Explore with Pulumi AI
The endpoint for the target resource. Azure REST API version: 2023-03-15. Prior API version in Azure Native 1.x: 2022-05-01-preview.
Other available API versions: 2022-05-01-preview, 2024-12-01.
Example Usage
HybridConnectivityEndpointsPutCustom
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var endpoint = new AzureNative.HybridConnectivity.Endpoint("endpoint", new()
{
EndpointName = "custom",
Properties = new AzureNative.HybridConnectivity.Inputs.EndpointPropertiesArgs
{
ResourceId = "/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.Relay/namespaces/custom-relay-namespace",
Type = AzureNative.HybridConnectivity.Type.Custom,
},
ResourceUri = "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine",
});
});
package main
import (
hybridconnectivity "github.com/pulumi/pulumi-azure-native-sdk/hybridconnectivity/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := hybridconnectivity.NewEndpoint(ctx, "endpoint", &hybridconnectivity.EndpointArgs{
EndpointName: pulumi.String("custom"),
Properties: &hybridconnectivity.EndpointPropertiesArgs{
ResourceId: pulumi.String("/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.Relay/namespaces/custom-relay-namespace"),
Type: pulumi.String(hybridconnectivity.TypeCustom),
},
ResourceUri: pulumi.String("subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.hybridconnectivity.Endpoint;
import com.pulumi.azurenative.hybridconnectivity.EndpointArgs;
import com.pulumi.azurenative.hybridconnectivity.inputs.EndpointPropertiesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var endpoint = new Endpoint("endpoint", EndpointArgs.builder()
.endpointName("custom")
.properties(EndpointPropertiesArgs.builder()
.resourceId("/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.Relay/namespaces/custom-relay-namespace")
.type("custom")
.build())
.resourceUri("subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
endpoint = azure_native.hybridconnectivity.Endpoint("endpoint",
endpoint_name="custom",
properties={
"resource_id": "/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.Relay/namespaces/custom-relay-namespace",
"type": azure_native.hybridconnectivity.Type.CUSTOM,
},
resource_uri="subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const endpoint = new azure_native.hybridconnectivity.Endpoint("endpoint", {
endpointName: "custom",
properties: {
resourceId: "/subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.Relay/namespaces/custom-relay-namespace",
type: azure_native.hybridconnectivity.Type.Custom,
},
resourceUri: "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine",
});
resources:
endpoint:
type: azure-native:hybridconnectivity:Endpoint
properties:
endpointName: custom
properties:
resourceId: /subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.Relay/namespaces/custom-relay-namespace
type: custom
resourceUri: subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine
HybridConnectivityEndpointsPutDefault
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var endpoint = new AzureNative.HybridConnectivity.Endpoint("endpoint", new()
{
EndpointName = "default",
Properties = new AzureNative.HybridConnectivity.Inputs.EndpointPropertiesArgs
{
Type = AzureNative.HybridConnectivity.Type.@Default,
},
ResourceUri = "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine",
});
});
package main
import (
hybridconnectivity "github.com/pulumi/pulumi-azure-native-sdk/hybridconnectivity/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := hybridconnectivity.NewEndpoint(ctx, "endpoint", &hybridconnectivity.EndpointArgs{
EndpointName: pulumi.String("default"),
Properties: &hybridconnectivity.EndpointPropertiesArgs{
Type: pulumi.String(hybridconnectivity.TypeDefault),
},
ResourceUri: pulumi.String("subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.hybridconnectivity.Endpoint;
import com.pulumi.azurenative.hybridconnectivity.EndpointArgs;
import com.pulumi.azurenative.hybridconnectivity.inputs.EndpointPropertiesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var endpoint = new Endpoint("endpoint", EndpointArgs.builder()
.endpointName("default")
.properties(EndpointPropertiesArgs.builder()
.type("default")
.build())
.resourceUri("subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
endpoint = azure_native.hybridconnectivity.Endpoint("endpoint",
endpoint_name="default",
properties={
"type": azure_native.hybridconnectivity.Type.DEFAULT,
},
resource_uri="subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const endpoint = new azure_native.hybridconnectivity.Endpoint("endpoint", {
endpointName: "default",
properties: {
type: azure_native.hybridconnectivity.Type.Default,
},
resourceUri: "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine",
});
resources:
endpoint:
type: azure-native:hybridconnectivity:Endpoint
properties:
endpointName: default
properties:
type: default
resourceUri: subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine
Create Endpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Endpoint(name: string, args: EndpointArgs, opts?: CustomResourceOptions);
@overload
def Endpoint(resource_name: str,
args: EndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Endpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_uri: Optional[str] = None,
created_at: Optional[str] = None,
created_by: Optional[str] = None,
created_by_type: Optional[Union[str, CreatedByType]] = None,
endpoint_name: Optional[str] = None,
last_modified_at: Optional[str] = None,
last_modified_by: Optional[str] = None,
last_modified_by_type: Optional[Union[str, CreatedByType]] = None,
properties: Optional[EndpointPropertiesArgs] = None)
func NewEndpoint(ctx *Context, name string, args EndpointArgs, opts ...ResourceOption) (*Endpoint, error)
public Endpoint(string name, EndpointArgs args, CustomResourceOptions? opts = null)
public Endpoint(String name, EndpointArgs args)
public Endpoint(String name, EndpointArgs args, CustomResourceOptions options)
type: azure-native:hybridconnectivity:Endpoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var azure_nativeEndpointResource = new AzureNative.HybridConnectivity.Endpoint("azure-nativeEndpointResource", new()
{
ResourceUri = "string",
CreatedAt = "string",
CreatedBy = "string",
CreatedByType = "string",
EndpointName = "string",
LastModifiedAt = "string",
LastModifiedBy = "string",
LastModifiedByType = "string",
Properties = new AzureNative.HybridConnectivity.Inputs.EndpointPropertiesArgs
{
Type = "string",
ResourceId = "string",
},
});
example, err := hybridconnectivity.NewEndpoint(ctx, "azure-nativeEndpointResource", &hybridconnectivity.EndpointArgs{
ResourceUri: pulumi.String("string"),
CreatedAt: pulumi.String("string"),
CreatedBy: pulumi.String("string"),
CreatedByType: pulumi.String("string"),
EndpointName: pulumi.String("string"),
LastModifiedAt: pulumi.String("string"),
LastModifiedBy: pulumi.String("string"),
LastModifiedByType: pulumi.String("string"),
Properties: &hybridconnectivity.EndpointPropertiesArgs{
Type: pulumi.String("string"),
ResourceId: pulumi.String("string"),
},
})
var azure_nativeEndpointResource = new Endpoint("azure-nativeEndpointResource", EndpointArgs.builder()
.resourceUri("string")
.createdAt("string")
.createdBy("string")
.createdByType("string")
.endpointName("string")
.lastModifiedAt("string")
.lastModifiedBy("string")
.lastModifiedByType("string")
.properties(EndpointPropertiesArgs.builder()
.type("string")
.resourceId("string")
.build())
.build());
azure_native_endpoint_resource = azure_native.hybridconnectivity.Endpoint("azure-nativeEndpointResource",
resource_uri="string",
created_at="string",
created_by="string",
created_by_type="string",
endpoint_name="string",
last_modified_at="string",
last_modified_by="string",
last_modified_by_type="string",
properties={
"type": "string",
"resourceId": "string",
})
const azure_nativeEndpointResource = new azure_native.hybridconnectivity.Endpoint("azure-nativeEndpointResource", {
resourceUri: "string",
createdAt: "string",
createdBy: "string",
createdByType: "string",
endpointName: "string",
lastModifiedAt: "string",
lastModifiedBy: "string",
lastModifiedByType: "string",
properties: {
type: "string",
resourceId: "string",
},
});
type: azure-native:hybridconnectivity:Endpoint
properties:
createdAt: string
createdBy: string
createdByType: string
endpointName: string
lastModifiedAt: string
lastModifiedBy: string
lastModifiedByType: string
properties:
resourceId: string
type: string
resourceUri: string
Endpoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Endpoint resource accepts the following input properties:
- Resource
Uri string - The fully qualified Azure Resource manager identifier of the resource to be connected.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By string | Pulumi.Type Azure Native. Hybrid Connectivity. Created By Type - The type of identity that created the resource.
- Endpoint
Name string - The endpoint name.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified string | Pulumi.By Type Azure Native. Hybrid Connectivity. Created By Type - The type of identity that last modified the resource.
- Properties
Pulumi.
Azure Native. Hybrid Connectivity. Inputs. Endpoint Properties - The endpoint properties.
- Resource
Uri string - The fully qualified Azure Resource manager identifier of the resource to be connected.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By string | CreatedType By Type - The type of identity that created the resource.
- Endpoint
Name string - The endpoint name.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified string | CreatedBy Type By Type - The type of identity that last modified the resource.
- Properties
Endpoint
Properties Args - The endpoint properties.
- resource
Uri String - The fully qualified Azure Resource manager identifier of the resource to be connected.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By String | CreatedType By Type - The type of identity that created the resource.
- endpoint
Name String - The endpoint name.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified String | CreatedBy Type By Type - The type of identity that last modified the resource.
- properties
Endpoint
Properties - The endpoint properties.
- resource
Uri string - The fully qualified Azure Resource manager identifier of the resource to be connected.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By string | CreatedType By Type - The type of identity that created the resource.
- endpoint
Name string - The endpoint name.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified string | CreatedBy Type By Type - The type of identity that last modified the resource.
- properties
Endpoint
Properties - The endpoint properties.
- resource_
uri str - The fully qualified Azure Resource manager identifier of the resource to be connected.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ str | Createdtype By Type - The type of identity that created the resource.
- endpoint_
name str - The endpoint name.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ str | Createdby_ type By Type - The type of identity that last modified the resource.
- properties
Endpoint
Properties Args - The endpoint properties.
- resource
Uri String - The fully qualified Azure Resource manager identifier of the resource to be connected.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By String | "User" | "Application" | "ManagedType Identity" | "Key" - The type of identity that created the resource.
- endpoint
Name String - The endpoint name.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified String | "User" | "Application" | "ManagedBy Type Identity" | "Key" - The type of identity that last modified the resource.
- properties Property Map
- The endpoint properties.
Outputs
All input properties are implicitly available as output properties. Additionally, the Endpoint resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Hybrid Connectivity. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
CreatedByType, CreatedByTypeArgs
- User
- User
- Application
- Application
- Managed
Identity - ManagedIdentity
- Key
- Key
- Created
By Type User - User
- Created
By Type Application - Application
- Created
By Type Managed Identity - ManagedIdentity
- Created
By Type Key - Key
- User
- User
- Application
- Application
- Managed
Identity - ManagedIdentity
- Key
- Key
- User
- User
- Application
- Application
- Managed
Identity - ManagedIdentity
- Key
- Key
- USER
- User
- APPLICATION
- Application
- MANAGED_IDENTITY
- ManagedIdentity
- KEY
- Key
- "User"
- User
- "Application"
- Application
- "Managed
Identity" - ManagedIdentity
- "Key"
- Key
EndpointProperties, EndpointPropertiesArgs
- Type
string | Pulumi.
Azure Native. Hybrid Connectivity. Type - The type of endpoint.
- Resource
Id string - The resource Id of the connectivity endpoint (optional).
- Type string | Type
- The type of endpoint.
- Resource
Id string - The resource Id of the connectivity endpoint (optional).
- type String | Type
- The type of endpoint.
- resource
Id String - The resource Id of the connectivity endpoint (optional).
- type string | Type
- The type of endpoint.
- resource
Id string - The resource Id of the connectivity endpoint (optional).
- type str | Type
- The type of endpoint.
- resource_
id str - The resource Id of the connectivity endpoint (optional).
- type String | "default" | "custom"
- The type of endpoint.
- resource
Id String - The resource Id of the connectivity endpoint (optional).
EndpointPropertiesResponse, EndpointPropertiesResponseArgs
- Provisioning
State string - The resource provisioning state.
- Type string
- The type of endpoint.
- Resource
Id string - The resource Id of the connectivity endpoint (optional).
- Provisioning
State string - The resource provisioning state.
- Type string
- The type of endpoint.
- Resource
Id string - The resource Id of the connectivity endpoint (optional).
- provisioning
State String - The resource provisioning state.
- type String
- The type of endpoint.
- resource
Id String - The resource Id of the connectivity endpoint (optional).
- provisioning
State string - The resource provisioning state.
- type string
- The type of endpoint.
- resource
Id string - The resource Id of the connectivity endpoint (optional).
- provisioning_
state str - The resource provisioning state.
- type str
- The type of endpoint.
- resource_
id str - The resource Id of the connectivity endpoint (optional).
- provisioning
State String - The resource provisioning state.
- type String
- The type of endpoint.
- resource
Id String - The resource Id of the connectivity endpoint (optional).
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Type, TypeArgs
- @Default
- default
- Custom
- custom
- Type
Default - default
- Type
Custom - custom
- Default_
- default
- Custom
- custom
- Default
- default
- Custom
- custom
- DEFAULT
- default
- CUSTOM
- custom
- "default"
- default
- "custom"
- custom
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:hybridconnectivity:Endpoint default /{resourceUri}/providers/Microsoft.HybridConnectivity/endpoints/{endpointName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0