Client library for AutomationManagement
npm install --save @datafire/azure_automation_variable
let azure_automation_variable = require('@datafire/azure_automation_variable').create({
access_token: "",
refresh_token: "",
client_id: "",
client_secret: "",
redirect_uri: ""
});
.then(data => {
console.log(data);
});
Retrieve a list of variables.
azure_automation_variable.Variable_ListByAutomationAccount({
"resourceGroupName": "",
"automationAccountName": "",
"subscriptionId": "",
"api-version": ""
}, context)
- input
object
- resourceGroupName required
string
: Name of an Azure Resource group. - automationAccountName required
string
: The name of the automation account. - subscriptionId required
string
: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - api-version required
string
: Client Api Version.
- resourceGroupName required
- output VariableListResult
Delete the variable.
azure_automation_variable.Variable_Delete({
"resourceGroupName": "",
"automationAccountName": "",
"variableName": "",
"subscriptionId": "",
"api-version": ""
}, context)
- input
object
- resourceGroupName required
string
: Name of an Azure Resource group. - automationAccountName required
string
: The name of the automation account. - variableName required
string
: The name of variable. - subscriptionId required
string
: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - api-version required
string
: Client Api Version.
- resourceGroupName required
Output schema unknown
Retrieve the variable identified by variable name.
azure_automation_variable.Variable_Get({
"resourceGroupName": "",
"automationAccountName": "",
"variableName": "",
"subscriptionId": "",
"api-version": ""
}, context)
- input
object
- resourceGroupName required
string
: Name of an Azure Resource group. - automationAccountName required
string
: The name of the automation account. - variableName required
string
: The name of variable. - subscriptionId required
string
: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - api-version required
string
: Client Api Version.
- resourceGroupName required
- output Variable
Update a variable.
azure_automation_variable.Variable_Update({
"resourceGroupName": "",
"automationAccountName": "",
"variableName": "",
"parameters": null,
"subscriptionId": "",
"api-version": ""
}, context)
- input
object
- resourceGroupName required
string
: Name of an Azure Resource group. - automationAccountName required
string
: The name of the automation account. - variableName required
string
: The variable name. - parameters required VariableUpdateParameters
- subscriptionId required
string
: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - api-version required
string
: Client Api Version.
- resourceGroupName required
- output Variable
Create a variable.
azure_automation_variable.Variable_CreateOrUpdate({
"resourceGroupName": "",
"automationAccountName": "",
"variableName": "",
"parameters": null,
"subscriptionId": "",
"api-version": ""
}, context)
- input
object
- resourceGroupName required
string
: Name of an Azure Resource group. - automationAccountName required
string
: The name of the automation account. - variableName required
string
: The variable name. - parameters required VariableCreateOrUpdateParameters
- subscriptionId required
string
: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - api-version required
string
: Client Api Version.
- resourceGroupName required
- output Variable
- Variable
object
: Definition of the variable.- properties VariableProperties
- id
string
: Fully qualified resource Id for the resource - name
string
: The name of the resource - type
string
: The type of the resource.
- VariableCreateOrUpdateParameters
object
: The parameters supplied to the create or update variable operation.- name required
string
: Gets or sets the name of the variable. - properties required VariableCreateOrUpdateProperties
- name required
- VariableCreateOrUpdateProperties
object
: The properties of the create variable operation.- description
string
: Gets or sets the description of the variable. - isEncrypted
boolean
: Gets or sets the encrypted flag of the variable. - value
string
: Gets or sets the value of the variable.
- description
- VariableListResult
object
: The response model for the list variables operation.- nextLink
string
: Gets or sets the next link. - value
array
: Gets or sets a list of variables.- items Variable
- nextLink
- VariableProperties
object
: Definition of the variable properties- creationTime
string
: Gets or sets the creation time. - description
string
: Gets or sets the description. - isEncrypted
boolean
: Gets or sets the encrypted flag of the variable. - lastModifiedTime
string
: Gets or sets the last modified time. - value
string
: Gets or sets the value of the variable.
- creationTime
- VariableUpdateParameters
object
: The parameters supplied to the update variable operation.- name
string
: Gets or sets the name of the variable. - properties VariableUpdateProperties
- name
- VariableUpdateProperties
object
: The properties of the update variable- description
string
: Gets or sets the description of the variable. - value
string
: Gets or sets the value of the variable.
- description