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

[Hub Generated] Review request for Microsoft.PowerBIdedicated to add version stable/2017-10-01 #15915

Merged
Changes from all 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 @@ -655,6 +655,25 @@
"description": "Operation type: create, update, delete, etc.",
"type": "string",
"readOnly": true
},
"description": {
"type": "string",
"description": "Localized description of the operation."
}
}
},
"origin": {
"type": "string",
"description": "Executor of the operation.",
"readOnly": true
},
"properties": {
cfurmanczyk marked this conversation as resolved.
Show resolved Hide resolved
"type": "object",
"description": "Additional properties to expose performance metrics to shoebox.",
"properties": {
"serviceSpecification": {
cfurmanczyk marked this conversation as resolved.
Show resolved Hide resolved
"$ref": "#/definitions/ServiceSpecification",
"description": "Service specification for exposing performance metrics to shoebox."
}
}
}
Expand Down Expand Up @@ -830,6 +849,11 @@
"modelAsString": true
},
"description": "The name of the Azure pricing tier to which the SKU applies."
},
"capacity": {
"type": "integer",
"format": "int32",
"description": "The capacity of the SKU."
}
},
"required": [
Expand All @@ -848,6 +872,16 @@
"description": "The capacity mode.",
"type": "string",
"readOnly": true
},
cfurmanczyk marked this conversation as resolved.
Show resolved Hide resolved
"tenantId": {
"type": "string",
"description": "Tenant ID for the capacity. Used for creating Pro Plus capacity.",
"readOnly": true
},
"friendlyName": {
cfurmanczyk marked this conversation as resolved.
Show resolved Hide resolved
"type": "string",
"description": "Capacity name",
"readOnly": true
}
}
},
Expand Down Expand Up @@ -895,6 +929,10 @@
"description": "An object that represents SKU details for existing resources",
"type": "object",
"properties": {
"resourceType": {
"type": "string",
"description": "The resource type"
},
"sku": {
"$ref": "#/definitions/ResourceSku",
"description": "The SKU in SKU details for existing resources."
Expand Down Expand Up @@ -955,6 +993,98 @@
"description": "The detailed message of the request unavailability."
}
}
},
"ServiceSpecification": {
"type": "object",
"description": "Service specification for exposing performance metrics to shoebox.",
"properties": {
"metricSpecifications": {
"type": "array",
"description": "Metric specifications for exposing performance metrics to shoebox.",
"items": {
"$ref": "#/definitions/MetricSpecification"
}
},
"logSpecifications": {
"type": "array",
"description": "Log specifications for exposing diagnostic logs to shoebox.",
"items": {
"$ref": "#/definitions/LogSpecification"
}
}
}
},
"MetricSpecification": {
"type": "object",
"description": "Metric specification for exposing performance metrics to shoebox.",
"properties": {
"name": {
"type": "string",
"description": "Metric name",
"readOnly": true
},
"displayName": {
"type": "string",
"description": "Localizable metric name"
},
"displayDescription": {
"type": "string",
"description": "Localizable description of metric"
},
"unit": {
"type": "string",
"description": "Unit for the metric",
"readOnly": true
},
"aggregationType": {
"type": "string",
"description": "Aggregation type for the metric",
"readOnly": true
},
"metricFilterPattern": {
"type": "string",
"description": "Pattern used to filter the metric",
"readOnly": true
},
"dimensions": {
"type": "array",
"description": "For describing multi dimensional metrics",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Dimension of the metric",
"readOnly": true
},
"displayName": {
"type": "string",
"description": "Localizable dimension of the metric"
}
}
}
}
}
},
"LogSpecification": {
"description": "Log specification for exposing diagnostic logs to shoebox.",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the log",
"readOnly": true
},
"displayName": {
"type": "string",
"description": "Localizable name of the log"
},
"blobDuration": {
"type": "string",
"description": "Blob duration for the log",
"readOnly": true
}
}
}
},
"parameters": {
Expand Down