1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getHipObjectList
Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi
scm logo
Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi

    Retrieves a listing of config items.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // Fetch a list of all HIP Object objects in the Shared folder.
    const allShared = scm.getHipObjectList({
        folder: "All",
    });
    export const hipObjectsListAllShared = allShared.then(allShared => allShared.datas);
    // Example of using pagination to get the first 10 HIP objects.
    const paginated = scm.getHipObjectList({
        folder: "All",
        limit: 10,
        offset: 0,
    });
    export const hipObjectsListPaginated = paginated.then(paginated => paginated.datas);
    
    import pulumi
    import pulumi_scm as scm
    
    # Fetch a list of all HIP Object objects in the Shared folder.
    all_shared = scm.get_hip_object_list(folder="All")
    pulumi.export("hipObjectsListAllShared", all_shared.datas)
    # Example of using pagination to get the first 10 HIP objects.
    paginated = scm.get_hip_object_list(folder="All",
        limit=10,
        offset=0)
    pulumi.export("hipObjectsListPaginated", paginated.datas)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-scm/sdk/go/scm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Fetch a list of all HIP Object objects in the Shared folder.
    		allShared, err := scm.GetHipObjectList(ctx, &scm.GetHipObjectListArgs{
    			Folder: pulumi.StringRef("All"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("hipObjectsListAllShared", allShared.Datas)
    		// Example of using pagination to get the first 10 HIP objects.
    		paginated, err := scm.GetHipObjectList(ctx, &scm.GetHipObjectListArgs{
    			Folder: pulumi.StringRef("All"),
    			Limit:  pulumi.IntRef(10),
    			Offset: pulumi.IntRef(0),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("hipObjectsListPaginated", paginated.Datas)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Fetch a list of all HIP Object objects in the Shared folder.
        var allShared = Scm.GetHipObjectList.Invoke(new()
        {
            Folder = "All",
        });
    
        // Example of using pagination to get the first 10 HIP objects.
        var paginated = Scm.GetHipObjectList.Invoke(new()
        {
            Folder = "All",
            Limit = 10,
            Offset = 0,
        });
    
        return new Dictionary<string, object?>
        {
            ["hipObjectsListAllShared"] = allShared.Apply(getHipObjectListResult => getHipObjectListResult.Datas),
            ["hipObjectsListPaginated"] = paginated.Apply(getHipObjectListResult => getHipObjectListResult.Datas),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.ScmFunctions;
    import com.pulumi.scm.inputs.GetHipObjectListArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            // Fetch a list of all HIP Object objects in the Shared folder.
            final var allShared = ScmFunctions.getHipObjectList(GetHipObjectListArgs.builder()
                .folder("All")
                .build());
    
            ctx.export("hipObjectsListAllShared", allShared.datas());
            // Example of using pagination to get the first 10 HIP objects.
            final var paginated = ScmFunctions.getHipObjectList(GetHipObjectListArgs.builder()
                .folder("All")
                .limit(10)
                .offset(0)
                .build());
    
            ctx.export("hipObjectsListPaginated", paginated.datas());
        }
    }
    
    variables:
      # Fetch a list of all HIP Object objects in the Shared folder.
      allShared:
        fn::invoke:
          function: scm:getHipObjectList
          arguments:
            folder: All
      # Example of using pagination to get the first 10 HIP objects.
      paginated:
        fn::invoke:
          function: scm:getHipObjectList
          arguments:
            folder: All
            limit: 10
            offset: 0
    outputs:
      # Output the raw list of all HIP Object objects.
      hipObjectsListAllShared: ${allShared.datas}
      hipObjectsListPaginated: ${paginated.datas}
    

    Using getHipObjectList

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getHipObjectList(args: GetHipObjectListArgs, opts?: InvokeOptions): Promise<GetHipObjectListResult>
    function getHipObjectListOutput(args: GetHipObjectListOutputArgs, opts?: InvokeOptions): Output<GetHipObjectListResult>
    def get_hip_object_list(device: Optional[str] = None,
                            folder: Optional[str] = None,
                            limit: Optional[int] = None,
                            name: Optional[str] = None,
                            offset: Optional[int] = None,
                            snippet: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetHipObjectListResult
    def get_hip_object_list_output(device: Optional[pulumi.Input[str]] = None,
                            folder: Optional[pulumi.Input[str]] = None,
                            limit: Optional[pulumi.Input[int]] = None,
                            name: Optional[pulumi.Input[str]] = None,
                            offset: Optional[pulumi.Input[int]] = None,
                            snippet: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetHipObjectListResult]
    func GetHipObjectList(ctx *Context, args *GetHipObjectListArgs, opts ...InvokeOption) (*GetHipObjectListResult, error)
    func GetHipObjectListOutput(ctx *Context, args *GetHipObjectListOutputArgs, opts ...InvokeOption) GetHipObjectListResultOutput

    > Note: This function is named GetHipObjectList in the Go SDK.

    public static class GetHipObjectList 
    {
        public static Task<GetHipObjectListResult> InvokeAsync(GetHipObjectListArgs args, InvokeOptions? opts = null)
        public static Output<GetHipObjectListResult> Invoke(GetHipObjectListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetHipObjectListResult> getHipObjectList(GetHipObjectListArgs args, InvokeOptions options)
    public static Output<GetHipObjectListResult> getHipObjectList(GetHipObjectListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getHipObjectList:getHipObjectList
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    getHipObjectList Result

    The following output properties are available:

    Datas List<GetHipObjectListData>
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Datas []GetHipObjectListData
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    datas List<GetHipObjectListData>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    total Integer
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    datas GetHipObjectListData[]
    The data.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    total number
    The total number of items.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    datas Sequence[GetHipObjectListData]
    The data.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    total int
    The total number of items.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    datas List<Property Map>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    total Number
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    Supporting Types

    GetHipObjectListData

    AntiMalware GetHipObjectListDataAntiMalware
    Anti malware
    Certificate GetHipObjectListDataCertificate
    Certificate
    CustomChecks GetHipObjectListDataCustomChecks
    Custom checks
    DataLossPrevention GetHipObjectListDataDataLossPrevention
    Data loss prevention
    Description string
    Description
    Device string
    The device in which the resource is defined
    DiskBackup GetHipObjectListDataDiskBackup
    Disk backup
    DiskEncryption GetHipObjectListDataDiskEncryption
    Disk encryption
    Firewall GetHipObjectListDataFirewall
    Firewall
    Folder string
    The folder of the item. Default: Shared.
    HostInfo GetHipObjectListDataHostInfo
    Host info
    Id string
    UUID of the resource
    MobileDevice GetHipObjectListDataMobileDevice
    Mobile device
    Name string
    The name of the HIP object
    NetworkInfo GetHipObjectListDataNetworkInfo
    Network info
    PatchManagement GetHipObjectListDataPatchManagement
    Patch management
    Snippet string
    The snippet of the item.
    Tfid string
    AntiMalware GetHipObjectListDataAntiMalware
    Anti malware
    Certificate GetHipObjectListDataCertificate
    Certificate
    CustomChecks GetHipObjectListDataCustomChecks
    Custom checks
    DataLossPrevention GetHipObjectListDataDataLossPrevention
    Data loss prevention
    Description string
    Description
    Device string
    The device in which the resource is defined
    DiskBackup GetHipObjectListDataDiskBackup
    Disk backup
    DiskEncryption GetHipObjectListDataDiskEncryption
    Disk encryption
    Firewall GetHipObjectListDataFirewall
    Firewall
    Folder string
    The folder of the item. Default: Shared.
    HostInfo GetHipObjectListDataHostInfo
    Host info
    Id string
    UUID of the resource
    MobileDevice GetHipObjectListDataMobileDevice
    Mobile device
    Name string
    The name of the HIP object
    NetworkInfo GetHipObjectListDataNetworkInfo
    Network info
    PatchManagement GetHipObjectListDataPatchManagement
    Patch management
    Snippet string
    The snippet of the item.
    Tfid string
    antiMalware GetHipObjectListDataAntiMalware
    Anti malware
    certificate GetHipObjectListDataCertificate
    Certificate
    customChecks GetHipObjectListDataCustomChecks
    Custom checks
    dataLossPrevention GetHipObjectListDataDataLossPrevention
    Data loss prevention
    description String
    Description
    device String
    The device in which the resource is defined
    diskBackup GetHipObjectListDataDiskBackup
    Disk backup
    diskEncryption GetHipObjectListDataDiskEncryption
    Disk encryption
    firewall GetHipObjectListDataFirewall
    Firewall
    folder String
    The folder of the item. Default: Shared.
    hostInfo GetHipObjectListDataHostInfo
    Host info
    id String
    UUID of the resource
    mobileDevice GetHipObjectListDataMobileDevice
    Mobile device
    name String
    The name of the HIP object
    networkInfo GetHipObjectListDataNetworkInfo
    Network info
    patchManagement GetHipObjectListDataPatchManagement
    Patch management
    snippet String
    The snippet of the item.
    tfid String
    antiMalware GetHipObjectListDataAntiMalware
    Anti malware
    certificate GetHipObjectListDataCertificate
    Certificate
    customChecks GetHipObjectListDataCustomChecks
    Custom checks
    dataLossPrevention GetHipObjectListDataDataLossPrevention
    Data loss prevention
    description string
    Description
    device string
    The device in which the resource is defined
    diskBackup GetHipObjectListDataDiskBackup
    Disk backup
    diskEncryption GetHipObjectListDataDiskEncryption
    Disk encryption
    firewall GetHipObjectListDataFirewall
    Firewall
    folder string
    The folder of the item. Default: Shared.
    hostInfo GetHipObjectListDataHostInfo
    Host info
    id string
    UUID of the resource
    mobileDevice GetHipObjectListDataMobileDevice
    Mobile device
    name string
    The name of the HIP object
    networkInfo GetHipObjectListDataNetworkInfo
    Network info
    patchManagement GetHipObjectListDataPatchManagement
    Patch management
    snippet string
    The snippet of the item.
    tfid string
    anti_malware GetHipObjectListDataAntiMalware
    Anti malware
    certificate GetHipObjectListDataCertificate
    Certificate
    custom_checks GetHipObjectListDataCustomChecks
    Custom checks
    data_loss_prevention GetHipObjectListDataDataLossPrevention
    Data loss prevention
    description str
    Description
    device str
    The device in which the resource is defined
    disk_backup GetHipObjectListDataDiskBackup
    Disk backup
    disk_encryption GetHipObjectListDataDiskEncryption
    Disk encryption
    firewall GetHipObjectListDataFirewall
    Firewall
    folder str
    The folder of the item. Default: Shared.
    host_info GetHipObjectListDataHostInfo
    Host info
    id str
    UUID of the resource
    mobile_device GetHipObjectListDataMobileDevice
    Mobile device
    name str
    The name of the HIP object
    network_info GetHipObjectListDataNetworkInfo
    Network info
    patch_management GetHipObjectListDataPatchManagement
    Patch management
    snippet str
    The snippet of the item.
    tfid str
    antiMalware Property Map
    Anti malware
    certificate Property Map
    Certificate
    customChecks Property Map
    Custom checks
    dataLossPrevention Property Map
    Data loss prevention
    description String
    Description
    device String
    The device in which the resource is defined
    diskBackup Property Map
    Disk backup
    diskEncryption Property Map
    Disk encryption
    firewall Property Map
    Firewall
    folder String
    The folder of the item. Default: Shared.
    hostInfo Property Map
    Host info
    id String
    UUID of the resource
    mobileDevice Property Map
    Mobile device
    name String
    The name of the HIP object
    networkInfo Property Map
    Network info
    patchManagement Property Map
    Patch management
    snippet String
    The snippet of the item.
    tfid String

    GetHipObjectListDataAntiMalware

    criteria Property Map
    Criteria
    excludeVendor Boolean
    Exclude vendor
    vendors List<Property Map>
    Vendor name

    GetHipObjectListDataAntiMalwareCriteria

    isInstalled Boolean
    Is Installed
    lastScanTime Property Map
    Last scan time
    productVersion Property Map
    Product version
    realTimeProtection String
    real time protection
    virdefVersion Property Map
    Virdef version

    GetHipObjectListDataAntiMalwareCriteriaLastScanTime

    NotAvailable GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotAvailable
    Not available
    NotWithin GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin

    Not within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    Within GetHipObjectListDataAntiMalwareCriteriaLastScanTimeWithin

    Within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    NotAvailable GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotAvailable
    Not available
    NotWithin GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin

    Not within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    Within GetHipObjectListDataAntiMalwareCriteriaLastScanTimeWithin

    Within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    notAvailable GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotAvailable
    Not available
    notWithin GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin

    Not within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    within GetHipObjectListDataAntiMalwareCriteriaLastScanTimeWithin

    Within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    notAvailable GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotAvailable
    Not available
    notWithin GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin

    Not within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    within GetHipObjectListDataAntiMalwareCriteriaLastScanTimeWithin

    Within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    not_available GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotAvailable
    Not available
    not_within GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin

    Not within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    within GetHipObjectListDataAntiMalwareCriteriaLastScanTimeWithin

    Within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    notAvailable Property Map
    Not available
    notWithin Property Map

    Not within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    within Property Map

    Within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin

    Days int
    specify time in days
    Hours int

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    Days int
    specify time in days
    Hours int

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days Integer
    specify time in days
    hours Integer

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days number
    specify time in days
    hours number

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days int
    specify time in days
    hours int

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days Number
    specify time in days
    hours Number

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    GetHipObjectListDataAntiMalwareCriteriaLastScanTimeWithin

    Days int
    specify time in days
    Hours int

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    Days int
    specify time in days
    Hours int

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days Integer
    specify time in days
    hours Integer

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days number
    specify time in days
    hours number

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days int
    specify time in days
    hours int

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days Number
    specify time in days
    hours Number

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    GetHipObjectListDataAntiMalwareCriteriaProductVersion

    Contains string
    Contains
    GreaterEqual string

    Greater equal

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    GreaterThan string

    Greater than

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    LessEqual string

    Less equal

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    LessThan string

    Less than

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    NotWithin GetHipObjectListDataAntiMalwareCriteriaProductVersionNotWithin

    Not within

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    Within GetHipObjectListDataAntiMalwareCriteriaProductVersionWithin

    Within

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    Contains string
    Contains
    GreaterEqual string

    Greater equal

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    GreaterThan string

    Greater than

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    LessEqual string

    Less equal

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    LessThan string

    Less than

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    NotWithin GetHipObjectListDataAntiMalwareCriteriaProductVersionNotWithin

    Not within

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    Within GetHipObjectListDataAntiMalwareCriteriaProductVersionWithin

    Within

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    contains String
    Contains
    greaterEqual String

    Greater equal

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    greaterThan String

    Greater than

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    lessEqual String

    Less equal

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    lessThan String

    Less than

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    notWithin GetHipObjectListDataAntiMalwareCriteriaProductVersionNotWithin

    Not within

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    within GetHipObjectListDataAntiMalwareCriteriaProductVersionWithin

    Within

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    contains string
    Contains
    greaterEqual string

    Greater equal

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    greaterThan string

    Greater than

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    is string

    Is

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    isNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    lessEqual string

    Less equal

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    lessThan string

    Less than

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    notWithin GetHipObjectListDataAntiMalwareCriteriaProductVersionNotWithin

    Not within

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    within GetHipObjectListDataAntiMalwareCriteriaProductVersionWithin

    Within

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    contains str
    Contains
    greater_equal str

    Greater equal

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    greater_than str

    Greater than

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    is_ str

    Is

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    is_not str

    Is not

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    less_equal str

    Less equal

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    less_than str

    Less than

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    not_within GetHipObjectListDataAntiMalwareCriteriaProductVersionNotWithin

    Not within

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    within GetHipObjectListDataAntiMalwareCriteriaProductVersionWithin

    Within

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    contains String
    Contains
    greaterEqual String

    Greater equal

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    greaterThan String

    Greater than

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    lessEqual String

    Less equal

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    lessThan String

    Less than

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    notWithin Property Map

    Not within

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    within Property Map

    Within

    ℹ️ Note: You must specify exactly one of contains, greater_equal, greater_than, is, is_not, less_equal, less_than, not_within, and within.

    GetHipObjectListDataAntiMalwareCriteriaProductVersionNotWithin

    Versions int
    versions range
    Versions int
    versions range
    versions Integer
    versions range
    versions number
    versions range
    versions int
    versions range
    versions Number
    versions range

    GetHipObjectListDataAntiMalwareCriteriaProductVersionWithin

    Versions int
    versions range
    Versions int
    versions range
    versions Integer
    versions range
    versions number
    versions range
    versions int
    versions range
    versions Number
    versions range

    GetHipObjectListDataAntiMalwareCriteriaVirdefVersion

    notWithin Property Map
    Not within
    within Property Map

    Within

    ℹ️ Note: You must specify exactly one of not_within and within.

    GetHipObjectListDataAntiMalwareCriteriaVirdefVersionNotWithin

    Days int
    specify time in days
    Versions int

    specify versions range

    ℹ️ Note: You must specify exactly one of days and versions.

    Days int
    specify time in days
    Versions int

    specify versions range

    ℹ️ Note: You must specify exactly one of days and versions.

    days Integer
    specify time in days
    versions Integer

    specify versions range

    ℹ️ Note: You must specify exactly one of days and versions.

    days number
    specify time in days
    versions number

    specify versions range

    ℹ️ Note: You must specify exactly one of days and versions.

    days int
    specify time in days
    versions int

    specify versions range

    ℹ️ Note: You must specify exactly one of days and versions.

    days Number
    specify time in days
    versions Number

    specify versions range

    ℹ️ Note: You must specify exactly one of days and versions.

    GetHipObjectListDataAntiMalwareCriteriaVirdefVersionWithin

    Days int
    specify time in days
    Versions int

    specify versions range

    ℹ️ Note: You must specify exactly one of days and versions.

    Days int
    specify time in days
    Versions int

    specify versions range

    ℹ️ Note: You must specify exactly one of days and versions.

    days Integer
    specify time in days
    versions Integer

    specify versions range

    ℹ️ Note: You must specify exactly one of days and versions.

    days number
    specify time in days
    versions number

    specify versions range

    ℹ️ Note: You must specify exactly one of days and versions.

    days int
    specify time in days
    versions int

    specify versions range

    ℹ️ Note: You must specify exactly one of days and versions.

    days Number
    specify time in days
    versions Number

    specify versions range

    ℹ️ Note: You must specify exactly one of days and versions.

    GetHipObjectListDataAntiMalwareVendor

    Name string
    Name
    Products List<string>
    Product
    Name string
    Name
    Products []string
    Product
    name String
    Name
    products List<String>
    Product
    name string
    Name
    products string[]
    Product
    name str
    Name
    products Sequence[str]
    Product
    name String
    Name
    products List<String>
    Product

    GetHipObjectListDataCertificate

    GetHipObjectListDataCertificateCriteria

    CertificateAttributes List<GetHipObjectListDataCertificateCriteriaCertificateAttribute>
    Certificate attributes
    CertificateProfile string
    Profile for authenticating client certificates
    CertificateAttributes []GetHipObjectListDataCertificateCriteriaCertificateAttribute
    Certificate attributes
    CertificateProfile string
    Profile for authenticating client certificates
    certificateAttributes List<GetHipObjectListDataCertificateCriteriaCertificateAttribute>
    Certificate attributes
    certificateProfile String
    Profile for authenticating client certificates
    certificateAttributes GetHipObjectListDataCertificateCriteriaCertificateAttribute[]
    Certificate attributes
    certificateProfile string
    Profile for authenticating client certificates
    certificateAttributes List<Property Map>
    Certificate attributes
    certificateProfile String
    Profile for authenticating client certificates

    GetHipObjectListDataCertificateCriteriaCertificateAttribute

    Name string
    Attribute Name
    Value string
    Key value
    Name string
    Attribute Name
    Value string
    Key value
    name String
    Attribute Name
    value String
    Key value
    name string
    Attribute Name
    value string
    Key value
    name str
    Attribute Name
    value str
    Key value
    name String
    Attribute Name
    value String
    Key value

    GetHipObjectListDataCustomChecks

    GetHipObjectListDataCustomChecksCriteria

    GetHipObjectListDataCustomChecksCriteriaPlist

    Keys List<GetHipObjectListDataCustomChecksCriteriaPlistKey>
    Key
    Name string
    Preference list
    Negate bool
    Plist does not exist
    Keys []GetHipObjectListDataCustomChecksCriteriaPlistKey
    Key
    Name string
    Preference list
    Negate bool
    Plist does not exist
    keys List<GetHipObjectListDataCustomChecksCriteriaPlistKey>
    Key
    name String
    Preference list
    negate Boolean
    Plist does not exist
    keys GetHipObjectListDataCustomChecksCriteriaPlistKey[]
    Key
    name string
    Preference list
    negate boolean
    Plist does not exist
    keys Sequence[GetHipObjectListDataCustomChecksCriteriaPlistKey]
    Key
    name str
    Preference list
    negate bool
    Plist does not exist
    keys List<Property Map>
    Key
    name String
    Preference list
    negate Boolean
    Plist does not exist

    GetHipObjectListDataCustomChecksCriteriaPlistKey

    Name string
    Key name
    Negate bool
    Value does not exist or match specified value data
    Value string
    Key value
    Name string
    Key name
    Negate bool
    Value does not exist or match specified value data
    Value string
    Key value
    name String
    Key name
    negate Boolean
    Value does not exist or match specified value data
    value String
    Key value
    name string
    Key name
    negate boolean
    Value does not exist or match specified value data
    value string
    Key value
    name str
    Key name
    negate bool
    Value does not exist or match specified value data
    value str
    Key value
    name String
    Key name
    negate Boolean
    Value does not exist or match specified value data
    value String
    Key value

    GetHipObjectListDataCustomChecksCriteriaProcessList

    Name string
    Process Name
    Running bool
    Running
    Name string
    Process Name
    Running bool
    Running
    name String
    Process Name
    running Boolean
    Running
    name string
    Process Name
    running boolean
    Running
    name str
    Process Name
    running bool
    Running
    name String
    Process Name
    running Boolean
    Running

    GetHipObjectListDataCustomChecksCriteriaRegistryKey

    DefaultValueData string
    Registry key default value data
    Name string
    Registry key
    Negate bool
    Key does not exist or match specified value data
    RegistryValues List<GetHipObjectListDataCustomChecksCriteriaRegistryKeyRegistryValue>
    Registry value
    DefaultValueData string
    Registry key default value data
    Name string
    Registry key
    Negate bool
    Key does not exist or match specified value data
    RegistryValues []GetHipObjectListDataCustomChecksCriteriaRegistryKeyRegistryValue
    Registry value
    defaultValueData String
    Registry key default value data
    name String
    Registry key
    negate Boolean
    Key does not exist or match specified value data
    registryValues List<GetHipObjectListDataCustomChecksCriteriaRegistryKeyRegistryValue>
    Registry value
    defaultValueData string
    Registry key default value data
    name string
    Registry key
    negate boolean
    Key does not exist or match specified value data
    registryValues GetHipObjectListDataCustomChecksCriteriaRegistryKeyRegistryValue[]
    Registry value
    default_value_data str
    Registry key default value data
    name str
    Registry key
    negate bool
    Key does not exist or match specified value data
    registry_values Sequence[GetHipObjectListDataCustomChecksCriteriaRegistryKeyRegistryValue]
    Registry value
    defaultValueData String
    Registry key default value data
    name String
    Registry key
    negate Boolean
    Key does not exist or match specified value data
    registryValues List<Property Map>
    Registry value

    GetHipObjectListDataCustomChecksCriteriaRegistryKeyRegistryValue

    Name string
    Registry value name
    Negate bool
    Value does not exist or match specified value data
    ValueData string
    Registry value data
    Name string
    Registry value name
    Negate bool
    Value does not exist or match specified value data
    ValueData string
    Registry value data
    name String
    Registry value name
    negate Boolean
    Value does not exist or match specified value data
    valueData String
    Registry value data
    name string
    Registry value name
    negate boolean
    Value does not exist or match specified value data
    valueData string
    Registry value data
    name str
    Registry value name
    negate bool
    Value does not exist or match specified value data
    value_data str
    Registry value data
    name String
    Registry value name
    negate Boolean
    Value does not exist or match specified value data
    valueData String
    Registry value data

    GetHipObjectListDataDataLossPrevention

    criteria Property Map
    Criteria
    excludeVendor Boolean
    Exclude vendor
    vendors List<Property Map>
    Vendor name

    GetHipObjectListDataDataLossPreventionCriteria

    IsEnabled string
    is enabled
    IsInstalled bool
    Is Installed
    IsEnabled string
    is enabled
    IsInstalled bool
    Is Installed
    isEnabled String
    is enabled
    isInstalled Boolean
    Is Installed
    isEnabled string
    is enabled
    isInstalled boolean
    Is Installed
    is_enabled str
    is enabled
    is_installed bool
    Is Installed
    isEnabled String
    is enabled
    isInstalled Boolean
    Is Installed

    GetHipObjectListDataDataLossPreventionVendor

    Name string
    Name
    Products List<string>
    Product name
    Name string
    Name
    Products []string
    Product name
    name String
    Name
    products List<String>
    Product name
    name string
    Name
    products string[]
    Product name
    name str
    Name
    products Sequence[str]
    Product name
    name String
    Name
    products List<String>
    Product name

    GetHipObjectListDataDiskBackup

    criteria Property Map
    Criteria
    excludeVendor Boolean
    Exclude vendor
    vendors List<Property Map>
    Vendor name

    GetHipObjectListDataDiskBackupCriteria

    isInstalled Boolean
    Is Installed
    lastBackupTime Property Map
    Last backup time

    GetHipObjectListDataDiskBackupCriteriaLastBackupTime

    NotAvailable GetHipObjectListDataDiskBackupCriteriaLastBackupTimeNotAvailable
    Not available
    NotWithin GetHipObjectListDataDiskBackupCriteriaLastBackupTimeNotWithin

    Not within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    Within GetHipObjectListDataDiskBackupCriteriaLastBackupTimeWithin

    Within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    NotAvailable GetHipObjectListDataDiskBackupCriteriaLastBackupTimeNotAvailable
    Not available
    NotWithin GetHipObjectListDataDiskBackupCriteriaLastBackupTimeNotWithin

    Not within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    Within GetHipObjectListDataDiskBackupCriteriaLastBackupTimeWithin

    Within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    notAvailable GetHipObjectListDataDiskBackupCriteriaLastBackupTimeNotAvailable
    Not available
    notWithin GetHipObjectListDataDiskBackupCriteriaLastBackupTimeNotWithin

    Not within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    within GetHipObjectListDataDiskBackupCriteriaLastBackupTimeWithin

    Within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    notAvailable GetHipObjectListDataDiskBackupCriteriaLastBackupTimeNotAvailable
    Not available
    notWithin GetHipObjectListDataDiskBackupCriteriaLastBackupTimeNotWithin

    Not within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    within GetHipObjectListDataDiskBackupCriteriaLastBackupTimeWithin

    Within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    not_available GetHipObjectListDataDiskBackupCriteriaLastBackupTimeNotAvailable
    Not available
    not_within GetHipObjectListDataDiskBackupCriteriaLastBackupTimeNotWithin

    Not within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    within GetHipObjectListDataDiskBackupCriteriaLastBackupTimeWithin

    Within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    notAvailable Property Map
    Not available
    notWithin Property Map

    Not within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    within Property Map

    Within

    ℹ️ Note: You must specify exactly one of not_available, not_within, and within.

    GetHipObjectListDataDiskBackupCriteriaLastBackupTimeNotWithin

    Days int
    specify time in days
    Hours int

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    Days int
    specify time in days
    Hours int

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days Integer
    specify time in days
    hours Integer

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days number
    specify time in days
    hours number

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days int
    specify time in days
    hours int

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days Number
    specify time in days
    hours Number

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    GetHipObjectListDataDiskBackupCriteriaLastBackupTimeWithin

    Days int
    specify time in days
    Hours int

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    Days int
    specify time in days
    Hours int

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days Integer
    specify time in days
    hours Integer

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days number
    specify time in days
    hours number

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days int
    specify time in days
    hours int

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    days Number
    specify time in days
    hours Number

    specify time in hours

    ℹ️ Note: You must specify exactly one of days and hours.

    GetHipObjectListDataDiskBackupVendor

    Name string
    Name
    Products List<string>
    Product
    Name string
    Name
    Products []string
    Product
    name String
    Name
    products List<String>
    Product
    name string
    Name
    products string[]
    Product
    name str
    Name
    products Sequence[str]
    Product
    name String
    Name
    products List<String>
    Product

    GetHipObjectListDataDiskEncryption

    criteria Property Map
    Encryption locations
    excludeVendor Boolean
    Exclude vendor
    vendors List<Property Map>
    Vendor name

    GetHipObjectListDataDiskEncryptionCriteria

    encryptedLocations List<Property Map>
    Encrypted locations
    isInstalled Boolean
    Is Installed

    GetHipObjectListDataDiskEncryptionCriteriaEncryptedLocation

    encryptionState Property Map
    Encryption state
    name String
    Encryption location

    GetHipObjectListDataDiskEncryptionCriteriaEncryptedLocationEncryptionState

    Is string
    Is
    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of is and is_not.

    Is string
    Is
    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of is and is_not.

    is String
    Is
    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of is and is_not.

    is string
    Is
    isNot string

    Is not

    ℹ️ Note: You must specify exactly one of is and is_not.

    is_ str
    Is
    is_not str

    Is not

    ℹ️ Note: You must specify exactly one of is and is_not.

    is String
    Is
    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of is and is_not.

    GetHipObjectListDataDiskEncryptionVendor

    Name string
    Name
    Products List<string>
    Product
    Name string
    Name
    Products []string
    Product
    name String
    Name
    products List<String>
    Product
    name string
    Name
    products string[]
    Product
    name str
    Name
    products Sequence[str]
    Product
    name String
    Name
    products List<String>
    Product

    GetHipObjectListDataFirewall

    criteria Property Map
    Criteria
    excludeVendor Boolean
    Exclude vendor
    vendors List<Property Map>
    Vendor name

    GetHipObjectListDataFirewallCriteria

    IsEnabled string
    is enabled
    IsInstalled bool
    Is Installed
    IsEnabled string
    is enabled
    IsInstalled bool
    Is Installed
    isEnabled String
    is enabled
    isInstalled Boolean
    Is Installed
    isEnabled string
    is enabled
    isInstalled boolean
    Is Installed
    is_enabled str
    is enabled
    is_installed bool
    Is Installed
    isEnabled String
    is enabled
    isInstalled Boolean
    Is Installed

    GetHipObjectListDataFirewallVendor

    Name string
    Name
    Products List<string>
    Product
    Name string
    Name
    Products []string
    Product
    name String
    Name
    products List<String>
    Product
    name string
    Name
    products string[]
    Product
    name str
    Name
    products Sequence[str]
    Product
    name String
    Name
    products List<String>
    Product

    GetHipObjectListDataHostInfo

    GetHipObjectListDataHostInfoCriteria

    clientVersion Property Map
    Client version
    domain Property Map
    Domain
    hostId Property Map
    Host id
    hostName Property Map
    Host name
    managed Boolean
    If device is managed
    os Property Map
    Os
    serialNumber Property Map
    Serial number

    GetHipObjectListDataHostInfoCriteriaClientVersion

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains string
    Contains
    is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains str
    Contains
    is_ str

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    is_not str

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    GetHipObjectListDataHostInfoCriteriaDomain

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains string
    Contains
    is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains str
    Contains
    is_ str

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    is_not str

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    GetHipObjectListDataHostInfoCriteriaHostId

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains string
    Contains
    is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains str
    Contains
    is_ str

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    is_not str

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    GetHipObjectListDataHostInfoCriteriaHostName

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains string
    Contains
    is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains str
    Contains
    is_ str

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    is_not str

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    GetHipObjectListDataHostInfoCriteriaOs

    GetHipObjectListDataHostInfoCriteriaOsContains

    Apple string
    Apple
    Google string
    Google
    Linux string
    Linux
    Microsoft string
    Microsoft
    Other string
    Other
    Apple string
    Apple
    Google string
    Google
    Linux string
    Linux
    Microsoft string
    Microsoft
    Other string
    Other
    apple String
    Apple
    google String
    Google
    linux String
    Linux
    microsoft String
    Microsoft
    other String
    Other
    apple string
    Apple
    google string
    Google
    linux string
    Linux
    microsoft string
    Microsoft
    other string
    Other
    apple str
    Apple
    google str
    Google
    linux str
    Linux
    microsoft str
    Microsoft
    other str
    Other
    apple String
    Apple
    google String
    Google
    linux String
    Linux
    microsoft String
    Microsoft
    other String
    Other

    GetHipObjectListDataHostInfoCriteriaSerialNumber

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains string
    Contains
    is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains str
    Contains
    is_ str

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    is_not str

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    GetHipObjectListDataMobileDevice

    GetHipObjectListDataMobileDeviceCriteria

    applications Property Map
    Applications
    diskEncrypted Boolean
    If device's disk is encrypted
    imei Property Map
    Imei
    jailbroken Boolean
    If device is by rooted/jailbroken
    lastCheckinTime Property Map
    Last checkin time
    model Property Map
    Model
    passcodeSet Boolean
    If device's passcode is present
    phoneNumber Property Map
    Phone number
    tag Property Map
    Tag

    GetHipObjectListDataMobileDeviceCriteriaApplications

    hasMalware Property Map
    Has malware
    hasUnmanagedApp Boolean
    Has apps that are not managed
    includes List<Property Map>
    Includes

    GetHipObjectListDataMobileDeviceCriteriaApplicationsHasMalware

    no Property Map
    No
    yes Property Map

    Yes

    ℹ️ Note: You must specify exactly one of no and yes.

    GetHipObjectListDataMobileDeviceCriteriaApplicationsHasMalwareYes

    GetHipObjectListDataMobileDeviceCriteriaApplicationsHasMalwareYesExclude

    Hash string
    application hash
    Name string
    Name
    Package string
    application package name
    Hash string
    application hash
    Name string
    Name
    Package string
    application package name
    hash String
    application hash
    name String
    Name
    package_ String
    application package name
    hash string
    application hash
    name string
    Name
    package string
    application package name
    hash str
    application hash
    name str
    Name
    package str
    application package name
    hash String
    application hash
    name String
    Name
    package String
    application package name

    GetHipObjectListDataMobileDeviceCriteriaApplicationsInclude

    Hash string
    application hash
    Name string
    Name
    Package string
    application package name
    Hash string
    application hash
    Name string
    Name
    Package string
    application package name
    hash String
    application hash
    name String
    Name
    package_ String
    application package name
    hash string
    application hash
    name string
    Name
    package string
    application package name
    hash str
    application hash
    name str
    Name
    package str
    application package name
    hash String
    application hash
    name String
    Name
    package String
    application package name

    GetHipObjectListDataMobileDeviceCriteriaImei

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains string
    Contains
    is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains str
    Contains
    is_ str

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    is_not str

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    GetHipObjectListDataMobileDeviceCriteriaLastCheckinTime

    notWithin Property Map
    Not within
    within Property Map

    Within

    ℹ️ Note: You must specify exactly one of not_within and within.

    GetHipObjectListDataMobileDeviceCriteriaLastCheckinTimeNotWithin

    Days int
    specify time in days
    Days int
    specify time in days
    days Integer
    specify time in days
    days number
    specify time in days
    days int
    specify time in days
    days Number
    specify time in days

    GetHipObjectListDataMobileDeviceCriteriaLastCheckinTimeWithin

    Days int
    specify time in days
    Days int
    specify time in days
    days Integer
    specify time in days
    days number
    specify time in days
    days int
    specify time in days
    days Number
    specify time in days

    GetHipObjectListDataMobileDeviceCriteriaModel

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains string
    Contains
    is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains str
    Contains
    is_ str

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    is_not str

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    GetHipObjectListDataMobileDeviceCriteriaPhoneNumber

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains string
    Contains
    is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains str
    Contains
    is_ str

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    is_not str

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    GetHipObjectListDataMobileDeviceCriteriaTag

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    Contains string
    Contains
    Is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    IsNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains string
    Contains
    is string

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot string

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains str
    Contains
    is_ str

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    is_not str

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    contains String
    Contains
    is String

    Is

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    isNot String

    Is not

    ℹ️ Note: You must specify exactly one of contains, is, and is_not.

    GetHipObjectListDataNetworkInfo

    GetHipObjectListDataNetworkInfoCriteria

    GetHipObjectListDataNetworkInfoCriteriaNetwork

    is Property Map
    Is
    isNot Property Map

    Is not

    ℹ️ Note: You must specify exactly one of is and is_not.

    GetHipObjectListDataNetworkInfoCriteriaNetworkIs

    Mobile GetHipObjectListDataNetworkInfoCriteriaNetworkIsMobile
    Mobile
    Unknown GetHipObjectListDataNetworkInfoCriteriaNetworkIsUnknown

    Unknown

    ℹ️ Note: You must specify exactly one of mobile, unknown, and wifi.

    Wifi GetHipObjectListDataNetworkInfoCriteriaNetworkIsWifi

    Wifi

    ℹ️ Note: You must specify exactly one of mobile, unknown, and wifi.

    Mobile GetHipObjectListDataNetworkInfoCriteriaNetworkIsMobile
    Mobile
    Unknown GetHipObjectListDataNetworkInfoCriteriaNetworkIsUnknown

    Unknown

    ℹ️ Note: You must specify exactly one of mobile, unknown, and wifi.

    Wifi GetHipObjectListDataNetworkInfoCriteriaNetworkIsWifi

    Wifi

    ℹ️ Note: You must specify exactly one of mobile, unknown, and wifi.

    mobile GetHipObjectListDataNetworkInfoCriteriaNetworkIsMobile
    Mobile
    unknown GetHipObjectListDataNetworkInfoCriteriaNetworkIsUnknown

    Unknown

    ℹ️ Note: You must specify exactly one of mobile, unknown, and wifi.

    wifi GetHipObjectListDataNetworkInfoCriteriaNetworkIsWifi

    Wifi

    ℹ️ Note: You must specify exactly one of mobile, unknown, and wifi.

    mobile GetHipObjectListDataNetworkInfoCriteriaNetworkIsMobile
    Mobile
    unknown GetHipObjectListDataNetworkInfoCriteriaNetworkIsUnknown

    Unknown

    ℹ️ Note: You must specify exactly one of mobile, unknown, and wifi.

    wifi GetHipObjectListDataNetworkInfoCriteriaNetworkIsWifi

    Wifi

    ℹ️ Note: You must specify exactly one of mobile, unknown, and wifi.

    mobile GetHipObjectListDataNetworkInfoCriteriaNetworkIsMobile
    Mobile
    unknown GetHipObjectListDataNetworkInfoCriteriaNetworkIsUnknown

    Unknown

    ℹ️ Note: You must specify exactly one of mobile, unknown, and wifi.

    wifi GetHipObjectListDataNetworkInfoCriteriaNetworkIsWifi

    Wifi

    ℹ️ Note: You must specify exactly one of mobile, unknown, and wifi.

    mobile Property Map
    Mobile
    unknown Property Map

    Unknown

    ℹ️ Note: You must specify exactly one of mobile, unknown, and wifi.

    wifi Property Map

    Wifi

    ℹ️ Note: You must specify exactly one of mobile, unknown, and wifi.

    GetHipObjectListDataNetworkInfoCriteriaNetworkIsMobile

    Carrier string
    Carrier
    Carrier string
    Carrier
    carrier String
    Carrier
    carrier string
    Carrier
    carrier str
    Carrier
    carrier String
    Carrier

    GetHipObjectListDataNetworkInfoCriteriaNetworkIsNot

    Ethernet GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotEthernet
    Ethernet
    Mobile GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotMobile

    Mobile

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    Unknown GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotUnknown

    Unknown

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    Wifi GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotWifi

    Wifi

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    Ethernet GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotEthernet
    Ethernet
    Mobile GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotMobile

    Mobile

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    Unknown GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotUnknown

    Unknown

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    Wifi GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotWifi

    Wifi

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    ethernet GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotEthernet
    Ethernet
    mobile GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotMobile

    Mobile

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    unknown GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotUnknown

    Unknown

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    wifi GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotWifi

    Wifi

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    ethernet GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotEthernet
    Ethernet
    mobile GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotMobile

    Mobile

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    unknown GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotUnknown

    Unknown

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    wifi GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotWifi

    Wifi

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    ethernet GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotEthernet
    Ethernet
    mobile GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotMobile

    Mobile

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    unknown GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotUnknown

    Unknown

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    wifi GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotWifi

    Wifi

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    ethernet Property Map
    Ethernet
    mobile Property Map

    Mobile

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    unknown Property Map

    Unknown

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    wifi Property Map

    Wifi

    ℹ️ Note: You must specify exactly one of ethernet, mobile, unknown, and wifi.

    GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotMobile

    Carrier string
    Carrier
    Carrier string
    Carrier
    carrier String
    Carrier
    carrier string
    Carrier
    carrier str
    Carrier
    carrier String
    Carrier

    GetHipObjectListDataNetworkInfoCriteriaNetworkIsNotWifi

    Ssid string
    SSID
    Ssid string
    SSID
    ssid String
    SSID
    ssid string
    SSID
    ssid str
    SSID
    ssid String
    SSID

    GetHipObjectListDataNetworkInfoCriteriaNetworkIsWifi

    Ssid string
    SSID
    Ssid string
    SSID
    ssid String
    SSID
    ssid string
    SSID
    ssid str
    SSID
    ssid String
    SSID

    GetHipObjectListDataPatchManagement

    criteria Property Map
    Criteria
    excludeVendor Boolean
    Exclude vendor
    vendors List<Property Map>
    Vendor name

    GetHipObjectListDataPatchManagementCriteria

    isEnabled String
    is enabled
    isInstalled Boolean
    Is Installed
    missingPatches Property Map
    Missing patches

    GetHipObjectListDataPatchManagementCriteriaMissingPatches

    check String
    Check
    patches List<String>
    Patches
    severity Property Map
    Severity

    GetHipObjectListDataPatchManagementCriteriaMissingPatchesSeverity

    GreaterEqual int
    Greater equal
    GreaterThan int

    Greater than

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    Is int

    Is

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    IsNot int

    Is not

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    LessEqual int

    Less equal

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    LessThan int

    Less than

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    GreaterEqual int
    Greater equal
    GreaterThan int

    Greater than

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    Is int

    Is

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    IsNot int

    Is not

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    LessEqual int

    Less equal

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    LessThan int

    Less than

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    greaterEqual Integer
    Greater equal
    greaterThan Integer

    Greater than

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    is Integer

    Is

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    isNot Integer

    Is not

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    lessEqual Integer

    Less equal

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    lessThan Integer

    Less than

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    greaterEqual number
    Greater equal
    greaterThan number

    Greater than

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    is number

    Is

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    isNot number

    Is not

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    lessEqual number

    Less equal

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    lessThan number

    Less than

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    greater_equal int
    Greater equal
    greater_than int

    Greater than

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    is_ int

    Is

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    is_not int

    Is not

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    less_equal int

    Less equal

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    less_than int

    Less than

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    greaterEqual Number
    Greater equal
    greaterThan Number

    Greater than

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    is Number

    Is

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    isNot Number

    Is not

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    lessEqual Number

    Less equal

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    lessThan Number

    Less than

    ℹ️ Note: You must specify exactly one of greater_equal, greater_than, is, is_not, less_equal, and less_than.

    GetHipObjectListDataPatchManagementVendor

    Name string
    Name
    Products List<string>
    Product name
    Name string
    Name
    Products []string
    Product name
    name String
    Name
    products List<String>
    Product name
    name string
    Name
    products string[]
    Product name
    name str
    Name
    products Sequence[str]
    Product name
    name String
    Name
    products List<String>
    Product name

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate