OSPolicyResourceGroupArgs

data class OSPolicyResourceGroupArgs(val inventoryFilters: Output<List<OSPolicyInventoryFilterArgs>>? = null, val osFilter: Output<OSPolicyOSFilterArgs>? = null, val resources: Output<List<OSPolicyResourceArgs>>) : ConvertibleToJava<OSPolicyResourceGroupArgs>

Resource groups provide a mechanism to group OS policy resources. Resource groups enable OS policy authors to create a single OS policy to be applied to VMs running different operating Systems. When the OS policy is applied to a target VM, the appropriate resource group within the OS policy is selected based on the OSFilter specified within the resource group.

Constructors

Link copied to clipboard
fun OSPolicyResourceGroupArgs(inventoryFilters: Output<List<OSPolicyInventoryFilterArgs>>? = null, osFilter: Output<OSPolicyOSFilterArgs>? = null, resources: Output<List<OSPolicyResourceArgs>>)

Functions

Link copied to clipboard
open override fun toJava(): OSPolicyResourceGroupArgs

Properties

Link copied to clipboard

List of inventory filters for the resource group. The resources in this resource group are applied to the target VM if it satisfies at least one of the following inventory filters. For example, to apply this resource group to VMs running either RHEL or CentOS operating systems, specify 2 items for the list with following values: inventory_filters0.os_short_name='rhel' and inventory_filters1.os_short_name='centos' If the list is empty, this resource group will be applied to the target VM unconditionally.

Link copied to clipboard
val osFilter: Output<OSPolicyOSFilterArgs>? = null

Deprecated. Use the inventory_filters field instead. Used to specify the OS filter for a resource group

Link copied to clipboard

List of resources configured for this resource group. The resources are executed in the exact order specified here.