vm_instance_guest_agents
Creates, updates, deletes, gets or lists a vm_instance_guest_agents
resource.
Overview
Name | vm_instance_guest_agents |
Type | Resource |
Id | azure_isv.connected_vsphere.vm_instance_guest_agents |
Fields
- vw_vm_instance_guest_agents
- vm_instance_guest_agents
Name | Datatype | Description |
---|---|---|
credentials | text | field from the properties object |
custom_resource_name | text | field from the properties object |
http_proxy_config | text | field from the properties object |
private_link_scope_resource_id | text | field from the properties object |
provisioning_action | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceUri | text | field from the properties object |
status | text | field from the properties object |
statuses | text | field from the properties object |
uuid | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Describes the properties of a Virtual Machine Guest Agent. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceUri | Implements GuestAgent GET method. |
list | SELECT | resourceUri | Returns the list of GuestAgent of the given vm. |
create | INSERT | resourceUri, data__properties | Create Or Update GuestAgent. |
delete | DELETE | resourceUri | Implements GuestAgent DELETE method. |
SELECT
examples
Implements GuestAgent GET method.
- vw_vm_instance_guest_agents
- vm_instance_guest_agents
SELECT
credentials,
custom_resource_name,
http_proxy_config,
private_link_scope_resource_id,
provisioning_action,
provisioning_state,
resourceUri,
status,
statuses,
uuid
FROM azure_isv.connected_vsphere.vw_vm_instance_guest_agents
WHERE resourceUri = '{{ resourceUri }}';
SELECT
properties
FROM azure_isv.connected_vsphere.vm_instance_guest_agents
WHERE resourceUri = '{{ resourceUri }}';
INSERT
example
Use the following StackQL query and manifest file to create a new vm_instance_guest_agents
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure_isv.connected_vsphere.vm_instance_guest_agents (
resourceUri,
data__properties,
properties
)
SELECT
'{{ resourceUri }}',
'{{ data__properties }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: uuid
value: string
- name: credentials
value:
- name: username
value: string
- name: password
value: string
- name: privateKey
value: string
- name: privateLinkScopeResourceId
value: string
- name: httpProxyConfig
value:
- name: httpsProxy
value: string
- name: provisioningAction
value: []
- name: status
value: string
- name: customResourceName
value: string
- name: statuses
value:
- - name: type
value: string
- name: status
value: string
- name: reason
value: string
- name: message
value: string
- name: severity
value: string
- name: lastUpdatedAt
value: string
- name: provisioningState
value: []
DELETE
example
Deletes the specified vm_instance_guest_agents
resource.
/*+ delete */
DELETE FROM azure_isv.connected_vsphere.vm_instance_guest_agents
WHERE resourceUri = '{{ resourceUri }}';