properties
Creates, updates, deletes, gets or lists a properties resource.
Overview
| Name | properties |
| Type | Resource |
| Id | azure.service_fabric_dataplane.properties |
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 |
|---|---|---|---|---|
delete_property | delete | PropertyName, name_id, endpoint | timeout | Deletes the specified Service Fabric property. Deletes the specified Service Fabric property under a given name. A property must be created before it can be deleted. |
put_property | exec | name_id, endpoint, PropertyName, Value | timeout | Creates or updates a Service Fabric property. Creates or updates the specified Service Fabric property under a given name. |
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 |
|---|---|---|
PropertyName | string | Specifies the name of the property to get. |
endpoint | string | The service endpoint host (no scheme). (default: ) |
name_id | string | The Service Fabric name, without the 'fabric:' URI scheme. |
timeout | integer (int64) | The server timeout for performing the operation in seconds. This timeout specifies the time duration that the client is willing to wait for the requested operation to complete. The default value for this parameter is 60 seconds. |
DELETE examples
- delete_property
Deletes the specified Service Fabric property. Deletes the specified Service Fabric property under a given name. A property must be created before it can be deleted.
DELETE FROM azure.service_fabric_dataplane.properties
WHERE PropertyName = '{{ PropertyName }}' --required
AND name_id = '{{ name_id }}' --required
AND endpoint = '{{ endpoint }}' --required
AND timeout = '{{ timeout }}'
;
Lifecycle Methods
- put_property
Creates or updates a Service Fabric property. Creates or updates the specified Service Fabric property under a given name.
EXEC azure.service_fabric_dataplane.properties.put_property
@name_id='{{ name_id }}' --required,
@endpoint='{{ endpoint }}' --required,
@timeout='{{ timeout }}'
@@json=
'{
"PropertyName": "{{ PropertyName }}",
"CustomTypeId": "{{ CustomTypeId }}",
"Value": "{{ Value }}"
}'
;