lib/google_api/cloud_asset/v1/model/item.ex

# Copyright 2019 Google LLC
#
# 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 file is auto generated by the elixir code generator program.
# Do not edit this file manually.

defmodule GoogleApi.CloudAsset.V1.Model.Item do
  @moduledoc """
  A single piece of inventory on a VM.

  ## Attributes

  *   `availablePackage` (*type:* `GoogleApi.CloudAsset.V1.Model.SoftwarePackage.t`, *default:* `nil`) - Software package available to be installed on the VM instance.
  *   `createTime` (*type:* `DateTime.t`, *default:* `nil`) - When this inventory item was first detected.
  *   `id` (*type:* `String.t`, *default:* `nil`) - Identifier for this item, unique across items for this VM.
  *   `installedPackage` (*type:* `GoogleApi.CloudAsset.V1.Model.SoftwarePackage.t`, *default:* `nil`) - Software package present on the VM instance.
  *   `originType` (*type:* `String.t`, *default:* `nil`) - The origin of this inventory item.
  *   `type` (*type:* `String.t`, *default:* `nil`) - The specific type of inventory, correlating to its specific details.
  *   `updateTime` (*type:* `DateTime.t`, *default:* `nil`) - When this inventory item was last modified.
  """

  use GoogleApi.Gax.ModelBase

  @type t :: %__MODULE__{
          :availablePackage => GoogleApi.CloudAsset.V1.Model.SoftwarePackage.t() | nil,
          :createTime => DateTime.t() | nil,
          :id => String.t() | nil,
          :installedPackage => GoogleApi.CloudAsset.V1.Model.SoftwarePackage.t() | nil,
          :originType => String.t() | nil,
          :type => String.t() | nil,
          :updateTime => DateTime.t() | nil
        }

  field(:availablePackage, as: GoogleApi.CloudAsset.V1.Model.SoftwarePackage)
  field(:createTime, as: DateTime)
  field(:id)
  field(:installedPackage, as: GoogleApi.CloudAsset.V1.Model.SoftwarePackage)
  field(:originType)
  field(:type)
  field(:updateTime, as: DateTime)
end

defimpl Poison.Decoder, for: GoogleApi.CloudAsset.V1.Model.Item do
  def decode(value, options) do
    GoogleApi.CloudAsset.V1.Model.Item.decode(value, options)
  end
end

defimpl Poison.Encoder, for: GoogleApi.CloudAsset.V1.Model.Item do
  def encode(value, options) do
    GoogleApi.Gax.ModelBase.encode(value, options)
  end
end