scm.HipObject
Explore with Pulumi AI
Retrieves a config item.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.HipObject;
import com.pulumi.scm.HipObjectArgs;
import com.pulumi.scm.inputs.HipObjectDiskBackupArgs;
import com.pulumi.scm.inputs.HipObjectDiskBackupCriteriaArgs;
import com.pulumi.scm.inputs.HipObjectDiskBackupCriteriaLastBackupTimeArgs;
import com.pulumi.scm.inputs.HipObjectDiskBackupCriteriaLastBackupTimeWithinArgs;
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) {
        var example = new HipObject("example", HipObjectArgs.builder()
            .folder("Shared")
            .name("myExample")
            .description("Made by Pulumi")
            .diskBackup(HipObjectDiskBackupArgs.builder()
                .criteria(HipObjectDiskBackupCriteriaArgs.builder()
                    .isInstalled(true)
                    .lastBackupTime(HipObjectDiskBackupCriteriaLastBackupTimeArgs.builder()
                        .within(HipObjectDiskBackupCriteriaLastBackupTimeWithinArgs.builder()
                            .days(1)
                            .build())
                        .build())
                    .build())
                .exclude_vendor(false)
                .build())
            .build());
    }
}
resources:
  example:
    type: scm:HipObject
    properties:
      folder: Shared
      name: myExample
      description: Made by Pulumi
      diskBackup:
        criteria:
          isInstalled: true
          lastBackupTime:
            within:
              days: 1
        exclude_vendor: false
Create HipObject Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new HipObject(name: string, args?: HipObjectArgs, opts?: CustomResourceOptions);@overload
def HipObject(resource_name: str,
              args: Optional[HipObjectArgs] = None,
              opts: Optional[ResourceOptions] = None)
@overload
def HipObject(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              anti_malware: Optional[HipObjectAntiMalwareArgs] = None,
              certificate: Optional[HipObjectCertificateArgs] = None,
              custom_checks: Optional[HipObjectCustomChecksArgs] = None,
              data_loss_prevention: Optional[HipObjectDataLossPreventionArgs] = None,
              description: Optional[str] = None,
              device: Optional[str] = None,
              disk_backup: Optional[HipObjectDiskBackupArgs] = None,
              disk_encryption: Optional[HipObjectDiskEncryptionArgs] = None,
              firewall: Optional[HipObjectFirewallArgs] = None,
              folder: Optional[str] = None,
              host_info: Optional[HipObjectHostInfoArgs] = None,
              mobile_device: Optional[HipObjectMobileDeviceArgs] = None,
              name: Optional[str] = None,
              network_info: Optional[HipObjectNetworkInfoArgs] = None,
              patch_management: Optional[HipObjectPatchManagementArgs] = None,
              snippet: Optional[str] = None)func NewHipObject(ctx *Context, name string, args *HipObjectArgs, opts ...ResourceOption) (*HipObject, error)public HipObject(string name, HipObjectArgs? args = null, CustomResourceOptions? opts = null)
public HipObject(String name, HipObjectArgs args)
public HipObject(String name, HipObjectArgs args, CustomResourceOptions options)
type: scm:HipObject
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
 - The unique name of the resource.
 - args HipObjectArgs
 - The arguments to resource properties.
 - opts CustomResourceOptions
 - Bag of options to control resource's behavior.
 
- resource_name str
 - The unique name of the resource.
 - args HipObjectArgs
 - The arguments to resource properties.
 - opts ResourceOptions
 - Bag of options to control resource's behavior.
 
- ctx Context
 - Context object for the current deployment.
 - name string
 - The unique name of the resource.
 - args HipObjectArgs
 - The arguments to resource properties.
 - opts ResourceOption
 - Bag of options to control resource's behavior.
 
- name string
 - The unique name of the resource.
 - args HipObjectArgs
 - The arguments to resource properties.
 - opts CustomResourceOptions
 - Bag of options to control resource's behavior.
 
- name String
 - The unique name of the resource.
 - args HipObjectArgs
 - The arguments to resource properties.
 - options CustomResourceOptions
 - Bag of options to control resource's behavior.
 
Constructor example
The following reference example uses placeholder values for all input properties.
var hipObjectResource = new Scm.HipObject("hipObjectResource", new()
{
    AntiMalware = new Scm.Inputs.HipObjectAntiMalwareArgs
    {
        Criteria = new Scm.Inputs.HipObjectAntiMalwareCriteriaArgs
        {
            IsInstalled = false,
            LastScanTime = new Scm.Inputs.HipObjectAntiMalwareCriteriaLastScanTimeArgs
            {
                NotAvailable = false,
                NotWithin = new Scm.Inputs.HipObjectAntiMalwareCriteriaLastScanTimeNotWithinArgs
                {
                    Days = 0,
                    Hours = 0,
                },
                Within = new Scm.Inputs.HipObjectAntiMalwareCriteriaLastScanTimeWithinArgs
                {
                    Days = 0,
                    Hours = 0,
                },
            },
            ProductVersion = new Scm.Inputs.HipObjectAntiMalwareCriteriaProductVersionArgs
            {
                Contains = "string",
                GreaterEqual = "string",
                GreaterThan = "string",
                Is = "string",
                IsNot = "string",
                LessEqual = "string",
                LessThan = "string",
                NotWithin = new Scm.Inputs.HipObjectAntiMalwareCriteriaProductVersionNotWithinArgs
                {
                    Versions = 0,
                },
                Within = new Scm.Inputs.HipObjectAntiMalwareCriteriaProductVersionWithinArgs
                {
                    Versions = 0,
                },
            },
            RealTimeProtection = "string",
            VirdefVersion = new Scm.Inputs.HipObjectAntiMalwareCriteriaVirdefVersionArgs
            {
                NotWithin = new Scm.Inputs.HipObjectAntiMalwareCriteriaVirdefVersionNotWithinArgs
                {
                    Days = 0,
                    Versions = 0,
                },
                Within = new Scm.Inputs.HipObjectAntiMalwareCriteriaVirdefVersionWithinArgs
                {
                    Days = 0,
                    Versions = 0,
                },
            },
        },
        ExcludeVendor = false,
        Vendors = new[]
        {
            new Scm.Inputs.HipObjectAntiMalwareVendorArgs
            {
                Name = "string",
                Products = new[]
                {
                    "string",
                },
            },
        },
    },
    Certificate = new Scm.Inputs.HipObjectCertificateArgs
    {
        Criteria = new Scm.Inputs.HipObjectCertificateCriteriaArgs
        {
            CertificateAttributes = new[]
            {
                new Scm.Inputs.HipObjectCertificateCriteriaCertificateAttributeArgs
                {
                    Name = "string",
                    Value = "string",
                },
            },
            CertificateProfile = "string",
        },
    },
    CustomChecks = new Scm.Inputs.HipObjectCustomChecksArgs
    {
        Criteria = new Scm.Inputs.HipObjectCustomChecksCriteriaArgs
        {
            Plists = new[]
            {
                new Scm.Inputs.HipObjectCustomChecksCriteriaPlistArgs
                {
                    Name = "string",
                    Keys = new[]
                    {
                        new Scm.Inputs.HipObjectCustomChecksCriteriaPlistKeyArgs
                        {
                            Name = "string",
                            Negate = false,
                            Value = "string",
                        },
                    },
                    Negate = false,
                },
            },
            ProcessLists = new[]
            {
                new Scm.Inputs.HipObjectCustomChecksCriteriaProcessListArgs
                {
                    Name = "string",
                    Running = false,
                },
            },
            RegistryKeys = new[]
            {
                new Scm.Inputs.HipObjectCustomChecksCriteriaRegistryKeyArgs
                {
                    Name = "string",
                    DefaultValueData = "string",
                    Negate = false,
                    RegistryValues = new[]
                    {
                        new Scm.Inputs.HipObjectCustomChecksCriteriaRegistryKeyRegistryValueArgs
                        {
                            Name = "string",
                            Negate = false,
                            ValueData = "string",
                        },
                    },
                },
            },
        },
    },
    DataLossPrevention = new Scm.Inputs.HipObjectDataLossPreventionArgs
    {
        Criteria = new Scm.Inputs.HipObjectDataLossPreventionCriteriaArgs
        {
            IsEnabled = "string",
            IsInstalled = false,
        },
        ExcludeVendor = false,
        Vendors = new[]
        {
            new Scm.Inputs.HipObjectDataLossPreventionVendorArgs
            {
                Name = "string",
                Products = new[]
                {
                    "string",
                },
            },
        },
    },
    Description = "string",
    Device = "string",
    DiskBackup = new Scm.Inputs.HipObjectDiskBackupArgs
    {
        Criteria = new Scm.Inputs.HipObjectDiskBackupCriteriaArgs
        {
            IsInstalled = false,
            LastBackupTime = new Scm.Inputs.HipObjectDiskBackupCriteriaLastBackupTimeArgs
            {
                NotAvailable = false,
                NotWithin = new Scm.Inputs.HipObjectDiskBackupCriteriaLastBackupTimeNotWithinArgs
                {
                    Days = 0,
                    Hours = 0,
                },
                Within = new Scm.Inputs.HipObjectDiskBackupCriteriaLastBackupTimeWithinArgs
                {
                    Days = 0,
                    Hours = 0,
                },
            },
        },
        ExcludeVendor = false,
        Vendors = new[]
        {
            new Scm.Inputs.HipObjectDiskBackupVendorArgs
            {
                Name = "string",
                Products = new[]
                {
                    "string",
                },
            },
        },
    },
    DiskEncryption = new Scm.Inputs.HipObjectDiskEncryptionArgs
    {
        Criteria = new Scm.Inputs.HipObjectDiskEncryptionCriteriaArgs
        {
            EncryptedLocations = new[]
            {
                new Scm.Inputs.HipObjectDiskEncryptionCriteriaEncryptedLocationArgs
                {
                    Name = "string",
                    EncryptionState = new Scm.Inputs.HipObjectDiskEncryptionCriteriaEncryptedLocationEncryptionStateArgs
                    {
                        Is = "string",
                        IsNot = "string",
                    },
                },
            },
            IsInstalled = false,
        },
        ExcludeVendor = false,
        Vendors = new[]
        {
            new Scm.Inputs.HipObjectDiskEncryptionVendorArgs
            {
                Name = "string",
                Products = new[]
                {
                    "string",
                },
            },
        },
    },
    Firewall = new Scm.Inputs.HipObjectFirewallArgs
    {
        Criteria = new Scm.Inputs.HipObjectFirewallCriteriaArgs
        {
            IsEnabled = "string",
            IsInstalled = false,
        },
        ExcludeVendor = false,
        Vendors = new[]
        {
            new Scm.Inputs.HipObjectFirewallVendorArgs
            {
                Name = "string",
                Products = new[]
                {
                    "string",
                },
            },
        },
    },
    Folder = "string",
    HostInfo = new Scm.Inputs.HipObjectHostInfoArgs
    {
        Criteria = new Scm.Inputs.HipObjectHostInfoCriteriaArgs
        {
            ClientVersion = new Scm.Inputs.HipObjectHostInfoCriteriaClientVersionArgs
            {
                Contains = "string",
                Is = "string",
                IsNot = "string",
            },
            Domain = new Scm.Inputs.HipObjectHostInfoCriteriaDomainArgs
            {
                Contains = "string",
                Is = "string",
                IsNot = "string",
            },
            HostId = new Scm.Inputs.HipObjectHostInfoCriteriaHostIdArgs
            {
                Contains = "string",
                Is = "string",
                IsNot = "string",
            },
            HostName = new Scm.Inputs.HipObjectHostInfoCriteriaHostNameArgs
            {
                Contains = "string",
                Is = "string",
                IsNot = "string",
            },
            Managed = false,
            Os = new Scm.Inputs.HipObjectHostInfoCriteriaOsArgs
            {
                Contains = new Scm.Inputs.HipObjectHostInfoCriteriaOsContainsArgs
                {
                    Apple = "string",
                    Google = "string",
                    Linux = "string",
                    Microsoft = "string",
                    Other = "string",
                },
            },
            SerialNumber = new Scm.Inputs.HipObjectHostInfoCriteriaSerialNumberArgs
            {
                Contains = "string",
                Is = "string",
                IsNot = "string",
            },
        },
    },
    MobileDevice = new Scm.Inputs.HipObjectMobileDeviceArgs
    {
        Criteria = new Scm.Inputs.HipObjectMobileDeviceCriteriaArgs
        {
            Applications = new Scm.Inputs.HipObjectMobileDeviceCriteriaApplicationsArgs
            {
                HasMalware = new Scm.Inputs.HipObjectMobileDeviceCriteriaApplicationsHasMalwareArgs
                {
                    No = false,
                    Yes = new Scm.Inputs.HipObjectMobileDeviceCriteriaApplicationsHasMalwareYesArgs
                    {
                        Excludes = new[]
                        {
                            new Scm.Inputs.HipObjectMobileDeviceCriteriaApplicationsHasMalwareYesExcludeArgs
                            {
                                Name = "string",
                                Hash = "string",
                                Package = "string",
                            },
                        },
                    },
                },
                HasUnmanagedApp = false,
                Includes = new[]
                {
                    new Scm.Inputs.HipObjectMobileDeviceCriteriaApplicationsIncludeArgs
                    {
                        Name = "string",
                        Hash = "string",
                        Package = "string",
                    },
                },
            },
            DiskEncrypted = false,
            Imei = new Scm.Inputs.HipObjectMobileDeviceCriteriaImeiArgs
            {
                Contains = "string",
                Is = "string",
                IsNot = "string",
            },
            Jailbroken = false,
            LastCheckinTime = new Scm.Inputs.HipObjectMobileDeviceCriteriaLastCheckinTimeArgs
            {
                NotWithin = new Scm.Inputs.HipObjectMobileDeviceCriteriaLastCheckinTimeNotWithinArgs
                {
                    Days = 0,
                },
                Within = new Scm.Inputs.HipObjectMobileDeviceCriteriaLastCheckinTimeWithinArgs
                {
                    Days = 0,
                },
            },
            Model = new Scm.Inputs.HipObjectMobileDeviceCriteriaModelArgs
            {
                Contains = "string",
                Is = "string",
                IsNot = "string",
            },
            PasscodeSet = false,
            PhoneNumber = new Scm.Inputs.HipObjectMobileDeviceCriteriaPhoneNumberArgs
            {
                Contains = "string",
                Is = "string",
                IsNot = "string",
            },
            Tag = new Scm.Inputs.HipObjectMobileDeviceCriteriaTagArgs
            {
                Contains = "string",
                Is = "string",
                IsNot = "string",
            },
        },
    },
    Name = "string",
    NetworkInfo = new Scm.Inputs.HipObjectNetworkInfoArgs
    {
        Criteria = new Scm.Inputs.HipObjectNetworkInfoCriteriaArgs
        {
            Network = new Scm.Inputs.HipObjectNetworkInfoCriteriaNetworkArgs
            {
                Is = new Scm.Inputs.HipObjectNetworkInfoCriteriaNetworkIsArgs
                {
                    Mobile = new Scm.Inputs.HipObjectNetworkInfoCriteriaNetworkIsMobileArgs
                    {
                        Carrier = "string",
                    },
                    Unknown = false,
                    Wifi = new Scm.Inputs.HipObjectNetworkInfoCriteriaNetworkIsWifiArgs
                    {
                        Ssid = "string",
                    },
                },
                IsNot = new Scm.Inputs.HipObjectNetworkInfoCriteriaNetworkIsNotArgs
                {
                    Ethernet = false,
                    Mobile = new Scm.Inputs.HipObjectNetworkInfoCriteriaNetworkIsNotMobileArgs
                    {
                        Carrier = "string",
                    },
                    Unknown = false,
                    Wifi = new Scm.Inputs.HipObjectNetworkInfoCriteriaNetworkIsNotWifiArgs
                    {
                        Ssid = "string",
                    },
                },
            },
        },
    },
    PatchManagement = new Scm.Inputs.HipObjectPatchManagementArgs
    {
        Criteria = new Scm.Inputs.HipObjectPatchManagementCriteriaArgs
        {
            IsEnabled = "string",
            IsInstalled = false,
            MissingPatches = new Scm.Inputs.HipObjectPatchManagementCriteriaMissingPatchesArgs
            {
                Check = "string",
                Patches = new[]
                {
                    "string",
                },
                Severity = new Scm.Inputs.HipObjectPatchManagementCriteriaMissingPatchesSeverityArgs
                {
                    GreaterEqual = 0,
                    GreaterThan = 0,
                    Is = 0,
                    IsNot = 0,
                    LessEqual = 0,
                    LessThan = 0,
                },
            },
        },
        ExcludeVendor = false,
        Vendors = new[]
        {
            new Scm.Inputs.HipObjectPatchManagementVendorArgs
            {
                Name = "string",
                Products = new[]
                {
                    "string",
                },
            },
        },
    },
    Snippet = "string",
});
example, err := scm.NewHipObject(ctx, "hipObjectResource", &scm.HipObjectArgs{
	AntiMalware: &scm.HipObjectAntiMalwareArgs{
		Criteria: &scm.HipObjectAntiMalwareCriteriaArgs{
			IsInstalled: pulumi.Bool(false),
			LastScanTime: &scm.HipObjectAntiMalwareCriteriaLastScanTimeArgs{
				NotAvailable: pulumi.Bool(false),
				NotWithin: &scm.HipObjectAntiMalwareCriteriaLastScanTimeNotWithinArgs{
					Days:  pulumi.Int(0),
					Hours: pulumi.Int(0),
				},
				Within: &scm.HipObjectAntiMalwareCriteriaLastScanTimeWithinArgs{
					Days:  pulumi.Int(0),
					Hours: pulumi.Int(0),
				},
			},
			ProductVersion: &scm.HipObjectAntiMalwareCriteriaProductVersionArgs{
				Contains:     pulumi.String("string"),
				GreaterEqual: pulumi.String("string"),
				GreaterThan:  pulumi.String("string"),
				Is:           pulumi.String("string"),
				IsNot:        pulumi.String("string"),
				LessEqual:    pulumi.String("string"),
				LessThan:     pulumi.String("string"),
				NotWithin: &scm.HipObjectAntiMalwareCriteriaProductVersionNotWithinArgs{
					Versions: pulumi.Int(0),
				},
				Within: &scm.HipObjectAntiMalwareCriteriaProductVersionWithinArgs{
					Versions: pulumi.Int(0),
				},
			},
			RealTimeProtection: pulumi.String("string"),
			VirdefVersion: &scm.HipObjectAntiMalwareCriteriaVirdefVersionArgs{
				NotWithin: &scm.HipObjectAntiMalwareCriteriaVirdefVersionNotWithinArgs{
					Days:     pulumi.Int(0),
					Versions: pulumi.Int(0),
				},
				Within: &scm.HipObjectAntiMalwareCriteriaVirdefVersionWithinArgs{
					Days:     pulumi.Int(0),
					Versions: pulumi.Int(0),
				},
			},
		},
		ExcludeVendor: pulumi.Bool(false),
		Vendors: scm.HipObjectAntiMalwareVendorArray{
			&scm.HipObjectAntiMalwareVendorArgs{
				Name: pulumi.String("string"),
				Products: pulumi.StringArray{
					pulumi.String("string"),
				},
			},
		},
	},
	Certificate: &scm.HipObjectCertificateArgs{
		Criteria: &scm.HipObjectCertificateCriteriaArgs{
			CertificateAttributes: scm.HipObjectCertificateCriteriaCertificateAttributeArray{
				&scm.HipObjectCertificateCriteriaCertificateAttributeArgs{
					Name:  pulumi.String("string"),
					Value: pulumi.String("string"),
				},
			},
			CertificateProfile: pulumi.String("string"),
		},
	},
	CustomChecks: &scm.HipObjectCustomChecksArgs{
		Criteria: &scm.HipObjectCustomChecksCriteriaArgs{
			Plists: scm.HipObjectCustomChecksCriteriaPlistArray{
				&scm.HipObjectCustomChecksCriteriaPlistArgs{
					Name: pulumi.String("string"),
					Keys: scm.HipObjectCustomChecksCriteriaPlistKeyArray{
						&scm.HipObjectCustomChecksCriteriaPlistKeyArgs{
							Name:   pulumi.String("string"),
							Negate: pulumi.Bool(false),
							Value:  pulumi.String("string"),
						},
					},
					Negate: pulumi.Bool(false),
				},
			},
			ProcessLists: scm.HipObjectCustomChecksCriteriaProcessListArray{
				&scm.HipObjectCustomChecksCriteriaProcessListArgs{
					Name:    pulumi.String("string"),
					Running: pulumi.Bool(false),
				},
			},
			RegistryKeys: scm.HipObjectCustomChecksCriteriaRegistryKeyArray{
				&scm.HipObjectCustomChecksCriteriaRegistryKeyArgs{
					Name:             pulumi.String("string"),
					DefaultValueData: pulumi.String("string"),
					Negate:           pulumi.Bool(false),
					RegistryValues: scm.HipObjectCustomChecksCriteriaRegistryKeyRegistryValueArray{
						&scm.HipObjectCustomChecksCriteriaRegistryKeyRegistryValueArgs{
							Name:      pulumi.String("string"),
							Negate:    pulumi.Bool(false),
							ValueData: pulumi.String("string"),
						},
					},
				},
			},
		},
	},
	DataLossPrevention: &scm.HipObjectDataLossPreventionArgs{
		Criteria: &scm.HipObjectDataLossPreventionCriteriaArgs{
			IsEnabled:   pulumi.String("string"),
			IsInstalled: pulumi.Bool(false),
		},
		ExcludeVendor: pulumi.Bool(false),
		Vendors: scm.HipObjectDataLossPreventionVendorArray{
			&scm.HipObjectDataLossPreventionVendorArgs{
				Name: pulumi.String("string"),
				Products: pulumi.StringArray{
					pulumi.String("string"),
				},
			},
		},
	},
	Description: pulumi.String("string"),
	Device:      pulumi.String("string"),
	DiskBackup: &scm.HipObjectDiskBackupArgs{
		Criteria: &scm.HipObjectDiskBackupCriteriaArgs{
			IsInstalled: pulumi.Bool(false),
			LastBackupTime: &scm.HipObjectDiskBackupCriteriaLastBackupTimeArgs{
				NotAvailable: pulumi.Bool(false),
				NotWithin: &scm.HipObjectDiskBackupCriteriaLastBackupTimeNotWithinArgs{
					Days:  pulumi.Int(0),
					Hours: pulumi.Int(0),
				},
				Within: &scm.HipObjectDiskBackupCriteriaLastBackupTimeWithinArgs{
					Days:  pulumi.Int(0),
					Hours: pulumi.Int(0),
				},
			},
		},
		ExcludeVendor: pulumi.Bool(false),
		Vendors: scm.HipObjectDiskBackupVendorArray{
			&scm.HipObjectDiskBackupVendorArgs{
				Name: pulumi.String("string"),
				Products: pulumi.StringArray{
					pulumi.String("string"),
				},
			},
		},
	},
	DiskEncryption: &scm.HipObjectDiskEncryptionArgs{
		Criteria: &scm.HipObjectDiskEncryptionCriteriaArgs{
			EncryptedLocations: scm.HipObjectDiskEncryptionCriteriaEncryptedLocationArray{
				&scm.HipObjectDiskEncryptionCriteriaEncryptedLocationArgs{
					Name: pulumi.String("string"),
					EncryptionState: &scm.HipObjectDiskEncryptionCriteriaEncryptedLocationEncryptionStateArgs{
						Is:    pulumi.String("string"),
						IsNot: pulumi.String("string"),
					},
				},
			},
			IsInstalled: pulumi.Bool(false),
		},
		ExcludeVendor: pulumi.Bool(false),
		Vendors: scm.HipObjectDiskEncryptionVendorArray{
			&scm.HipObjectDiskEncryptionVendorArgs{
				Name: pulumi.String("string"),
				Products: pulumi.StringArray{
					pulumi.String("string"),
				},
			},
		},
	},
	Firewall: &scm.HipObjectFirewallArgs{
		Criteria: &scm.HipObjectFirewallCriteriaArgs{
			IsEnabled:   pulumi.String("string"),
			IsInstalled: pulumi.Bool(false),
		},
		ExcludeVendor: pulumi.Bool(false),
		Vendors: scm.HipObjectFirewallVendorArray{
			&scm.HipObjectFirewallVendorArgs{
				Name: pulumi.String("string"),
				Products: pulumi.StringArray{
					pulumi.String("string"),
				},
			},
		},
	},
	Folder: pulumi.String("string"),
	HostInfo: &scm.HipObjectHostInfoArgs{
		Criteria: &scm.HipObjectHostInfoCriteriaArgs{
			ClientVersion: &scm.HipObjectHostInfoCriteriaClientVersionArgs{
				Contains: pulumi.String("string"),
				Is:       pulumi.String("string"),
				IsNot:    pulumi.String("string"),
			},
			Domain: &scm.HipObjectHostInfoCriteriaDomainArgs{
				Contains: pulumi.String("string"),
				Is:       pulumi.String("string"),
				IsNot:    pulumi.String("string"),
			},
			HostId: &scm.HipObjectHostInfoCriteriaHostIdArgs{
				Contains: pulumi.String("string"),
				Is:       pulumi.String("string"),
				IsNot:    pulumi.String("string"),
			},
			HostName: &scm.HipObjectHostInfoCriteriaHostNameArgs{
				Contains: pulumi.String("string"),
				Is:       pulumi.String("string"),
				IsNot:    pulumi.String("string"),
			},
			Managed: pulumi.Bool(false),
			Os: &scm.HipObjectHostInfoCriteriaOsArgs{
				Contains: &scm.HipObjectHostInfoCriteriaOsContainsArgs{
					Apple:     pulumi.String("string"),
					Google:    pulumi.String("string"),
					Linux:     pulumi.String("string"),
					Microsoft: pulumi.String("string"),
					Other:     pulumi.String("string"),
				},
			},
			SerialNumber: &scm.HipObjectHostInfoCriteriaSerialNumberArgs{
				Contains: pulumi.String("string"),
				Is:       pulumi.String("string"),
				IsNot:    pulumi.String("string"),
			},
		},
	},
	MobileDevice: &scm.HipObjectMobileDeviceArgs{
		Criteria: &scm.HipObjectMobileDeviceCriteriaArgs{
			Applications: &scm.HipObjectMobileDeviceCriteriaApplicationsArgs{
				HasMalware: &scm.HipObjectMobileDeviceCriteriaApplicationsHasMalwareArgs{
					No: pulumi.Bool(false),
					Yes: &scm.HipObjectMobileDeviceCriteriaApplicationsHasMalwareYesArgs{
						Excludes: scm.HipObjectMobileDeviceCriteriaApplicationsHasMalwareYesExcludeArray{
							&scm.HipObjectMobileDeviceCriteriaApplicationsHasMalwareYesExcludeArgs{
								Name:    pulumi.String("string"),
								Hash:    pulumi.String("string"),
								Package: pulumi.String("string"),
							},
						},
					},
				},
				HasUnmanagedApp: pulumi.Bool(false),
				Includes: scm.HipObjectMobileDeviceCriteriaApplicationsIncludeArray{
					&scm.HipObjectMobileDeviceCriteriaApplicationsIncludeArgs{
						Name:    pulumi.String("string"),
						Hash:    pulumi.String("string"),
						Package: pulumi.String("string"),
					},
				},
			},
			DiskEncrypted: pulumi.Bool(false),
			Imei: &scm.HipObjectMobileDeviceCriteriaImeiArgs{
				Contains: pulumi.String("string"),
				Is:       pulumi.String("string"),
				IsNot:    pulumi.String("string"),
			},
			Jailbroken: pulumi.Bool(false),
			LastCheckinTime: &scm.HipObjectMobileDeviceCriteriaLastCheckinTimeArgs{
				NotWithin: &scm.HipObjectMobileDeviceCriteriaLastCheckinTimeNotWithinArgs{
					Days: pulumi.Int(0),
				},
				Within: &scm.HipObjectMobileDeviceCriteriaLastCheckinTimeWithinArgs{
					Days: pulumi.Int(0),
				},
			},
			Model: &scm.HipObjectMobileDeviceCriteriaModelArgs{
				Contains: pulumi.String("string"),
				Is:       pulumi.String("string"),
				IsNot:    pulumi.String("string"),
			},
			PasscodeSet: pulumi.Bool(false),
			PhoneNumber: &scm.HipObjectMobileDeviceCriteriaPhoneNumberArgs{
				Contains: pulumi.String("string"),
				Is:       pulumi.String("string"),
				IsNot:    pulumi.String("string"),
			},
			Tag: &scm.HipObjectMobileDeviceCriteriaTagArgs{
				Contains: pulumi.String("string"),
				Is:       pulumi.String("string"),
				IsNot:    pulumi.String("string"),
			},
		},
	},
	Name: pulumi.String("string"),
	NetworkInfo: &scm.HipObjectNetworkInfoArgs{
		Criteria: &scm.HipObjectNetworkInfoCriteriaArgs{
			Network: &scm.HipObjectNetworkInfoCriteriaNetworkArgs{
				Is: &scm.HipObjectNetworkInfoCriteriaNetworkIsArgs{
					Mobile: &scm.HipObjectNetworkInfoCriteriaNetworkIsMobileArgs{
						Carrier: pulumi.String("string"),
					},
					Unknown: pulumi.Bool(false),
					Wifi: &scm.HipObjectNetworkInfoCriteriaNetworkIsWifiArgs{
						Ssid: pulumi.String("string"),
					},
				},
				IsNot: &scm.HipObjectNetworkInfoCriteriaNetworkIsNotArgs{
					Ethernet: pulumi.Bool(false),
					Mobile: &scm.HipObjectNetworkInfoCriteriaNetworkIsNotMobileArgs{
						Carrier: pulumi.String("string"),
					},
					Unknown: pulumi.Bool(false),
					Wifi: &scm.HipObjectNetworkInfoCriteriaNetworkIsNotWifiArgs{
						Ssid: pulumi.String("string"),
					},
				},
			},
		},
	},
	PatchManagement: &scm.HipObjectPatchManagementArgs{
		Criteria: &scm.HipObjectPatchManagementCriteriaArgs{
			IsEnabled:   pulumi.String("string"),
			IsInstalled: pulumi.Bool(false),
			MissingPatches: &scm.HipObjectPatchManagementCriteriaMissingPatchesArgs{
				Check: pulumi.String("string"),
				Patches: pulumi.StringArray{
					pulumi.String("string"),
				},
				Severity: &scm.HipObjectPatchManagementCriteriaMissingPatchesSeverityArgs{
					GreaterEqual: pulumi.Int(0),
					GreaterThan:  pulumi.Int(0),
					Is:           pulumi.Int(0),
					IsNot:        pulumi.Int(0),
					LessEqual:    pulumi.Int(0),
					LessThan:     pulumi.Int(0),
				},
			},
		},
		ExcludeVendor: pulumi.Bool(false),
		Vendors: scm.HipObjectPatchManagementVendorArray{
			&scm.HipObjectPatchManagementVendorArgs{
				Name: pulumi.String("string"),
				Products: pulumi.StringArray{
					pulumi.String("string"),
				},
			},
		},
	},
	Snippet: pulumi.String("string"),
})
var hipObjectResource = new HipObject("hipObjectResource", HipObjectArgs.builder()
    .antiMalware(HipObjectAntiMalwareArgs.builder()
        .criteria(HipObjectAntiMalwareCriteriaArgs.builder()
            .isInstalled(false)
            .lastScanTime(HipObjectAntiMalwareCriteriaLastScanTimeArgs.builder()
                .notAvailable(false)
                .notWithin(HipObjectAntiMalwareCriteriaLastScanTimeNotWithinArgs.builder()
                    .days(0)
                    .hours(0)
                    .build())
                .within(HipObjectAntiMalwareCriteriaLastScanTimeWithinArgs.builder()
                    .days(0)
                    .hours(0)
                    .build())
                .build())
            .productVersion(HipObjectAntiMalwareCriteriaProductVersionArgs.builder()
                .contains("string")
                .greaterEqual("string")
                .greaterThan("string")
                .is("string")
                .isNot("string")
                .lessEqual("string")
                .lessThan("string")
                .notWithin(HipObjectAntiMalwareCriteriaProductVersionNotWithinArgs.builder()
                    .versions(0)
                    .build())
                .within(HipObjectAntiMalwareCriteriaProductVersionWithinArgs.builder()
                    .versions(0)
                    .build())
                .build())
            .realTimeProtection("string")
            .virdefVersion(HipObjectAntiMalwareCriteriaVirdefVersionArgs.builder()
                .notWithin(HipObjectAntiMalwareCriteriaVirdefVersionNotWithinArgs.builder()
                    .days(0)
                    .versions(0)
                    .build())
                .within(HipObjectAntiMalwareCriteriaVirdefVersionWithinArgs.builder()
                    .days(0)
                    .versions(0)
                    .build())
                .build())
            .build())
        .excludeVendor(false)
        .vendors(HipObjectAntiMalwareVendorArgs.builder()
            .name("string")
            .products("string")
            .build())
        .build())
    .certificate(HipObjectCertificateArgs.builder()
        .criteria(HipObjectCertificateCriteriaArgs.builder()
            .certificateAttributes(HipObjectCertificateCriteriaCertificateAttributeArgs.builder()
                .name("string")
                .value("string")
                .build())
            .certificateProfile("string")
            .build())
        .build())
    .customChecks(HipObjectCustomChecksArgs.builder()
        .criteria(HipObjectCustomChecksCriteriaArgs.builder()
            .plists(HipObjectCustomChecksCriteriaPlistArgs.builder()
                .name("string")
                .keys(HipObjectCustomChecksCriteriaPlistKeyArgs.builder()
                    .name("string")
                    .negate(false)
                    .value("string")
                    .build())
                .negate(false)
                .build())
            .processLists(HipObjectCustomChecksCriteriaProcessListArgs.builder()
                .name("string")
                .running(false)
                .build())
            .registryKeys(HipObjectCustomChecksCriteriaRegistryKeyArgs.builder()
                .name("string")
                .defaultValueData("string")
                .negate(false)
                .registryValues(HipObjectCustomChecksCriteriaRegistryKeyRegistryValueArgs.builder()
                    .name("string")
                    .negate(false)
                    .valueData("string")
                    .build())
                .build())
            .build())
        .build())
    .dataLossPrevention(HipObjectDataLossPreventionArgs.builder()
        .criteria(HipObjectDataLossPreventionCriteriaArgs.builder()
            .isEnabled("string")
            .isInstalled(false)
            .build())
        .excludeVendor(false)
        .vendors(HipObjectDataLossPreventionVendorArgs.builder()
            .name("string")
            .products("string")
            .build())
        .build())
    .description("string")
    .device("string")
    .diskBackup(HipObjectDiskBackupArgs.builder()
        .criteria(HipObjectDiskBackupCriteriaArgs.builder()
            .isInstalled(false)
            .lastBackupTime(HipObjectDiskBackupCriteriaLastBackupTimeArgs.builder()
                .notAvailable(false)
                .notWithin(HipObjectDiskBackupCriteriaLastBackupTimeNotWithinArgs.builder()
                    .days(0)
                    .hours(0)
                    .build())
                .within(HipObjectDiskBackupCriteriaLastBackupTimeWithinArgs.builder()
                    .days(0)
                    .hours(0)
                    .build())
                .build())
            .build())
        .excludeVendor(false)
        .vendors(HipObjectDiskBackupVendorArgs.builder()
            .name("string")
            .products("string")
            .build())
        .build())
    .diskEncryption(HipObjectDiskEncryptionArgs.builder()
        .criteria(HipObjectDiskEncryptionCriteriaArgs.builder()
            .encryptedLocations(HipObjectDiskEncryptionCriteriaEncryptedLocationArgs.builder()
                .name("string")
                .encryptionState(HipObjectDiskEncryptionCriteriaEncryptedLocationEncryptionStateArgs.builder()
                    .is("string")
                    .isNot("string")
                    .build())
                .build())
            .isInstalled(false)
            .build())
        .excludeVendor(false)
        .vendors(HipObjectDiskEncryptionVendorArgs.builder()
            .name("string")
            .products("string")
            .build())
        .build())
    .firewall(HipObjectFirewallArgs.builder()
        .criteria(HipObjectFirewallCriteriaArgs.builder()
            .isEnabled("string")
            .isInstalled(false)
            .build())
        .excludeVendor(false)
        .vendors(HipObjectFirewallVendorArgs.builder()
            .name("string")
            .products("string")
            .build())
        .build())
    .folder("string")
    .hostInfo(HipObjectHostInfoArgs.builder()
        .criteria(HipObjectHostInfoCriteriaArgs.builder()
            .clientVersion(HipObjectHostInfoCriteriaClientVersionArgs.builder()
                .contains("string")
                .is("string")
                .isNot("string")
                .build())
            .domain(HipObjectHostInfoCriteriaDomainArgs.builder()
                .contains("string")
                .is("string")
                .isNot("string")
                .build())
            .hostId(HipObjectHostInfoCriteriaHostIdArgs.builder()
                .contains("string")
                .is("string")
                .isNot("string")
                .build())
            .hostName(HipObjectHostInfoCriteriaHostNameArgs.builder()
                .contains("string")
                .is("string")
                .isNot("string")
                .build())
            .managed(false)
            .os(HipObjectHostInfoCriteriaOsArgs.builder()
                .contains(HipObjectHostInfoCriteriaOsContainsArgs.builder()
                    .apple("string")
                    .google("string")
                    .linux("string")
                    .microsoft("string")
                    .other("string")
                    .build())
                .build())
            .serialNumber(HipObjectHostInfoCriteriaSerialNumberArgs.builder()
                .contains("string")
                .is("string")
                .isNot("string")
                .build())
            .build())
        .build())
    .mobileDevice(HipObjectMobileDeviceArgs.builder()
        .criteria(HipObjectMobileDeviceCriteriaArgs.builder()
            .applications(HipObjectMobileDeviceCriteriaApplicationsArgs.builder()
                .hasMalware(HipObjectMobileDeviceCriteriaApplicationsHasMalwareArgs.builder()
                    .no(false)
                    .yes(HipObjectMobileDeviceCriteriaApplicationsHasMalwareYesArgs.builder()
                        .excludes(HipObjectMobileDeviceCriteriaApplicationsHasMalwareYesExcludeArgs.builder()
                            .name("string")
                            .hash("string")
                            .package_("string")
                            .build())
                        .build())
                    .build())
                .hasUnmanagedApp(false)
                .includes(HipObjectMobileDeviceCriteriaApplicationsIncludeArgs.builder()
                    .name("string")
                    .hash("string")
                    .package_("string")
                    .build())
                .build())
            .diskEncrypted(false)
            .imei(HipObjectMobileDeviceCriteriaImeiArgs.builder()
                .contains("string")
                .is("string")
                .isNot("string")
                .build())
            .jailbroken(false)
            .lastCheckinTime(HipObjectMobileDeviceCriteriaLastCheckinTimeArgs.builder()
                .notWithin(HipObjectMobileDeviceCriteriaLastCheckinTimeNotWithinArgs.builder()
                    .days(0)
                    .build())
                .within(HipObjectMobileDeviceCriteriaLastCheckinTimeWithinArgs.builder()
                    .days(0)
                    .build())
                .build())
            .model(HipObjectMobileDeviceCriteriaModelArgs.builder()
                .contains("string")
                .is("string")
                .isNot("string")
                .build())
            .passcodeSet(false)
            .phoneNumber(HipObjectMobileDeviceCriteriaPhoneNumberArgs.builder()
                .contains("string")
                .is("string")
                .isNot("string")
                .build())
            .tag(HipObjectMobileDeviceCriteriaTagArgs.builder()
                .contains("string")
                .is("string")
                .isNot("string")
                .build())
            .build())
        .build())
    .name("string")
    .networkInfo(HipObjectNetworkInfoArgs.builder()
        .criteria(HipObjectNetworkInfoCriteriaArgs.builder()
            .network(HipObjectNetworkInfoCriteriaNetworkArgs.builder()
                .is(HipObjectNetworkInfoCriteriaNetworkIsArgs.builder()
                    .mobile(HipObjectNetworkInfoCriteriaNetworkIsMobileArgs.builder()
                        .carrier("string")
                        .build())
                    .unknown(false)
                    .wifi(HipObjectNetworkInfoCriteriaNetworkIsWifiArgs.builder()
                        .ssid("string")
                        .build())
                    .build())
                .isNot(HipObjectNetworkInfoCriteriaNetworkIsNotArgs.builder()
                    .ethernet(false)
                    .mobile(HipObjectNetworkInfoCriteriaNetworkIsNotMobileArgs.builder()
                        .carrier("string")
                        .build())
                    .unknown(false)
                    .wifi(HipObjectNetworkInfoCriteriaNetworkIsNotWifiArgs.builder()
                        .ssid("string")
                        .build())
                    .build())
                .build())
            .build())
        .build())
    .patchManagement(HipObjectPatchManagementArgs.builder()
        .criteria(HipObjectPatchManagementCriteriaArgs.builder()
            .isEnabled("string")
            .isInstalled(false)
            .missingPatches(HipObjectPatchManagementCriteriaMissingPatchesArgs.builder()
                .check("string")
                .patches("string")
                .severity(HipObjectPatchManagementCriteriaMissingPatchesSeverityArgs.builder()
                    .greaterEqual(0)
                    .greaterThan(0)
                    .is(0)
                    .isNot(0)
                    .lessEqual(0)
                    .lessThan(0)
                    .build())
                .build())
            .build())
        .excludeVendor(false)
        .vendors(HipObjectPatchManagementVendorArgs.builder()
            .name("string")
            .products("string")
            .build())
        .build())
    .snippet("string")
    .build());
hip_object_resource = scm.HipObject("hipObjectResource",
    anti_malware={
        "criteria": {
            "is_installed": False,
            "last_scan_time": {
                "not_available": False,
                "not_within": {
                    "days": 0,
                    "hours": 0,
                },
                "within": {
                    "days": 0,
                    "hours": 0,
                },
            },
            "product_version": {
                "contains": "string",
                "greater_equal": "string",
                "greater_than": "string",
                "is_": "string",
                "is_not": "string",
                "less_equal": "string",
                "less_than": "string",
                "not_within": {
                    "versions": 0,
                },
                "within": {
                    "versions": 0,
                },
            },
            "real_time_protection": "string",
            "virdef_version": {
                "not_within": {
                    "days": 0,
                    "versions": 0,
                },
                "within": {
                    "days": 0,
                    "versions": 0,
                },
            },
        },
        "exclude_vendor": False,
        "vendors": [{
            "name": "string",
            "products": ["string"],
        }],
    },
    certificate={
        "criteria": {
            "certificate_attributes": [{
                "name": "string",
                "value": "string",
            }],
            "certificate_profile": "string",
        },
    },
    custom_checks={
        "criteria": {
            "plists": [{
                "name": "string",
                "keys": [{
                    "name": "string",
                    "negate": False,
                    "value": "string",
                }],
                "negate": False,
            }],
            "process_lists": [{
                "name": "string",
                "running": False,
            }],
            "registry_keys": [{
                "name": "string",
                "default_value_data": "string",
                "negate": False,
                "registry_values": [{
                    "name": "string",
                    "negate": False,
                    "value_data": "string",
                }],
            }],
        },
    },
    data_loss_prevention={
        "criteria": {
            "is_enabled": "string",
            "is_installed": False,
        },
        "exclude_vendor": False,
        "vendors": [{
            "name": "string",
            "products": ["string"],
        }],
    },
    description="string",
    device="string",
    disk_backup={
        "criteria": {
            "is_installed": False,
            "last_backup_time": {
                "not_available": False,
                "not_within": {
                    "days": 0,
                    "hours": 0,
                },
                "within": {
                    "days": 0,
                    "hours": 0,
                },
            },
        },
        "exclude_vendor": False,
        "vendors": [{
            "name": "string",
            "products": ["string"],
        }],
    },
    disk_encryption={
        "criteria": {
            "encrypted_locations": [{
                "name": "string",
                "encryption_state": {
                    "is_": "string",
                    "is_not": "string",
                },
            }],
            "is_installed": False,
        },
        "exclude_vendor": False,
        "vendors": [{
            "name": "string",
            "products": ["string"],
        }],
    },
    firewall={
        "criteria": {
            "is_enabled": "string",
            "is_installed": False,
        },
        "exclude_vendor": False,
        "vendors": [{
            "name": "string",
            "products": ["string"],
        }],
    },
    folder="string",
    host_info={
        "criteria": {
            "client_version": {
                "contains": "string",
                "is_": "string",
                "is_not": "string",
            },
            "domain": {
                "contains": "string",
                "is_": "string",
                "is_not": "string",
            },
            "host_id": {
                "contains": "string",
                "is_": "string",
                "is_not": "string",
            },
            "host_name": {
                "contains": "string",
                "is_": "string",
                "is_not": "string",
            },
            "managed": False,
            "os": {
                "contains": {
                    "apple": "string",
                    "google": "string",
                    "linux": "string",
                    "microsoft": "string",
                    "other": "string",
                },
            },
            "serial_number": {
                "contains": "string",
                "is_": "string",
                "is_not": "string",
            },
        },
    },
    mobile_device={
        "criteria": {
            "applications": {
                "has_malware": {
                    "no": False,
                    "yes": {
                        "excludes": [{
                            "name": "string",
                            "hash": "string",
                            "package": "string",
                        }],
                    },
                },
                "has_unmanaged_app": False,
                "includes": [{
                    "name": "string",
                    "hash": "string",
                    "package": "string",
                }],
            },
            "disk_encrypted": False,
            "imei": {
                "contains": "string",
                "is_": "string",
                "is_not": "string",
            },
            "jailbroken": False,
            "last_checkin_time": {
                "not_within": {
                    "days": 0,
                },
                "within": {
                    "days": 0,
                },
            },
            "model": {
                "contains": "string",
                "is_": "string",
                "is_not": "string",
            },
            "passcode_set": False,
            "phone_number": {
                "contains": "string",
                "is_": "string",
                "is_not": "string",
            },
            "tag": {
                "contains": "string",
                "is_": "string",
                "is_not": "string",
            },
        },
    },
    name="string",
    network_info={
        "criteria": {
            "network": {
                "is_": {
                    "mobile": {
                        "carrier": "string",
                    },
                    "unknown": False,
                    "wifi": {
                        "ssid": "string",
                    },
                },
                "is_not": {
                    "ethernet": False,
                    "mobile": {
                        "carrier": "string",
                    },
                    "unknown": False,
                    "wifi": {
                        "ssid": "string",
                    },
                },
            },
        },
    },
    patch_management={
        "criteria": {
            "is_enabled": "string",
            "is_installed": False,
            "missing_patches": {
                "check": "string",
                "patches": ["string"],
                "severity": {
                    "greater_equal": 0,
                    "greater_than": 0,
                    "is_": 0,
                    "is_not": 0,
                    "less_equal": 0,
                    "less_than": 0,
                },
            },
        },
        "exclude_vendor": False,
        "vendors": [{
            "name": "string",
            "products": ["string"],
        }],
    },
    snippet="string")
const hipObjectResource = new scm.HipObject("hipObjectResource", {
    antiMalware: {
        criteria: {
            isInstalled: false,
            lastScanTime: {
                notAvailable: false,
                notWithin: {
                    days: 0,
                    hours: 0,
                },
                within: {
                    days: 0,
                    hours: 0,
                },
            },
            productVersion: {
                contains: "string",
                greaterEqual: "string",
                greaterThan: "string",
                is: "string",
                isNot: "string",
                lessEqual: "string",
                lessThan: "string",
                notWithin: {
                    versions: 0,
                },
                within: {
                    versions: 0,
                },
            },
            realTimeProtection: "string",
            virdefVersion: {
                notWithin: {
                    days: 0,
                    versions: 0,
                },
                within: {
                    days: 0,
                    versions: 0,
                },
            },
        },
        excludeVendor: false,
        vendors: [{
            name: "string",
            products: ["string"],
        }],
    },
    certificate: {
        criteria: {
            certificateAttributes: [{
                name: "string",
                value: "string",
            }],
            certificateProfile: "string",
        },
    },
    customChecks: {
        criteria: {
            plists: [{
                name: "string",
                keys: [{
                    name: "string",
                    negate: false,
                    value: "string",
                }],
                negate: false,
            }],
            processLists: [{
                name: "string",
                running: false,
            }],
            registryKeys: [{
                name: "string",
                defaultValueData: "string",
                negate: false,
                registryValues: [{
                    name: "string",
                    negate: false,
                    valueData: "string",
                }],
            }],
        },
    },
    dataLossPrevention: {
        criteria: {
            isEnabled: "string",
            isInstalled: false,
        },
        excludeVendor: false,
        vendors: [{
            name: "string",
            products: ["string"],
        }],
    },
    description: "string",
    device: "string",
    diskBackup: {
        criteria: {
            isInstalled: false,
            lastBackupTime: {
                notAvailable: false,
                notWithin: {
                    days: 0,
                    hours: 0,
                },
                within: {
                    days: 0,
                    hours: 0,
                },
            },
        },
        excludeVendor: false,
        vendors: [{
            name: "string",
            products: ["string"],
        }],
    },
    diskEncryption: {
        criteria: {
            encryptedLocations: [{
                name: "string",
                encryptionState: {
                    is: "string",
                    isNot: "string",
                },
            }],
            isInstalled: false,
        },
        excludeVendor: false,
        vendors: [{
            name: "string",
            products: ["string"],
        }],
    },
    firewall: {
        criteria: {
            isEnabled: "string",
            isInstalled: false,
        },
        excludeVendor: false,
        vendors: [{
            name: "string",
            products: ["string"],
        }],
    },
    folder: "string",
    hostInfo: {
        criteria: {
            clientVersion: {
                contains: "string",
                is: "string",
                isNot: "string",
            },
            domain: {
                contains: "string",
                is: "string",
                isNot: "string",
            },
            hostId: {
                contains: "string",
                is: "string",
                isNot: "string",
            },
            hostName: {
                contains: "string",
                is: "string",
                isNot: "string",
            },
            managed: false,
            os: {
                contains: {
                    apple: "string",
                    google: "string",
                    linux: "string",
                    microsoft: "string",
                    other: "string",
                },
            },
            serialNumber: {
                contains: "string",
                is: "string",
                isNot: "string",
            },
        },
    },
    mobileDevice: {
        criteria: {
            applications: {
                hasMalware: {
                    no: false,
                    yes: {
                        excludes: [{
                            name: "string",
                            hash: "string",
                            "package": "string",
                        }],
                    },
                },
                hasUnmanagedApp: false,
                includes: [{
                    name: "string",
                    hash: "string",
                    "package": "string",
                }],
            },
            diskEncrypted: false,
            imei: {
                contains: "string",
                is: "string",
                isNot: "string",
            },
            jailbroken: false,
            lastCheckinTime: {
                notWithin: {
                    days: 0,
                },
                within: {
                    days: 0,
                },
            },
            model: {
                contains: "string",
                is: "string",
                isNot: "string",
            },
            passcodeSet: false,
            phoneNumber: {
                contains: "string",
                is: "string",
                isNot: "string",
            },
            tag: {
                contains: "string",
                is: "string",
                isNot: "string",
            },
        },
    },
    name: "string",
    networkInfo: {
        criteria: {
            network: {
                is: {
                    mobile: {
                        carrier: "string",
                    },
                    unknown: false,
                    wifi: {
                        ssid: "string",
                    },
                },
                isNot: {
                    ethernet: false,
                    mobile: {
                        carrier: "string",
                    },
                    unknown: false,
                    wifi: {
                        ssid: "string",
                    },
                },
            },
        },
    },
    patchManagement: {
        criteria: {
            isEnabled: "string",
            isInstalled: false,
            missingPatches: {
                check: "string",
                patches: ["string"],
                severity: {
                    greaterEqual: 0,
                    greaterThan: 0,
                    is: 0,
                    isNot: 0,
                    lessEqual: 0,
                    lessThan: 0,
                },
            },
        },
        excludeVendor: false,
        vendors: [{
            name: "string",
            products: ["string"],
        }],
    },
    snippet: "string",
});
type: scm:HipObject
properties:
    antiMalware:
        criteria:
            isInstalled: false
            lastScanTime:
                notAvailable: false
                notWithin:
                    days: 0
                    hours: 0
                within:
                    days: 0
                    hours: 0
            productVersion:
                contains: string
                greaterEqual: string
                greaterThan: string
                is: string
                isNot: string
                lessEqual: string
                lessThan: string
                notWithin:
                    versions: 0
                within:
                    versions: 0
            realTimeProtection: string
            virdefVersion:
                notWithin:
                    days: 0
                    versions: 0
                within:
                    days: 0
                    versions: 0
        excludeVendor: false
        vendors:
            - name: string
              products:
                - string
    certificate:
        criteria:
            certificateAttributes:
                - name: string
                  value: string
            certificateProfile: string
    customChecks:
        criteria:
            plists:
                - keys:
                    - name: string
                      negate: false
                      value: string
                  name: string
                  negate: false
            processLists:
                - name: string
                  running: false
            registryKeys:
                - defaultValueData: string
                  name: string
                  negate: false
                  registryValues:
                    - name: string
                      negate: false
                      valueData: string
    dataLossPrevention:
        criteria:
            isEnabled: string
            isInstalled: false
        excludeVendor: false
        vendors:
            - name: string
              products:
                - string
    description: string
    device: string
    diskBackup:
        criteria:
            isInstalled: false
            lastBackupTime:
                notAvailable: false
                notWithin:
                    days: 0
                    hours: 0
                within:
                    days: 0
                    hours: 0
        excludeVendor: false
        vendors:
            - name: string
              products:
                - string
    diskEncryption:
        criteria:
            encryptedLocations:
                - encryptionState:
                    is: string
                    isNot: string
                  name: string
            isInstalled: false
        excludeVendor: false
        vendors:
            - name: string
              products:
                - string
    firewall:
        criteria:
            isEnabled: string
            isInstalled: false
        excludeVendor: false
        vendors:
            - name: string
              products:
                - string
    folder: string
    hostInfo:
        criteria:
            clientVersion:
                contains: string
                is: string
                isNot: string
            domain:
                contains: string
                is: string
                isNot: string
            hostId:
                contains: string
                is: string
                isNot: string
            hostName:
                contains: string
                is: string
                isNot: string
            managed: false
            os:
                contains:
                    apple: string
                    google: string
                    linux: string
                    microsoft: string
                    other: string
            serialNumber:
                contains: string
                is: string
                isNot: string
    mobileDevice:
        criteria:
            applications:
                hasMalware:
                    "no": false
                    "yes":
                        excludes:
                            - hash: string
                              name: string
                              package: string
                hasUnmanagedApp: false
                includes:
                    - hash: string
                      name: string
                      package: string
            diskEncrypted: false
            imei:
                contains: string
                is: string
                isNot: string
            jailbroken: false
            lastCheckinTime:
                notWithin:
                    days: 0
                within:
                    days: 0
            model:
                contains: string
                is: string
                isNot: string
            passcodeSet: false
            phoneNumber:
                contains: string
                is: string
                isNot: string
            tag:
                contains: string
                is: string
                isNot: string
    name: string
    networkInfo:
        criteria:
            network:
                is:
                    mobile:
                        carrier: string
                    unknown: false
                    wifi:
                        ssid: string
                isNot:
                    ethernet: false
                    mobile:
                        carrier: string
                    unknown: false
                    wifi:
                        ssid: string
    patchManagement:
        criteria:
            isEnabled: string
            isInstalled: false
            missingPatches:
                check: string
                patches:
                    - string
                severity:
                    greaterEqual: 0
                    greaterThan: 0
                    is: 0
                    isNot: 0
                    lessEqual: 0
                    lessThan: 0
        excludeVendor: false
        vendors:
            - name: string
              products:
                - string
    snippet: string
HipObject Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The HipObject resource accepts the following input properties:
- Anti
Malware HipObject Anti Malware  - The AntiMalware param.
 - Certificate
Hip
Object Certificate  - The Certificate param.
 - Custom
Checks HipObject Custom Checks  - The CustomChecks param.
 - Data
Loss HipPrevention Object Data Loss Prevention  - The DataLossPrevention param.
 - Description string
 - The Description param. String length must not exceed 255 characters.
 - Device string
 - The Device param.
 - Disk
Backup HipObject Disk Backup  - The DiskBackup param.
 - Disk
Encryption HipObject Disk Encryption  - The DiskEncryption param.
 - Firewall
Hip
Object Firewall  - The Firewall param.
 - Folder string
 - The Folder param.
 - Host
Info HipObject Host Info  - The HostInfo param.
 - Mobile
Device HipObject Mobile Device  - The MobileDevice param.
 - Name string
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - Network
Info HipObject Network Info  - The NetworkInfo param.
 - Patch
Management HipObject Patch Management  - The PatchManagement param.
 - Snippet string
 - The Snippet param.
 
- Anti
Malware HipObject Anti Malware Args  - The AntiMalware param.
 - Certificate
Hip
Object Certificate Args  - The Certificate param.
 - Custom
Checks HipObject Custom Checks Args  - The CustomChecks param.
 - Data
Loss HipPrevention Object Data Loss Prevention Args  - The DataLossPrevention param.
 - Description string
 - The Description param. String length must not exceed 255 characters.
 - Device string
 - The Device param.
 - Disk
Backup HipObject Disk Backup Args  - The DiskBackup param.
 - Disk
Encryption HipObject Disk Encryption Args  - The DiskEncryption param.
 - Firewall
Hip
Object Firewall Args  - The Firewall param.
 - Folder string
 - The Folder param.
 - Host
Info HipObject Host Info Args  - The HostInfo param.
 - Mobile
Device HipObject Mobile Device Args  - The MobileDevice param.
 - Name string
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - Network
Info HipObject Network Info Args  - The NetworkInfo param.
 - Patch
Management HipObject Patch Management Args  - The PatchManagement param.
 - Snippet string
 - The Snippet param.
 
- anti
Malware HipObject Anti Malware  - The AntiMalware param.
 - certificate
Hip
Object Certificate  - The Certificate param.
 - custom
Checks HipObject Custom Checks  - The CustomChecks param.
 - data
Loss HipPrevention Object Data Loss Prevention  - The DataLossPrevention param.
 - description String
 - The Description param. String length must not exceed 255 characters.
 - device String
 - The Device param.
 - disk
Backup HipObject Disk Backup  - The DiskBackup param.
 - disk
Encryption HipObject Disk Encryption  - The DiskEncryption param.
 - firewall
Hip
Object Firewall  - The Firewall param.
 - folder String
 - The Folder param.
 - host
Info HipObject Host Info  - The HostInfo param.
 - mobile
Device HipObject Mobile Device  - The MobileDevice param.
 - name String
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - network
Info HipObject Network Info  - The NetworkInfo param.
 - patch
Management HipObject Patch Management  - The PatchManagement param.
 - snippet String
 - The Snippet param.
 
- anti
Malware HipObject Anti Malware  - The AntiMalware param.
 - certificate
Hip
Object Certificate  - The Certificate param.
 - custom
Checks HipObject Custom Checks  - The CustomChecks param.
 - data
Loss HipPrevention Object Data Loss Prevention  - The DataLossPrevention param.
 - description string
 - The Description param. String length must not exceed 255 characters.
 - device string
 - The Device param.
 - disk
Backup HipObject Disk Backup  - The DiskBackup param.
 - disk
Encryption HipObject Disk Encryption  - The DiskEncryption param.
 - firewall
Hip
Object Firewall  - The Firewall param.
 - folder string
 - The Folder param.
 - host
Info HipObject Host Info  - The HostInfo param.
 - mobile
Device HipObject Mobile Device  - The MobileDevice param.
 - name string
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - network
Info HipObject Network Info  - The NetworkInfo param.
 - patch
Management HipObject Patch Management  - The PatchManagement param.
 - snippet string
 - The Snippet param.
 
- anti_
malware HipObject Anti Malware Args  - The AntiMalware param.
 - certificate
Hip
Object Certificate Args  - The Certificate param.
 - custom_
checks HipObject Custom Checks Args  - The CustomChecks param.
 - data_
loss_ Hipprevention Object Data Loss Prevention Args  - The DataLossPrevention param.
 - description str
 - The Description param. String length must not exceed 255 characters.
 - device str
 - The Device param.
 - disk_
backup HipObject Disk Backup Args  - The DiskBackup param.
 - disk_
encryption HipObject Disk Encryption Args  - The DiskEncryption param.
 - firewall
Hip
Object Firewall Args  - The Firewall param.
 - folder str
 - The Folder param.
 - host_
info HipObject Host Info Args  - The HostInfo param.
 - mobile_
device HipObject Mobile Device Args  - The MobileDevice param.
 - name str
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - network_
info HipObject Network Info Args  - The NetworkInfo param.
 - patch_
management HipObject Patch Management Args  - The PatchManagement param.
 - snippet str
 - The Snippet param.
 
- anti
Malware Property Map - The AntiMalware param.
 - certificate Property Map
 - The Certificate param.
 - custom
Checks Property Map - The CustomChecks param.
 - data
Loss Property MapPrevention  - The DataLossPrevention param.
 - description String
 - The Description param. String length must not exceed 255 characters.
 - device String
 - The Device param.
 - disk
Backup Property Map - The DiskBackup param.
 - disk
Encryption Property Map - The DiskEncryption param.
 - firewall Property Map
 - The Firewall param.
 - folder String
 - The Folder param.
 - host
Info Property Map - The HostInfo param.
 - mobile
Device Property Map - The MobileDevice param.
 - name String
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - network
Info Property Map - The NetworkInfo param.
 - patch
Management Property Map - The PatchManagement param.
 - snippet String
 - The Snippet param.
 
Outputs
All input properties are implicitly available as output properties. Additionally, the HipObject resource produces the following output properties:
Look up Existing HipObject Resource
Get an existing HipObject resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: HipObjectState, opts?: CustomResourceOptions): HipObject@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        anti_malware: Optional[HipObjectAntiMalwareArgs] = None,
        certificate: Optional[HipObjectCertificateArgs] = None,
        custom_checks: Optional[HipObjectCustomChecksArgs] = None,
        data_loss_prevention: Optional[HipObjectDataLossPreventionArgs] = None,
        description: Optional[str] = None,
        device: Optional[str] = None,
        disk_backup: Optional[HipObjectDiskBackupArgs] = None,
        disk_encryption: Optional[HipObjectDiskEncryptionArgs] = None,
        firewall: Optional[HipObjectFirewallArgs] = None,
        folder: Optional[str] = None,
        host_info: Optional[HipObjectHostInfoArgs] = None,
        mobile_device: Optional[HipObjectMobileDeviceArgs] = None,
        name: Optional[str] = None,
        network_info: Optional[HipObjectNetworkInfoArgs] = None,
        patch_management: Optional[HipObjectPatchManagementArgs] = None,
        snippet: Optional[str] = None,
        tfid: Optional[str] = None) -> HipObjectfunc GetHipObject(ctx *Context, name string, id IDInput, state *HipObjectState, opts ...ResourceOption) (*HipObject, error)public static HipObject Get(string name, Input<string> id, HipObjectState? state, CustomResourceOptions? opts = null)public static HipObject get(String name, Output<String> id, HipObjectState state, CustomResourceOptions options)resources:  _:    type: scm:HipObject    get:      id: ${id}- name
 - The unique name of the resulting resource.
 - id
 - The unique provider ID of the resource to lookup.
 - state
 - Any extra arguments used during the lookup.
 - opts
 - A bag of options that control this resource's behavior.
 
- resource_name
 - The unique name of the resulting resource.
 - id
 - The unique provider ID of the resource to lookup.
 
- name
 - The unique name of the resulting resource.
 - id
 - The unique provider ID of the resource to lookup.
 - state
 - Any extra arguments used during the lookup.
 - opts
 - A bag of options that control this resource's behavior.
 
- name
 - The unique name of the resulting resource.
 - id
 - The unique provider ID of the resource to lookup.
 - state
 - Any extra arguments used during the lookup.
 - opts
 - A bag of options that control this resource's behavior.
 
- name
 - The unique name of the resulting resource.
 - id
 - The unique provider ID of the resource to lookup.
 - state
 - Any extra arguments used during the lookup.
 - opts
 - A bag of options that control this resource's behavior.
 
- Anti
Malware HipObject Anti Malware  - The AntiMalware param.
 - Certificate
Hip
Object Certificate  - The Certificate param.
 - Custom
Checks HipObject Custom Checks  - The CustomChecks param.
 - Data
Loss HipPrevention Object Data Loss Prevention  - The DataLossPrevention param.
 - Description string
 - The Description param. String length must not exceed 255 characters.
 - Device string
 - The Device param.
 - Disk
Backup HipObject Disk Backup  - The DiskBackup param.
 - Disk
Encryption HipObject Disk Encryption  - The DiskEncryption param.
 - Firewall
Hip
Object Firewall  - The Firewall param.
 - Folder string
 - The Folder param.
 - Host
Info HipObject Host Info  - The HostInfo param.
 - Mobile
Device HipObject Mobile Device  - The MobileDevice param.
 - Name string
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - Network
Info HipObject Network Info  - The NetworkInfo param.
 - Patch
Management HipObject Patch Management  - The PatchManagement param.
 - Snippet string
 - The Snippet param.
 - Tfid string
 
- Anti
Malware HipObject Anti Malware Args  - The AntiMalware param.
 - Certificate
Hip
Object Certificate Args  - The Certificate param.
 - Custom
Checks HipObject Custom Checks Args  - The CustomChecks param.
 - Data
Loss HipPrevention Object Data Loss Prevention Args  - The DataLossPrevention param.
 - Description string
 - The Description param. String length must not exceed 255 characters.
 - Device string
 - The Device param.
 - Disk
Backup HipObject Disk Backup Args  - The DiskBackup param.
 - Disk
Encryption HipObject Disk Encryption Args  - The DiskEncryption param.
 - Firewall
Hip
Object Firewall Args  - The Firewall param.
 - Folder string
 - The Folder param.
 - Host
Info HipObject Host Info Args  - The HostInfo param.
 - Mobile
Device HipObject Mobile Device Args  - The MobileDevice param.
 - Name string
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - Network
Info HipObject Network Info Args  - The NetworkInfo param.
 - Patch
Management HipObject Patch Management Args  - The PatchManagement param.
 - Snippet string
 - The Snippet param.
 - Tfid string
 
- anti
Malware HipObject Anti Malware  - The AntiMalware param.
 - certificate
Hip
Object Certificate  - The Certificate param.
 - custom
Checks HipObject Custom Checks  - The CustomChecks param.
 - data
Loss HipPrevention Object Data Loss Prevention  - The DataLossPrevention param.
 - description String
 - The Description param. String length must not exceed 255 characters.
 - device String
 - The Device param.
 - disk
Backup HipObject Disk Backup  - The DiskBackup param.
 - disk
Encryption HipObject Disk Encryption  - The DiskEncryption param.
 - firewall
Hip
Object Firewall  - The Firewall param.
 - folder String
 - The Folder param.
 - host
Info HipObject Host Info  - The HostInfo param.
 - mobile
Device HipObject Mobile Device  - The MobileDevice param.
 - name String
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - network
Info HipObject Network Info  - The NetworkInfo param.
 - patch
Management HipObject Patch Management  - The PatchManagement param.
 - snippet String
 - The Snippet param.
 - tfid String
 
- anti
Malware HipObject Anti Malware  - The AntiMalware param.
 - certificate
Hip
Object Certificate  - The Certificate param.
 - custom
Checks HipObject Custom Checks  - The CustomChecks param.
 - data
Loss HipPrevention Object Data Loss Prevention  - The DataLossPrevention param.
 - description string
 - The Description param. String length must not exceed 255 characters.
 - device string
 - The Device param.
 - disk
Backup HipObject Disk Backup  - The DiskBackup param.
 - disk
Encryption HipObject Disk Encryption  - The DiskEncryption param.
 - firewall
Hip
Object Firewall  - The Firewall param.
 - folder string
 - The Folder param.
 - host
Info HipObject Host Info  - The HostInfo param.
 - mobile
Device HipObject Mobile Device  - The MobileDevice param.
 - name string
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - network
Info HipObject Network Info  - The NetworkInfo param.
 - patch
Management HipObject Patch Management  - The PatchManagement param.
 - snippet string
 - The Snippet param.
 - tfid string
 
- anti_
malware HipObject Anti Malware Args  - The AntiMalware param.
 - certificate
Hip
Object Certificate Args  - The Certificate param.
 - custom_
checks HipObject Custom Checks Args  - The CustomChecks param.
 - data_
loss_ Hipprevention Object Data Loss Prevention Args  - The DataLossPrevention param.
 - description str
 - The Description param. String length must not exceed 255 characters.
 - device str
 - The Device param.
 - disk_
backup HipObject Disk Backup Args  - The DiskBackup param.
 - disk_
encryption HipObject Disk Encryption Args  - The DiskEncryption param.
 - firewall
Hip
Object Firewall Args  - The Firewall param.
 - folder str
 - The Folder param.
 - host_
info HipObject Host Info Args  - The HostInfo param.
 - mobile_
device HipObject Mobile Device Args  - The MobileDevice param.
 - name str
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - network_
info HipObject Network Info Args  - The NetworkInfo param.
 - patch_
management HipObject Patch Management Args  - The PatchManagement param.
 - snippet str
 - The Snippet param.
 - tfid str
 
- anti
Malware Property Map - The AntiMalware param.
 - certificate Property Map
 - The Certificate param.
 - custom
Checks Property Map - The CustomChecks param.
 - data
Loss Property MapPrevention  - The DataLossPrevention param.
 - description String
 - The Description param. String length must not exceed 255 characters.
 - device String
 - The Device param.
 - disk
Backup Property Map - The DiskBackup param.
 - disk
Encryption Property Map - The DiskEncryption param.
 - firewall Property Map
 - The Firewall param.
 - folder String
 - The Folder param.
 - host
Info Property Map - The HostInfo param.
 - mobile
Device Property Map - The MobileDevice param.
 - name String
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - network
Info Property Map - The NetworkInfo param.
 - patch
Management Property Map - The PatchManagement param.
 - snippet String
 - The Snippet param.
 - tfid String
 
Supporting Types
HipObjectAntiMalware, HipObjectAntiMalwareArgs        
- Criteria
Hip
Object Anti Malware Criteria  - The Criteria param.
 - Exclude
Vendor bool - The ExcludeVendor param. Default: 
false. - Vendors
List<Hip
Object Anti Malware Vendor>  - Vendor name.
 
- Criteria
Hip
Object Anti Malware Criteria  - The Criteria param.
 - Exclude
Vendor bool - The ExcludeVendor param. Default: 
false. - Vendors
[]Hip
Object Anti Malware Vendor  - Vendor name.
 
- criteria
Hip
Object Anti Malware Criteria  - The Criteria param.
 - exclude
Vendor Boolean - The ExcludeVendor param. Default: 
false. - vendors
List<Hip
Object Anti Malware Vendor>  - Vendor name.
 
- criteria
Hip
Object Anti Malware Criteria  - The Criteria param.
 - exclude
Vendor boolean - The ExcludeVendor param. Default: 
false. - vendors
Hip
Object Anti Malware Vendor[]  - Vendor name.
 
- criteria
Hip
Object Anti Malware Criteria  - The Criteria param.
 - exclude_
vendor bool - The ExcludeVendor param. Default: 
false. - vendors
Sequence[Hip
Object Anti Malware Vendor]  - Vendor name.
 
- criteria Property Map
 - The Criteria param.
 - exclude
Vendor Boolean - The ExcludeVendor param. Default: 
false. - vendors List<Property Map>
 - Vendor name.
 
HipObjectAntiMalwareCriteria, HipObjectAntiMalwareCriteriaArgs          
- Is
Installed bool - Is Installed. Default: 
true. - Last
Scan HipTime Object Anti Malware Criteria Last Scan Time  - The LastScanTime param.
 - Product
Version HipObject Anti Malware Criteria Product Version  - The ProductVersion param.
 - Real
Time stringProtection  - real time protection. String must be one of these: 
"no","yes","not-available". - Virdef
Version HipObject Anti Malware Criteria Virdef Version  - The VirdefVersion param.
 
- Is
Installed bool - Is Installed. Default: 
true. - Last
Scan HipTime Object Anti Malware Criteria Last Scan Time  - The LastScanTime param.
 - Product
Version HipObject Anti Malware Criteria Product Version  - The ProductVersion param.
 - Real
Time stringProtection  - real time protection. String must be one of these: 
"no","yes","not-available". - Virdef
Version HipObject Anti Malware Criteria Virdef Version  - The VirdefVersion param.
 
- is
Installed Boolean - Is Installed. Default: 
true. - last
Scan HipTime Object Anti Malware Criteria Last Scan Time  - The LastScanTime param.
 - product
Version HipObject Anti Malware Criteria Product Version  - The ProductVersion param.
 - real
Time StringProtection  - real time protection. String must be one of these: 
"no","yes","not-available". - virdef
Version HipObject Anti Malware Criteria Virdef Version  - The VirdefVersion param.
 
- is
Installed boolean - Is Installed. Default: 
true. - last
Scan HipTime Object Anti Malware Criteria Last Scan Time  - The LastScanTime param.
 - product
Version HipObject Anti Malware Criteria Product Version  - The ProductVersion param.
 - real
Time stringProtection  - real time protection. String must be one of these: 
"no","yes","not-available". - virdef
Version HipObject Anti Malware Criteria Virdef Version  - The VirdefVersion param.
 
- is_
installed bool - Is Installed. Default: 
true. - last_
scan_ Hiptime Object Anti Malware Criteria Last Scan Time  - The LastScanTime param.
 - product_
version HipObject Anti Malware Criteria Product Version  - The ProductVersion param.
 - real_
time_ strprotection  - real time protection. String must be one of these: 
"no","yes","not-available". - virdef_
version HipObject Anti Malware Criteria Virdef Version  - The VirdefVersion param.
 
- is
Installed Boolean - Is Installed. Default: 
true. - last
Scan Property MapTime  - The LastScanTime param.
 - product
Version Property Map - The ProductVersion param.
 - real
Time StringProtection  - real time protection. String must be one of these: 
"no","yes","not-available". - virdef
Version Property Map - The VirdefVersion param.
 
HipObjectAntiMalwareCriteriaLastScanTime, HipObjectAntiMalwareCriteriaLastScanTimeArgs                
- Not
Available bool - The NotAvailable param. Ensure that only one of the following is specified: 
not_available,not_within,within - Not
Within HipObject Anti Malware Criteria Last Scan Time Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_available,not_within,within - Within
Hip
Object Anti Malware Criteria Last Scan Time Within  - The Within param. Ensure that only one of the following is specified: 
not_available,not_within,within 
- Not
Available bool - The NotAvailable param. Ensure that only one of the following is specified: 
not_available,not_within,within - Not
Within HipObject Anti Malware Criteria Last Scan Time Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_available,not_within,within - Within
Hip
Object Anti Malware Criteria Last Scan Time Within  - The Within param. Ensure that only one of the following is specified: 
not_available,not_within,within 
- not
Available Boolean - The NotAvailable param. Ensure that only one of the following is specified: 
not_available,not_within,within - not
Within HipObject Anti Malware Criteria Last Scan Time Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_available,not_within,within - within
Hip
Object Anti Malware Criteria Last Scan Time Within  - The Within param. Ensure that only one of the following is specified: 
not_available,not_within,within 
- not
Available boolean - The NotAvailable param. Ensure that only one of the following is specified: 
not_available,not_within,within - not
Within HipObject Anti Malware Criteria Last Scan Time Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_available,not_within,within - within
Hip
Object Anti Malware Criteria Last Scan Time Within  - The Within param. Ensure that only one of the following is specified: 
not_available,not_within,within 
- not_
available bool - The NotAvailable param. Ensure that only one of the following is specified: 
not_available,not_within,within - not_
within HipObject Anti Malware Criteria Last Scan Time Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_available,not_within,within - within
Hip
Object Anti Malware Criteria Last Scan Time Within  - The Within param. Ensure that only one of the following is specified: 
not_available,not_within,within 
- not
Available Boolean - The NotAvailable param. Ensure that only one of the following is specified: 
not_available,not_within,within - not
Within Property Map - The NotWithin param. Ensure that only one of the following is specified: 
not_available,not_within,within - within Property Map
 - The Within param. Ensure that only one of the following is specified: 
not_available,not_within,within 
HipObjectAntiMalwareCriteriaLastScanTimeNotWithin, HipObjectAntiMalwareCriteriaLastScanTimeNotWithinArgs                    
HipObjectAntiMalwareCriteriaLastScanTimeWithin, HipObjectAntiMalwareCriteriaLastScanTimeWithinArgs                  
HipObjectAntiMalwareCriteriaProductVersion, HipObjectAntiMalwareCriteriaProductVersionArgs              
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Greater
Equal string - The GreaterEqual param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Greater
Than string - The GreaterThan param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Less
Equal string - The LessEqual param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Less
Than string - The LessThan param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Not
Within HipObject Anti Malware Criteria Product Version Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Within
Hip
Object Anti Malware Criteria Product Version Within  - The Within param. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within 
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Greater
Equal string - The GreaterEqual param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Greater
Than string - The GreaterThan param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Less
Equal string - The LessEqual param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Less
Than string - The LessThan param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Not
Within HipObject Anti Malware Criteria Product Version Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - Within
Hip
Object Anti Malware Criteria Product Version Within  - The Within param. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - greater
Equal String - The GreaterEqual param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - greater
Than String - The GreaterThan param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - less
Equal String - The LessEqual param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - less
Than String - The LessThan param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - not
Within HipObject Anti Malware Criteria Product Version Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - within
Hip
Object Anti Malware Criteria Product Version Within  - The Within param. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within 
- contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - greater
Equal string - The GreaterEqual param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - greater
Than string - The GreaterThan param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - less
Equal string - The LessEqual param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - less
Than string - The LessThan param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - not
Within HipObject Anti Malware Criteria Product Version Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - within
Hip
Object Anti Malware Criteria Product Version Within  - The Within param. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within 
- contains str
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - greater_
equal str - The GreaterEqual param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - greater_
than str - The GreaterThan param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - is_ str
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - is_
not str - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - less_
equal str - The LessEqual param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - less_
than str - The LessThan param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - not_
within HipObject Anti Malware Criteria Product Version Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - within
Hip
Object Anti Malware Criteria Product Version Within  - The Within param. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - greater
Equal String - The GreaterEqual param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - greater
Than String - The GreaterThan param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - less
Equal String - The LessEqual param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - less
Than String - The LessThan param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - not
Within Property Map - The NotWithin param. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within - within Property Map
 - The Within param. Ensure that only one of the following is specified: 
contains,greater_equal,greater_than,is,is_not,less_equal,less_than,not_within,within 
HipObjectAntiMalwareCriteriaProductVersionNotWithin, HipObjectAntiMalwareCriteriaProductVersionNotWithinArgs                  
- Versions int
 - versions range. Value must be between 1 and 65535. Default: 
1. 
- Versions int
 - versions range. Value must be between 1 and 65535. Default: 
1. 
- versions Integer
 - versions range. Value must be between 1 and 65535. Default: 
1. 
- versions number
 - versions range. Value must be between 1 and 65535. Default: 
1. 
- versions int
 - versions range. Value must be between 1 and 65535. Default: 
1. 
- versions Number
 - versions range. Value must be between 1 and 65535. Default: 
1. 
HipObjectAntiMalwareCriteriaProductVersionWithin, HipObjectAntiMalwareCriteriaProductVersionWithinArgs                
- Versions int
 - versions range. Value must be between 1 and 65535. Default: 
1. 
- Versions int
 - versions range. Value must be between 1 and 65535. Default: 
1. 
- versions Integer
 - versions range. Value must be between 1 and 65535. Default: 
1. 
- versions number
 - versions range. Value must be between 1 and 65535. Default: 
1. 
- versions int
 - versions range. Value must be between 1 and 65535. Default: 
1. 
- versions Number
 - versions range. Value must be between 1 and 65535. Default: 
1. 
HipObjectAntiMalwareCriteriaVirdefVersion, HipObjectAntiMalwareCriteriaVirdefVersionArgs              
- Not
Within HipObject Anti Malware Criteria Virdef Version Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_within,within - Within
Hip
Object Anti Malware Criteria Virdef Version Within  - The Within param. Ensure that only one of the following is specified: 
not_within,within 
- Not
Within HipObject Anti Malware Criteria Virdef Version Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_within,within - Within
Hip
Object Anti Malware Criteria Virdef Version Within  - The Within param. Ensure that only one of the following is specified: 
not_within,within 
- not
Within HipObject Anti Malware Criteria Virdef Version Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_within,within - within
Hip
Object Anti Malware Criteria Virdef Version Within  - The Within param. Ensure that only one of the following is specified: 
not_within,within 
- not
Within HipObject Anti Malware Criteria Virdef Version Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_within,within - within
Hip
Object Anti Malware Criteria Virdef Version Within  - The Within param. Ensure that only one of the following is specified: 
not_within,within 
- not_
within HipObject Anti Malware Criteria Virdef Version Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_within,within - within
Hip
Object Anti Malware Criteria Virdef Version Within  - The Within param. Ensure that only one of the following is specified: 
not_within,within 
- not
Within Property Map - The NotWithin param. Ensure that only one of the following is specified: 
not_within,within - within Property Map
 - The Within param. Ensure that only one of the following is specified: 
not_within,within 
HipObjectAntiMalwareCriteriaVirdefVersionNotWithin, HipObjectAntiMalwareCriteriaVirdefVersionNotWithinArgs                  
HipObjectAntiMalwareCriteriaVirdefVersionWithin, HipObjectAntiMalwareCriteriaVirdefVersionWithinArgs                
HipObjectAntiMalwareVendor, HipObjectAntiMalwareVendorArgs          
HipObjectCertificate, HipObjectCertificateArgs      
- Criteria
Hip
Object Certificate Criteria  - The Criteria param.
 
- Criteria
Hip
Object Certificate Criteria  - The Criteria param.
 
- criteria
Hip
Object Certificate Criteria  - The Criteria param.
 
- criteria
Hip
Object Certificate Criteria  - The Criteria param.
 
- criteria
Hip
Object Certificate Criteria  - The Criteria param.
 
- criteria Property Map
 - The Criteria param.
 
HipObjectCertificateCriteria, HipObjectCertificateCriteriaArgs        
- Certificate
Attributes List<HipObject Certificate Criteria Certificate Attribute>  - The CertificateAttributes param.
 - Certificate
Profile string - Profile for authenticating client certificates.
 
- Certificate
Attributes []HipObject Certificate Criteria Certificate Attribute  - The CertificateAttributes param.
 - Certificate
Profile string - Profile for authenticating client certificates.
 
- certificate
Attributes List<HipObject Certificate Criteria Certificate Attribute>  - The CertificateAttributes param.
 - certificate
Profile String - Profile for authenticating client certificates.
 
- certificate
Attributes HipObject Certificate Criteria Certificate Attribute[]  - The CertificateAttributes param.
 - certificate
Profile string - Profile for authenticating client certificates.
 
- certificate_
attributes Sequence[HipObject Certificate Criteria Certificate Attribute]  - The CertificateAttributes param.
 - certificate_
profile str - Profile for authenticating client certificates.
 
- certificate
Attributes List<Property Map> - The CertificateAttributes param.
 - certificate
Profile String - Profile for authenticating client certificates.
 
HipObjectCertificateCriteriaCertificateAttribute, HipObjectCertificateCriteriaCertificateAttributeArgs            
HipObjectCustomChecks, HipObjectCustomChecksArgs        
- Criteria
Hip
Object Custom Checks Criteria  - The Criteria param.
 
- Criteria
Hip
Object Custom Checks Criteria  - The Criteria param.
 
- criteria
Hip
Object Custom Checks Criteria  - The Criteria param.
 
- criteria
Hip
Object Custom Checks Criteria  - The Criteria param.
 
- criteria
Hip
Object Custom Checks Criteria  - The Criteria param.
 
- criteria Property Map
 - The Criteria param.
 
HipObjectCustomChecksCriteria, HipObjectCustomChecksCriteriaArgs          
- Plists
List<Hip
Object Custom Checks Criteria Plist>  - The Plist param.
 - Process
Lists List<HipObject Custom Checks Criteria Process List>  - The ProcessList param.
 - Registry
Keys List<HipObject Custom Checks Criteria Registry Key>  - The RegistryKeys param.
 
- Plists
[]Hip
Object Custom Checks Criteria Plist  - The Plist param.
 - Process
Lists []HipObject Custom Checks Criteria Process List  - The ProcessList param.
 - Registry
Keys []HipObject Custom Checks Criteria Registry Key  - The RegistryKeys param.
 
- plists
List<Hip
Object Custom Checks Criteria Plist>  - The Plist param.
 - process
Lists List<HipObject Custom Checks Criteria Process List>  - The ProcessList param.
 - registry
Keys List<HipObject Custom Checks Criteria Registry Key>  - The RegistryKeys param.
 
- plists
Hip
Object Custom Checks Criteria Plist[]  - The Plist param.
 - process
Lists HipObject Custom Checks Criteria Process List[]  - The ProcessList param.
 - registry
Keys HipObject Custom Checks Criteria Registry Key[]  - The RegistryKeys param.
 
- plists
Sequence[Hip
Object Custom Checks Criteria Plist]  - The Plist param.
 - process_
lists Sequence[HipObject Custom Checks Criteria Process List]  - The ProcessList param.
 - registry_
keys Sequence[HipObject Custom Checks Criteria Registry Key]  - The RegistryKeys param.
 
- plists List<Property Map>
 - The Plist param.
 - process
Lists List<Property Map> - The ProcessList param.
 - registry
Keys List<Property Map> - The RegistryKeys param.
 
HipObjectCustomChecksCriteriaPlist, HipObjectCustomChecksCriteriaPlistArgs            
- Name string
 - Preference list. String length must not exceed 1023 characters.
 - Keys
List<Hip
Object Custom Checks Criteria Plist Key>  - The Keys param.
 - Negate bool
 - Plist does not exist. Default: 
false. 
- Name string
 - Preference list. String length must not exceed 1023 characters.
 - Keys
[]Hip
Object Custom Checks Criteria Plist Key  - The Keys param.
 - Negate bool
 - Plist does not exist. Default: 
false. 
- name String
 - Preference list. String length must not exceed 1023 characters.
 - keys
List<Hip
Object Custom Checks Criteria Plist Key>  - The Keys param.
 - negate Boolean
 - Plist does not exist. Default: 
false. 
- name string
 - Preference list. String length must not exceed 1023 characters.
 - keys
Hip
Object Custom Checks Criteria Plist Key[]  - The Keys param.
 - negate boolean
 - Plist does not exist. Default: 
false. 
- name str
 - Preference list. String length must not exceed 1023 characters.
 - keys
Sequence[Hip
Object Custom Checks Criteria Plist Key]  - The Keys param.
 - negate bool
 - Plist does not exist. Default: 
false. 
- name String
 - Preference list. String length must not exceed 1023 characters.
 - keys List<Property Map>
 - The Keys param.
 - negate Boolean
 - Plist does not exist. Default: 
false. 
HipObjectCustomChecksCriteriaPlistKey, HipObjectCustomChecksCriteriaPlistKeyArgs              
HipObjectCustomChecksCriteriaProcessList, HipObjectCustomChecksCriteriaProcessListArgs              
HipObjectCustomChecksCriteriaRegistryKey, HipObjectCustomChecksCriteriaRegistryKeyArgs              
- Name string
 - Registry key. String length must not exceed 1023 characters.
 - Default
Value stringData  - Registry key default value data. String length must not exceed 1024 characters. String validation regex: 
.*. - Negate bool
 - Key does not exist or match specified value data. Default: 
false. - Registry
Values List<HipObject Custom Checks Criteria Registry Key Registry Value>  - The RegistryValues param.
 
- Name string
 - Registry key. String length must not exceed 1023 characters.
 - Default
Value stringData  - Registry key default value data. String length must not exceed 1024 characters. String validation regex: 
.*. - Negate bool
 - Key does not exist or match specified value data. Default: 
false. - Registry
Values []HipObject Custom Checks Criteria Registry Key Registry Value  - The RegistryValues param.
 
- name String
 - Registry key. String length must not exceed 1023 characters.
 - default
Value StringData  - Registry key default value data. String length must not exceed 1024 characters. String validation regex: 
.*. - negate Boolean
 - Key does not exist or match specified value data. Default: 
false. - registry
Values List<HipObject Custom Checks Criteria Registry Key Registry Value>  - The RegistryValues param.
 
- name string
 - Registry key. String length must not exceed 1023 characters.
 - default
Value stringData  - Registry key default value data. String length must not exceed 1024 characters. String validation regex: 
.*. - negate boolean
 - Key does not exist or match specified value data. Default: 
false. - registry
Values HipObject Custom Checks Criteria Registry Key Registry Value[]  - The RegistryValues param.
 
- name str
 - Registry key. String length must not exceed 1023 characters.
 - default_
value_ strdata  - Registry key default value data. String length must not exceed 1024 characters. String validation regex: 
.*. - negate bool
 - Key does not exist or match specified value data. Default: 
false. - registry_
values Sequence[HipObject Custom Checks Criteria Registry Key Registry Value]  - The RegistryValues param.
 
- name String
 - Registry key. String length must not exceed 1023 characters.
 - default
Value StringData  - Registry key default value data. String length must not exceed 1024 characters. String validation regex: 
.*. - negate Boolean
 - Key does not exist or match specified value data. Default: 
false. - registry
Values List<Property Map> - The RegistryValues param.
 
HipObjectCustomChecksCriteriaRegistryKeyRegistryValue, HipObjectCustomChecksCriteriaRegistryKeyRegistryValueArgs                  
- name str
 - Registry value name. String length must not exceed 1023 characters.
 - negate bool
 - Value does not exist or match specified value data. Default: 
false. - value_
data str - Registry value data. String length must not exceed 1024 characters. String validation regex: 
.*. 
HipObjectDataLossPrevention, HipObjectDataLossPreventionArgs          
- Criteria
Hip
Object Data Loss Prevention Criteria  - The Criteria param.
 - Exclude
Vendor bool - The ExcludeVendor param. Default: 
false. - Vendors
List<Hip
Object Data Loss Prevention Vendor>  - Vendor name.
 
- Criteria
Hip
Object Data Loss Prevention Criteria  - The Criteria param.
 - Exclude
Vendor bool - The ExcludeVendor param. Default: 
false. - Vendors
[]Hip
Object Data Loss Prevention Vendor  - Vendor name.
 
- criteria
Hip
Object Data Loss Prevention Criteria  - The Criteria param.
 - exclude
Vendor Boolean - The ExcludeVendor param. Default: 
false. - vendors
List<Hip
Object Data Loss Prevention Vendor>  - Vendor name.
 
- criteria
Hip
Object Data Loss Prevention Criteria  - The Criteria param.
 - exclude
Vendor boolean - The ExcludeVendor param. Default: 
false. - vendors
Hip
Object Data Loss Prevention Vendor[]  - Vendor name.
 
- criteria
Hip
Object Data Loss Prevention Criteria  - The Criteria param.
 - exclude_
vendor bool - The ExcludeVendor param. Default: 
false. - vendors
Sequence[Hip
Object Data Loss Prevention Vendor]  - Vendor name.
 
- criteria Property Map
 - The Criteria param.
 - exclude
Vendor Boolean - The ExcludeVendor param. Default: 
false. - vendors List<Property Map>
 - Vendor name.
 
HipObjectDataLossPreventionCriteria, HipObjectDataLossPreventionCriteriaArgs            
- Is
Enabled string - is enabled. String must be one of these: 
"no","yes","not-available". - Is
Installed bool - Is Installed. Default: 
true. 
- Is
Enabled string - is enabled. String must be one of these: 
"no","yes","not-available". - Is
Installed bool - Is Installed. Default: 
true. 
- is
Enabled String - is enabled. String must be one of these: 
"no","yes","not-available". - is
Installed Boolean - Is Installed. Default: 
true. 
- is
Enabled string - is enabled. String must be one of these: 
"no","yes","not-available". - is
Installed boolean - Is Installed. Default: 
true. 
- is_
enabled str - is enabled. String must be one of these: 
"no","yes","not-available". - is_
installed bool - Is Installed. Default: 
true. 
- is
Enabled String - is enabled. String must be one of these: 
"no","yes","not-available". - is
Installed Boolean - Is Installed. Default: 
true. 
HipObjectDataLossPreventionVendor, HipObjectDataLossPreventionVendorArgs            
HipObjectDiskBackup, HipObjectDiskBackupArgs        
- Criteria
Hip
Object Disk Backup Criteria  - The Criteria param.
 - Exclude
Vendor bool - The ExcludeVendor param. Default: 
false. - Vendors
List<Hip
Object Disk Backup Vendor>  - Vendor name.
 
- Criteria
Hip
Object Disk Backup Criteria  - The Criteria param.
 - Exclude
Vendor bool - The ExcludeVendor param. Default: 
false. - Vendors
[]Hip
Object Disk Backup Vendor  - Vendor name.
 
- criteria
Hip
Object Disk Backup Criteria  - The Criteria param.
 - exclude
Vendor Boolean - The ExcludeVendor param. Default: 
false. - vendors
List<Hip
Object Disk Backup Vendor>  - Vendor name.
 
- criteria
Hip
Object Disk Backup Criteria  - The Criteria param.
 - exclude
Vendor boolean - The ExcludeVendor param. Default: 
false. - vendors
Hip
Object Disk Backup Vendor[]  - Vendor name.
 
- criteria
Hip
Object Disk Backup Criteria  - The Criteria param.
 - exclude_
vendor bool - The ExcludeVendor param. Default: 
false. - vendors
Sequence[Hip
Object Disk Backup Vendor]  - Vendor name.
 
- criteria Property Map
 - The Criteria param.
 - exclude
Vendor Boolean - The ExcludeVendor param. Default: 
false. - vendors List<Property Map>
 - Vendor name.
 
HipObjectDiskBackupCriteria, HipObjectDiskBackupCriteriaArgs          
- Is
Installed bool - Is Installed. Default: 
true. - Last
Backup HipTime Object Disk Backup Criteria Last Backup Time  - The LastBackupTime param.
 
- Is
Installed bool - Is Installed. Default: 
true. - Last
Backup HipTime Object Disk Backup Criteria Last Backup Time  - The LastBackupTime param.
 
- is
Installed Boolean - Is Installed. Default: 
true. - last
Backup HipTime Object Disk Backup Criteria Last Backup Time  - The LastBackupTime param.
 
- is
Installed boolean - Is Installed. Default: 
true. - last
Backup HipTime Object Disk Backup Criteria Last Backup Time  - The LastBackupTime param.
 
- is_
installed bool - Is Installed. Default: 
true. - last_
backup_ Hiptime Object Disk Backup Criteria Last Backup Time  - The LastBackupTime param.
 
- is
Installed Boolean - Is Installed. Default: 
true. - last
Backup Property MapTime  - The LastBackupTime param.
 
HipObjectDiskBackupCriteriaLastBackupTime, HipObjectDiskBackupCriteriaLastBackupTimeArgs                
- Not
Available bool - The NotAvailable param. Ensure that only one of the following is specified: 
not_available,not_within,within - Not
Within HipObject Disk Backup Criteria Last Backup Time Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_available,not_within,within - Within
Hip
Object Disk Backup Criteria Last Backup Time Within  - The Within param. Ensure that only one of the following is specified: 
not_available,not_within,within 
- Not
Available bool - The NotAvailable param. Ensure that only one of the following is specified: 
not_available,not_within,within - Not
Within HipObject Disk Backup Criteria Last Backup Time Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_available,not_within,within - Within
Hip
Object Disk Backup Criteria Last Backup Time Within  - The Within param. Ensure that only one of the following is specified: 
not_available,not_within,within 
- not
Available Boolean - The NotAvailable param. Ensure that only one of the following is specified: 
not_available,not_within,within - not
Within HipObject Disk Backup Criteria Last Backup Time Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_available,not_within,within - within
Hip
Object Disk Backup Criteria Last Backup Time Within  - The Within param. Ensure that only one of the following is specified: 
not_available,not_within,within 
- not
Available boolean - The NotAvailable param. Ensure that only one of the following is specified: 
not_available,not_within,within - not
Within HipObject Disk Backup Criteria Last Backup Time Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_available,not_within,within - within
Hip
Object Disk Backup Criteria Last Backup Time Within  - The Within param. Ensure that only one of the following is specified: 
not_available,not_within,within 
- not_
available bool - The NotAvailable param. Ensure that only one of the following is specified: 
not_available,not_within,within - not_
within HipObject Disk Backup Criteria Last Backup Time Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_available,not_within,within - within
Hip
Object Disk Backup Criteria Last Backup Time Within  - The Within param. Ensure that only one of the following is specified: 
not_available,not_within,within 
- not
Available Boolean - The NotAvailable param. Ensure that only one of the following is specified: 
not_available,not_within,within - not
Within Property Map - The NotWithin param. Ensure that only one of the following is specified: 
not_available,not_within,within - within Property Map
 - The Within param. Ensure that only one of the following is specified: 
not_available,not_within,within 
HipObjectDiskBackupCriteriaLastBackupTimeNotWithin, HipObjectDiskBackupCriteriaLastBackupTimeNotWithinArgs                    
HipObjectDiskBackupCriteriaLastBackupTimeWithin, HipObjectDiskBackupCriteriaLastBackupTimeWithinArgs                  
HipObjectDiskBackupVendor, HipObjectDiskBackupVendorArgs          
HipObjectDiskEncryption, HipObjectDiskEncryptionArgs        
- Criteria
Hip
Object Disk Encryption Criteria  - Encryption locations.
 - Exclude
Vendor bool - The ExcludeVendor param. Default: 
false. - Vendors
List<Hip
Object Disk Encryption Vendor>  - Vendor name.
 
- Criteria
Hip
Object Disk Encryption Criteria  - Encryption locations.
 - Exclude
Vendor bool - The ExcludeVendor param. Default: 
false. - Vendors
[]Hip
Object Disk Encryption Vendor  - Vendor name.
 
- criteria
Hip
Object Disk Encryption Criteria  - Encryption locations.
 - exclude
Vendor Boolean - The ExcludeVendor param. Default: 
false. - vendors
List<Hip
Object Disk Encryption Vendor>  - Vendor name.
 
- criteria
Hip
Object Disk Encryption Criteria  - Encryption locations.
 - exclude
Vendor boolean - The ExcludeVendor param. Default: 
false. - vendors
Hip
Object Disk Encryption Vendor[]  - Vendor name.
 
- criteria
Hip
Object Disk Encryption Criteria  - Encryption locations.
 - exclude_
vendor bool - The ExcludeVendor param. Default: 
false. - vendors
Sequence[Hip
Object Disk Encryption Vendor]  - Vendor name.
 
- criteria Property Map
 - Encryption locations.
 - exclude
Vendor Boolean - The ExcludeVendor param. Default: 
false. - vendors List<Property Map>
 - Vendor name.
 
HipObjectDiskEncryptionCriteria, HipObjectDiskEncryptionCriteriaArgs          
- Encrypted
Locations List<HipObject Disk Encryption Criteria Encrypted Location>  - The EncryptedLocations param.
 - Is
Installed bool - Is Installed. Default: 
true. 
- Encrypted
Locations []HipObject Disk Encryption Criteria Encrypted Location  - The EncryptedLocations param.
 - Is
Installed bool - Is Installed. Default: 
true. 
- encrypted
Locations List<HipObject Disk Encryption Criteria Encrypted Location>  - The EncryptedLocations param.
 - is
Installed Boolean - Is Installed. Default: 
true. 
- encrypted
Locations HipObject Disk Encryption Criteria Encrypted Location[]  - The EncryptedLocations param.
 - is
Installed boolean - Is Installed. Default: 
true. 
- encrypted_
locations Sequence[HipObject Disk Encryption Criteria Encrypted Location]  - The EncryptedLocations param.
 - is_
installed bool - Is Installed. Default: 
true. 
- encrypted
Locations List<Property Map> - The EncryptedLocations param.
 - is
Installed Boolean - Is Installed. Default: 
true. 
HipObjectDiskEncryptionCriteriaEncryptedLocation, HipObjectDiskEncryptionCriteriaEncryptedLocationArgs              
- Name string
 - Encryption location. String length must not exceed 1023 characters.
 - Encryption
State HipObject Disk Encryption Criteria Encrypted Location Encryption State  - The EncryptionState param.
 
- Name string
 - Encryption location. String length must not exceed 1023 characters.
 - Encryption
State HipObject Disk Encryption Criteria Encrypted Location Encryption State  - The EncryptionState param.
 
- name String
 - Encryption location. String length must not exceed 1023 characters.
 - encryption
State HipObject Disk Encryption Criteria Encrypted Location Encryption State  - The EncryptionState param.
 
- name string
 - Encryption location. String length must not exceed 1023 characters.
 - encryption
State HipObject Disk Encryption Criteria Encrypted Location Encryption State  - The EncryptionState param.
 
- name str
 - Encryption location. String length must not exceed 1023 characters.
 - encryption_
state HipObject Disk Encryption Criteria Encrypted Location Encryption State  - The EncryptionState param.
 
- name String
 - Encryption location. String length must not exceed 1023 characters.
 - encryption
State Property Map - The EncryptionState param.
 
HipObjectDiskEncryptionCriteriaEncryptedLocationEncryptionState, HipObjectDiskEncryptionCriteriaEncryptedLocationEncryptionStateArgs                  
- Is string
 - The Is param. String must be one of these: 
"encrypted","unencrypted","partial","unknown". Ensure that only one of the following is specified:is,is_not - Is
Not string - The IsNot param. String must be one of these: 
"encrypted","unencrypted","partial","unknown". Ensure that only one of the following is specified:is,is_not 
- Is string
 - The Is param. String must be one of these: 
"encrypted","unencrypted","partial","unknown". Ensure that only one of the following is specified:is,is_not - Is
Not string - The IsNot param. String must be one of these: 
"encrypted","unencrypted","partial","unknown". Ensure that only one of the following is specified:is,is_not 
- is String
 - The Is param. String must be one of these: 
"encrypted","unencrypted","partial","unknown". Ensure that only one of the following is specified:is,is_not - is
Not String - The IsNot param. String must be one of these: 
"encrypted","unencrypted","partial","unknown". Ensure that only one of the following is specified:is,is_not 
- is string
 - The Is param. String must be one of these: 
"encrypted","unencrypted","partial","unknown". Ensure that only one of the following is specified:is,is_not - is
Not string - The IsNot param. String must be one of these: 
"encrypted","unencrypted","partial","unknown". Ensure that only one of the following is specified:is,is_not 
- is_ str
 - The Is param. String must be one of these: 
"encrypted","unencrypted","partial","unknown". Ensure that only one of the following is specified:is,is_not - is_
not str - The IsNot param. String must be one of these: 
"encrypted","unencrypted","partial","unknown". Ensure that only one of the following is specified:is,is_not 
- is String
 - The Is param. String must be one of these: 
"encrypted","unencrypted","partial","unknown". Ensure that only one of the following is specified:is,is_not - is
Not String - The IsNot param. String must be one of these: 
"encrypted","unencrypted","partial","unknown". Ensure that only one of the following is specified:is,is_not 
HipObjectDiskEncryptionVendor, HipObjectDiskEncryptionVendorArgs          
HipObjectFirewall, HipObjectFirewallArgs      
- Criteria
Hip
Object Firewall Criteria  - The Criteria param.
 - Exclude
Vendor bool - The ExcludeVendor param. Default: 
false. - Vendors
List<Hip
Object Firewall Vendor>  - Vendor name.
 
- Criteria
Hip
Object Firewall Criteria  - The Criteria param.
 - Exclude
Vendor bool - The ExcludeVendor param. Default: 
false. - Vendors
[]Hip
Object Firewall Vendor  - Vendor name.
 
- criteria
Hip
Object Firewall Criteria  - The Criteria param.
 - exclude
Vendor Boolean - The ExcludeVendor param. Default: 
false. - vendors
List<Hip
Object Firewall Vendor>  - Vendor name.
 
- criteria
Hip
Object Firewall Criteria  - The Criteria param.
 - exclude
Vendor boolean - The ExcludeVendor param. Default: 
false. - vendors
Hip
Object Firewall Vendor[]  - Vendor name.
 
- criteria
Hip
Object Firewall Criteria  - The Criteria param.
 - exclude_
vendor bool - The ExcludeVendor param. Default: 
false. - vendors
Sequence[Hip
Object Firewall Vendor]  - Vendor name.
 
- criteria Property Map
 - The Criteria param.
 - exclude
Vendor Boolean - The ExcludeVendor param. Default: 
false. - vendors List<Property Map>
 - Vendor name.
 
HipObjectFirewallCriteria, HipObjectFirewallCriteriaArgs        
- Is
Enabled string - is enabled. String must be one of these: 
"no","yes","not-available". - Is
Installed bool - Is Installed. Default: 
true. 
- Is
Enabled string - is enabled. String must be one of these: 
"no","yes","not-available". - Is
Installed bool - Is Installed. Default: 
true. 
- is
Enabled String - is enabled. String must be one of these: 
"no","yes","not-available". - is
Installed Boolean - Is Installed. Default: 
true. 
- is
Enabled string - is enabled. String must be one of these: 
"no","yes","not-available". - is
Installed boolean - Is Installed. Default: 
true. 
- is_
enabled str - is enabled. String must be one of these: 
"no","yes","not-available". - is_
installed bool - Is Installed. Default: 
true. 
- is
Enabled String - is enabled. String must be one of these: 
"no","yes","not-available". - is
Installed Boolean - Is Installed. Default: 
true. 
HipObjectFirewallVendor, HipObjectFirewallVendorArgs        
HipObjectHostInfo, HipObjectHostInfoArgs        
- Criteria
Hip
Object Host Info Criteria  - The Criteria param.
 
- Criteria
Hip
Object Host Info Criteria  - The Criteria param.
 
- criteria
Hip
Object Host Info Criteria  - The Criteria param.
 
- criteria
Hip
Object Host Info Criteria  - The Criteria param.
 
- criteria
Hip
Object Host Info Criteria  - The Criteria param.
 
- criteria Property Map
 - The Criteria param.
 
HipObjectHostInfoCriteria, HipObjectHostInfoCriteriaArgs          
- Client
Version HipObject Host Info Criteria Client Version  - The ClientVersion param.
 - Domain
Hip
Object Host Info Criteria Domain  - The Domain param.
 - Host
Id HipObject Host Info Criteria Host Id  - The HostId param.
 - Host
Name HipObject Host Info Criteria Host Name  - The HostName param.
 - Managed bool
 - If device is managed.
 - Os
Hip
Object Host Info Criteria Os  - The Os param.
 - Serial
Number HipObject Host Info Criteria Serial Number  - The SerialNumber param.
 
- Client
Version HipObject Host Info Criteria Client Version  - The ClientVersion param.
 - Domain
Hip
Object Host Info Criteria Domain  - The Domain param.
 - Host
Id HipObject Host Info Criteria Host Id  - The HostId param.
 - Host
Name HipObject Host Info Criteria Host Name  - The HostName param.
 - Managed bool
 - If device is managed.
 - Os
Hip
Object Host Info Criteria Os  - The Os param.
 - Serial
Number HipObject Host Info Criteria Serial Number  - The SerialNumber param.
 
- client
Version HipObject Host Info Criteria Client Version  - The ClientVersion param.
 - domain
Hip
Object Host Info Criteria Domain  - The Domain param.
 - host
Id HipObject Host Info Criteria Host Id  - The HostId param.
 - host
Name HipObject Host Info Criteria Host Name  - The HostName param.
 - managed Boolean
 - If device is managed.
 - os
Hip
Object Host Info Criteria Os  - The Os param.
 - serial
Number HipObject Host Info Criteria Serial Number  - The SerialNumber param.
 
- client
Version HipObject Host Info Criteria Client Version  - The ClientVersion param.
 - domain
Hip
Object Host Info Criteria Domain  - The Domain param.
 - host
Id HipObject Host Info Criteria Host Id  - The HostId param.
 - host
Name HipObject Host Info Criteria Host Name  - The HostName param.
 - managed boolean
 - If device is managed.
 - os
Hip
Object Host Info Criteria Os  - The Os param.
 - serial
Number HipObject Host Info Criteria Serial Number  - The SerialNumber param.
 
- client_
version HipObject Host Info Criteria Client Version  - The ClientVersion param.
 - domain
Hip
Object Host Info Criteria Domain  - The Domain param.
 - host_
id HipObject Host Info Criteria Host Id  - The HostId param.
 - host_
name HipObject Host Info Criteria Host Name  - The HostName param.
 - managed bool
 - If device is managed.
 - os
Hip
Object Host Info Criteria Os  - The Os param.
 - serial_
number HipObject Host Info Criteria Serial Number  - The SerialNumber param.
 
- client
Version Property Map - The ClientVersion param.
 - domain Property Map
 - The Domain param.
 - host
Id Property Map - The HostId param.
 - host
Name Property Map - The HostName param.
 - managed Boolean
 - If device is managed.
 - os Property Map
 - The Os param.
 - serial
Number Property Map - The SerialNumber param.
 
HipObjectHostInfoCriteriaClientVersion, HipObjectHostInfoCriteriaClientVersionArgs              
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains str
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_ str
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_
not str - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
HipObjectHostInfoCriteriaDomain, HipObjectHostInfoCriteriaDomainArgs            
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains str
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_ str
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_
not str - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
HipObjectHostInfoCriteriaHostId, HipObjectHostInfoCriteriaHostIdArgs              
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains str
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_ str
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_
not str - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
HipObjectHostInfoCriteriaHostName, HipObjectHostInfoCriteriaHostNameArgs              
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains str
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_ str
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_
not str - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
HipObjectHostInfoCriteriaOs, HipObjectHostInfoCriteriaOsArgs            
- Contains
Hip
Object Host Info Criteria Os Contains  - The Contains param. Ensure that only one of the following is specified: 
contains 
- Contains
Hip
Object Host Info Criteria Os Contains  - The Contains param. Ensure that only one of the following is specified: 
contains 
- contains
Hip
Object Host Info Criteria Os Contains  - The Contains param. Ensure that only one of the following is specified: 
contains 
- contains
Hip
Object Host Info Criteria Os Contains  - The Contains param. Ensure that only one of the following is specified: 
contains 
- contains
Hip
Object Host Info Criteria Os Contains  - The Contains param. Ensure that only one of the following is specified: 
contains 
- contains Property Map
 - The Contains param. Ensure that only one of the following is specified: 
contains 
HipObjectHostInfoCriteriaOsContains, HipObjectHostInfoCriteriaOsContainsArgs              
- Apple string
 - Apple vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - Google string
 - Google vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - Linux string
 - Linux vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - Microsoft string
 - Microsoft vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - Other string
 - Other vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other 
- Apple string
 - Apple vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - Google string
 - Google vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - Linux string
 - Linux vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - Microsoft string
 - Microsoft vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - Other string
 - Other vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other 
- apple String
 - Apple vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - google String
 - Google vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - linux String
 - Linux vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - microsoft String
 - Microsoft vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - other String
 - Other vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other 
- apple string
 - Apple vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - google string
 - Google vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - linux string
 - Linux vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - microsoft string
 - Microsoft vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - other string
 - Other vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other 
- apple str
 - Apple vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - google str
 - Google vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - linux str
 - Linux vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - microsoft str
 - Microsoft vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - other str
 - Other vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other 
- apple String
 - Apple vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - google String
 - Google vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - linux String
 - Linux vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - microsoft String
 - Microsoft vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other - other String
 - Other vendor. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
Apple,Google,Linux,Microsoft,Other 
HipObjectHostInfoCriteriaSerialNumber, HipObjectHostInfoCriteriaSerialNumberArgs              
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains str
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_ str
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_
not str - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
HipObjectMobileDevice, HipObjectMobileDeviceArgs        
- Criteria
Hip
Object Mobile Device Criteria  - The Criteria param.
 
- Criteria
Hip
Object Mobile Device Criteria  - The Criteria param.
 
- criteria
Hip
Object Mobile Device Criteria  - The Criteria param.
 
- criteria
Hip
Object Mobile Device Criteria  - The Criteria param.
 
- criteria
Hip
Object Mobile Device Criteria  - The Criteria param.
 
- criteria Property Map
 - The Criteria param.
 
HipObjectMobileDeviceCriteria, HipObjectMobileDeviceCriteriaArgs          
- Applications
Hip
Object Mobile Device Criteria Applications  - The Applications param.
 - Disk
Encrypted bool - If device's disk is encrypted.
 - Imei
Hip
Object Mobile Device Criteria Imei  - The Imei param.
 - Jailbroken bool
 - If device is by rooted/jailbroken.
 - Last
Checkin HipTime Object Mobile Device Criteria Last Checkin Time  - The LastCheckinTime param.
 - Model
Hip
Object Mobile Device Criteria Model  - The Model param.
 - Passcode
Set bool - If device's passcode is present.
 - Phone
Number HipObject Mobile Device Criteria Phone Number  - The PhoneNumber param.
 - Tag
Hip
Object Mobile Device Criteria Tag  - The Tag param.
 
- Applications
Hip
Object Mobile Device Criteria Applications  - The Applications param.
 - Disk
Encrypted bool - If device's disk is encrypted.
 - Imei
Hip
Object Mobile Device Criteria Imei  - The Imei param.
 - Jailbroken bool
 - If device is by rooted/jailbroken.
 - Last
Checkin HipTime Object Mobile Device Criteria Last Checkin Time  - The LastCheckinTime param.
 - Model
Hip
Object Mobile Device Criteria Model  - The Model param.
 - Passcode
Set bool - If device's passcode is present.
 - Phone
Number HipObject Mobile Device Criteria Phone Number  - The PhoneNumber param.
 - Tag
Hip
Object Mobile Device Criteria Tag  - The Tag param.
 
- applications
Hip
Object Mobile Device Criteria Applications  - The Applications param.
 - disk
Encrypted Boolean - If device's disk is encrypted.
 - imei
Hip
Object Mobile Device Criteria Imei  - The Imei param.
 - jailbroken Boolean
 - If device is by rooted/jailbroken.
 - last
Checkin HipTime Object Mobile Device Criteria Last Checkin Time  - The LastCheckinTime param.
 - model
Hip
Object Mobile Device Criteria Model  - The Model param.
 - passcode
Set Boolean - If device's passcode is present.
 - phone
Number HipObject Mobile Device Criteria Phone Number  - The PhoneNumber param.
 - tag
Hip
Object Mobile Device Criteria Tag  - The Tag param.
 
- applications
Hip
Object Mobile Device Criteria Applications  - The Applications param.
 - disk
Encrypted boolean - If device's disk is encrypted.
 - imei
Hip
Object Mobile Device Criteria Imei  - The Imei param.
 - jailbroken boolean
 - If device is by rooted/jailbroken.
 - last
Checkin HipTime Object Mobile Device Criteria Last Checkin Time  - The LastCheckinTime param.
 - model
Hip
Object Mobile Device Criteria Model  - The Model param.
 - passcode
Set boolean - If device's passcode is present.
 - phone
Number HipObject Mobile Device Criteria Phone Number  - The PhoneNumber param.
 - tag
Hip
Object Mobile Device Criteria Tag  - The Tag param.
 
- applications
Hip
Object Mobile Device Criteria Applications  - The Applications param.
 - disk_
encrypted bool - If device's disk is encrypted.
 - imei
Hip
Object Mobile Device Criteria Imei  - The Imei param.
 - jailbroken bool
 - If device is by rooted/jailbroken.
 - last_
checkin_ Hiptime Object Mobile Device Criteria Last Checkin Time  - The LastCheckinTime param.
 - model
Hip
Object Mobile Device Criteria Model  - The Model param.
 - passcode_
set bool - If device's passcode is present.
 - phone_
number HipObject Mobile Device Criteria Phone Number  - The PhoneNumber param.
 - tag
Hip
Object Mobile Device Criteria Tag  - The Tag param.
 
- applications Property Map
 - The Applications param.
 - disk
Encrypted Boolean - If device's disk is encrypted.
 - imei Property Map
 - The Imei param.
 - jailbroken Boolean
 - If device is by rooted/jailbroken.
 - last
Checkin Property MapTime  - The LastCheckinTime param.
 - model Property Map
 - The Model param.
 - passcode
Set Boolean - If device's passcode is present.
 - phone
Number Property Map - The PhoneNumber param.
 - tag Property Map
 - The Tag param.
 
HipObjectMobileDeviceCriteriaApplications, HipObjectMobileDeviceCriteriaApplicationsArgs            
- Has
Malware HipObject Mobile Device Criteria Applications Has Malware  - The HasMalware param.
 - Has
Unmanaged boolApp  - Has apps that are not managed.
 - Includes
List<Hip
Object Mobile Device Criteria Applications Include>  - The Includes param.
 
- Has
Malware HipObject Mobile Device Criteria Applications Has Malware  - The HasMalware param.
 - Has
Unmanaged boolApp  - Has apps that are not managed.
 - Includes
[]Hip
Object Mobile Device Criteria Applications Include  - The Includes param.
 
- has
Malware HipObject Mobile Device Criteria Applications Has Malware  - The HasMalware param.
 - has
Unmanaged BooleanApp  - Has apps that are not managed.
 - includes
List<Hip
Object Mobile Device Criteria Applications Include>  - The Includes param.
 
- has
Malware HipObject Mobile Device Criteria Applications Has Malware  - The HasMalware param.
 - has
Unmanaged booleanApp  - Has apps that are not managed.
 - includes
Hip
Object Mobile Device Criteria Applications Include[]  - The Includes param.
 
- has_
malware HipObject Mobile Device Criteria Applications Has Malware  - The HasMalware param.
 - has_
unmanaged_ boolapp  - Has apps that are not managed.
 - includes
Sequence[Hip
Object Mobile Device Criteria Applications Include]  - The Includes param.
 
- has
Malware Property Map - The HasMalware param.
 - has
Unmanaged BooleanApp  - Has apps that are not managed.
 - includes List<Property Map>
 - The Includes param.
 
HipObjectMobileDeviceCriteriaApplicationsHasMalware, HipObjectMobileDeviceCriteriaApplicationsHasMalwareArgs                
- No bool
 - The No param. Ensure that only one of the following is specified: 
no,yes - Yes
Hip
Object Mobile Device Criteria Applications Has Malware Yes  - The Yes param. Ensure that only one of the following is specified: 
no,yes 
- No bool
 - The No param. Ensure that only one of the following is specified: 
no,yes - Yes
Hip
Object Mobile Device Criteria Applications Has Malware Yes  - The Yes param. Ensure that only one of the following is specified: 
no,yes 
- no Boolean
 - The No param. Ensure that only one of the following is specified: 
no,yes - yes
Hip
Object Mobile Device Criteria Applications Has Malware Yes  - The Yes param. Ensure that only one of the following is specified: 
no,yes 
- no boolean
 - The No param. Ensure that only one of the following is specified: 
no,yes - yes
Hip
Object Mobile Device Criteria Applications Has Malware Yes  - The Yes param. Ensure that only one of the following is specified: 
no,yes 
- no bool
 - The No param. Ensure that only one of the following is specified: 
no,yes - yes
Hip
Object Mobile Device Criteria Applications Has Malware Yes  - The Yes param. Ensure that only one of the following is specified: 
no,yes 
- no Boolean
 - The No param. Ensure that only one of the following is specified: 
no,yes - yes Property Map
 - The Yes param. Ensure that only one of the following is specified: 
no,yes 
HipObjectMobileDeviceCriteriaApplicationsHasMalwareYes, HipObjectMobileDeviceCriteriaApplicationsHasMalwareYesArgs                  
- Excludes
List<Hip
Object Mobile Device Criteria Applications Has Malware Yes Exclude>  - The Excludes param.
 
- Excludes
[]Hip
Object Mobile Device Criteria Applications Has Malware Yes Exclude  - The Excludes param.
 
- excludes
List<Hip
Object Mobile Device Criteria Applications Has Malware Yes Exclude>  - The Excludes param.
 
- excludes
Hip
Object Mobile Device Criteria Applications Has Malware Yes Exclude[]  - The Excludes param.
 
- excludes
Sequence[Hip
Object Mobile Device Criteria Applications Has Malware Yes Exclude]  - The Excludes param.
 
- excludes List<Property Map>
 - The Excludes param.
 
HipObjectMobileDeviceCriteriaApplicationsHasMalwareYesExclude, HipObjectMobileDeviceCriteriaApplicationsHasMalwareYesExcludeArgs                    
- Name string
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - Hash string
 - application hash. String length must not exceed 1024 characters. String validation regex: 
.*. - Package string
 - application package name. String length must not exceed 1024 characters. String validation regex: 
.*. 
- Name string
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - Hash string
 - application hash. String length must not exceed 1024 characters. String validation regex: 
.*. - Package string
 - application package name. String length must not exceed 1024 characters. String validation regex: 
.*. 
- name String
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - hash String
 - application hash. String length must not exceed 1024 characters. String validation regex: 
.*. - package_ String
 - application package name. String length must not exceed 1024 characters. String validation regex: 
.*. 
- name string
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - hash string
 - application hash. String length must not exceed 1024 characters. String validation regex: 
.*. - package string
 - application package name. String length must not exceed 1024 characters. String validation regex: 
.*. 
- name str
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - hash str
 - application hash. String length must not exceed 1024 characters. String validation regex: 
.*. - package str
 - application package name. String length must not exceed 1024 characters. String validation regex: 
.*. 
- name String
 - Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
 - hash String
 - application hash. String length must not exceed 1024 characters. String validation regex: 
.*. - package String
 - application package name. String length must not exceed 1024 characters. String validation regex: 
.*. 
HipObjectMobileDeviceCriteriaApplicationsInclude, HipObjectMobileDeviceCriteriaApplicationsIncludeArgs              
HipObjectMobileDeviceCriteriaImei, HipObjectMobileDeviceCriteriaImeiArgs            
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains str
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_ str
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_
not str - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
HipObjectMobileDeviceCriteriaLastCheckinTime, HipObjectMobileDeviceCriteriaLastCheckinTimeArgs                
- Not
Within HipObject Mobile Device Criteria Last Checkin Time Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_within,within - Within
Hip
Object Mobile Device Criteria Last Checkin Time Within  - The Within param. Ensure that only one of the following is specified: 
not_within,within 
- Not
Within HipObject Mobile Device Criteria Last Checkin Time Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_within,within - Within
Hip
Object Mobile Device Criteria Last Checkin Time Within  - The Within param. Ensure that only one of the following is specified: 
not_within,within 
- not
Within HipObject Mobile Device Criteria Last Checkin Time Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_within,within - within
Hip
Object Mobile Device Criteria Last Checkin Time Within  - The Within param. Ensure that only one of the following is specified: 
not_within,within 
- not
Within HipObject Mobile Device Criteria Last Checkin Time Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_within,within - within
Hip
Object Mobile Device Criteria Last Checkin Time Within  - The Within param. Ensure that only one of the following is specified: 
not_within,within 
- not_
within HipObject Mobile Device Criteria Last Checkin Time Not Within  - The NotWithin param. Ensure that only one of the following is specified: 
not_within,within - within
Hip
Object Mobile Device Criteria Last Checkin Time Within  - The Within param. Ensure that only one of the following is specified: 
not_within,within 
- not
Within Property Map - The NotWithin param. Ensure that only one of the following is specified: 
not_within,within - within Property Map
 - The Within param. Ensure that only one of the following is specified: 
not_within,within 
HipObjectMobileDeviceCriteriaLastCheckinTimeNotWithin, HipObjectMobileDeviceCriteriaLastCheckinTimeNotWithinArgs                    
- Days int
 - specify time in days. Value must be between 1 and 365. Default: 
30. 
- Days int
 - specify time in days. Value must be between 1 and 365. Default: 
30. 
- days Integer
 - specify time in days. Value must be between 1 and 365. Default: 
30. 
- days number
 - specify time in days. Value must be between 1 and 365. Default: 
30. 
- days int
 - specify time in days. Value must be between 1 and 365. Default: 
30. 
- days Number
 - specify time in days. Value must be between 1 and 365. Default: 
30. 
HipObjectMobileDeviceCriteriaLastCheckinTimeWithin, HipObjectMobileDeviceCriteriaLastCheckinTimeWithinArgs                  
- Days int
 - specify time in days. Value must be between 1 and 365. Default: 
30. 
- Days int
 - specify time in days. Value must be between 1 and 365. Default: 
30. 
- days Integer
 - specify time in days. Value must be between 1 and 365. Default: 
30. 
- days number
 - specify time in days. Value must be between 1 and 365. Default: 
30. 
- days int
 - specify time in days. Value must be between 1 and 365. Default: 
30. 
- days Number
 - specify time in days. Value must be between 1 and 365. Default: 
30. 
HipObjectMobileDeviceCriteriaModel, HipObjectMobileDeviceCriteriaModelArgs            
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains str
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_ str
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_
not str - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
HipObjectMobileDeviceCriteriaPhoneNumber, HipObjectMobileDeviceCriteriaPhoneNumberArgs              
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains str
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_ str
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_
not str - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
HipObjectMobileDeviceCriteriaTag, HipObjectMobileDeviceCriteriaTagArgs            
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- Contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - Is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains string
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is string
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not string - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains str
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_ str
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is_
not str - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
- contains String
 - The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is String
 - The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not - is
Not String - The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: 
contains,is,is_not 
HipObjectNetworkInfo, HipObjectNetworkInfoArgs        
- Criteria
Hip
Object Network Info Criteria  - The Criteria param.
 
- Criteria
Hip
Object Network Info Criteria  - The Criteria param.
 
- criteria
Hip
Object Network Info Criteria  - The Criteria param.
 
- criteria
Hip
Object Network Info Criteria  - The Criteria param.
 
- criteria
Hip
Object Network Info Criteria  - The Criteria param.
 
- criteria Property Map
 - The Criteria param.
 
HipObjectNetworkInfoCriteria, HipObjectNetworkInfoCriteriaArgs          
- Network
Hip
Object Network Info Criteria Network  - The Network param.
 
- Network
Hip
Object Network Info Criteria Network  - The Network param.
 
- network
Hip
Object Network Info Criteria Network  - The Network param.
 
- network
Hip
Object Network Info Criteria Network  - The Network param.
 
- network
Hip
Object Network Info Criteria Network  - The Network param.
 
- network Property Map
 - The Network param.
 
HipObjectNetworkInfoCriteriaNetwork, HipObjectNetworkInfoCriteriaNetworkArgs            
- Is
Hip
Object Network Info Criteria Network Is  - The Is param. Ensure that only one of the following is specified: 
is,is_not - Is
Not HipObject Network Info Criteria Network Is Not  - The IsNot param. Ensure that only one of the following is specified: 
is,is_not 
- Is
Hip
Object Network Info Criteria Network Is  - The Is param. Ensure that only one of the following is specified: 
is,is_not - Is
Not HipObject Network Info Criteria Network Is Not  - The IsNot param. Ensure that only one of the following is specified: 
is,is_not 
- is
Hip
Object Network Info Criteria Network Is  - The Is param. Ensure that only one of the following is specified: 
is,is_not - is
Not HipObject Network Info Criteria Network Is Not  - The IsNot param. Ensure that only one of the following is specified: 
is,is_not 
- is
Hip
Object Network Info Criteria Network Is  - The Is param. Ensure that only one of the following is specified: 
is,is_not - is
Not HipObject Network Info Criteria Network Is Not  - The IsNot param. Ensure that only one of the following is specified: 
is,is_not 
- is_
Hip
Object Network Info Criteria Network Is  - The Is param. Ensure that only one of the following is specified: 
is,is_not - is_
not HipObject Network Info Criteria Network Is Not  - The IsNot param. Ensure that only one of the following is specified: 
is,is_not 
- is Property Map
 - The Is param. Ensure that only one of the following is specified: 
is,is_not - is
Not Property Map - The IsNot param. Ensure that only one of the following is specified: 
is,is_not 
HipObjectNetworkInfoCriteriaNetworkIs, HipObjectNetworkInfoCriteriaNetworkIsArgs              
- Mobile
Hip
Object Network Info Criteria Network Is Mobile  - The Mobile param. Ensure that only one of the following is specified: 
mobile,unknown,wifi - Unknown bool
 - The Unknown param. Ensure that only one of the following is specified: 
mobile,unknown,wifi - Wifi
Hip
Object Network Info Criteria Network Is Wifi  - The Wifi param. Ensure that only one of the following is specified: 
mobile,unknown,wifi 
- Mobile
Hip
Object Network Info Criteria Network Is Mobile  - The Mobile param. Ensure that only one of the following is specified: 
mobile,unknown,wifi - Unknown bool
 - The Unknown param. Ensure that only one of the following is specified: 
mobile,unknown,wifi - Wifi
Hip
Object Network Info Criteria Network Is Wifi  - The Wifi param. Ensure that only one of the following is specified: 
mobile,unknown,wifi 
- mobile
Hip
Object Network Info Criteria Network Is Mobile  - The Mobile param. Ensure that only one of the following is specified: 
mobile,unknown,wifi - unknown Boolean
 - The Unknown param. Ensure that only one of the following is specified: 
mobile,unknown,wifi - wifi
Hip
Object Network Info Criteria Network Is Wifi  - The Wifi param. Ensure that only one of the following is specified: 
mobile,unknown,wifi 
- mobile
Hip
Object Network Info Criteria Network Is Mobile  - The Mobile param. Ensure that only one of the following is specified: 
mobile,unknown,wifi - unknown boolean
 - The Unknown param. Ensure that only one of the following is specified: 
mobile,unknown,wifi - wifi
Hip
Object Network Info Criteria Network Is Wifi  - The Wifi param. Ensure that only one of the following is specified: 
mobile,unknown,wifi 
- mobile
Hip
Object Network Info Criteria Network Is Mobile  - The Mobile param. Ensure that only one of the following is specified: 
mobile,unknown,wifi - unknown bool
 - The Unknown param. Ensure that only one of the following is specified: 
mobile,unknown,wifi - wifi
Hip
Object Network Info Criteria Network Is Wifi  - The Wifi param. Ensure that only one of the following is specified: 
mobile,unknown,wifi 
- mobile Property Map
 - The Mobile param. Ensure that only one of the following is specified: 
mobile,unknown,wifi - unknown Boolean
 - The Unknown param. Ensure that only one of the following is specified: 
mobile,unknown,wifi - wifi Property Map
 - The Wifi param. Ensure that only one of the following is specified: 
mobile,unknown,wifi 
HipObjectNetworkInfoCriteriaNetworkIsMobile, HipObjectNetworkInfoCriteriaNetworkIsMobileArgs                
- Carrier string
 - The Carrier param. String length must not exceed 1023 characters. String validation regex: 
.*. 
- Carrier string
 - The Carrier param. String length must not exceed 1023 characters. String validation regex: 
.*. 
- carrier String
 - The Carrier param. String length must not exceed 1023 characters. String validation regex: 
.*. 
- carrier string
 - The Carrier param. String length must not exceed 1023 characters. String validation regex: 
.*. 
- carrier str
 - The Carrier param. String length must not exceed 1023 characters. String validation regex: 
.*. 
- carrier String
 - The Carrier param. String length must not exceed 1023 characters. String validation regex: 
.*. 
HipObjectNetworkInfoCriteriaNetworkIsNot, HipObjectNetworkInfoCriteriaNetworkIsNotArgs                
- Ethernet bool
 - The Ethernet param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - Mobile
Hip
Object Network Info Criteria Network Is Not Mobile  - The Mobile param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - Unknown bool
 - The Unknown param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - Wifi
Hip
Object Network Info Criteria Network Is Not Wifi  - The Wifi param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi 
- Ethernet bool
 - The Ethernet param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - Mobile
Hip
Object Network Info Criteria Network Is Not Mobile  - The Mobile param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - Unknown bool
 - The Unknown param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - Wifi
Hip
Object Network Info Criteria Network Is Not Wifi  - The Wifi param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi 
- ethernet Boolean
 - The Ethernet param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - mobile
Hip
Object Network Info Criteria Network Is Not Mobile  - The Mobile param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - unknown Boolean
 - The Unknown param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - wifi
Hip
Object Network Info Criteria Network Is Not Wifi  - The Wifi param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi 
- ethernet boolean
 - The Ethernet param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - mobile
Hip
Object Network Info Criteria Network Is Not Mobile  - The Mobile param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - unknown boolean
 - The Unknown param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - wifi
Hip
Object Network Info Criteria Network Is Not Wifi  - The Wifi param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi 
- ethernet bool
 - The Ethernet param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - mobile
Hip
Object Network Info Criteria Network Is Not Mobile  - The Mobile param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - unknown bool
 - The Unknown param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - wifi
Hip
Object Network Info Criteria Network Is Not Wifi  - The Wifi param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi 
- ethernet Boolean
 - The Ethernet param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - mobile Property Map
 - The Mobile param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - unknown Boolean
 - The Unknown param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi - wifi Property Map
 - The Wifi param. Ensure that only one of the following is specified: 
ethernet,mobile,unknown,wifi 
HipObjectNetworkInfoCriteriaNetworkIsNotMobile, HipObjectNetworkInfoCriteriaNetworkIsNotMobileArgs                  
- Carrier string
 - The Carrier param. String length must not exceed 1023 characters. String validation regex: 
.*. 
- Carrier string
 - The Carrier param. String length must not exceed 1023 characters. String validation regex: 
.*. 
- carrier String
 - The Carrier param. String length must not exceed 1023 characters. String validation regex: 
.*. 
- carrier string
 - The Carrier param. String length must not exceed 1023 characters. String validation regex: 
.*. 
- carrier str
 - The Carrier param. String length must not exceed 1023 characters. String validation regex: 
.*. 
- carrier String
 - The Carrier param. String length must not exceed 1023 characters. String validation regex: 
.*. 
HipObjectNetworkInfoCriteriaNetworkIsNotWifi, HipObjectNetworkInfoCriteriaNetworkIsNotWifiArgs                  
- Ssid string
 - SSID. String length must not exceed 1023 characters. String validation regex: 
.*. 
- Ssid string
 - SSID. String length must not exceed 1023 characters. String validation regex: 
.*. 
- ssid String
 - SSID. String length must not exceed 1023 characters. String validation regex: 
.*. 
- ssid string
 - SSID. String length must not exceed 1023 characters. String validation regex: 
.*. 
- ssid str
 - SSID. String length must not exceed 1023 characters. String validation regex: 
.*. 
- ssid String
 - SSID. String length must not exceed 1023 characters. String validation regex: 
.*. 
HipObjectNetworkInfoCriteriaNetworkIsWifi, HipObjectNetworkInfoCriteriaNetworkIsWifiArgs                
- Ssid string
 - SSID. String length must not exceed 1023 characters. String validation regex: 
.*. 
- Ssid string
 - SSID. String length must not exceed 1023 characters. String validation regex: 
.*. 
- ssid String
 - SSID. String length must not exceed 1023 characters. String validation regex: 
.*. 
- ssid string
 - SSID. String length must not exceed 1023 characters. String validation regex: 
.*. 
- ssid str
 - SSID. String length must not exceed 1023 characters. String validation regex: 
.*. 
- ssid String
 - SSID. String length must not exceed 1023 characters. String validation regex: 
.*. 
HipObjectPatchManagement, HipObjectPatchManagementArgs        
- Criteria
Hip
Object Patch Management Criteria  - The Criteria param.
 - Exclude
Vendor bool - The ExcludeVendor param. Default: 
false. - Vendors
List<Hip
Object Patch Management Vendor>  - Vendor name.
 
- Criteria
Hip
Object Patch Management Criteria  - The Criteria param.
 - Exclude
Vendor bool - The ExcludeVendor param. Default: 
false. - Vendors
[]Hip
Object Patch Management Vendor  - Vendor name.
 
- criteria
Hip
Object Patch Management Criteria  - The Criteria param.
 - exclude
Vendor Boolean - The ExcludeVendor param. Default: 
false. - vendors
List<Hip
Object Patch Management Vendor>  - Vendor name.
 
- criteria
Hip
Object Patch Management Criteria  - The Criteria param.
 - exclude
Vendor boolean - The ExcludeVendor param. Default: 
false. - vendors
Hip
Object Patch Management Vendor[]  - Vendor name.
 
- criteria
Hip
Object Patch Management Criteria  - The Criteria param.
 - exclude_
vendor bool - The ExcludeVendor param. Default: 
false. - vendors
Sequence[Hip
Object Patch Management Vendor]  - Vendor name.
 
- criteria Property Map
 - The Criteria param.
 - exclude
Vendor Boolean - The ExcludeVendor param. Default: 
false. - vendors List<Property Map>
 - Vendor name.
 
HipObjectPatchManagementCriteria, HipObjectPatchManagementCriteriaArgs          
- Is
Enabled string - is enabled. String must be one of these: 
"no","yes","not-available". - Is
Installed bool - Is Installed. Default: 
true. - Missing
Patches HipObject Patch Management Criteria Missing Patches  - The MissingPatches param.
 
- Is
Enabled string - is enabled. String must be one of these: 
"no","yes","not-available". - Is
Installed bool - Is Installed. Default: 
true. - Missing
Patches HipObject Patch Management Criteria Missing Patches  - The MissingPatches param.
 
- is
Enabled String - is enabled. String must be one of these: 
"no","yes","not-available". - is
Installed Boolean - Is Installed. Default: 
true. - missing
Patches HipObject Patch Management Criteria Missing Patches  - The MissingPatches param.
 
- is
Enabled string - is enabled. String must be one of these: 
"no","yes","not-available". - is
Installed boolean - Is Installed. Default: 
true. - missing
Patches HipObject Patch Management Criteria Missing Patches  - The MissingPatches param.
 
- is_
enabled str - is enabled. String must be one of these: 
"no","yes","not-available". - is_
installed bool - Is Installed. Default: 
true. - missing_
patches HipObject Patch Management Criteria Missing Patches  - The MissingPatches param.
 
- is
Enabled String - is enabled. String must be one of these: 
"no","yes","not-available". - is
Installed Boolean - Is Installed. Default: 
true. - missing
Patches Property Map - The MissingPatches param.
 
HipObjectPatchManagementCriteriaMissingPatches, HipObjectPatchManagementCriteriaMissingPatchesArgs              
- Check string
 - The Check param. String must be one of these: 
"has-any","has-none","has-all". Default:"has-any". - Patches List<string>
 - The Patches param. Individual elements in this list are subject to additional validation. String length must not exceed 1023 characters. String validation regex: 
.*. - Severity
Hip
Object Patch Management Criteria Missing Patches Severity  - The Severity param.
 
- Check string
 - The Check param. String must be one of these: 
"has-any","has-none","has-all". Default:"has-any". - Patches []string
 - The Patches param. Individual elements in this list are subject to additional validation. String length must not exceed 1023 characters. String validation regex: 
.*. - Severity
Hip
Object Patch Management Criteria Missing Patches Severity  - The Severity param.
 
- check String
 - The Check param. String must be one of these: 
"has-any","has-none","has-all". Default:"has-any". - patches List<String>
 - The Patches param. Individual elements in this list are subject to additional validation. String length must not exceed 1023 characters. String validation regex: 
.*. - severity
Hip
Object Patch Management Criteria Missing Patches Severity  - The Severity param.
 
- check string
 - The Check param. String must be one of these: 
"has-any","has-none","has-all". Default:"has-any". - patches string[]
 - The Patches param. Individual elements in this list are subject to additional validation. String length must not exceed 1023 characters. String validation regex: 
.*. - severity
Hip
Object Patch Management Criteria Missing Patches Severity  - The Severity param.
 
- check str
 - The Check param. String must be one of these: 
"has-any","has-none","has-all". Default:"has-any". - patches Sequence[str]
 - The Patches param. Individual elements in this list are subject to additional validation. String length must not exceed 1023 characters. String validation regex: 
.*. - severity
Hip
Object Patch Management Criteria Missing Patches Severity  - The Severity param.
 
- check String
 - The Check param. String must be one of these: 
"has-any","has-none","has-all". Default:"has-any". - patches List<String>
 - The Patches param. Individual elements in this list are subject to additional validation. String length must not exceed 1023 characters. String validation regex: 
.*. - severity Property Map
 - The Severity param.
 
HipObjectPatchManagementCriteriaMissingPatchesSeverity, HipObjectPatchManagementCriteriaMissingPatchesSeverityArgs                
- Greater
Equal int - The GreaterEqual param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - Greater
Than int - The GreaterThan param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - Is int
 - The Is param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - Is
Not int - The IsNot param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - Less
Equal int - The LessEqual param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - Less
Than int - The LessThan param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than 
- Greater
Equal int - The GreaterEqual param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - Greater
Than int - The GreaterThan param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - Is int
 - The Is param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - Is
Not int - The IsNot param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - Less
Equal int - The LessEqual param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - Less
Than int - The LessThan param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than 
- greater
Equal Integer - The GreaterEqual param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - greater
Than Integer - The GreaterThan param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - is Integer
 - The Is param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - is
Not Integer - The IsNot param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - less
Equal Integer - The LessEqual param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - less
Than Integer - The LessThan param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than 
- greater
Equal number - The GreaterEqual param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - greater
Than number - The GreaterThan param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - is number
 - The Is param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - is
Not number - The IsNot param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - less
Equal number - The LessEqual param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - less
Than number - The LessThan param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than 
- greater_
equal int - The GreaterEqual param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - greater_
than int - The GreaterThan param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - is_ int
 - The Is param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - is_
not int - The IsNot param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - less_
equal int - The LessEqual param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - less_
than int - The LessThan param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than 
- greater
Equal Number - The GreaterEqual param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - greater
Than Number - The GreaterThan param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - is Number
 - The Is param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - is
Not Number - The IsNot param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - less
Equal Number - The LessEqual param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than - less
Than Number - The LessThan param. Value must be between 0 and 100000. Ensure that only one of the following is specified: 
greater_equal,greater_than,is,is_not,less_equal,less_than 
HipObjectPatchManagementVendor, HipObjectPatchManagementVendorArgs          
Package Details
- Repository
 - scm pulumi/pulumi-scm
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
scmTerraform Provider.