Skip to content

Files

Latest commit

 

History

History

azure_automation_variable

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Dec 21, 2020
Feb 16, 2018
Dec 21, 2020
Dec 21, 2020

@datafire/azure_automation_variable

Client library for AutomationManagement

Installation and Usage

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);
});

Description

Actions

Variable_ListByAutomationAccount

Retrieve a list of variables.

azure_automation_variable.Variable_ListByAutomationAccount({
  "resourceGroupName": "",
  "automationAccountName": "",
  "subscriptionId": "",
  "api-version": ""
}, context)

Input

  • 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.

Output

Variable_Delete

Delete the variable.

azure_automation_variable.Variable_Delete({
  "resourceGroupName": "",
  "automationAccountName": "",
  "variableName": "",
  "subscriptionId": "",
  "api-version": ""
}, context)

Input

  • 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.

Output

Output schema unknown

Variable_Get

Retrieve the variable identified by variable name.

azure_automation_variable.Variable_Get({
  "resourceGroupName": "",
  "automationAccountName": "",
  "variableName": "",
  "subscriptionId": "",
  "api-version": ""
}, context)

Input

  • 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.

Output

Variable_Update

Update a variable.

azure_automation_variable.Variable_Update({
  "resourceGroupName": "",
  "automationAccountName": "",
  "variableName": "",
  "parameters": null,
  "subscriptionId": "",
  "api-version": ""
}, context)

Input

  • 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.

Output

Variable_CreateOrUpdate

Create a variable.

azure_automation_variable.Variable_CreateOrUpdate({
  "resourceGroupName": "",
  "automationAccountName": "",
  "variableName": "",
  "parameters": null,
  "subscriptionId": "",
  "api-version": ""
}, context)

Input

  • 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.

Output

Definitions

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

  • VariableCreateOrUpdateParameters object: The parameters supplied to the create or update variable operation.

VariableCreateOrUpdateProperties

  • 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.

VariableListResult

  • 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.

VariableProperties

  • 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.

VariableUpdateParameters

  • VariableUpdateParameters object: The parameters supplied to the update variable operation.

VariableUpdateProperties

  • 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.