BatchJobScheduleCreateContent Constructor
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.
Initializes a new instance of BatchJobScheduleCreateContent.
public BatchJobScheduleCreateContent (string id, Azure.Compute.Batch.BatchJobScheduleConfiguration schedule, Azure.Compute.Batch.BatchJobSpecification jobSpecification);
new Azure.Compute.Batch.BatchJobScheduleCreateContent : string * Azure.Compute.Batch.BatchJobScheduleConfiguration * Azure.Compute.Batch.BatchJobSpecification -> Azure.Compute.Batch.BatchJobScheduleCreateContent
Public Sub New (id As String, schedule As BatchJobScheduleConfiguration, jobSpecification As BatchJobSpecification)
Parameters
- id
- String
A string that uniquely identifies the schedule within the Account. The ID can contain any combination of alphanumeric characters including hyphens and underscores, and cannot contain more than 64 characters. The ID is case-preserving and case-insensitive (that is, you may not have two IDs within an Account that differ only by case).
- schedule
- BatchJobScheduleConfiguration
The schedule according to which Jobs will be created. All times are fixed respective to UTC and are not impacted by daylight saving time.
- jobSpecification
- BatchJobSpecification
The details of the Jobs to be created on this schedule.
Exceptions
id
, schedule
or jobSpecification
is null.