Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Datr m #9332

Merged
merged 16 commits into from
May 9, 2020
Original file line number Diff line number Diff line change
Expand Up @@ -1961,63 +1961,12 @@
}
}
},
"Resource": {
"description": "ARM resource.",
"properties": {
"id": {
"readOnly": true,
"type": "string",
"description": "Resource ID."
},
"name": {
"readOnly": true,
"type": "string",
"description": "Resource name."
},
"type": {
"readOnly": true,
"type": "string",
"description": "Resource type."
}
},
"x-ms-azure-resource": true
},
"TrackedResource": {
"description": "ARM tracked top level resource.",
"properties": {
"tags": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"x-ms-mutability": [
"read",
"create",
"update"
],
"description": "Resource tags."
},
"location": {
"type": "string",
"x-ms-mutability": [
"read",
"create"
],
"description": "Resource location."
}
},
"allOf": [
{
"$ref": "#/definitions/Resource"
}
]
},
"Workspace": {
"type": "object",
"description": "Represents a Workspace definition.",
"allOf": [
{
"$ref": "#/definitions/TrackedResource"
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource"
}
],
"properties": {
Expand Down Expand Up @@ -2109,9 +2058,12 @@
"description": "Represents a ApplicationGroup definition.",
"allOf": [
{
"$ref": "#/definitions/TrackedResource"
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource"
}
],
"required": [
"properties"
],
"properties": {
"properties": {
"description": "Detailed properties for ApplicationGroup",
Expand All @@ -2123,6 +2075,10 @@
"ApplicationGroupProperties": {
"description": "Schema for ApplicationGroup properties.",
"type": "object",
"required": [
"hostPoolArmPath",
"applicationGroupType"
],
"properties": {
"description": {
"type": "string",
Expand Down Expand Up @@ -2162,7 +2118,7 @@
"description": "ApplicationGroup properties that can be patched.",
"allOf": [
{
"$ref": "#/definitions/Resource"
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource"
}
],
"properties": {
Expand Down Expand Up @@ -2215,9 +2171,12 @@
"description": "Represents a HostPool definition.",
"allOf": [
{
"$ref": "#/definitions/TrackedResource"
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/TrackedResource"
}
],
"required": [
"properties"
],
"properties": {
"properties": {
"description": "Detailed properties for HostPool",
Expand All @@ -2229,6 +2188,11 @@
"HostPoolProperties": {
"description": "Properties of HostPool.",
"type": "object",
"required": [
"hostPoolType",
"personalDesktopAssignmentType",
"loadBalancerType"
],
"properties": {
"friendlyName": {
"type": "string",
Expand Down Expand Up @@ -2321,7 +2285,7 @@
"description": "HostPool properties that can be patched.",
"allOf": [
{
"$ref": "#/definitions/Resource"
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource"
}
],
"properties": {
Expand Down Expand Up @@ -2466,9 +2430,12 @@
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Resource"
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource"
}
],
"required": [
"properties"
],
"properties": {
"properties": {
"description": "Detailed properties for Application",
Expand All @@ -2480,6 +2447,9 @@
"ApplicationProperties": {
"description": "Schema for Application properties.",
"type": "object",
"required": [
"commandLineSetting"
],
"properties": {
"description": {
"type": "string",
Expand Down Expand Up @@ -2622,7 +2592,7 @@
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Resource"
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource"
}
],
"properties": {
Expand Down Expand Up @@ -2741,7 +2711,7 @@
"description": "Represents a StartMenuItem definition.",
"allOf": [
{
"$ref": "#/definitions/Resource"
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource"
}
],
"properties": {
Expand Down Expand Up @@ -2776,7 +2746,7 @@
"description": "Represents a SessionHost definition.",
"allOf": [
{
"$ref": "#/definitions/Resource"
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource"
}
],
"properties": {
Expand Down Expand Up @@ -2874,7 +2844,7 @@
"description": "SessionHost properties that can be patched.",
"allOf": [
{
"$ref": "#/definitions/Resource"
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource"
}
],
"properties": {
Expand Down Expand Up @@ -2923,7 +2893,7 @@
"description": "Represents a UserSession definition.",
"allOf": [
{
"$ref": "#/definitions/Resource"
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource"
}
],
"properties": {
Expand Down
Loading