Current section

Files

Jump to
google_api_compute lib google_api compute v1 model operation.ex
Raw

lib/google_api/compute/v1/model/operation.ex

# Copyright 2017 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# NOTE: This class is auto generated by the swagger code generator program.
# https://github.com/swagger-api/swagger-codegen.git
# Do not edit the class manually.
defmodule GoogleApi.Compute.V1.Model.Operation do
@moduledoc """
Represents an Operation resource. You can use an operation resource to manage asynchronous API requests. For more information, read Handling API responses. Operations can be global, regional or zonal. - For global operations, use the globalOperations resource. - For regional operations, use the regionOperations resource. - For zonal operations, use the zonalOperations resource. For more information, read Global, Regional, and Zonal Resources. (== resource_for v1.globalOperations ==) (== resource_for beta.globalOperations ==) (== resource_for v1.regionOperations ==) (== resource_for beta.regionOperations ==) (== resource_for v1.zoneOperations ==) (== resource_for beta.zoneOperations ==)
## Attributes
- clientOperationId (String.t): [Output Only] The value of `requestId` if you provided it in the request. Not present otherwise. Defaults to: `null`.
- creationTimestamp (String.t): [Deprecated] This field is deprecated. Defaults to: `null`.
- description (String.t): [Output Only] A textual description of the operation, which is set when the operation is created. Defaults to: `null`.
- endTime (String.t): [Output Only] The time that this operation was completed. This value is in RFC3339 text format. Defaults to: `null`.
- error (OperationError): Defaults to: `null`.
- httpErrorMessage (String.t): [Output Only] If the operation fails, this field contains the HTTP error message that was returned, such as NOT FOUND. Defaults to: `null`.
- httpErrorStatusCode (integer()): [Output Only] If the operation fails, this field contains the HTTP error status code that was returned. For example, a 404 means the resource was not found. Defaults to: `null`.
- id (String.t): [Output Only] The unique identifier for the resource. This identifier is defined by the server. Defaults to: `null`.
- insertTime (String.t): [Output Only] The time that this operation was requested. This value is in RFC3339 text format. Defaults to: `null`.
- kind (String.t): [Output Only] Type of the resource. Always compute#operation for Operation resources. Defaults to: `null`.
- name (String.t): [Output Only] Name of the resource. Defaults to: `null`.
- operationType (String.t): [Output Only] The type of operation, such as insert, update, or delete, and so on. Defaults to: `null`.
- progress (integer()): [Output Only] An optional progress indicator that ranges from 0 to 100. There is no requirement that this be linear or support any granularity of operations. This should not be used to guess when the operation will be complete. This number should monotonically increase as the operation progresses. Defaults to: `null`.
- region (String.t): [Output Only] The URL of the region where the operation resides. Only applicable when performing regional operations. Defaults to: `null`.
- selfLink (String.t): [Output Only] Server-defined URL for the resource. Defaults to: `null`.
- startTime (String.t): [Output Only] The time that this operation was started by the server. This value is in RFC3339 text format. Defaults to: `null`.
- status (String.t): [Output Only] The status of the operation, which can be one of the following: PENDING, RUNNING, or DONE. Defaults to: `null`.
- Enum - one of [DONE, PENDING, RUNNING]
- statusMessage (String.t): [Output Only] An optional textual description of the current status of the operation. Defaults to: `null`.
- targetId (String.t): [Output Only] The unique target ID, which identifies a specific incarnation of the target resource. Defaults to: `null`.
- targetLink (String.t): [Output Only] The URL of the resource that the operation modifies. For operations related to creating a snapshot, this points to the persistent disk that the snapshot was created from. Defaults to: `null`.
- user (String.t): [Output Only] User who requested the operation, for example: user@example.com. Defaults to: `null`.
- warnings ([OperationWarnings]): [Output Only] If warning messages are generated during processing of the operation, this field will be populated. Defaults to: `null`.
- zone (String.t): [Output Only] The URL of the zone where the operation resides. Only applicable when performing per-zone operations. Defaults to: `null`.
"""
use GoogleApi.Gax.ModelBase
@type t :: %__MODULE__{
:clientOperationId => any(),
:creationTimestamp => any(),
:description => any(),
:endTime => any(),
:error => GoogleApi.Compute.V1.Model.OperationError.t(),
:httpErrorMessage => any(),
:httpErrorStatusCode => any(),
:id => any(),
:insertTime => any(),
:kind => any(),
:name => any(),
:operationType => any(),
:progress => any(),
:region => any(),
:selfLink => any(),
:startTime => any(),
:status => any(),
:statusMessage => any(),
:targetId => any(),
:targetLink => any(),
:user => any(),
:warnings => list(GoogleApi.Compute.V1.Model.OperationWarnings.t()),
:zone => any()
}
field(:clientOperationId)
field(:creationTimestamp)
field(:description)
field(:endTime)
field(:error, as: GoogleApi.Compute.V1.Model.OperationError)
field(:httpErrorMessage)
field(:httpErrorStatusCode)
field(:id)
field(:insertTime)
field(:kind)
field(:name)
field(:operationType)
field(:progress)
field(:region)
field(:selfLink)
field(:startTime)
field(:status)
field(:statusMessage)
field(:targetId)
field(:targetLink)
field(:user)
field(:warnings, as: GoogleApi.Compute.V1.Model.OperationWarnings, type: :list)
field(:zone)
end
defimpl Poison.Decoder, for: GoogleApi.Compute.V1.Model.Operation do
def decode(value, options) do
GoogleApi.Compute.V1.Model.Operation.decode(value, options)
end
end
defimpl Poison.Encoder, for: GoogleApi.Compute.V1.Model.Operation do
def encode(value, options) do
GoogleApi.Gax.ModelBase.encode(value, options)
end
end