action appcenter_code_push_deployment_metrics_get { label: "codePushDeploymentMetrics_get" description: "Gets all releases metrics for specified Deployment" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/deployments/{deployment_name}/metrics" encoding: json input: { type: "object" properties: { app_name: { type: "string" } deployment_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "deployment_name", "owner_name"] additionalProperties: false } output: { type: "array" items: { required: ["label", "active"] properties: { active: { type: "integer" } downloaded: { type: "integer" } failed: { type: "integer" } installed: { type: "integer" } label: { type: "string" } } } } }