1<html><body> 2<style> 3 4body, h1, h2, h3, div, span, p, pre, a { 5 margin: 0; 6 padding: 0; 7 border: 0; 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 13} 14 15body { 16 font-size: 13px; 17 padding: 1em; 18} 19 20h1 { 21 font-size: 26px; 22 margin-bottom: 1em; 23} 24 25h2 { 26 font-size: 24px; 27 margin-bottom: 1em; 28} 29 30h3 { 31 font-size: 20px; 32 margin-bottom: 1em; 33 margin-top: 1em; 34} 35 36pre, code { 37 line-height: 1.5; 38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; 39} 40 41pre { 42 margin-top: 0.5em; 43} 44 45h1, h2, h3, p { 46 font-family: Arial, sans serif; 47} 48 49h1, h2, h3 { 50 border-bottom: solid #CCC 1px; 51} 52 53.toc_element { 54 margin-top: 0.5em; 55} 56 57.firstline { 58 margin-left: 2 em; 59} 60 61.method { 62 margin-top: 1em; 63 border: solid 1px #CCC; 64 padding: 1em; 65 background: #EEE; 66} 67 68.details { 69 font-weight: bold; 70 font-size: 14px; 71} 72 73</style> 74 75<h1><a href="apigee_v1.html">Apigee API</a> . <a href="apigee_v1.organizations.html">organizations</a> . <a href="apigee_v1.organizations.hostQueries.html">hostQueries</a></h1> 76<h2>Instance Methods</h2> 77<p class="toc_element"> 78 <code><a href="#close">close()</a></code></p> 79<p class="firstline">Close httplib2 connections.</p> 80<p class="toc_element"> 81 <code><a href="#create">create(parent, body=None, x__xgafv=None)</a></code></p> 82<p class="firstline">Submit a query at host level to be processed in the background. If the submission of the query succeeds, the API returns a 201 status and an ID that refer to the query. In addition to the HTTP status 201, the `state` of "enqueued" means that the request succeeded.</p> 83<p class="toc_element"> 84 <code><a href="#get">get(name, x__xgafv=None)</a></code></p> 85<p class="firstline">Get status of a query submitted at host level. If the query is still in progress, the `state` is set to "running" After the query has completed successfully, `state` is set to "completed"</p> 86<p class="toc_element"> 87 <code><a href="#getResult">getResult(name, x__xgafv=None)</a></code></p> 88<p class="firstline">After the query is completed, use this API to retrieve the results. If the request succeeds, and there is a non-zero result set, the result is downloaded to the client as a zipped JSON file. The name of the downloaded file will be: OfflineQueryResult-.zip Example: `OfflineQueryResult-9cfc0d85-0f30-46d6-ae6f-318d0cb961bd.zip`</p> 89<p class="toc_element"> 90 <code><a href="#getResultView">getResultView(name, x__xgafv=None)</a></code></p> 91<p class="firstline"></p> 92<p class="toc_element"> 93 <code><a href="#list">list(parent, dataset=None, envgroupHostname=None, from=None, inclQueriesWithoutReport=None, status=None, submittedBy=None, to=None, x__xgafv=None)</a></code></p> 94<p class="firstline">Return a list of Asynchronous Queries at host level.</p> 95<h3>Method Details</h3> 96<div class="method"> 97 <code class="details" id="close">close()</code> 98 <pre>Close httplib2 connections.</pre> 99</div> 100 101<div class="method"> 102 <code class="details" id="create">create(parent, body=None, x__xgafv=None)</code> 103 <pre>Submit a query at host level to be processed in the background. If the submission of the query succeeds, the API returns a 201 status and an ID that refer to the query. In addition to the HTTP status 201, the `state` of "enqueued" means that the request succeeded. 104 105Args: 106 parent: string, Required. The parent resource name. Must be of the form `organizations/{org}`. (required) 107 body: object, The request body. 108 The object takes the form of: 109 110{ 111 "csvDelimiter": "A String", # Delimiter used in the CSV file, if `outputFormat` is set to `csv`. Defaults to the `,` (comma) character. Supported delimiter characters include comma (`,`), pipe (`|`), and tab (`\t`). 112 "dimensions": [ # A list of dimensions. https://docs.apigee.com/api-platform/analytics/analytics-reference#dimensions 113 "A String", 114 ], 115 "envgroupHostname": "A String", # Hostname needs to be specified if query intends to run at host level. This field is only allowed when query is submitted by CreateHostAsyncQuery where analytics data will be grouped by organization and hostname. 116 "filter": "A String", # Boolean expression that can be used to filter data. Filter expressions can be combined using AND/OR terms and should be fully parenthesized to avoid ambiguity. See Analytics metrics, dimensions, and filters reference https://docs.apigee.com/api-platform/analytics/analytics-reference for more information on the fields available to filter on. For more information on the tokens that you use to build filter expressions, see Filter expression syntax. https://docs.apigee.com/api-platform/analytics/asynch-reports-api#filter-expression-syntax 117 "groupByTimeUnit": "A String", # Time unit used to group the result set. Valid values include: second, minute, hour, day, week, or month. If a query includes groupByTimeUnit, then the result is an aggregation based on the specified time unit and the resultant timestamp does not include milliseconds precision. If a query omits groupByTimeUnit, then the resultant timestamp includes milliseconds precision. 118 "limit": 42, # Maximum number of rows that can be returned in the result. 119 "metrics": [ # A list of Metrics. 120 { # More info about Metric: https://docs.apigee.com/api-platform/analytics/analytics-reference#metrics 121 "alias": "A String", # Alias for the metric. Alias will be used to replace metric name in query results. 122 "function": "A String", # Aggregation function: avg, min, max, or sum. 123 "name": "A String", # Required. Metric name. 124 "operator": "A String", # One of `+`, `-`, `/`, `%`, `*`. 125 "value": "A String", # Operand value should be provided when operator is set. 126 }, 127 ], 128 "name": "A String", # Asynchronous Query Name. 129 "outputFormat": "A String", # Valid values include: `csv` or `json`. Defaults to `json`. Note: Configure the delimiter for CSV output using the csvDelimiter property. 130 "reportDefinitionId": "A String", # Asynchronous Report ID. 131 "timeRange": "", # Required. Time range for the query. Can use the following predefined strings to specify the time range: `last60minutes` `last24hours` `last7days` Or, specify the timeRange as a structure describing start and end timestamps in the ISO format: yyyy-mm-ddThh:mm:ssZ. Example: "timeRange": { "start": "2018-07-29T00:13:00Z", "end": "2018-08-01T00:18:00Z" } 132} 133 134 x__xgafv: string, V1 error format. 135 Allowed values 136 1 - v1 error format 137 2 - v2 error format 138 139Returns: 140 An object of the form: 141 142 { 143 "created": "A String", # Creation time of the query. 144 "envgroupHostname": "A String", # Hostname is available only when query is executed at host level. 145 "error": "A String", # Error is set when query fails. 146 "executionTime": "A String", # ExecutionTime is available only after the query is completed. 147 "name": "A String", # Asynchronous Query Name. 148 "queryParams": { # Contains information like metrics, dimenstions etc of the AsyncQuery. 149 "dimensions": [ # Dimensions of the AsyncQuery. 150 "A String", 151 ], 152 "endTimestamp": "A String", # End timestamp of the query range. 153 "metrics": [ # Metrics of the AsyncQuery. Example: ["name:message_count,func:sum,alias:sum_message_count"] 154 "A String", 155 ], 156 "outputFormat": "A String", # Output format. 157 "startTimestamp": "A String", # Start timestamp of the query range. 158 "timeUnit": "A String", # Query GroupBy time unit. 159 }, 160 "reportDefinitionId": "A String", # Asynchronous Report ID. 161 "result": { # Result is available only after the query is completed. 162 "expires": "A String", # Query result will be unaccessable after this time. 163 "self": "A String", # Self link of the query results. Example: `/organizations/myorg/environments/myenv/queries/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd/result` or following format if query is running at host level: `/organizations/myorg/hostQueries/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd/result` 164 }, 165 "resultFileSize": "A String", # ResultFileSize is available only after the query is completed. 166 "resultRows": "A String", # ResultRows is available only after the query is completed. 167 "self": "A String", # Self link of the query. Example: `/organizations/myorg/environments/myenv/queries/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd` or following format if query is running at host level: `/organizations/myorg/hostQueries/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd` 168 "state": "A String", # Query state could be "enqueued", "running", "completed", "failed". 169 "updated": "A String", # Last updated timestamp for the query. 170}</pre> 171</div> 172 173<div class="method"> 174 <code class="details" id="get">get(name, x__xgafv=None)</code> 175 <pre>Get status of a query submitted at host level. If the query is still in progress, the `state` is set to "running" After the query has completed successfully, `state` is set to "completed" 176 177Args: 178 name: string, Required. Name of the asynchronous query to get. Must be of the form `organizations/{org}/queries/{queryId}`. (required) 179 x__xgafv: string, V1 error format. 180 Allowed values 181 1 - v1 error format 182 2 - v2 error format 183 184Returns: 185 An object of the form: 186 187 { 188 "created": "A String", # Creation time of the query. 189 "envgroupHostname": "A String", # Hostname is available only when query is executed at host level. 190 "error": "A String", # Error is set when query fails. 191 "executionTime": "A String", # ExecutionTime is available only after the query is completed. 192 "name": "A String", # Asynchronous Query Name. 193 "queryParams": { # Contains information like metrics, dimenstions etc of the AsyncQuery. 194 "dimensions": [ # Dimensions of the AsyncQuery. 195 "A String", 196 ], 197 "endTimestamp": "A String", # End timestamp of the query range. 198 "metrics": [ # Metrics of the AsyncQuery. Example: ["name:message_count,func:sum,alias:sum_message_count"] 199 "A String", 200 ], 201 "outputFormat": "A String", # Output format. 202 "startTimestamp": "A String", # Start timestamp of the query range. 203 "timeUnit": "A String", # Query GroupBy time unit. 204 }, 205 "reportDefinitionId": "A String", # Asynchronous Report ID. 206 "result": { # Result is available only after the query is completed. 207 "expires": "A String", # Query result will be unaccessable after this time. 208 "self": "A String", # Self link of the query results. Example: `/organizations/myorg/environments/myenv/queries/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd/result` or following format if query is running at host level: `/organizations/myorg/hostQueries/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd/result` 209 }, 210 "resultFileSize": "A String", # ResultFileSize is available only after the query is completed. 211 "resultRows": "A String", # ResultRows is available only after the query is completed. 212 "self": "A String", # Self link of the query. Example: `/organizations/myorg/environments/myenv/queries/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd` or following format if query is running at host level: `/organizations/myorg/hostQueries/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd` 213 "state": "A String", # Query state could be "enqueued", "running", "completed", "failed". 214 "updated": "A String", # Last updated timestamp for the query. 215}</pre> 216</div> 217 218<div class="method"> 219 <code class="details" id="getResult">getResult(name, x__xgafv=None)</code> 220 <pre>After the query is completed, use this API to retrieve the results. If the request succeeds, and there is a non-zero result set, the result is downloaded to the client as a zipped JSON file. The name of the downloaded file will be: OfflineQueryResult-.zip Example: `OfflineQueryResult-9cfc0d85-0f30-46d6-ae6f-318d0cb961bd.zip` 221 222Args: 223 name: string, Required. Name of the asynchronous query result to get. Must be of the form `organizations/{org}/queries/{queryId}/result`. (required) 224 x__xgafv: string, V1 error format. 225 Allowed values 226 1 - v1 error format 227 2 - v2 error format 228 229Returns: 230 An object of the form: 231 232 { # Message that represents an arbitrary HTTP body. It should only be used for payload formats that can't be represented as JSON, such as raw binary or an HTML page. This message can be used both in streaming and non-streaming API methods in the request as well as the response. It can be used as a top-level request field, which is convenient if one wants to extract parameters from either the URL or HTTP template into the request fields and also want access to the raw HTTP body. Example: message GetResourceRequest { // A unique request id. string request_id = 1; // The raw HTTP body is bound to this field. google.api.HttpBody http_body = 2; } service ResourceService { rpc GetResource(GetResourceRequest) returns (google.api.HttpBody); rpc UpdateResource(google.api.HttpBody) returns (google.protobuf.Empty); } Example with streaming methods: service CaldavService { rpc GetCalendar(stream google.api.HttpBody) returns (stream google.api.HttpBody); rpc UpdateCalendar(stream google.api.HttpBody) returns (stream google.api.HttpBody); } Use of this type only changes how the request and response bodies are handled, all other features will continue to work unchanged. 233 "contentType": "A String", # The HTTP Content-Type header value specifying the content type of the body. 234 "data": "A String", # The HTTP request/response body as raw binary. 235 "extensions": [ # Application specific response metadata. Must be set in the first response for streaming APIs. 236 { 237 "a_key": "", # Properties of the object. Contains field @type with type URL. 238 }, 239 ], 240}</pre> 241</div> 242 243<div class="method"> 244 <code class="details" id="getResultView">getResultView(name, x__xgafv=None)</code> 245 <pre> 246 247Args: 248 name: string, Required. Name of the asynchronous query result view to get. Must be of the form `organizations/{org}/queries/{queryId}/resultView`. (required) 249 x__xgafv: string, V1 error format. 250 Allowed values 251 1 - v1 error format 252 2 - v2 error format 253 254Returns: 255 An object of the form: 256 257 { 258 "code": 42, # Error code when there is a failure. 259 "error": "A String", # Error message when there is a failure. 260 "metadata": { # Metadata contains information like metrics, dimenstions etc of the AsyncQuery. 261 "dimensions": [ # Dimensions of the AsyncQuery. 262 "A String", 263 ], 264 "endTimestamp": "A String", # End timestamp of the query range. 265 "metrics": [ # Metrics of the AsyncQuery. Example: ["name:message_count,func:sum,alias:sum_message_count"] 266 "A String", 267 ], 268 "outputFormat": "A String", # Output format. 269 "startTimestamp": "A String", # Start timestamp of the query range. 270 "timeUnit": "A String", # Query GroupBy time unit. 271 }, 272 "rows": [ # Rows of query result. Each row is a JSON object. Example: {sum(message_count): 1, developer_app: "(not set)",…} 273 "", 274 ], 275 "state": "A String", # State of retrieving ResultView. 276}</pre> 277</div> 278 279<div class="method"> 280 <code class="details" id="list">list(parent, dataset=None, envgroupHostname=None, from=None, inclQueriesWithoutReport=None, status=None, submittedBy=None, to=None, x__xgafv=None)</code> 281 <pre>Return a list of Asynchronous Queries at host level. 282 283Args: 284 parent: string, Required. The parent resource name. Must be of the form `organizations/{org}`. (required) 285 dataset: string, Filter response list by dataset. Example: `api`, `mint` 286 envgroupHostname: string, Required. Filter response list by hostname. 287 from: string, Filter response list by returning asynchronous queries that created after this date time. Time must be in ISO date-time format like '2011-12-03T10:15:30Z'. 288 inclQueriesWithoutReport: string, Flag to include asynchronous queries that don't have a report denifition. 289 status: string, Filter response list by asynchronous query status. 290 submittedBy: string, Filter response list by user who submitted queries. 291 to: string, Filter response list by returning asynchronous queries that created before this date time. Time must be in ISO date-time format like '2011-12-03T10:16:30Z'. 292 x__xgafv: string, V1 error format. 293 Allowed values 294 1 - v1 error format 295 2 - v2 error format 296 297Returns: 298 An object of the form: 299 300 { # The response for ListAsyncQueries. 301 "queries": [ # The asynchronous queries belong to requested resource name. 302 { 303 "created": "A String", # Creation time of the query. 304 "envgroupHostname": "A String", # Hostname is available only when query is executed at host level. 305 "error": "A String", # Error is set when query fails. 306 "executionTime": "A String", # ExecutionTime is available only after the query is completed. 307 "name": "A String", # Asynchronous Query Name. 308 "queryParams": { # Contains information like metrics, dimenstions etc of the AsyncQuery. 309 "dimensions": [ # Dimensions of the AsyncQuery. 310 "A String", 311 ], 312 "endTimestamp": "A String", # End timestamp of the query range. 313 "metrics": [ # Metrics of the AsyncQuery. Example: ["name:message_count,func:sum,alias:sum_message_count"] 314 "A String", 315 ], 316 "outputFormat": "A String", # Output format. 317 "startTimestamp": "A String", # Start timestamp of the query range. 318 "timeUnit": "A String", # Query GroupBy time unit. 319 }, 320 "reportDefinitionId": "A String", # Asynchronous Report ID. 321 "result": { # Result is available only after the query is completed. 322 "expires": "A String", # Query result will be unaccessable after this time. 323 "self": "A String", # Self link of the query results. Example: `/organizations/myorg/environments/myenv/queries/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd/result` or following format if query is running at host level: `/organizations/myorg/hostQueries/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd/result` 324 }, 325 "resultFileSize": "A String", # ResultFileSize is available only after the query is completed. 326 "resultRows": "A String", # ResultRows is available only after the query is completed. 327 "self": "A String", # Self link of the query. Example: `/organizations/myorg/environments/myenv/queries/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd` or following format if query is running at host level: `/organizations/myorg/hostQueries/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd` 328 "state": "A String", # Query state could be "enqueued", "running", "completed", "failed". 329 "updated": "A String", # Last updated timestamp for the query. 330 }, 331 ], 332}</pre> 333</div> 334 335</body></html>