Sha256: f3d3d5dae30466424d5fb36be5160b121a6aa50463a6284ea226cc532d985e5c

Contents?: true

Size: 998 Bytes

Versions: 4

Compression:

Stored size: 998 Bytes

Contents

# Copyright 2013 Google Inc. All Rights Reserved.
#
# 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.

require  'google/compute/mixins/utils'

module Google
  module Compute
    class NetworkInterface
      class AccessConfig

        include Utils

        attr_reader :kind, :name, :type, :nat_ip
       
        def initialize(data)
          @kind = data["kind"]
          @name = data["name"]
          @type = data["type"]
          @nat_ip = data["natIP"]
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
knife-google-1.3.1 lib/google/compute/server/network_interface/access_config.rb
knife-google-1.2.0 lib/google/compute/server/network_interface/access_config.rb
knife-google-1.1.0 lib/google/compute/server/network_interface/access_config.rb
knife-google-1.0.0 lib/google/compute/server/network_interface/access_config.rb