Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 @@ -519,6 +519,13 @@
"type": "string",
"description": "The filter to apply on the operation."
},
{
"name": "$expand",
"in": "query",
"required": false,
"type": "string",
"description": "Comma-separated list of additional properties to be included in the response. Valid values include `createdTime`, `changedTime` and `provisioningState`. For example, `$expand=createdTime,changedTime`."
},
{
"name": "$top",
"in": "query",
Expand All @@ -538,7 +545,7 @@
"200": {
"description": "",
"schema": {
"$ref": "#/definitions/ResourceListResult"
"$ref": "#/definitions/ResourceExpandedListResult"
Comment thread
anthony-c-martin marked this conversation as resolved.
Outdated
}
}
},
Expand Down Expand Up @@ -844,6 +851,13 @@
"type": "string",
"description": "The filter to apply on the operation."
},
{
"name": "$expand",
"in": "query",
"required": false,
"type": "string",
"description": "Comma-separated list of additional properties to be included in the response. Valid values include `createdTime`, `changedTime` and `provisioningState`. For example, `$expand=createdTime,changedTime`."
},
{
"name": "$top",
"in": "query",
Expand All @@ -863,7 +877,7 @@
"200": {
"description": "",
"schema": {
"$ref": "#/definitions/ResourceListResult"
"$ref": "#/definitions/ResourceExpandedListResult"
Comment thread
anthony-c-martin marked this conversation as resolved.
Outdated
}
}
},
Expand Down Expand Up @@ -2594,6 +2608,33 @@
],
"description": "Resource information."
},
"GenericResourceExpanded": {
"properties": {
"createdTime": {
"readOnly": true,
"type": "string",
"format": "date-time",
"description": "The created time of the resource. This is only present if requested via the $expand query parameter."
},
"changedTime": {
"readOnly": true,
"type": "string",
"format": "date-time",
"description": "The changed time of the resource. This is only present if requested via the $expand query parameter."
},
"provisioningState": {
"readOnly": true,
"type": "string",
"description": "The provisioning state of the resource. This is only present if requested via the $expand query parameter."
}
},
"allOf": [
{
"$ref": "#/definitions/GenericResource"
}
],
"description": "Resource information."
},
"Plan": {
"properties": {
"name": {
Expand All @@ -2615,12 +2656,12 @@
},
"description": "Plan for the resource."
},
"ResourceListResult": {
"ResourceExpandedListResult": {
"properties": {
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/GenericResource"
"$ref": "#/definitions/GenericResourceExpanded"
},
"description": "Gets or sets the list of resource groups."
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@
"in": "query",
"required": false,
"type": "string",
"description": "The $expand query parameter"
"description": "Comma-separated list of additional properties to be included in the response. Valid values include `createdTime`, `changedTime` and `provisioningState`. For example, `$expand=createdTime,changedTime`."
},
{
"name": "$top",
Expand All @@ -601,7 +601,7 @@
"200": {
"description": "",
"schema": {
"$ref": "#/definitions/ResourceListResult"
"$ref": "#/definitions/ResourceExpandedListResult"
}
}
},
Expand Down Expand Up @@ -956,7 +956,7 @@
"in": "query",
"required": false,
"type": "string",
"description": "The $expand query parameter."
"description": "Comma-separated list of additional properties to be included in the response. Valid values include `createdTime`, `changedTime` and `provisioningState`. For example, `$expand=createdTime,changedTime`."
},
{
"name": "$top",
Expand All @@ -977,7 +977,7 @@
"200": {
"description": "",
"schema": {
"$ref": "#/definitions/ResourceListResult"
"$ref": "#/definitions/ResourceExpandedListResult"
}
}
},
Expand Down Expand Up @@ -2149,6 +2149,33 @@
],
"description": "Resource information."
},
"GenericResourceExpanded": {
"properties": {
"createdTime": {
"readOnly": true,
"type": "string",
"format": "date-time",
"description": "The created time of the resource. This is only present if requested via the $expand query parameter."
},
"changedTime": {
"readOnly": true,
"type": "string",
"format": "date-time",
"description": "The changed time of the resource. This is only present if requested via the $expand query parameter."
},
"provisioningState": {
"readOnly": true,
"type": "string",
"description": "The provisioning state of the resource. This is only present if requested via the $expand query parameter."
}
},
"allOf": [
{
"$ref": "#/definitions/GenericResource"
}
],
"description": "Resource information."
},
"Plan": {
"properties": {
"name": {
Expand Down Expand Up @@ -2226,12 +2253,12 @@
},
"description": "Identity for the resource."
},
"ResourceListResult": {
"ResourceExpandedListResult": {
"properties": {
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/GenericResource"
"$ref": "#/definitions/GenericResourceExpanded"
},
"description": "The list of resources."
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@
"in": "query",
"required": false,
"type": "string",
"description": "The $expand query parameter"
"description": "Comma-separated list of additional properties to be included in the response. Valid values include `createdTime`, `changedTime` and `provisioningState`. For example, `$expand=createdTime,changedTime`."
},
{
"name": "$top",
Expand All @@ -601,7 +601,7 @@
"200": {
"description": "",
"schema": {
"$ref": "#/definitions/ResourceListResult"
"$ref": "#/definitions/ResourceExpandedListResult"
}
}
},
Expand Down Expand Up @@ -956,7 +956,7 @@
"in": "query",
"required": false,
"type": "string",
"description": "The $expand query parameter."
"description": "Comma-separated list of additional properties to be included in the response. Valid values include `createdTime`, `changedTime` and `provisioningState`. For example, `$expand=createdTime,changedTime`."
},
{
"name": "$top",
Expand All @@ -977,7 +977,7 @@
"200": {
"description": "",
"schema": {
"$ref": "#/definitions/ResourceListResult"
"$ref": "#/definitions/ResourceExpandedListResult"
}
}
},
Expand Down Expand Up @@ -2157,6 +2157,33 @@
],
"description": "Resource information."
},
"GenericResourceExpanded": {
"properties": {
"createdTime": {
"readOnly": true,
"type": "string",
"format": "date-time",
"description": "The created time of the resource. This is only present if requested via the $expand query parameter."
},
"changedTime": {
"readOnly": true,
"type": "string",
"format": "date-time",
"description": "The changed time of the resource. This is only present if requested via the $expand query parameter."
},
"provisioningState": {
"readOnly": true,
"type": "string",
"description": "The provisioning state of the resource. This is only present if requested via the $expand query parameter."
}
},
"allOf": [
{
"$ref": "#/definitions/GenericResource"
}
],
"description": "Resource information."
},
"Plan": {
"properties": {
"name": {
Expand Down Expand Up @@ -2234,12 +2261,12 @@
},
"description": "Identity for the resource."
},
"ResourceListResult": {
"ResourceExpandedListResult": {
"properties": {
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/GenericResource"
"$ref": "#/definitions/GenericResourceExpanded"
},
"description": "The list of resources."
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@
"in": "query",
"required": false,
"type": "string",
"description": "The $expand query parameter"
"description": "Comma-separated list of additional properties to be included in the response. Valid values include `createdTime`, `changedTime` and `provisioningState`. For example, `$expand=createdTime,changedTime`."
},
{
"name": "$top",
Expand All @@ -626,7 +626,7 @@
"200": {
"description": "OK - Returns an array of resources",
"schema": {
"$ref": "#/definitions/ResourceListResult"
"$ref": "#/definitions/ResourceExpandedListResult"
}
}
},
Expand Down Expand Up @@ -984,7 +984,7 @@
"in": "query",
"required": false,
"type": "string",
"description": "The $expand query parameter."
"description": "Comma-separated list of additional properties to be included in the response. Valid values include `createdTime`, `changedTime` and `provisioningState`. For example, `$expand=createdTime,changedTime`."
},
{
"name": "$top",
Expand All @@ -1005,7 +1005,7 @@
"200": {
"description": "OK - Returns an array of resources.",
"schema": {
"$ref": "#/definitions/ResourceListResult"
"$ref": "#/definitions/ResourceExpandedListResult"
}
}
},
Expand Down Expand Up @@ -2407,6 +2407,33 @@
],
"description": "Resource information."
},
"GenericResourceExpanded": {
"properties": {
"createdTime": {
"readOnly": true,
"type": "string",
"format": "date-time",
"description": "The created time of the resource. This is only present if requested via the $expand query parameter."
},
"changedTime": {
"readOnly": true,
"type": "string",
"format": "date-time",
"description": "The changed time of the resource. This is only present if requested via the $expand query parameter."
},
"provisioningState": {
"readOnly": true,
"type": "string",
"description": "The provisioning state of the resource. This is only present if requested via the $expand query parameter."
}
},
"allOf": [
{
"$ref": "#/definitions/GenericResource"
}
],
"description": "Resource information."
},
"Plan": {
"properties": {
"name": {
Expand Down Expand Up @@ -2484,12 +2511,12 @@
},
"description": "Identity for the resource."
},
"ResourceListResult": {
"ResourceExpandedListResult": {
"properties": {
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/GenericResource"
"$ref": "#/definitions/GenericResourceExpanded"
},
"description": "An array of resources."
},
Expand Down
Loading