operations
Creates, updates, deletes, gets or lists an operations resource.
Overview
| Name | operations |
| Type | Resource |
| Id | azure_extras.edge_order_partner.operations |
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 |
|---|---|---|---|---|
manage_inventory_metadata | exec | familyIdentifier, subscriptionId, location, serialNumber, inventoryMetadata | ||
manage_link | exec | familyIdentifier, subscriptionId, location, serialNumber, managementResourceArmId, operation, tenantId | ||
search_inventories | exec | subscriptionId, serialNumber, familyIdentifier |
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 |
|---|---|---|
familyIdentifier | string | Unique identifier for the product family |
location | string | The location of the resource |
serialNumber | string | The serial number of the device |
subscriptionId | string | The ID of the target subscription. |
Lifecycle Methods
- manage_inventory_metadata
- manage_link
- search_inventories
"Success"
EXEC azure_extras.edge_order_partner.operations.manage_inventory_metadata
@familyIdentifier='{{ familyIdentifier }}' --required,
@subscriptionId='{{ subscriptionId }}' --required,
@location='{{ location }}' --required,
@serialNumber='{{ serialNumber }}' --required
@@json=
'{
"inventoryMetadata": "{{ inventoryMetadata }}",
"configurationOnDevice": "{{ configurationOnDevice }}"
}'
;
"Success"
EXEC azure_extras.edge_order_partner.operations.manage_link
@familyIdentifier='{{ familyIdentifier }}' --required,
@subscriptionId='{{ subscriptionId }}' --required,
@location='{{ location }}' --required,
@serialNumber='{{ serialNumber }}' --required
@@json=
'{
"managementResourceArmId": "{{ managementResourceArmId }}",
"operation": "{{ operation }}",
"tenantId": "{{ tenantId }}"
}'
;
Success
EXEC azure_extras.edge_order_partner.operations.search_inventories
@subscriptionId='{{ subscriptionId }}' --required
@@json=
'{
"serialNumber": "{{ serialNumber }}",
"familyIdentifier": "{{ familyIdentifier }}"
}'
;