ArmIotOperationsModelFactory.VolumeClaimResourceRequirements 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.
public static Azure.ResourceManager.IotOperations.Models.VolumeClaimResourceRequirements VolumeClaimResourceRequirements(System.Collections.Generic.IDictionary<string,string> limits = default, System.Collections.Generic.IDictionary<string,string> requests = default, System.Collections.Generic.IEnumerable<Azure.ResourceManager.IotOperations.Models.VolumeClaimResourceRequirementsClaims> claims = default);
static member VolumeClaimResourceRequirements : System.Collections.Generic.IDictionary<string, string> * System.Collections.Generic.IDictionary<string, string> * seq<Azure.ResourceManager.IotOperations.Models.VolumeClaimResourceRequirementsClaims> -> Azure.ResourceManager.IotOperations.Models.VolumeClaimResourceRequirements
Public Shared Function VolumeClaimResourceRequirements (Optional limits As IDictionary(Of String, String) = Nothing, Optional requests As IDictionary(Of String, String) = Nothing, Optional claims As IEnumerable(Of VolumeClaimResourceRequirementsClaims) = Nothing) As VolumeClaimResourceRequirements
Parameters
- limits
- IDictionary<String,String>
Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/.
- requests
- IDictionary<String,String>
Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/.
Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. This field is immutable. It can only be set for containers.
Returns
A new VolumeClaimResourceRequirements instance for mocking.