Endpoints - DigitalTwinsEndpoint List

Get DigitalTwinsInstance Endpoints.

GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DigitalTwins/digitalTwinsInstances/{resourceName}/endpoints?api-version=2023-01-31

URI Parameters

Name In Required Type Description
resourceGroupName
path True

string

The name of the resource group that contains the DigitalTwinsInstance.

resourceName
path True

string

The name of the DigitalTwinsInstance.

Regex pattern: ^(?!-)[A-Za-z0-9-]{3,63}(?<!-)$

subscriptionId
path True

string

The subscription identifier.

api-version
query True

string

Version of the DigitalTwinsInstance Management API.

Responses

Name Type Description
200 OK

DigitalTwinsEndpointResourceListResult

The body contains all the non-security properties of the DigitalTwinsInstance. Security-related properties are set to null.

Other Status Codes

ErrorResponse

Error response describing why the operation failed.

Security

azure_auth

Azure Active Directory OAuth2 Flow

Type: oauth2
Flow: implicit
Authorization URL: https://login.microsoftonline.com/common/oauth2/authorize

Scopes

Name Description
user_impersonation Impersonate your user account

Examples

Get a DigitalTwinsInstance endpoints
Get a DigitalTwinsInstance endpoints with identity

Get a DigitalTwinsInstance endpoints

Sample Request

GET https://management.azure.com/subscriptions/50016170-c839-41ba-a724-51e9df440b9e/resourceGroups/resRg/providers/Microsoft.DigitalTwins/digitalTwinsInstances/myDigitalTwinsService/endpoints?api-version=2023-01-31

Sample Response

{
  "value": [
    {
      "id": "/subscriptions/50016170-c839-41ba-a724-51e9df440b9e/resourcegroups/resRg/providers/Microsoft.DigitalTwins/digitalTwinsInstances/myDigitalTwinsService/endpoints/myServiceBus",
      "type": "Microsoft.DigitalTwins/digitalTwinsInstances/endpoints",
      "name": "myendpoint1",
      "systemData": {
        "createdBy": "user@example.com",
        "createdByType": "User",
        "createdAt": "2021-03-11T17:13:59.4037715Z",
        "lastModifiedBy": "user@example.com",
        "lastModifiedByType": "User",
        "lastModifiedAt": "2021-03-11T17:14:02.5281409Z"
      },
      "properties": {
        "endpointType": "ServiceBus",
        "authenticationType": "KeyBased",
        "primaryConnectionString": "Endpoint=sb://***/;SharedAccessKeyName=***;SharedAccessKey=***;EntityPath=***",
        "secondaryConnectionString": "Endpoint=sb://***/;SharedAccessKeyName=***;SharedAccessKey=***;EntityPath=***",
        "provisioningState": "Succeeded",
        "createdTime": "2019-11-19T01:10:34.350Z"
      }
    },
    {
      "id": "/subscriptions/50016170-c839-41ba-a724-51e9df440b9e/resourcegroups/resRg/providers/Microsoft.DigitalTwins/digitalTwinsInstances/myDigitalTwinsService/endpoints/myServiceBus",
      "type": "Microsoft.DigitalTwins/digitalTwinsInstances/endpoints",
      "name": "myendpoint2",
      "systemData": {
        "createdBy": "user@example.com",
        "createdByType": "User",
        "createdAt": "2021-03-11T17:13:59.4037715Z",
        "lastModifiedBy": "user@example.com",
        "lastModifiedByType": "User",
        "lastModifiedAt": "2021-03-11T17:14:02.5281409Z"
      },
      "properties": {
        "endpointType": "EventHub",
        "authenticationType": "KeyBased",
        "connectionStringPrimaryKey": "************",
        "connectionStringSecondaryKey": "************",
        "provisioningState": "Succeeded",
        "createdTime": "2019-11-19T01:10:34.350Z"
      }
    }
  ]
}

Get a DigitalTwinsInstance endpoints with identity

Sample Request

GET https://management.azure.com/subscriptions/50016170-c839-41ba-a724-51e9df440b9e/resourceGroups/resRg/providers/Microsoft.DigitalTwins/digitalTwinsInstances/myDigitalTwinsService/endpoints?api-version=2023-01-31

Sample Response

{
  "value": [
    {
      "id": "/subscriptions/50016170-c839-41ba-a724-51e9df440b9e/resourcegroups/resRg/providers/Microsoft.DigitalTwins/digitalTwinsInstances/myDigitalTwinsService/endpoints/myServiceBus",
      "type": "Microsoft.DigitalTwins/digitalTwinsInstances/endpoints",
      "name": "myServiceBus",
      "systemData": {
        "createdBy": "user@example.com",
        "createdByType": "User",
        "createdAt": "2021-03-11T17:13:59.4037715Z",
        "lastModifiedBy": "user@example.com",
        "lastModifiedByType": "User",
        "lastModifiedAt": "2021-03-11T17:14:02.5281409Z"
      },
      "properties": {
        "endpointType": "ServiceBus",
        "authenticationType": "IdentityBased",
        "provisioningState": "Succeeded",
        "endpointUri": "sb://mysb.servicebus.windows.net/",
        "entityPath": "mysbtopic",
        "createdTime": "2019-11-19T01:10:34.350Z"
      }
    },
    {
      "id": "/subscriptions/50016170-c839-41ba-a724-51e9df440b9e/resourcegroups/resRg/providers/Microsoft.DigitalTwins/digitalTwinsInstances/myDigitalTwinsService/endpoints/myServiceBus",
      "type": "Microsoft.DigitalTwins/digitalTwinsInstances/endpoints",
      "name": "myServiceBus",
      "systemData": {
        "createdBy": "user@example.com",
        "createdByType": "User",
        "createdAt": "2021-03-11T17:13:59.4037715Z",
        "lastModifiedBy": "user@example.com",
        "lastModifiedByType": "User",
        "lastModifiedAt": "2021-03-11T17:14:02.5281409Z"
      },
      "properties": {
        "endpointType": "EventHub",
        "authenticationType": "KeyBased",
        "connectionStringPrimaryKey": "************",
        "connectionStringSecondaryKey": "************",
        "provisioningState": "Succeeded",
        "createdTime": "2019-11-19T01:10:34.350Z"
      }
    }
  ]
}

Definitions

Name Description
AuthenticationType

Specifies the authentication type being used for connecting to the endpoint. Defaults to 'KeyBased'. If 'KeyBased' is selected, a connection string must be specified (at least the primary connection string). If 'IdentityBased' is select, the endpointUri and entityPath properties must be specified.

createdByType

The type of identity that created the resource.

DigitalTwinsEndpointResource

DigitalTwinsInstance endpoint resource.

DigitalTwinsEndpointResourceListResult

A list of DigitalTwinsInstance Endpoints with a next link.

EndpointProvisioningState

The provisioning state.

ErrorDefinition

Error definition.

ErrorResponse

Error response.

EventGrid

Properties related to EventGrid.

EventHub

Properties related to EventHub.

IdentityType

The type of managed identity used.

ManagedIdentityReference

The properties of the Managed Identity.

ServiceBus

Properties related to ServiceBus.

SystemData

Metadata pertaining to creation and last modification of the resource.

AuthenticationType

Specifies the authentication type being used for connecting to the endpoint. Defaults to 'KeyBased'. If 'KeyBased' is selected, a connection string must be specified (at least the primary connection string). If 'IdentityBased' is select, the endpointUri and entityPath properties must be specified.

Name Type Description
IdentityBased

string

KeyBased

string

createdByType

The type of identity that created the resource.

Name Type Description
Application

string

Key

string

ManagedIdentity

string

User

string

DigitalTwinsEndpointResource

DigitalTwinsInstance endpoint resource.

Name Type Description
id

string

The resource identifier.

name

string

Extension resource name.

properties DigitalTwinsEndpointResourceProperties:

DigitalTwinsInstance endpoint resource properties.

systemData

SystemData

Metadata pertaining to creation and last modification of the resource.

type

string

The resource type.

DigitalTwinsEndpointResourceListResult

A list of DigitalTwinsInstance Endpoints with a next link.

Name Type Description
nextLink

string

The link used to get the next page of DigitalTwinsInstance Endpoints.

value

DigitalTwinsEndpointResource[]

A list of DigitalTwinsInstance Endpoints.

EndpointProvisioningState

The provisioning state.

Name Type Description
Canceled

string

Deleted

string

Deleting

string

Disabled

string

Failed

string

Moving

string

Provisioning

string

Restoring

string

Succeeded

string

Suspending

string

Updating

string

Warning

string

ErrorDefinition

Error definition.

Name Type Description
code

string

Service specific error code which serves as the substatus for the HTTP error code.

details

ErrorDefinition[]

Internal error details.

message

string

Description of the error.

ErrorResponse

Error response.

Name Type Description
error

ErrorDefinition

Error description

EventGrid

Properties related to EventGrid.

Name Type Description
TopicEndpoint

string

EventGrid Topic Endpoint.

accessKey1

string

EventGrid secondary accesskey. Will be obfuscated during read.

accessKey2

string

EventGrid secondary accesskey. Will be obfuscated during read.

authenticationType

AuthenticationType

Specifies the authentication type being used for connecting to the endpoint. Defaults to 'KeyBased'. If 'KeyBased' is selected, a connection string must be specified (at least the primary connection string). If 'IdentityBased' is select, the endpointUri and entityPath properties must be specified.

createdTime

string

Time when the Endpoint was added to DigitalTwinsInstance.

deadLetterSecret

string

Dead letter storage secret for key-based authentication. Will be obfuscated during read.

deadLetterUri

string

Dead letter storage URL for identity-based authentication.

endpointType string:

EventGrid

The type of Digital Twins endpoint

identity

ManagedIdentityReference

Managed identity properties for the endpoint.

provisioningState

EndpointProvisioningState

The provisioning state.

EventHub

Properties related to EventHub.

Name Type Description
authenticationType

AuthenticationType

Specifies the authentication type being used for connecting to the endpoint. Defaults to 'KeyBased'. If 'KeyBased' is selected, a connection string must be specified (at least the primary connection string). If 'IdentityBased' is select, the endpointUri and entityPath properties must be specified.

connectionStringPrimaryKey

string

PrimaryConnectionString of the endpoint for key-based authentication. Will be obfuscated during read.

connectionStringSecondaryKey

string

SecondaryConnectionString of the endpoint for key-based authentication. Will be obfuscated during read.

createdTime

string

Time when the Endpoint was added to DigitalTwinsInstance.

deadLetterSecret

string

Dead letter storage secret for key-based authentication. Will be obfuscated during read.

deadLetterUri

string

Dead letter storage URL for identity-based authentication.

endpointType string:

EventHub

The type of Digital Twins endpoint

endpointUri

string

The URL of the EventHub namespace for identity-based authentication. It must include the protocol 'sb://'.

entityPath

string

The EventHub name in the EventHub namespace for identity-based authentication.

identity

ManagedIdentityReference

Managed identity properties for the endpoint.

provisioningState

EndpointProvisioningState

The provisioning state.

IdentityType

The type of managed identity used.

Name Type Description
SystemAssigned

string

UserAssigned

string

ManagedIdentityReference

The properties of the Managed Identity.

Name Type Description
type

IdentityType

The type of managed identity used.

userAssignedIdentity

string

The user identity ARM resource id if the managed identity type is 'UserAssigned'.

ServiceBus

Properties related to ServiceBus.

Name Type Description
authenticationType

AuthenticationType

Specifies the authentication type being used for connecting to the endpoint. Defaults to 'KeyBased'. If 'KeyBased' is selected, a connection string must be specified (at least the primary connection string). If 'IdentityBased' is select, the endpointUri and entityPath properties must be specified.

createdTime

string

Time when the Endpoint was added to DigitalTwinsInstance.

deadLetterSecret

string

Dead letter storage secret for key-based authentication. Will be obfuscated during read.

deadLetterUri

string

Dead letter storage URL for identity-based authentication.

endpointType string:

ServiceBus

The type of Digital Twins endpoint

endpointUri

string

The URL of the ServiceBus namespace for identity-based authentication. It must include the protocol 'sb://'.

entityPath

string

The ServiceBus Topic name for identity-based authentication.

identity

ManagedIdentityReference

Managed identity properties for the endpoint.

primaryConnectionString

string

PrimaryConnectionString of the endpoint for key-based authentication. Will be obfuscated during read.

provisioningState

EndpointProvisioningState

The provisioning state.

secondaryConnectionString

string

SecondaryConnectionString of the endpoint for key-based authentication. Will be obfuscated during read.

SystemData

Metadata pertaining to creation and last modification of the resource.

Name Type Description
createdAt

string

The timestamp of resource creation (UTC).

createdBy

string

The identity that created the resource.

createdByType

createdByType

The type of identity that created the resource.

lastModifiedAt

string

The timestamp of resource last modification (UTC)

lastModifiedBy

string

The identity that last modified the resource.

lastModifiedByType

createdByType

The type of identity that last modified the resource.