示例#1
0
        public string Path(bool withParameter = true)
        {
            if (withParameter && taskId != null)
            {
                return($"{parent.Path()}/tasks/{taskId}");
            }

            return($"{parent.Path()}/tasks");
        }
示例#2
0
        public string Path(bool withParameter = true)
        {
            if (withParameter && pointId != null)
            {
                return($"{parent.Path()}/wireless-points/{pointId}");
            }

            return($"{parent.Path()}/wireless-points");
        }
示例#3
0
        public string Path(bool withParameter = true)
        {
            if (withParameter && switchId != null)
            {
                return($"{parent.Path()}/switches/{switchId}");
            }

            return($"{parent.Path()}/switches");
        }
示例#4
0
        public string Path(bool withParameter = true)
        {
            if (withParameter && networkId != null)
            {
                return($"{parent.Path()}/networks/{networkId}");
            }

            return($"{parent.Path()}/networks");
        }
示例#5
0
 public string Path()
 {
     return($"{parent.Path()}/switches-bulk-validate");
 }
示例#6
0
 public string Path()
 {
     return($"{parent.Path()}/devices");
 }
示例#7
0
 public string Path()
 {
     return($"{parent.Path()}/users");
 }
示例#8
0
 public string Path()
 {
     return($"{parent.Path()}/wireless-points-bulk-create");
 }