Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 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 dictionaryThe following arguments are supported:
getHipObjectList Result
The following output properties are available:
- Datas
List<Get
Hip Object List Data> - 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
[]Get
Hip Object List Data - 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<Get
Hip Object List Data> - 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
Get
Hip Object List Data[] - 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[Get
Hip Object List Data] - 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
- Anti
Malware GetHip Object List Data Anti Malware - Anti malware
- Certificate
Get
Hip Object List Data Certificate - Certificate
- Custom
Checks GetHip Object List Data Custom Checks - Custom checks
- Data
Loss GetPrevention Hip Object List Data Data Loss Prevention - Data loss prevention
- Description string
- Description
- Device string
- The device in which the resource is defined
- Disk
Backup GetHip Object List Data Disk Backup - Disk backup
- Disk
Encryption GetHip Object List Data Disk Encryption - Disk encryption
- Firewall
Get
Hip Object List Data Firewall - Firewall
- Folder string
- The folder in which the resource is defined
- Host
Info GetHip Object List Data Host Info - Host info
- Id string
- UUID of the resource
- Mobile
Device GetHip Object List Data Mobile Device - Mobile device
- Name string
- The name of the HIP object
- Network
Info GetHip Object List Data Network Info - Network info
- Patch
Management GetHip Object List Data Patch Management - Patch management
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- Anti
Malware GetHip Object List Data Anti Malware - Anti malware
- Certificate
Get
Hip Object List Data Certificate - Certificate
- Custom
Checks GetHip Object List Data Custom Checks - Custom checks
- Data
Loss GetPrevention Hip Object List Data Data Loss Prevention - Data loss prevention
- Description string
- Description
- Device string
- The device in which the resource is defined
- Disk
Backup GetHip Object List Data Disk Backup - Disk backup
- Disk
Encryption GetHip Object List Data Disk Encryption - Disk encryption
- Firewall
Get
Hip Object List Data Firewall - Firewall
- Folder string
- The folder in which the resource is defined
- Host
Info GetHip Object List Data Host Info - Host info
- Id string
- UUID of the resource
- Mobile
Device GetHip Object List Data Mobile Device - Mobile device
- Name string
- The name of the HIP object
- Network
Info GetHip Object List Data Network Info - Network info
- Patch
Management GetHip Object List Data Patch Management - Patch management
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- anti
Malware GetHip Object List Data Anti Malware - Anti malware
- certificate
Get
Hip Object List Data Certificate - Certificate
- custom
Checks GetHip Object List Data Custom Checks - Custom checks
- data
Loss GetPrevention Hip Object List Data Data Loss Prevention - Data loss prevention
- description String
- Description
- device String
- The device in which the resource is defined
- disk
Backup GetHip Object List Data Disk Backup - Disk backup
- disk
Encryption GetHip Object List Data Disk Encryption - Disk encryption
- firewall
Get
Hip Object List Data Firewall - Firewall
- folder String
- The folder in which the resource is defined
- host
Info GetHip Object List Data Host Info - Host info
- id String
- UUID of the resource
- mobile
Device GetHip Object List Data Mobile Device - Mobile device
- name String
- The name of the HIP object
- network
Info GetHip Object List Data Network Info - Network info
- patch
Management GetHip Object List Data Patch Management - Patch management
- snippet String
- The snippet in which the resource is defined
- tfid String
- anti
Malware GetHip Object List Data Anti Malware - Anti malware
- certificate
Get
Hip Object List Data Certificate - Certificate
- custom
Checks GetHip Object List Data Custom Checks - Custom checks
- data
Loss GetPrevention Hip Object List Data Data Loss Prevention - Data loss prevention
- description string
- Description
- device string
- The device in which the resource is defined
- disk
Backup GetHip Object List Data Disk Backup - Disk backup
- disk
Encryption GetHip Object List Data Disk Encryption - Disk encryption
- firewall
Get
Hip Object List Data Firewall - Firewall
- folder string
- The folder in which the resource is defined
- host
Info GetHip Object List Data Host Info - Host info
- id string
- UUID of the resource
- mobile
Device GetHip Object List Data Mobile Device - Mobile device
- name string
- The name of the HIP object
- network
Info GetHip Object List Data Network Info - Network info
- patch
Management GetHip Object List Data Patch Management - Patch management
- snippet string
- The snippet in which the resource is defined
- tfid string
- anti_
malware GetHip Object List Data Anti Malware - Anti malware
- certificate
Get
Hip Object List Data Certificate - Certificate
- custom_
checks GetHip Object List Data Custom Checks - Custom checks
- data_
loss_ Getprevention Hip Object List Data Data Loss Prevention - Data loss prevention
- description str
- Description
- device str
- The device in which the resource is defined
- disk_
backup GetHip Object List Data Disk Backup - Disk backup
- disk_
encryption GetHip Object List Data Disk Encryption - Disk encryption
- firewall
Get
Hip Object List Data Firewall - Firewall
- folder str
- The folder in which the resource is defined
- host_
info GetHip Object List Data Host Info - Host info
- id str
- UUID of the resource
- mobile_
device GetHip Object List Data Mobile Device - Mobile device
- name str
- The name of the HIP object
- network_
info GetHip Object List Data Network Info - Network info
- patch_
management GetHip Object List Data Patch Management - Patch management
- snippet str
- The snippet in which the resource is defined
- tfid str
- anti
Malware Property Map - Anti malware
- certificate Property Map
- Certificate
- custom
Checks Property Map - Custom checks
- data
Loss Property MapPrevention - Data loss prevention
- description String
- Description
- device String
- The device in which the resource is defined
- disk
Backup Property Map - Disk backup
- disk
Encryption Property Map - Disk encryption
- firewall Property Map
- Firewall
- folder String
- The folder in which the resource is defined
- host
Info Property Map - Host info
- id String
- UUID of the resource
- mobile
Device Property Map - Mobile device
- name String
- The name of the HIP object
- network
Info Property Map - Network info
- patch
Management Property Map - Patch management
- snippet String
- The snippet in which the resource is defined
- tfid String
GetHipObjectListDataAntiMalware
- Criteria
Get
Hip Object List Data Anti Malware Criteria - Criteria
- Exclude
Vendor bool - Exclude vendor
- Vendors
List<Get
Hip Object List Data Anti Malware Vendor> - Vendor name
- Criteria
Get
Hip Object List Data Anti Malware Criteria - Criteria
- Exclude
Vendor bool - Exclude vendor
- Vendors
[]Get
Hip Object List Data Anti Malware Vendor - Vendor name
- criteria
Get
Hip Object List Data Anti Malware Criteria - Criteria
- exclude
Vendor Boolean - Exclude vendor
- vendors
List<Get
Hip Object List Data Anti Malware Vendor> - Vendor name
- criteria
Get
Hip Object List Data Anti Malware Criteria - Criteria
- exclude
Vendor boolean - Exclude vendor
- vendors
Get
Hip Object List Data Anti Malware Vendor[] - Vendor name
- criteria
Get
Hip Object List Data Anti Malware Criteria - Criteria
- exclude_
vendor bool - Exclude vendor
- vendors
Sequence[Get
Hip Object List Data Anti Malware Vendor] - Vendor name
- criteria Property Map
- Criteria
- exclude
Vendor Boolean - Exclude vendor
- vendors List<Property Map>
- Vendor name
GetHipObjectListDataAntiMalwareCriteria
- Is
Installed bool - Is Installed
- Last
Scan GetTime Hip Object List Data Anti Malware Criteria Last Scan Time - Last scan time
- Product
Version GetHip Object List Data Anti Malware Criteria Product Version - Product version
- Real
Time stringProtection - real time protection
- Virdef
Version GetHip Object List Data Anti Malware Criteria Virdef Version - Virdef version
- Is
Installed bool - Is Installed
- Last
Scan GetTime Hip Object List Data Anti Malware Criteria Last Scan Time - Last scan time
- Product
Version GetHip Object List Data Anti Malware Criteria Product Version - Product version
- Real
Time stringProtection - real time protection
- Virdef
Version GetHip Object List Data Anti Malware Criteria Virdef Version - Virdef version
- is
Installed Boolean - Is Installed
- last
Scan GetTime Hip Object List Data Anti Malware Criteria Last Scan Time - Last scan time
- product
Version GetHip Object List Data Anti Malware Criteria Product Version - Product version
- real
Time StringProtection - real time protection
- virdef
Version GetHip Object List Data Anti Malware Criteria Virdef Version - Virdef version
- is
Installed boolean - Is Installed
- last
Scan GetTime Hip Object List Data Anti Malware Criteria Last Scan Time - Last scan time
- product
Version GetHip Object List Data Anti Malware Criteria Product Version - Product version
- real
Time stringProtection - real time protection
- virdef
Version GetHip Object List Data Anti Malware Criteria Virdef Version - Virdef version
- is_
installed bool - Is Installed
- last_
scan_ Gettime Hip Object List Data Anti Malware Criteria Last Scan Time - Last scan time
- product_
version GetHip Object List Data Anti Malware Criteria Product Version - Product version
- real_
time_ strprotection - real time protection
- virdef_
version GetHip Object List Data Anti Malware Criteria Virdef Version - Virdef version
- is
Installed Boolean - Is Installed
- last
Scan Property MapTime - Last scan time
- product
Version Property Map - Product version
- real
Time StringProtection - real time protection
- virdef
Version Property Map - Virdef version
GetHipObjectListDataAntiMalwareCriteriaLastScanTime
- not
Available Property Map - Not available
- not
Within Property Map - Not within
- within Property Map
- Within
GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin
GetHipObjectListDataAntiMalwareCriteriaLastScanTimeWithin
GetHipObjectListDataAntiMalwareCriteriaProductVersion
- Contains string
- Contains
- Greater
Equal string - Greater equal
- Greater
Than string - Greater than
- Is string
- Is
- Is
Not string - Is not
- Less
Equal string - Less equal
- Less
Than string - Less than
- Not
Within GetHip Object List Data Anti Malware Criteria Product Version Not Within - Not within
- Within
Get
Hip Object List Data Anti Malware Criteria Product Version Within - Within
- Contains string
- Contains
- Greater
Equal string - Greater equal
- Greater
Than string - Greater than
- Is string
- Is
- Is
Not string - Is not
- Less
Equal string - Less equal
- Less
Than string - Less than
- Not
Within GetHip Object List Data Anti Malware Criteria Product Version Not Within - Not within
- Within
Get
Hip Object List Data Anti Malware Criteria Product Version Within - Within
- contains String
- Contains
- greater
Equal String - Greater equal
- greater
Than String - Greater than
- is String
- Is
- is
Not String - Is not
- less
Equal String - Less equal
- less
Than String - Less than
- not
Within GetHip Object List Data Anti Malware Criteria Product Version Not Within - Not within
- within
Get
Hip Object List Data Anti Malware Criteria Product Version Within - Within
- contains string
- Contains
- greater
Equal string - Greater equal
- greater
Than string - Greater than
- is string
- Is
- is
Not string - Is not
- less
Equal string - Less equal
- less
Than string - Less than
- not
Within GetHip Object List Data Anti Malware Criteria Product Version Not Within - Not within
- within
Get
Hip Object List Data Anti Malware Criteria Product Version Within - Within
- contains str
- Contains
- greater_
equal str - Greater equal
- greater_
than str - Greater than
- is_ str
- Is
- is_
not str - Is not
- less_
equal str - Less equal
- less_
than str - Less than
- not_
within GetHip Object List Data Anti Malware Criteria Product Version Not Within - Not within
- within
Get
Hip Object List Data Anti Malware Criteria Product Version Within - Within
- contains String
- Contains
- greater
Equal String - Greater equal
- greater
Than String - Greater than
- is String
- Is
- is
Not String - Is not
- less
Equal String - Less equal
- less
Than String - Less than
- not
Within 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
- not
Within Property Map - Not within
- within Property Map
- Within
GetHipObjectListDataAntiMalwareCriteriaVirdefVersionNotWithin
GetHipObjectListDataAntiMalwareCriteriaVirdefVersionWithin
GetHipObjectListDataAntiMalwareVendor
GetHipObjectListDataCertificate
- criteria Property Map
- Criteria
GetHipObjectListDataCertificateCriteria
- Certificate
Attributes List<GetHip Object List Data Certificate Criteria Certificate Attribute> - Certificate attributes
- Certificate
Profile string - Profile for authenticating client certificates
- Certificate
Attributes []GetHip Object List Data Certificate Criteria Certificate Attribute - Certificate attributes
- Certificate
Profile string - Profile for authenticating client certificates
- certificate
Attributes List<GetHip Object List Data Certificate Criteria Certificate Attribute> - Certificate attributes
- certificate
Profile String - Profile for authenticating client certificates
- certificate
Attributes GetHip Object List Data Certificate Criteria Certificate Attribute[] - Certificate attributes
- certificate
Profile string - Profile for authenticating client certificates
- certificate_
attributes Sequence[GetHip Object List Data Certificate Criteria Certificate Attribute] - Certificate attributes
- certificate_
profile str - Profile for authenticating client certificates
- certificate
Attributes List<Property Map> - Certificate attributes
- certificate
Profile String - Profile for authenticating client certificates
GetHipObjectListDataCertificateCriteriaCertificateAttribute
GetHipObjectListDataCustomChecks
- criteria Property Map
- Criteria
GetHipObjectListDataCustomChecksCriteria
- plists List<Property Map>
- Plist
- process
Lists List<Property Map> - Process list
- registry
Keys List<Property Map> - Registry key
GetHipObjectListDataCustomChecksCriteriaPlist
- Keys
List<Get
Hip Object List Data Custom Checks Criteria Plist Key> - Key
- Name string
- Preference list
- Negate bool
- Plist does not exist
- Keys
[]Get
Hip Object List Data Custom Checks Criteria Plist Key - Key
- Name string
- Preference list
- Negate bool
- Plist does not exist
- keys
List<Get
Hip Object List Data Custom Checks Criteria Plist Key> - Key
- name String
- Preference list
- negate Boolean
- Plist does not exist
- keys
Get
Hip Object List Data Custom Checks Criteria Plist Key[] - Key
- name string
- Preference list
- negate boolean
- Plist does not exist
- keys
Sequence[Get
Hip Object List Data Custom Checks Criteria Plist Key] - 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
GetHipObjectListDataCustomChecksCriteriaProcessList
GetHipObjectListDataCustomChecksCriteriaRegistryKey
- Default
Value stringData - Registry key default value data
- Name string
- Registry key
- Negate bool
- Key does not exist or match specified value data
- Registry
Values List<GetHip Object List Data Custom Checks Criteria Registry Key Registry Value> - Registry value
- Default
Value stringData - Registry key default value data
- Name string
- Registry key
- Negate bool
- Key does not exist or match specified value data
- Registry
Values []GetHip Object List Data Custom Checks Criteria Registry Key Registry Value - Registry value
- default
Value StringData - Registry key default value data
- name String
- Registry key
- negate Boolean
- Key does not exist or match specified value data
- registry
Values List<GetHip Object List Data Custom Checks Criteria Registry Key Registry Value> - Registry value
- default
Value stringData - Registry key default value data
- name string
- Registry key
- negate boolean
- Key does not exist or match specified value data
- registry
Values GetHip Object List Data Custom Checks Criteria Registry Key Registry Value[] - Registry value
- default_
value_ strdata - Registry key default value data
- name str
- Registry key
- negate bool
- Key does not exist or match specified value data
- registry_
values Sequence[GetHip Object List Data Custom Checks Criteria Registry Key Registry Value] - Registry value
- default
Value StringData - Registry key default value data
- name String
- Registry key
- negate Boolean
- Key does not exist or match specified value data
- registry
Values List<Property Map> - Registry value
GetHipObjectListDataCustomChecksCriteriaRegistryKeyRegistryValue
- name str
- Registry value name
- negate bool
- Value does not exist or match specified value data
- value_
data str - Registry value data
GetHipObjectListDataDataLossPrevention
- Criteria
Get
Hip Object List Data Data Loss Prevention Criteria - Criteria
- Exclude
Vendor bool - Exclude vendor
- Vendors
List<Get
Hip Object List Data Data Loss Prevention Vendor> - Vendor name
- Criteria
Get
Hip Object List Data Data Loss Prevention Criteria - Criteria
- Exclude
Vendor bool - Exclude vendor
- Vendors
[]Get
Hip Object List Data Data Loss Prevention Vendor - Vendor name
- criteria
Get
Hip Object List Data Data Loss Prevention Criteria - Criteria
- exclude
Vendor Boolean - Exclude vendor
- vendors
List<Get
Hip Object List Data Data Loss Prevention Vendor> - Vendor name
- criteria
Get
Hip Object List Data Data Loss Prevention Criteria - Criteria
- exclude
Vendor boolean - Exclude vendor
- vendors
Get
Hip Object List Data Data Loss Prevention Vendor[] - Vendor name
- criteria
Get
Hip Object List Data Data Loss Prevention Criteria - Criteria
- exclude_
vendor bool - Exclude vendor
- vendors
Sequence[Get
Hip Object List Data Data Loss Prevention Vendor] - Vendor name
- criteria Property Map
- Criteria
- exclude
Vendor Boolean - Exclude vendor
- vendors List<Property Map>
- Vendor name
GetHipObjectListDataDataLossPreventionCriteria
- Is
Enabled string - is enabled
- Is
Installed bool - Is Installed
- Is
Enabled string - is enabled
- Is
Installed bool - Is Installed
- is
Enabled String - is enabled
- is
Installed Boolean - Is Installed
- is
Enabled string - is enabled
- is
Installed boolean - Is Installed
- is_
enabled str - is enabled
- is_
installed bool - Is Installed
- is
Enabled String - is enabled
- is
Installed Boolean - Is Installed
GetHipObjectListDataDataLossPreventionVendor
GetHipObjectListDataDiskBackup
- Criteria
Get
Hip Object List Data Disk Backup Criteria - Criteria
- Exclude
Vendor bool - Exclude vendor
- Vendors
List<Get
Hip Object List Data Disk Backup Vendor> - Vendor name
- Criteria
Get
Hip Object List Data Disk Backup Criteria - Criteria
- Exclude
Vendor bool - Exclude vendor
- Vendors
[]Get
Hip Object List Data Disk Backup Vendor - Vendor name
- criteria
Get
Hip Object List Data Disk Backup Criteria - Criteria
- exclude
Vendor Boolean - Exclude vendor
- vendors
List<Get
Hip Object List Data Disk Backup Vendor> - Vendor name
- criteria
Get
Hip Object List Data Disk Backup Criteria - Criteria
- exclude
Vendor boolean - Exclude vendor
- vendors
Get
Hip Object List Data Disk Backup Vendor[] - Vendor name
- criteria
Get
Hip Object List Data Disk Backup Criteria - Criteria
- exclude_
vendor bool - Exclude vendor
- vendors
Sequence[Get
Hip Object List Data Disk Backup Vendor] - Vendor name
- criteria Property Map
- Criteria
- exclude
Vendor Boolean - Exclude vendor
- vendors List<Property Map>
- Vendor name
GetHipObjectListDataDiskBackupCriteria
- Is
Installed bool - Is Installed
- Last
Backup GetTime Hip Object List Data Disk Backup Criteria Last Backup Time - Last backup time
- Is
Installed bool - Is Installed
- Last
Backup GetTime Hip Object List Data Disk Backup Criteria Last Backup Time - Last backup time
- is
Installed Boolean - Is Installed
- last
Backup GetTime Hip Object List Data Disk Backup Criteria Last Backup Time - Last backup time
- is
Installed boolean - Is Installed
- last
Backup GetTime Hip Object List Data Disk Backup Criteria Last Backup Time - Last backup time
- is_
installed bool - Is Installed
- last_
backup_ Gettime Hip Object List Data Disk Backup Criteria Last Backup Time - Last backup time
- is
Installed Boolean - Is Installed
- last
Backup Property MapTime - Last backup time
GetHipObjectListDataDiskBackupCriteriaLastBackupTime
- not
Available Property Map - Not available
- not
Within Property Map - Not within
- within Property Map
- Within
GetHipObjectListDataDiskBackupCriteriaLastBackupTimeNotWithin
GetHipObjectListDataDiskBackupCriteriaLastBackupTimeWithin
GetHipObjectListDataDiskBackupVendor
GetHipObjectListDataDiskEncryption
- Criteria
Get
Hip Object List Data Disk Encryption Criteria - Encryption locations
- Exclude
Vendor bool - Exclude vendor
- Vendors
List<Get
Hip Object List Data Disk Encryption Vendor> - Vendor name
- Criteria
Get
Hip Object List Data Disk Encryption Criteria - Encryption locations
- Exclude
Vendor bool - Exclude vendor
- Vendors
[]Get
Hip Object List Data Disk Encryption Vendor - Vendor name
- criteria
Get
Hip Object List Data Disk Encryption Criteria - Encryption locations
- exclude
Vendor Boolean - Exclude vendor
- vendors
List<Get
Hip Object List Data Disk Encryption Vendor> - Vendor name
- criteria
Get
Hip Object List Data Disk Encryption Criteria - Encryption locations
- exclude
Vendor boolean - Exclude vendor
- vendors
Get
Hip Object List Data Disk Encryption Vendor[] - Vendor name
- criteria
Get
Hip Object List Data Disk Encryption Criteria - Encryption locations
- exclude_
vendor bool - Exclude vendor
- vendors
Sequence[Get
Hip Object List Data Disk Encryption Vendor] - Vendor name
- criteria Property Map
- Encryption locations
- exclude
Vendor Boolean - Exclude vendor
- vendors List<Property Map>
- Vendor name
GetHipObjectListDataDiskEncryptionCriteria
- Encrypted
Locations List<GetHip Object List Data Disk Encryption Criteria Encrypted Location> - Encrypted locations
- Is
Installed bool - Is Installed
- Encrypted
Locations []GetHip Object List Data Disk Encryption Criteria Encrypted Location - Encrypted locations
- Is
Installed bool - Is Installed
- encrypted
Locations List<GetHip Object List Data Disk Encryption Criteria Encrypted Location> - Encrypted locations
- is
Installed Boolean - Is Installed
- encrypted
Locations GetHip Object List Data Disk Encryption Criteria Encrypted Location[] - Encrypted locations
- is
Installed boolean - Is Installed
- encrypted_
locations Sequence[GetHip Object List Data Disk Encryption Criteria Encrypted Location] - Encrypted locations
- is_
installed bool - Is Installed
- encrypted
Locations List<Property Map> - Encrypted locations
- is
Installed Boolean - Is Installed
GetHipObjectListDataDiskEncryptionCriteriaEncryptedLocation
- Encryption
State GetHip Object List Data Disk Encryption Criteria Encrypted Location Encryption State - Encryption state
- Name string
- Encryption location
- Encryption
State GetHip Object List Data Disk Encryption Criteria Encrypted Location Encryption State - Encryption state
- Name string
- Encryption location
- encryption
State GetHip Object List Data Disk Encryption Criteria Encrypted Location Encryption State - Encryption state
- name String
- Encryption location
- encryption
State GetHip Object List Data Disk Encryption Criteria Encrypted Location Encryption State - Encryption state
- name string
- Encryption location
- encryption_
state GetHip Object List Data Disk Encryption Criteria Encrypted Location Encryption State - Encryption state
- name str
- Encryption location
- encryption
State Property Map - Encryption state
- name String
- Encryption location
GetHipObjectListDataDiskEncryptionCriteriaEncryptedLocationEncryptionState
GetHipObjectListDataDiskEncryptionVendor
GetHipObjectListDataFirewall
- Criteria
Get
Hip Object List Data Firewall Criteria - Criteria
- Exclude
Vendor bool - Exclude vendor
- Vendors
List<Get
Hip Object List Data Firewall Vendor> - Vendor name
- Criteria
Get
Hip Object List Data Firewall Criteria - Criteria
- Exclude
Vendor bool - Exclude vendor
- Vendors
[]Get
Hip Object List Data Firewall Vendor - Vendor name
- criteria
Get
Hip Object List Data Firewall Criteria - Criteria
- exclude
Vendor Boolean - Exclude vendor
- vendors
List<Get
Hip Object List Data Firewall Vendor> - Vendor name
- criteria
Get
Hip Object List Data Firewall Criteria - Criteria
- exclude
Vendor boolean - Exclude vendor
- vendors
Get
Hip Object List Data Firewall Vendor[] - Vendor name
- criteria
Get
Hip Object List Data Firewall Criteria - Criteria
- exclude_
vendor bool - Exclude vendor
- vendors
Sequence[Get
Hip Object List Data Firewall Vendor] - Vendor name
- criteria Property Map
- Criteria
- exclude
Vendor Boolean - Exclude vendor
- vendors List<Property Map>
- Vendor name
GetHipObjectListDataFirewallCriteria
- Is
Enabled string - is enabled
- Is
Installed bool - Is Installed
- Is
Enabled string - is enabled
- Is
Installed bool - Is Installed
- is
Enabled String - is enabled
- is
Installed Boolean - Is Installed
- is
Enabled string - is enabled
- is
Installed boolean - Is Installed
- is_
enabled str - is enabled
- is_
installed bool - Is Installed
- is
Enabled String - is enabled
- is
Installed Boolean - Is Installed
GetHipObjectListDataFirewallVendor
GetHipObjectListDataHostInfo
- criteria Property Map
- Criteria
GetHipObjectListDataHostInfoCriteria
- Client
Version GetHip Object List Data Host Info Criteria Client Version - Client version
- Domain
Get
Hip Object List Data Host Info Criteria Domain - Domain
- Host
Id GetHip Object List Data Host Info Criteria Host Id - Host id
- Host
Name GetHip Object List Data Host Info Criteria Host Name - Host name
- Managed bool
- If device is managed
- Os
Get
Hip Object List Data Host Info Criteria Os - Os
- Serial
Number GetHip Object List Data Host Info Criteria Serial Number - Serial number
- Client
Version GetHip Object List Data Host Info Criteria Client Version - Client version
- Domain
Get
Hip Object List Data Host Info Criteria Domain - Domain
- Host
Id GetHip Object List Data Host Info Criteria Host Id - Host id
- Host
Name GetHip Object List Data Host Info Criteria Host Name - Host name
- Managed bool
- If device is managed
- Os
Get
Hip Object List Data Host Info Criteria Os - Os
- Serial
Number GetHip Object List Data Host Info Criteria Serial Number - Serial number
- client
Version GetHip Object List Data Host Info Criteria Client Version - Client version
- domain
Get
Hip Object List Data Host Info Criteria Domain - Domain
- host
Id GetHip Object List Data Host Info Criteria Host Id - Host id
- host
Name GetHip Object List Data Host Info Criteria Host Name - Host name
- managed Boolean
- If device is managed
- os
Get
Hip Object List Data Host Info Criteria Os - Os
- serial
Number GetHip Object List Data Host Info Criteria Serial Number - Serial number
- client
Version GetHip Object List Data Host Info Criteria Client Version - Client version
- domain
Get
Hip Object List Data Host Info Criteria Domain - Domain
- host
Id GetHip Object List Data Host Info Criteria Host Id - Host id
- host
Name GetHip Object List Data Host Info Criteria Host Name - Host name
- managed boolean
- If device is managed
- os
Get
Hip Object List Data Host Info Criteria Os - Os
- serial
Number GetHip Object List Data Host Info Criteria Serial Number - Serial number
- client_
version GetHip Object List Data Host Info Criteria Client Version - Client version
- domain
Get
Hip Object List Data Host Info Criteria Domain - Domain
- host_
id GetHip Object List Data Host Info Criteria Host Id - Host id
- host_
name GetHip Object List Data Host Info Criteria Host Name - Host name
- managed bool
- If device is managed
- os
Get
Hip Object List Data Host Info Criteria Os - Os
- serial_
number GetHip Object List Data Host Info Criteria Serial Number - Serial number
- client
Version Property Map - Client version
- domain Property Map
- Domain
- host
Id Property Map - Host id
- host
Name Property Map - Host name
- managed Boolean
- If device is managed
- os Property Map
- Os
- serial
Number Property Map - Serial number
GetHipObjectListDataHostInfoCriteriaClientVersion
GetHipObjectListDataHostInfoCriteriaDomain
GetHipObjectListDataHostInfoCriteriaHostId
GetHipObjectListDataHostInfoCriteriaHostName
GetHipObjectListDataHostInfoCriteriaOs
- contains Property Map
- Contains
GetHipObjectListDataHostInfoCriteriaOsContains
GetHipObjectListDataHostInfoCriteriaSerialNumber
GetHipObjectListDataMobileDevice
- criteria Property Map
- Criteria
GetHipObjectListDataMobileDeviceCriteria
- Applications
Get
Hip Object List Data Mobile Device Criteria Applications - Applications
- Disk
Encrypted bool - If device's disk is encrypted
- Imei
Get
Hip Object List Data Mobile Device Criteria Imei - Imei
- Jailbroken bool
- If device is by rooted/jailbroken
- Last
Checkin GetTime Hip Object List Data Mobile Device Criteria Last Checkin Time - Last checkin time
- Model
Get
Hip Object List Data Mobile Device Criteria Model - Model
- Passcode
Set bool - If device's passcode is present
- Phone
Number GetHip Object List Data Mobile Device Criteria Phone Number - Phone number
- Tag
Get
Hip Object List Data Mobile Device Criteria Tag - Tag
- Applications
Get
Hip Object List Data Mobile Device Criteria Applications - Applications
- Disk
Encrypted bool - If device's disk is encrypted
- Imei
Get
Hip Object List Data Mobile Device Criteria Imei - Imei
- Jailbroken bool
- If device is by rooted/jailbroken
- Last
Checkin GetTime Hip Object List Data Mobile Device Criteria Last Checkin Time - Last checkin time
- Model
Get
Hip Object List Data Mobile Device Criteria Model - Model
- Passcode
Set bool - If device's passcode is present
- Phone
Number GetHip Object List Data Mobile Device Criteria Phone Number - Phone number
- Tag
Get
Hip Object List Data Mobile Device Criteria Tag - Tag
- applications
Get
Hip Object List Data Mobile Device Criteria Applications - Applications
- disk
Encrypted Boolean - If device's disk is encrypted
- imei
Get
Hip Object List Data Mobile Device Criteria Imei - Imei
- jailbroken Boolean
- If device is by rooted/jailbroken
- last
Checkin GetTime Hip Object List Data Mobile Device Criteria Last Checkin Time - Last checkin time
- model
Get
Hip Object List Data Mobile Device Criteria Model - Model
- passcode
Set Boolean - If device's passcode is present
- phone
Number GetHip Object List Data Mobile Device Criteria Phone Number - Phone number
- tag
Get
Hip Object List Data Mobile Device Criteria Tag - Tag
- applications
Get
Hip Object List Data Mobile Device Criteria Applications - Applications
- disk
Encrypted boolean - If device's disk is encrypted
- imei
Get
Hip Object List Data Mobile Device Criteria Imei - Imei
- jailbroken boolean
- If device is by rooted/jailbroken
- last
Checkin GetTime Hip Object List Data Mobile Device Criteria Last Checkin Time - Last checkin time
- model
Get
Hip Object List Data Mobile Device Criteria Model - Model
- passcode
Set boolean - If device's passcode is present
- phone
Number GetHip Object List Data Mobile Device Criteria Phone Number - Phone number
- tag
Get
Hip Object List Data Mobile Device Criteria Tag - Tag
- applications
Get
Hip Object List Data Mobile Device Criteria Applications - Applications
- disk_
encrypted bool - If device's disk is encrypted
- imei
Get
Hip Object List Data Mobile Device Criteria Imei - Imei
- jailbroken bool
- If device is by rooted/jailbroken
- last_
checkin_ Gettime Hip Object List Data Mobile Device Criteria Last Checkin Time - Last checkin time
- model
Get
Hip Object List Data Mobile Device Criteria Model - Model
- passcode_
set bool - If device's passcode is present
- phone_
number GetHip Object List Data Mobile Device Criteria Phone Number - Phone number
- tag
Get
Hip Object List Data Mobile Device Criteria Tag - Tag
- applications Property Map
- Applications
- disk
Encrypted Boolean - If device's disk is encrypted
- imei Property Map
- Imei
- jailbroken Boolean
- If device is by rooted/jailbroken
- last
Checkin Property MapTime - Last checkin time
- model Property Map
- Model
- passcode
Set Boolean - If device's passcode is present
- phone
Number Property Map - Phone number
- tag Property Map
- Tag
GetHipObjectListDataMobileDeviceCriteriaApplications
- Has
Malware GetHip Object List Data Mobile Device Criteria Applications Has Malware - Has malware
- Has
Unmanaged boolApp - Has apps that are not managed
- Includes
List<Get
Hip Object List Data Mobile Device Criteria Applications Include> - Includes
- Has
Malware GetHip Object List Data Mobile Device Criteria Applications Has Malware - Has malware
- Has
Unmanaged boolApp - Has apps that are not managed
- Includes
[]Get
Hip Object List Data Mobile Device Criteria Applications Include - Includes
- has
Malware GetHip Object List Data Mobile Device Criteria Applications Has Malware - Has malware
- has
Unmanaged BooleanApp - Has apps that are not managed
- includes
List<Get
Hip Object List Data Mobile Device Criteria Applications Include> - Includes
- has
Malware GetHip Object List Data Mobile Device Criteria Applications Has Malware - Has malware
- has
Unmanaged booleanApp - Has apps that are not managed
- includes
Get
Hip Object List Data Mobile Device Criteria Applications Include[] - Includes
- has_
malware GetHip Object List Data Mobile Device Criteria Applications Has Malware - Has malware
- has_
unmanaged_ boolapp - Has apps that are not managed
- includes
Sequence[Get
Hip Object List Data Mobile Device Criteria Applications Include] - Includes
- has
Malware Property Map - Has malware
- has
Unmanaged BooleanApp - Has apps that are not managed
- includes List<Property Map>
- Includes
GetHipObjectListDataMobileDeviceCriteriaApplicationsHasMalware
GetHipObjectListDataMobileDeviceCriteriaApplicationsHasMalwareYes
- excludes List<Property Map>
- Excludes
GetHipObjectListDataMobileDeviceCriteriaApplicationsHasMalwareYesExclude
GetHipObjectListDataMobileDeviceCriteriaApplicationsInclude
GetHipObjectListDataMobileDeviceCriteriaImei
GetHipObjectListDataMobileDeviceCriteriaLastCheckinTime
- not
Within Property Map - Not within
- within Property Map
- 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
GetHipObjectListDataMobileDeviceCriteriaPhoneNumber
GetHipObjectListDataMobileDeviceCriteriaTag
GetHipObjectListDataNetworkInfo
- criteria Property Map
- Criteria
GetHipObjectListDataNetworkInfoCriteria
- network Property Map
- Network
GetHipObjectListDataNetworkInfoCriteriaNetwork
- is Property Map
- Is
- is
Not Property Map - Is not
GetHipObjectListDataNetworkInfoCriteriaNetworkIs
- mobile Property Map
- Mobile
- unknown Property Map
- Unknown
- wifi Property Map
- Wifi
GetHipObjectListDataNetworkInfoCriteriaNetworkIsMobile
- Carrier string
- Carrier
- Carrier string
- Carrier
- carrier String
- Carrier
- carrier string
- Carrier
- carrier str
- Carrier
- carrier String
- Carrier
GetHipObjectListDataNetworkInfoCriteriaNetworkIsNot
- ethernet Property Map
- Ethernet
- mobile Property Map
- Mobile
- unknown Property Map
- Unknown
- wifi Property Map
- 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
Get
Hip Object List Data Patch Management Criteria - Criteria
- Exclude
Vendor bool - Exclude vendor
- Vendors
List<Get
Hip Object List Data Patch Management Vendor> - Vendor name
- Criteria
Get
Hip Object List Data Patch Management Criteria - Criteria
- Exclude
Vendor bool - Exclude vendor
- Vendors
[]Get
Hip Object List Data Patch Management Vendor - Vendor name
- criteria
Get
Hip Object List Data Patch Management Criteria - Criteria
- exclude
Vendor Boolean - Exclude vendor
- vendors
List<Get
Hip Object List Data Patch Management Vendor> - Vendor name
- criteria
Get
Hip Object List Data Patch Management Criteria - Criteria
- exclude
Vendor boolean - Exclude vendor
- vendors
Get
Hip Object List Data Patch Management Vendor[] - Vendor name
- criteria
Get
Hip Object List Data Patch Management Criteria - Criteria
- exclude_
vendor bool - Exclude vendor
- vendors
Sequence[Get
Hip Object List Data Patch Management Vendor] - Vendor name
- criteria Property Map
- Criteria
- exclude
Vendor Boolean - Exclude vendor
- vendors List<Property Map>
- Vendor name
GetHipObjectListDataPatchManagementCriteria
- Is
Enabled string - is enabled
- Is
Installed bool - Is Installed
- Missing
Patches GetHip Object List Data Patch Management Criteria Missing Patches - Missing patches
- Is
Enabled string - is enabled
- Is
Installed bool - Is Installed
- Missing
Patches GetHip Object List Data Patch Management Criteria Missing Patches - Missing patches
- is
Enabled String - is enabled
- is
Installed Boolean - Is Installed
- missing
Patches GetHip Object List Data Patch Management Criteria Missing Patches - Missing patches
- is
Enabled string - is enabled
- is
Installed boolean - Is Installed
- missing
Patches GetHip Object List Data Patch Management Criteria Missing Patches - Missing patches
- is_
enabled str - is enabled
- is_
installed bool - Is Installed
- missing_
patches GetHip Object List Data Patch Management Criteria Missing Patches - Missing patches
- is
Enabled String - is enabled
- is
Installed Boolean - Is Installed
- missing
Patches Property Map - Missing patches
GetHipObjectListDataPatchManagementCriteriaMissingPatches
- Check string
- Check
- Patches List<string>
- Patches
- Severity
Get
Hip Object List Data Patch Management Criteria Missing Patches Severity - Severity
- Check string
- Check
- Patches []string
- Patches
- Severity
Get
Hip Object List Data Patch Management Criteria Missing Patches Severity - Severity
- check String
- Check
- patches List<String>
- Patches
- severity
Get
Hip Object List Data Patch Management Criteria Missing Patches Severity - Severity
- check string
- Check
- patches string[]
- Patches
- severity
Get
Hip Object List Data Patch Management Criteria Missing Patches Severity - Severity
- check str
- Check
- patches Sequence[str]
- Patches
- severity
Get
Hip Object List Data Patch Management Criteria Missing Patches Severity - Severity
- check String
- Check
- patches List<String>
- Patches
- severity Property Map
- Severity
GetHipObjectListDataPatchManagementCriteriaMissingPatchesSeverity
- 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
- 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
- greater
Equal Integer - Greater equal
- greater
Than Integer - Greater than
- is Integer
- Is
- is
Not Integer - Is not
- less
Equal Integer - Less equal
- less
Than Integer - Less than
- greater
Equal number - Greater equal
- greater
Than number - Greater than
- is number
- Is
- is
Not number - Is not
- less
Equal number - Less equal
- less
Than 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
- greater
Equal Number - Greater equal
- greater
Than Number - Greater than
- is Number
- Is
- is
Not Number - Is not
- less
Equal Number - Less equal
- less
Than Number - Less than
GetHipObjectListDataPatchManagementVendor
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
