Sha256: cfff555af084da68fc7208ad2a7fa8a819a1e77cbd6abd5af8bbe0e7893bc90e
Contents?: true
Size: 1.29 KB
Versions: 14
Compression:
Stored size: 1.29 KB
Contents
# # Author:: Steven Murawski (<smurawski@chef.io) # Copyright:: Copyright (c) 2015-2016 Chef Software, Inc. # License:: Apache License, Version 2.0 # # 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. # class Chef class Knife class WsmanEndpoint attr_accessor :host attr_accessor :wsman_port attr_accessor :wsman_url attr_accessor :product_version attr_accessor :protocol_version attr_accessor :product_vendor attr_accessor :response_status_code attr_accessor :error_message def initialize(name, port, url) @host = name @wsman_port = port @wsman_url = url end def to_hash hash = {} instance_variables.each { |var| hash[var.to_s.delete("@")] = instance_variable_get(var) } hash end end end end
Version data entries
14 entries across 14 versions & 1 rubygems