Job Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
Job() |
Inicializuje novou instanci Job třídy. |
Job(String, String, String, RunbookAssociationProperty, String, String, Guid, DateTimeOffset, String, String, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, String, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, IDictionary<String,String>, String) |
Inicializuje novou instanci Job třídy. |
Job()
Inicializuje novou instanci Job třídy.
public Job ();
Public Sub New ()
Platí pro
Job(String, String, String, RunbookAssociationProperty, String, String, Guid, DateTimeOffset, String, String, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, String, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, IDictionary<String,String>, String)
Inicializuje novou instanci Job třídy.
public Job (string id = default, string name = default, string type = default, Microsoft.Azure.Management.Automation.Models.RunbookAssociationProperty runbook = default, string startedBy = default, string runOn = default, Guid jobId = default, DateTimeOffset creationTime = default, string status = default, string statusDetails = default, DateTimeOffset? startTime = default, DateTimeOffset? endTime = default, string exception = default, DateTimeOffset? lastModifiedTime = default, DateTimeOffset? lastStatusModifiedTime = default, System.Collections.Generic.IDictionary<string,string> parameters = default, string provisioningState = default);
new Microsoft.Azure.Management.Automation.Models.Job : string * string * string * Microsoft.Azure.Management.Automation.Models.RunbookAssociationProperty * string * string * Guid * DateTimeOffset * string * string * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * string * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * System.Collections.Generic.IDictionary<string, string> * string -> Microsoft.Azure.Management.Automation.Models.Job
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional runbook As RunbookAssociationProperty = Nothing, Optional startedBy As String = Nothing, Optional runOn As String = Nothing, Optional jobId As Guid = Nothing, Optional creationTime As DateTimeOffset = Nothing, Optional status As String = Nothing, Optional statusDetails As String = Nothing, Optional startTime As Nullable(Of DateTimeOffset) = Nothing, Optional endTime As Nullable(Of DateTimeOffset) = Nothing, Optional exception As String = Nothing, Optional lastModifiedTime As Nullable(Of DateTimeOffset) = Nothing, Optional lastStatusModifiedTime As Nullable(Of DateTimeOffset) = Nothing, Optional parameters As IDictionary(Of String, String) = Nothing, Optional provisioningState As String = Nothing)
Parametry
- id
- String
Plně kvalifikované ID prostředku
- name
- String
Název prostředku
- type
- String
Typ prostředku.
- runbook
- RunbookAssociationProperty
Získá nebo nastaví runbook.
- startedBy
- String
Získá nebo nastaví úlohu spuštěnou.
- runOn
- String
Získá nebo nastaví runOn, který určuje název skupiny, kde se má úloha spustit.
- jobId
- Guid
Získá nebo nastaví ID úlohy.
- creationTime
- DateTimeOffset
Získá nebo nastaví čas vytvoření úlohy.
- status
- String
Získá nebo nastaví stav úlohy. Mezi možné hodnoty patří: "Nový", "Activating", 'Running', 'Completed', 'Failed', 'Stopped', 'Blocked', 'Suspended', 'Disconnected', 'Suspending', 'Stopping', 'Resuming', 'Removing'
- statusDetails
- String
Získá nebo nastaví podrobnosti stavu úlohy.
- startTime
- Nullable<DateTimeOffset>
Získá nebo nastaví čas spuštění úlohy.
- endTime
- Nullable<DateTimeOffset>
Získá nebo nastaví čas ukončení úlohy.
- exception
- String
Získá nebo nastaví výjimku úlohy.
- lastModifiedTime
- Nullable<DateTimeOffset>
Získá nebo nastaví čas poslední změny úlohy.
- lastStatusModifiedTime
- Nullable<DateTimeOffset>
Získá nebo nastaví čas poslední změny stavu úlohy.
- parameters
- IDictionary<String,String>
Získá nebo nastaví parametry úlohy.
- provisioningState
- String
Aktuální stav zřizování úlohy. Mezi možné hodnoty patří: Failed, Succeeded, Suspended, Processing.
Platí pro
Azure SDK for .NET