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

[Fix broken S360 Issues][HDInsight] Fix S360 issues batch2 #12493

Merged
merged 14 commits into from
Jan 20, 2021
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@
},
"202": {
"description": "Accepted response definition."
},
"204": {
"description": "No Content response definition."
}
},
"x-ms-long-running-operation": true
Expand Down Expand Up @@ -278,6 +281,10 @@
"type": "integer",
"format": "int32",
"description": "The public port to connect to."
},
"privateIPAddress": {
"type": "string",
"description": "The private ip address of the endpoint."
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,9 @@
},
"200": {
"description": "Ok response definition."
},
"204": {
"description": "No Content response definition."
}
},
"x-ms-long-running-operation": true
Expand Down Expand Up @@ -1229,6 +1232,10 @@
"type": "integer",
"format": "int32",
"description": "The port to connect to."
},
"privateIPAddress": {
"type": "string",
"description": "The private ip address of the endpoint."
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@
},
"202": {
"description": "OK response definition."
},
"204": {
"description": "No Content response definition."
}
},
"x-ms-long-running-operation": true
Expand Down Expand Up @@ -304,6 +307,9 @@
},
"202": {
"description": "Accepted response definition."
},
"204": {
"description": "No Content response definition."
}
},
"x-ms-long-running-operation": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,148 @@
"operation": {
"description": "The operation type: read, write, delete, etc.",
"type": "string"
},
"description": {
"description": "Localized friendly description for the operation",
"type": "string"
}
}
},
"properties": {
"description": "The operation properties.",
"$ref": "#/definitions/OperationProperties"
}
},
"readOnly": true
},
"OperationProperties": {
"description": "The details of operation.",
"type": "object",
"properties": {
"serviceSpecification": {
"description": "The specification of the service.",
"$ref": "#/definitions/ServiceSpecification"
}
}
},
"ServiceSpecification": {
"description": "The specification of the service.",
"type": "object",
"properties": {
"metricSpecifications": {
"description": "The metric specifications.",
"type": "array",
"items": {
"$ref": "#/definitions/MetricSpecifications"
}
}
}
},
"MetricSpecifications": {
"description": "The details of metric specifications.",
"type": "object",
"properties": {
"name": {
"description": "The name of the metric specification.",
"type": "string"
},
"displayName": {
"description": "The display name of the metric specification.",
"type": "string"
},
"displayDescription": {
"description": "The display description of the metric specification.",
"type": "string"
},
"unit": {
"description": "The unit of the metric specification.",
"type": "string"
},
"aggregationType": {
"description": "The aggregation type of the metric specification.",
"type": "string"
},
"supportedAggregationTypes": {
"description": "The supported aggregation types of the metric specification.",
"type": "array",
"items": {
"type": "string"
}
},
"supportedTimeGrainTypes": {
"description": "The supported time grain types of the metric specification.",
"type": "array",
"items": {
"type": "string"
}
},
"enableRegionalMdmAccount": {
"description": "The flag indicates whether enable regional mdm account or not.",
"type": "boolean"
},
"sourceMdmAccount": {
"description": "The source mdm account.",
"type": "string"
},
"sourceMdmNamespace": {
"description": "The source mdm namespace.",
"type": "string"
},
"metricFilterPattern": {
"description": "The metric filter pattern.",
"type": "string"
},
"fillGapWithZero": {
"description": "The flag indicates whether filling gap with zero.",
"type": "boolean"
},
"category": {
"description": "The category of the metric.",
"type": "string"
},
"resourceIdDimensionNameOverride": {
"description": "The override name of resource id dimension name.",
"type": "string"
},
"isInternal": {
"description": "The flag indicates whether the metric is internal or not.",
"type": "boolean"
},
"delegateMetricNameOverride": {
"description": "The override name of delegate metric.",
"type": "string"
},
"dimensions": {
"description": "The dimensions of the metric specification.",
"type": "array",
"items": {
"$ref": "#/definitions/Dimension"
}
}
}
},
"Dimension": {
"description": "The definition of Dimension.",
"type": "object",
"properties": {
"name": {
"description": "The name of the dimension.",
"type": "string"
},
"displayName": {
"description": "The display name of the dimension.",
"type": "string"
},
"internalName": {
"description": "The display name of the dimension.",
"type": "string"
},
"toBeExportedForShoebox": {
"description": "The flag indicates whether the metric will be exported for shoebox or not.",
"type": "boolean"
}
}
},
"OperationListResult": {
"description": "Result of the request to list HDInsight operations. It contains a list of operations and a URL link to get the next set of results.",
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@
},
"200": {
"description": "OK response definition."
},
"204": {
"description": "No Content response definition."
}
}
}
Expand Down