|
89 | 89 | "operation": { |
90 | 90 | "description": "The operation type: read, write, delete, etc.", |
91 | 91 | "type": "string" |
| 92 | + }, |
| 93 | + "description": { |
| 94 | + "description": "Localized friendly description for the operation", |
| 95 | + "type": "string" |
92 | 96 | } |
93 | 97 | } |
| 98 | + }, |
| 99 | + "properties": { |
| 100 | + "description": "The operation properties.", |
| 101 | + "$ref": "#/definitions/OperationProperties" |
94 | 102 | } |
95 | 103 | }, |
96 | 104 | "readOnly": true |
97 | 105 | }, |
| 106 | + "OperationProperties": { |
| 107 | + "description": "The details of operation.", |
| 108 | + "type": "object", |
| 109 | + "properties": { |
| 110 | + "serviceSpecification": { |
| 111 | + "description": "The specification of the service.", |
| 112 | + "$ref": "#/definitions/ServiceSpecification" |
| 113 | + } |
| 114 | + } |
| 115 | + }, |
| 116 | + "ServiceSpecification": { |
| 117 | + "description": "The specification of the service.", |
| 118 | + "type": "object", |
| 119 | + "properties": { |
| 120 | + "metricSpecifications": { |
| 121 | + "description": "The metric specifications.", |
| 122 | + "type": "array", |
| 123 | + "items": { |
| 124 | + "$ref": "#/definitions/MetricSpecifications" |
| 125 | + } |
| 126 | + } |
| 127 | + } |
| 128 | + }, |
| 129 | + "MetricSpecifications": { |
| 130 | + "description": "The details of metric specifications.", |
| 131 | + "type": "object", |
| 132 | + "properties": { |
| 133 | + "name": { |
| 134 | + "description": "The name of the metric specification.", |
| 135 | + "type": "string" |
| 136 | + }, |
| 137 | + "displayName": { |
| 138 | + "description": "The display name of the metric specification.", |
| 139 | + "type": "string" |
| 140 | + }, |
| 141 | + "displayDescription": { |
| 142 | + "description": "The display description of the metric specification.", |
| 143 | + "type": "string" |
| 144 | + }, |
| 145 | + "unit": { |
| 146 | + "description": "The unit of the metric specification.", |
| 147 | + "type": "string" |
| 148 | + }, |
| 149 | + "aggregationType": { |
| 150 | + "description": "The aggregation type of the metric specification.", |
| 151 | + "type": "string" |
| 152 | + }, |
| 153 | + "supportedAggregationTypes": { |
| 154 | + "description": "The supported aggregation types of the metric specification.", |
| 155 | + "type": "array", |
| 156 | + "items": { |
| 157 | + "type": "string" |
| 158 | + } |
| 159 | + }, |
| 160 | + "supportedTimeGrainTypes": { |
| 161 | + "description": "The supported time grain types of the metric specification.", |
| 162 | + "type": "array", |
| 163 | + "items": { |
| 164 | + "type": "string" |
| 165 | + } |
| 166 | + }, |
| 167 | + "enableRegionalMdmAccount": { |
| 168 | + "description": "The flag indicates whether enable regional mdm account or not.", |
| 169 | + "type": "boolean" |
| 170 | + }, |
| 171 | + "sourceMdmAccount": { |
| 172 | + "description": "The source mdm account.", |
| 173 | + "type": "string" |
| 174 | + }, |
| 175 | + "sourceMdmNamespace": { |
| 176 | + "description": "The source mdm namespace.", |
| 177 | + "type": "string" |
| 178 | + }, |
| 179 | + "metricFilterPattern": { |
| 180 | + "description": "The metric filter pattern.", |
| 181 | + "type": "string" |
| 182 | + }, |
| 183 | + "fillGapWithZero": { |
| 184 | + "description": "The flag indicates whether filling gap with zero.", |
| 185 | + "type": "boolean" |
| 186 | + }, |
| 187 | + "category": { |
| 188 | + "description": "The category of the metric.", |
| 189 | + "type": "string" |
| 190 | + }, |
| 191 | + "resourceIdDimensionNameOverride": { |
| 192 | + "description": "The override name of resource id dimension name.", |
| 193 | + "type": "string" |
| 194 | + }, |
| 195 | + "isInternal": { |
| 196 | + "description": "The flag indicates whether the metric is internal or not.", |
| 197 | + "type": "boolean" |
| 198 | + }, |
| 199 | + "delegateMetricNameOverride": { |
| 200 | + "description": "The override name of delegate metric.", |
| 201 | + "type": "string" |
| 202 | + }, |
| 203 | + "dimensions": { |
| 204 | + "description": "The dimensions of the metric specification.", |
| 205 | + "type": "array", |
| 206 | + "items": { |
| 207 | + "$ref": "#/definitions/Dimension" |
| 208 | + } |
| 209 | + } |
| 210 | + } |
| 211 | + }, |
| 212 | + "Dimension": { |
| 213 | + "description": "The definition of Dimension.", |
| 214 | + "type": "object", |
| 215 | + "properties": { |
| 216 | + "name": { |
| 217 | + "description": "The name of the dimension.", |
| 218 | + "type": "string" |
| 219 | + }, |
| 220 | + "displayName": { |
| 221 | + "description": "The display name of the dimension.", |
| 222 | + "type": "string" |
| 223 | + }, |
| 224 | + "internalName": { |
| 225 | + "description": "The display name of the dimension.", |
| 226 | + "type": "string" |
| 227 | + }, |
| 228 | + "toBeExportedForShoebox": { |
| 229 | + "description": "The flag indicates whether the metric will be exported for shoebox or not.", |
| 230 | + "type": "boolean" |
| 231 | + } |
| 232 | + } |
| 233 | + }, |
98 | 234 | "OperationListResult": { |
99 | 235 | "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.", |
100 | 236 | "properties": { |
|
0 commit comments