Function getIpPolicies

  • Returns a list of IP policies present in the tenant. The user must be assigned the TenantAdmin role.

    Parameters

    • query: {
          fields?: string;
          filter?: string;
          limit?: number;
          page?: string;
          sort?:
              | "name"
              | "-name"
              | "+name"
              | "+createdAt"
              | "-createdAt"
              | "+updatedAt"
              | "-updatedAt"
              | "createdAt"
              | "updatedAt"
              | "enabled"
              | "-enabled"
              | "+enabled";
          totalResults?: boolean;
      }

      an object with query parameters

      • Optionalfields?: string

        A comma-separated list of fields to limit in the response.

      • Optionalfilter?: string

        The advanced filtering to use for the query. Refer to RFC 7644 for the syntax. All conditional statements within this query parameter are case insensitive.

        field "enabled" supports following operators: eq

        field "id" supports following operators: eq, ne

        field "name" supports following operators: eq, co

        field "tenantId" supports following operators: eq

      • Optionallimit?: number
      • Optionalpage?: string
      • Optionalsort?:
            | "name"
            | "-name"
            | "+name"
            | "+createdAt"
            | "-createdAt"
            | "+updatedAt"
            | "-updatedAt"
            | "createdAt"
            | "updatedAt"
            | "enabled"
            | "-enabled"
            | "+enabled"
      • OptionaltotalResults?: boolean
    • Optionaloptions: ApiCallOptions

    Returns Promise<GetIpPoliciesHttpResponse>

    GetIpPoliciesHttpError