1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getHipObjectList
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 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 in which the resource is defined
    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 in which the resource is defined
    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 in which the resource is defined
    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 in which the resource is defined
    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 in which the resource is defined
    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 in which the resource is defined
    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 in which the resource is defined
    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 in which the resource is defined
    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 in which the resource is defined
    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 in which the resource is defined
    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 in which the resource is defined
    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 in which the resource is defined
    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

    GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin

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

    GetHipObjectListDataAntiMalwareCriteriaLastScanTimeWithin

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

    GetHipObjectListDataAntiMalwareCriteriaProductVersion

    contains String
    Contains
    greaterEqual String
    Greater equal
    greaterThan String
    Greater than
    is String
    Is
    isNot String
    Is not
    lessEqual String
    Less equal
    lessThan String
    Less than
    notWithin Property Map
    Not within
    within Property Map
    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

    GetHipObjectListDataAntiMalwareCriteriaVirdefVersionNotWithin

    Days int
    specify time in days
    Versions int
    specify versions range
    Days int
    specify time in days
    Versions int
    specify versions range
    days Integer
    specify time in days
    versions Integer
    specify versions range
    days number
    specify time in days
    versions number
    specify versions range
    days int
    specify time in days
    versions int
    specify versions range
    days Number
    specify time in days
    versions Number
    specify versions range

    GetHipObjectListDataAntiMalwareCriteriaVirdefVersionWithin

    Days int
    specify time in days
    Versions int
    specify versions range
    Days int
    specify time in days
    Versions int
    specify versions range
    days Integer
    specify time in days
    versions Integer
    specify versions range
    days number
    specify time in days
    versions number
    specify versions range
    days int
    specify time in days
    versions int
    specify versions range
    days Number
    specify time in days
    versions Number
    specify versions range

    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

    GetHipObjectListDataDiskBackupCriteriaLastBackupTimeNotWithin

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

    GetHipObjectListDataDiskBackupCriteriaLastBackupTimeWithin

    Days int
    specify time in days
    Hours int
    specify time in hours
    Days int
    specify time in days
    Hours int
    specify time in hours
    days Integer
    specify time in days
    hours Integer
    specify time in hours
    days number
    specify time in days
    hours number
    specify time in hours
    days int
    specify time in days
    hours int
    specify time in hours
    days Number
    specify time in days
    hours Number
    specify time in 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
    Is string
    Is
    IsNot string
    Is not
    is String
    Is
    isNot String
    Is not
    is string
    Is
    isNot string
    Is not
    is_ str
    Is
    is_not str
    Is not
    is String
    Is
    isNot String
    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
    IsNot string
    Is not
    Contains string
    Contains
    Is string
    Is
    IsNot string
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not
    contains string
    Contains
    is string
    Is
    isNot string
    Is not
    contains str
    Contains
    is_ str
    Is
    is_not str
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not

    GetHipObjectListDataHostInfoCriteriaDomain

    Contains string
    Contains
    Is string
    Is
    IsNot string
    Is not
    Contains string
    Contains
    Is string
    Is
    IsNot string
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not
    contains string
    Contains
    is string
    Is
    isNot string
    Is not
    contains str
    Contains
    is_ str
    Is
    is_not str
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not

    GetHipObjectListDataHostInfoCriteriaHostId

    Contains string
    Contains
    Is string
    Is
    IsNot string
    Is not
    Contains string
    Contains
    Is string
    Is
    IsNot string
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not
    contains string
    Contains
    is string
    Is
    isNot string
    Is not
    contains str
    Contains
    is_ str
    Is
    is_not str
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not

    GetHipObjectListDataHostInfoCriteriaHostName

    Contains string
    Contains
    Is string
    Is
    IsNot string
    Is not
    Contains string
    Contains
    Is string
    Is
    IsNot string
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not
    contains string
    Contains
    is string
    Is
    isNot string
    Is not
    contains str
    Contains
    is_ str
    Is
    is_not str
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    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
    IsNot string
    Is not
    Contains string
    Contains
    Is string
    Is
    IsNot string
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not
    contains string
    Contains
    is string
    Is
    isNot string
    Is not
    contains str
    Contains
    is_ str
    Is
    is_not str
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    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

    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
    IsNot string
    Is not
    Contains string
    Contains
    Is string
    Is
    IsNot string
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not
    contains string
    Contains
    is string
    Is
    isNot string
    Is not
    contains str
    Contains
    is_ str
    Is
    is_not str
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not

    GetHipObjectListDataMobileDeviceCriteriaLastCheckinTime

    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
    IsNot string
    Is not
    Contains string
    Contains
    Is string
    Is
    IsNot string
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not
    contains string
    Contains
    is string
    Is
    isNot string
    Is not
    contains str
    Contains
    is_ str
    Is
    is_not str
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not

    GetHipObjectListDataMobileDeviceCriteriaPhoneNumber

    Contains string
    Contains
    Is string
    Is
    IsNot string
    Is not
    Contains string
    Contains
    Is string
    Is
    IsNot string
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not
    contains string
    Contains
    is string
    Is
    isNot string
    Is not
    contains str
    Contains
    is_ str
    Is
    is_not str
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not

    GetHipObjectListDataMobileDeviceCriteriaTag

    Contains string
    Contains
    Is string
    Is
    IsNot string
    Is not
    Contains string
    Contains
    Is string
    Is
    IsNot string
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not
    contains string
    Contains
    is string
    Is
    isNot string
    Is not
    contains str
    Contains
    is_ str
    Is
    is_not str
    Is not
    contains String
    Contains
    is String
    Is
    isNot String
    Is not

    GetHipObjectListDataNetworkInfo

    GetHipObjectListDataNetworkInfoCriteria

    GetHipObjectListDataNetworkInfoCriteriaNetwork

    GetHipObjectListDataNetworkInfoCriteriaNetworkIs

    GetHipObjectListDataNetworkInfoCriteriaNetworkIsMobile

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

    GetHipObjectListDataNetworkInfoCriteriaNetworkIsNot

    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
    Is int
    Is
    IsNot int
    Is not
    LessEqual int
    Less equal
    LessThan int
    Less than
    GreaterEqual int
    Greater equal
    GreaterThan int
    Greater than
    Is int
    Is
    IsNot int
    Is not
    LessEqual int
    Less equal
    LessThan int
    Less than
    greaterEqual Integer
    Greater equal
    greaterThan Integer
    Greater than
    is Integer
    Is
    isNot Integer
    Is not
    lessEqual Integer
    Less equal
    lessThan Integer
    Less than
    greaterEqual number
    Greater equal
    greaterThan number
    Greater than
    is number
    Is
    isNot number
    Is not
    lessEqual number
    Less equal
    lessThan number
    Less than
    greater_equal int
    Greater equal
    greater_than int
    Greater than
    is_ int
    Is
    is_not int
    Is not
    less_equal int
    Less equal
    less_than int
    Less than
    greaterEqual Number
    Greater equal
    greaterThan Number
    Greater than
    is Number
    Is
    isNot Number
    Is not
    lessEqual Number
    Less equal
    lessThan Number
    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 v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate