lib/google_api/compute/v1/model/network.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.Compute.V1.Model.Network do
  @moduledoc """
  Represents a VPC Network resource. Networks connect resources to each other and to the internet. For more information, read Virtual Private Cloud (VPC) Network.

  ## Attributes

  *   `IPv4Range` (*type:* `String.t`, *default:* `nil`) - Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.
  *   `autoCreateSubnetworks` (*type:* `boolean()`, *default:* `nil`) - Must be set to create a VPC network. If not set, a legacy network is created. When set to true, the VPC network is created in auto mode. When set to false, the VPC network is created in custom mode. An auto mode VPC network starts with one subnet per region. Each subnet has a predetermined range as described in Auto mode VPC network IP ranges. For custom mode VPC networks, you can add subnets using the subnetworks insert method.
  *   `creationTimestamp` (*type:* `String.t`, *default:* `nil`) - [Output Only] Creation timestamp in RFC3339 text format.
  *   `description` (*type:* `String.t`, *default:* `nil`) - An optional description of this resource. Provide this field when you create the resource.
  *   `gatewayIPv4` (*type:* `String.t`, *default:* `nil`) - [Output Only] The gateway address for default routing out of the network, selected by GCP.
  *   `id` (*type:* `String.t`, *default:* `nil`) - [Output Only] The unique identifier for the resource. This identifier is defined by the server.
  *   `kind` (*type:* `String.t`, *default:* `compute#network`) - [Output Only] Type of the resource. Always compute#network for networks.
  *   `mtu` (*type:* `integer()`, *default:* `nil`) - Maximum Transmission Unit in bytes. The minimum value for this field is 1460 and the maximum value is 1500 bytes. If unspecified, defaults to 1460.
  *   `name` (*type:* `String.t`, *default:* `nil`) - Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?`. The first character must be a lowercase letter, and all following characters (except for the last character) must be a dash, lowercase letter, or digit. The last character must be a lowercase letter or digit.
  *   `peerings` (*type:* `list(GoogleApi.Compute.V1.Model.NetworkPeering.t)`, *default:* `nil`) - [Output Only] A list of network peerings for the resource.
  *   `routingConfig` (*type:* `GoogleApi.Compute.V1.Model.NetworkRoutingConfig.t`, *default:* `nil`) - The network-level routing configuration for this network. Used by Cloud Router to determine what type of network-wide routing behavior to enforce.
  *   `selfLink` (*type:* `String.t`, *default:* `nil`) - [Output Only] Server-defined URL for the resource.
  *   `subnetworks` (*type:* `list(String.t)`, *default:* `nil`) - [Output Only] Server-defined fully-qualified URLs for all subnetworks in this VPC network.
  """

  use GoogleApi.Gax.ModelBase

  @type t :: %__MODULE__{
          :IPv4Range => String.t() | nil,
          :autoCreateSubnetworks => boolean() | nil,
          :creationTimestamp => String.t() | nil,
          :description => String.t() | nil,
          :gatewayIPv4 => String.t() | nil,
          :id => String.t() | nil,
          :kind => String.t() | nil,
          :mtu => integer() | nil,
          :name => String.t() | nil,
          :peerings => list(GoogleApi.Compute.V1.Model.NetworkPeering.t()) | nil,
          :routingConfig => GoogleApi.Compute.V1.Model.NetworkRoutingConfig.t() | nil,
          :selfLink => String.t() | nil,
          :subnetworks => list(String.t()) | nil
        }

  field(:IPv4Range)
  field(:autoCreateSubnetworks)
  field(:creationTimestamp)
  field(:description)
  field(:gatewayIPv4)
  field(:id)
  field(:kind)
  field(:mtu)
  field(:name)
  field(:peerings, as: GoogleApi.Compute.V1.Model.NetworkPeering, type: :list)
  field(:routingConfig, as: GoogleApi.Compute.V1.Model.NetworkRoutingConfig)
  field(:selfLink)
  field(:subnetworks, type: :list)
end

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

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