Пример #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");
 }