VariableOperations interface
Interface die een VariableOperations vertegenwoordigt.
Methoden
| create |
Maak een variabele. |
| delete(string, string, string, Variable |
Verwijder de variabele. |
| get(string, string, string, Variable |
Haal de variabele op die is geïdentificeerd met de naam van de variabele. |
| list |
Haal een lijst met variabelen op. |
| update(string, string, string, Variable |
Een variabele bijwerken. |
Methodedetails
createOrUpdate(string, string, string, VariableCreateOrUpdateParameters, VariableCreateOrUpdateOptionalParams)
Maak een variabele.
function createOrUpdate(resourceGroupName: string, automationAccountName: string, variableName: string, parameters: VariableCreateOrUpdateParameters, options?: VariableCreateOrUpdateOptionalParams): Promise<Variable>
Parameters
- resourceGroupName
-
string
Naam van een Azure-resourcegroep.
- automationAccountName
-
string
De naam van het Automation-account.
- variableName
-
string
De naam van de variabele.
- parameters
- VariableCreateOrUpdateParameters
De parameters die zijn opgegeven voor de bewerking voor het maken of bijwerken van variabelen.
De optiesparameters.
Retouren
Promise<Variable>
delete(string, string, string, VariableDeleteOptionalParams)
Verwijder de variabele.
function delete(resourceGroupName: string, automationAccountName: string, variableName: string, options?: VariableDeleteOptionalParams): Promise<void>
Parameters
- resourceGroupName
-
string
Naam van een Azure-resourcegroep.
- automationAccountName
-
string
De naam van het Automation-account.
- variableName
-
string
De naam van de variabele.
- options
- VariableDeleteOptionalParams
De optiesparameters.
Retouren
Promise<void>
get(string, string, string, VariableGetOptionalParams)
Haal de variabele op die is geïdentificeerd met de naam van de variabele.
function get(resourceGroupName: string, automationAccountName: string, variableName: string, options?: VariableGetOptionalParams): Promise<Variable>
Parameters
- resourceGroupName
-
string
Naam van een Azure-resourcegroep.
- automationAccountName
-
string
De naam van het Automation-account.
- variableName
-
string
De naam van de variabele.
- options
- VariableGetOptionalParams
De optiesparameters.
Retouren
Promise<Variable>
listByAutomationAccount(string, string, VariableListByAutomationAccountOptionalParams)
Haal een lijst met variabelen op.
function listByAutomationAccount(resourceGroupName: string, automationAccountName: string, options?: VariableListByAutomationAccountOptionalParams): PagedAsyncIterableIterator<Variable, Variable[], PageSettings>
Parameters
- resourceGroupName
-
string
Naam van een Azure-resourcegroep.
- automationAccountName
-
string
De naam van het Automation-account.
De optiesparameters.
Retouren
update(string, string, string, VariableUpdateParameters, VariableUpdateOptionalParams)
Een variabele bijwerken.
function update(resourceGroupName: string, automationAccountName: string, variableName: string, parameters: VariableUpdateParameters, options?: VariableUpdateOptionalParams): Promise<Variable>
Parameters
- resourceGroupName
-
string
Naam van een Azure-resourcegroep.
- automationAccountName
-
string
De naam van het Automation-account.
- variableName
-
string
De naam van de variabele.
- parameters
- VariableUpdateParameters
De parameters die zijn opgegeven voor de updatevariabelebewerking.
- options
- VariableUpdateOptionalParams
De optiesparameters.
Retouren
Promise<Variable>