Sha256: 5d0e4e90a7073a483ce124db893da6e7d89d27ba11bf1ab89ba99e87b089c35f
Contents?: true
Size: 1.17 KB
Versions: 32
Compression:
Stored size: 1.17 KB
Contents
# -*- encoding: utf-8 -*- # # Copyright 2016 Matt Wrock <matt@mattwrock.com> # # 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. module WinRM module PSRP module MessageData # session capability message type class SessionCapability < Base def protocol_version clixml[:version].select { |v| v.attributes['N'] == 'protocolversion' }.first end def ps_version clixml[:version].select { |v| v.attributes['N'] == 'PSVersion' }.first end def serialization_version clixml[:version].select { |v| v.attributes['N'] == 'SerializationVersion' }.first end end end end end
Version data entries
32 entries across 29 versions & 3 rubygems