Class QueryAssetsResponse
QueryAssets response.
Implements
Inherited Members
Namespace: Google.Apis.CloudAsset.v1.Data
Assembly: Google.Apis.CloudAsset.v1.dll
Syntax
public class QueryAssetsResponse : IDirectResponseSchema
Properties
Done
The query response, which can be either an error
or a valid response
. If done
== false
and the query
result is being saved in an output, the output_config field will be set. If done
== true
, exactly one of
error
, query_result
or output_config
will be set. [done] is unset unless the [QueryAssetsResponse]
contains a [QueryAssetsResponse.job_reference].
Declaration
[JsonProperty("done")]
public virtual bool? Done { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Error
Error status.
Declaration
[JsonProperty("error")]
public virtual Status Error { get; set; }
Property Value
Type | Description |
---|---|
Status |
JobReference
Reference to a query job.
Declaration
[JsonProperty("jobReference")]
public virtual string JobReference { get; set; }
Property Value
Type | Description |
---|---|
string |
OutputConfig
Output configuration, which indicates that instead of being returned in an API response on the fly, the query result will be saved in a specific output.
Declaration
[JsonProperty("outputConfig")]
public virtual QueryAssetsOutputConfig OutputConfig { get; set; }
Property Value
Type | Description |
---|---|
QueryAssetsOutputConfig |
QueryResult
Result of the query.
Declaration
[JsonProperty("queryResult")]
public virtual QueryResult QueryResult { get; set; }
Property Value
Type | Description |
---|---|
QueryResult |