ArmComputeScheduleModelFactory.Placement Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Describes the user-defined constraints for resource hardware placement.
public static Azure.ResourceManager.ComputeSchedule.Models.Placement Placement(Azure.ResourceManager.ComputeSchedule.Models.ZonePlacementPolicyType? zonePlacementPolicy = default, System.Collections.Generic.IEnumerable<string> includeZones = default, System.Collections.Generic.IEnumerable<string> excludeZones = default);
static member Placement : Nullable<Azure.ResourceManager.ComputeSchedule.Models.ZonePlacementPolicyType> * seq<string> * seq<string> -> Azure.ResourceManager.ComputeSchedule.Models.Placement
Public Shared Function Placement (Optional zonePlacementPolicy As Nullable(Of ZonePlacementPolicyType) = Nothing, Optional includeZones As IEnumerable(Of String) = Nothing, Optional excludeZones As IEnumerable(Of String) = Nothing) As Placement
Parameters
- zonePlacementPolicy
- Nullable<ZonePlacementPolicyType>
Specifies the policy for resource's placement in availability zone. Possible values are: Any (used for Virtual Machines), Auto (used for Virtual Machine Scale Sets) - An availability zone will be automatically picked by system as part of resource creation.
- includeZones
- IEnumerable<String>
This property supplements the 'zonePlacementPolicy' property. If 'zonePlacementPolicy' is set to 'Any'/'Auto', availability zone selected by the system must be present in the list of availability zones passed with 'includeZones'. If 'includeZones' is not provided, all availability zones in region will be considered for selection.
- excludeZones
- IEnumerable<String>
This property supplements the 'zonePlacementPolicy' property. If 'zonePlacementPolicy' is set to 'Any'/'Auto', availability zone selected by the system must not be present in the list of availability zones passed with 'excludeZones'. If 'excludeZones' is not provided, all availability zones in region will be considered for selection.
Returns
A new Placement instance for mocking.