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

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

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

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

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