lib/google_api/on_demand_scanning/v1/model/slsa_metadata.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.OnDemandScanning.V1.Model.SlsaMetadata do
  @moduledoc """
  Other properties of the build.

  ## Attributes

  *   `buildFinishedOn` (*type:* `DateTime.t`, *default:* `nil`) - The timestamp of when the build completed.
  *   `buildInvocationId` (*type:* `String.t`, *default:* `nil`) - Identifies the particular build invocation, which can be useful for finding associated logs or other ad-hoc analysis. The value SHOULD be globally unique, per in-toto Provenance spec.
  *   `buildStartedOn` (*type:* `DateTime.t`, *default:* `nil`) - The timestamp of when the build started.
  *   `completeness` (*type:* `GoogleApi.OnDemandScanning.V1.Model.SlsaCompleteness.t`, *default:* `nil`) - Indicates that the builder claims certain fields in this message to be complete.
  *   `reproducible` (*type:* `boolean()`, *default:* `nil`) - If true, the builder claims that running the recipe on materials will produce bit-for-bit identical output.
  """

  use GoogleApi.Gax.ModelBase

  @type t :: %__MODULE__{
          :buildFinishedOn => DateTime.t() | nil,
          :buildInvocationId => String.t() | nil,
          :buildStartedOn => DateTime.t() | nil,
          :completeness => GoogleApi.OnDemandScanning.V1.Model.SlsaCompleteness.t() | nil,
          :reproducible => boolean() | nil
        }

  field(:buildFinishedOn, as: DateTime)
  field(:buildInvocationId)
  field(:buildStartedOn, as: DateTime)
  field(:completeness, as: GoogleApi.OnDemandScanning.V1.Model.SlsaCompleteness)
  field(:reproducible)
end

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

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