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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
24 changes: 24 additions & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ asyncoperation
asyncrhonously
asyncronously
atascada
Atleast
attachednetworks
attestationcollateral
attestationmechanism
Expand Down Expand Up @@ -514,6 +515,8 @@ compat
compilationjobs
compilefile
compositeentities
computeusage
Computeusage
computervision
concurrentappend
conda
Expand Down Expand Up @@ -701,6 +704,8 @@ deletedstorage
deletedwithversions
deletefailed
deleteissuers
Deletejob
Deletejobs
deleteprivateendpointconnection
deletesas
deletetype
Expand Down Expand Up @@ -894,6 +899,8 @@ exploitability
exportconfiguration
exportdevices
exporterrors
Exportjobs
Exportjob
exportstatus
externaldatasources
externaldnsipaddress01
Expand Down Expand Up @@ -1161,6 +1168,7 @@ hypernet
hyperparameters
hyperparams
hyperscale
hyperthread
hyperv
hypervcollectors
iaas
Expand Down Expand Up @@ -1196,6 +1204,8 @@ immutabilitypolicy
importances
importcollectors
importdevices
Importjob
Importjobs
imsi
inari
inbuild
Expand Down Expand Up @@ -1520,6 +1530,7 @@ manytoone
mapbox
mapconfiguration
mapconfigurations
Mapextensions
mapp
mapred
mapreduce
Expand Down Expand Up @@ -2299,6 +2310,8 @@ ruleset
rulesets
rulestack
rulestacks
runasaccount
runasaccounts
runbook
runbooks
runid
Expand Down Expand Up @@ -2480,6 +2493,7 @@ snmp
snomed
snssai
sobol
softwareinventories
softwareplan
sohsv
solaris
Expand Down Expand Up @@ -2612,6 +2626,7 @@ subvolumes
subwoofer
subword
subwords
Succeded
suceeded
sudoer
suggesters
Expand Down Expand Up @@ -2846,6 +2861,7 @@ unrepaired
unrestorable
unsecure
unsubstituted
Unsynchronized
untagged
untracked
untrust
Expand Down Expand Up @@ -2915,6 +2931,8 @@ verifyx
versionid
versionswithin
vertica
Vffs
VFFS
vfyc
vhds
vhdx
Expand Down Expand Up @@ -2947,6 +2965,8 @@ vldb
vm's
vmdk
vmextension
Vmfs
VMFS
vmilr
vmimage
vmimages
Expand Down Expand Up @@ -2982,11 +3002,15 @@ vpndeviceconfigurationscript
vray
vrfs
vrops
Vsan
VSAN
vsphere
vsts
vstsrm
vuln
vusers
Vvol
VVOL
vwan
vxlan
w3clogfile
Expand Down
76 changes: 76 additions & 0 deletions specification/migrate/common-types/data-plane/v1/types.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"swagger": "2.0",
"info": {
"version": "1.0",
"title": "Common types"
},
"paths": {},
"definitions": {
"ErrorDetail": {
"type": "object",
"description": "The error detail.",
"properties": {
"code": {
"readOnly": true,
"type": "string",
"description": "The error code."
},
"message": {
"readOnly": true,
"type": "string",
"description": "The error message."
},
"target": {
"readOnly": true,
"type": "string",
"description": "The error target."
},
"details": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "#/definitions/ErrorDetail"
},
"x-ms-identifiers": [],
"description": "The error details."
},
"additionalInfo": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "#/definitions/ErrorAdditionalInfo"
},
"x-ms-identifiers": [],
"description": "The error additional info."
}
}
},
"ErrorResponse": {
"type": "object",
"title": "Error response",
"description": "Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).",
"properties": {
"error": {
"description": "The error object.",
"$ref": "#/definitions/ErrorDetail"
}
}
},
"ErrorAdditionalInfo": {
"type": "object",
"properties": {
"type": {
"readOnly": true,
"type": "string",
"description": "The additional info type."
},
"info": {
"readOnly": true,
"type": "object",
"description": "The additional info."
}
},
"description": "The resource management error additional info."
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,182 @@
{
"swagger": "2.0",
"info": {
"version": "1.0",
"title": "Common types"
},
"paths": {},
"definitions": {
"PrivateEndpoint": {
"type": "object",
"properties": {
"id": {
"readOnly": true,
"type": "string",
"description": "The ARM identifier for Private Endpoint"
}
},
"description": "The Private Endpoint resource."
},
"PrivateEndpointConnection": {
"type": "object",
"properties": {
"properties": {
"$ref": "#/definitions/PrivateEndpointConnectionProperties",
"x-ms-client-flatten": true,
"description": "Resource properties."
}
},
"allOf": [
{
"$ref": "./types.json#/definitions/Resource"
}
],
"description": "The Private Endpoint Connection resource."
},
"PrivateEndpointConnectionProperties": {
"type": "object",
"properties": {
"privateEndpoint": {
"$ref": "#/definitions/PrivateEndpoint",
"description": "The resource of private end point."
},
"privateLinkServiceConnectionState": {
"$ref": "#/definitions/PrivateLinkServiceConnectionState",
"description": "A collection of information about the state of the connection between service consumer and provider."
},
"provisioningState": {
"$ref": "#/definitions/PrivateEndpointConnectionProvisioningState",
"description": "The provisioning state of the private endpoint connection resource."
}
},
"required": [
"privateLinkServiceConnectionState"
],
"description": "Properties of the PrivateEndpointConnectProperties."
},
"PrivateLinkServiceConnectionState": {
"type": "object",
"properties": {
"status": {
"$ref": "#/definitions/PrivateEndpointServiceConnectionStatus",
"description": "Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service."
},
"description": {
"type": "string",
"description": "The reason for approval/rejection of the connection."
},
"actionsRequired": {
"type": "string",
"description": "A message indicating if changes on the service provider require any updates on the consumer."
}
},
"description": "A collection of information about the state of the connection between service consumer and provider."
},
"PrivateEndpointServiceConnectionStatus": {
"type": "string",
"description": "The private endpoint connection status.",
"enum": [
"Pending",
"Approved",
"Rejected"
],
"x-ms-enum": {
"name": "PrivateEndpointServiceConnectionStatus",
"modelAsString": true
}
},
"PrivateEndpointConnectionProvisioningState": {
"type": "string",
"readOnly": true,
"description": "The current provisioning state.",
"enum": [
"Succeeded",
"Creating",
"Deleting",
"Failed"
],
"x-ms-enum": {
"name": "PrivateEndpointConnectionProvisioningState",
"modelAsString": true
}
},
"PrivateLinkResource": {
"type": "object",
"properties": {
"properties": {
"$ref": "#/definitions/PrivateLinkResourceProperties",
"description": "Resource properties.",
"x-ms-client-flatten": true
}
},
"allOf": [
{
"$ref": "./types.json#/definitions/Resource"
}
],
"description": "A private link resource"
},
"PrivateLinkResourceProperties": {
"type": "object",
"properties": {
"groupId": {
"description": "The private link resource group id.",
"type": "string",
"readOnly": true
},
"requiredMembers": {
"description": "The private link resource required member names.",
"type": "array",
"items": {
"type": "string"
},
"readOnly": true
},
"requiredZoneNames": {
"type": "array",
"items": {
"type": "string"
},
"description": "The private link resource Private link DNS zone name."
}
},
"description": "Properties of a private link resource."
},
"PrivateEndpointConnectionListResult": {
"type": "object",
"properties": {
"value": {
"type": "array",
"description": "Array of private endpoint connections",
"items": {
"$ref": "#/definitions/PrivateEndpointConnection"
}
}
},
"description": "List of private endpoint connection associated with the specified storage account"
},
"PrivateLinkResourceListResult": {
"type": "object",
"properties": {
"value": {
"type": "array",
"description": "Array of private link resources",
"items": {
"$ref": "#/definitions/PrivateLinkResource"
}
}
},
"description": "A list of private link resources"
}
},
"parameters": {
"PrivateEndpointConnectionName": {
"name": "privateEndpointConnectionName",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the private endpoint connection associated with the Azure resource",
"x-ms-parameter-location": "method"
}
}
}
Loading