ontap
Creates, updates, deletes, gets or lists an ontap resource.
Overview
| Name | ontap |
| Type | Resource |
| Id | google.netapp.ontap |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
execute_ontap_post | exec | projectsId, locationsId, storagePoolsId, ontapId | ExecuteOntapPost sends the ONTAP POST request to the StoragePool cluster. | |
execute_ontap_get | exec | projectsId, locationsId, storagePoolsId, ontapId | ExecuteOntapGet sends the ONTAP GET request to the StoragePool cluster. | |
execute_ontap_delete | exec | projectsId, locationsId, storagePoolsId, ontapId | ExecuteOntapDelete sends the ONTAP DELETE request to the StoragePool cluster. | |
execute_ontap_patch | exec | projectsId, locationsId, storagePoolsId, ontapId | ExecuteOntapPatch sends the ONTAP PATCH request to the StoragePool cluster. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
locationsId | string | |
ontapId | string | |
projectsId | string | |
storagePoolsId | string |
Lifecycle Methods
- execute_ontap_post
- execute_ontap_get
- execute_ontap_delete
- execute_ontap_patch
ExecuteOntapPost sends the ONTAP POST request to the StoragePool cluster.
EXEC google.netapp.ontap.execute_ontap_post
@projectsId='{{ projectsId }}' --required,
@locationsId='{{ locationsId }}' --required,
@storagePoolsId='{{ storagePoolsId }}' --required,
@ontapId='{{ ontapId }}' --required
@@json=
'{
"body": "{{ body }}"
}'
;
ExecuteOntapGet sends the ONTAP GET request to the StoragePool cluster.
EXEC google.netapp.ontap.execute_ontap_get
@projectsId='{{ projectsId }}' --required,
@locationsId='{{ locationsId }}' --required,
@storagePoolsId='{{ storagePoolsId }}' --required,
@ontapId='{{ ontapId }}' --required
;
ExecuteOntapDelete sends the ONTAP DELETE request to the StoragePool cluster.
EXEC google.netapp.ontap.execute_ontap_delete
@projectsId='{{ projectsId }}' --required,
@locationsId='{{ locationsId }}' --required,
@storagePoolsId='{{ storagePoolsId }}' --required,
@ontapId='{{ ontapId }}' --required
;
ExecuteOntapPatch sends the ONTAP PATCH request to the StoragePool cluster.
EXEC google.netapp.ontap.execute_ontap_patch
@projectsId='{{ projectsId }}' --required,
@locationsId='{{ locationsId }}' --required,
@storagePoolsId='{{ storagePoolsId }}' --required,
@ontapId='{{ ontapId }}' --required
@@json=
'{
"body": "{{ body }}"
}'
;