Skip to main content

properties

Creates, updates, deletes, gets or lists a properties resource.

Overview

Nameproperties
TypeResource
Idazure.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:

NameAccessible byRequired ParamsOptional ParamsDescription
delete_propertydeletePropertyName, name_id, endpointtimeoutDeletes 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_propertyexecname_id, endpoint, PropertyName, ValuetimeoutCreates 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.

NameDatatypeDescription
PropertyNamestringSpecifies the name of the property to get.
endpointstringThe service endpoint host (no scheme). (default: )
name_idstringThe Service Fabric name, without the 'fabric:' URI scheme.
timeoutinteger (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

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

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 }}"
}'
;