Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ alias SystemAssignedManagedIdentity = "SystemAssignedManagedIdentity";
alias UserAssignedManagedIdentity = "UserAssignedManagedIdentity";
alias AccessToken = "AccessToken";
alias Sasl = "Sasl";
alias x509Certificate = "x509Certificate";
alias X509Certificate = "X509Certificate";
alias Anonymous = "Anonymous";

@doc("Managed Identity Method")
Expand All @@ -204,7 +204,7 @@ union ManagedIdentityMethod {
}

@doc("Access Token Method")
union AccessTokeMethod {
union AccessTokenMethod {
string,

@doc("AccessToken Option")
Expand All @@ -224,7 +224,7 @@ union x509CertificateMethod {
string,

@doc("x509Certificate Option")
x509Certificate: x509Certificate,
X509Certificate: X509Certificate,
}

@doc("x509 Certificate Method")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ model DataflowEndpointDataLakeStorageAuthentication {
@doc("DataflowEndpoint Data Lake Storage Authentication Method properties")
union DataLakeStorageAuthMethod {
ManagedIdentityMethod,
AccessTokeMethod,
AccessTokenMethod,
}

@doc("Microsoft Fabric endpoint properties")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2553,14 +2553,14 @@
}
},
"definitions": {
"AccessTokeMethod": {
"AccessTokenMethod": {
"type": "string",
"description": "Access Token Method",
"enum": [
"AccessToken"
],
"x-ms-enum": {
"name": "AccessTokeMethod",
"name": "AccessTokenMethod",
"modelAsString": true,
"values": [
{
Expand Down Expand Up @@ -5449,7 +5449,7 @@
"SystemAssignedManagedIdentity",
"UserAssignedManagedIdentity",
"Sasl",
"x509Certificate",
"X509Certificate",
"Anonymous"
],
"x-ms-enum": {
Expand All @@ -5472,8 +5472,8 @@
"description": "Sasl Option"
},
{
"name": "x509Certificate",
"value": "x509Certificate",
"name": "X509Certificate",
"value": "X509Certificate",
"description": "x509Certificate Option"
},
{
Expand Down Expand Up @@ -5669,7 +5669,7 @@
"SystemAssignedManagedIdentity",
"UserAssignedManagedIdentity",
"Sasl",
"x509Certificate",
"X509Certificate",
"Anonymous"
],
"x-ms-enum": {
Expand All @@ -5692,8 +5692,8 @@
"description": "Sasl Option"
},
{
"name": "x509Certificate",
"value": "x509Certificate",
"name": "X509Certificate",
"value": "X509Certificate",
"description": "x509Certificate Option"
},
{
Expand Down Expand Up @@ -6678,15 +6678,15 @@
"type": "string",
"description": "x509 Certificate Method",
"enum": [
"x509Certificate"
"X509Certificate"
],
"x-ms-enum": {
"name": "x509CertificateMethod",
"modelAsString": true,
"values": [
{
"name": "x509Certificate",
"value": "x509Certificate",
"name": "X509Certificate",
"value": "X509Certificate",
"description": "x509Certificate Option"
}
]
Expand Down