ConoHaNet.OpenStackMember.DetachSecurityGroup C# (CSharp) 메소드

DetachSecurityGroup() 개인적인 메소드

private DetachSecurityGroup ( string serverId, string groupName ) : bool
serverId string
groupName string
리턴 bool
        public bool DetachSecurityGroup(string serverId, string groupName)
        {
            return ServersProvider.RemoveSecurityGroup(serverId, groupName, this.DefaultRegion, this.Identity);
        }
OpenStackMember