run_as_accounts_controllers
Creates, updates, deletes, gets or lists a run_as_accounts_controllers
resource.
Overview
Name | run_as_accounts_controllers |
Type | Resource |
Id | azure.migrate.run_as_accounts_controllers |
Fields
- vw_run_as_accounts_controllers
- run_as_accounts_controllers
Name | Datatype | Description |
---|---|---|
accountName | text | field from the properties object |
appliance_name | text | field from the properties object |
created_timestamp | text | field from the properties object |
credential_type | text | field from the properties object |
display_name | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
siteName | text | field from the properties object |
subscriptionId | text | field from the properties object |
updated_timestamp | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Class for run as account properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | accountName, resourceGroupName, siteName, subscriptionId | Get a VmwareRunAsAccountResource |
list_by_vmware_site | SELECT | resourceGroupName, siteName, subscriptionId | List VmwareRunAsAccountResource resources by VmwareSite |
SELECT
examples
List VmwareRunAsAccountResource resources by VmwareSite
- vw_run_as_accounts_controllers
- run_as_accounts_controllers
SELECT
accountName,
appliance_name,
created_timestamp,
credential_type,
display_name,
provisioning_state,
resourceGroupName,
siteName,
subscriptionId,
updated_timestamp
FROM azure.migrate.vw_run_as_accounts_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.migrate.run_as_accounts_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';