property_infos
Creates, updates, deletes, gets or lists a property_infos resource.
Overview
| Name | property_infos |
| Type | Resource |
| Id | azure.service_fabric_dataplane.property_infos |
Fields
The following fields are returned by SELECT queries:
- get_property_info
| Name | Datatype | Description |
|---|---|---|
Metadata | object | The metadata associated with a property, including the property's name. |
Name | string | |
Value | object | Describes a Service Fabric property value. You probably want to use the sub-classes and not this class directly. Known sub-classes are: BinaryPropertyValue, Int64PropertyValue, DoublePropertyValue, StringPropertyValue, GuidPropertyValue All required parameters must be populated in order to send to Azure. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_property_info | select | PropertyName, name_id, endpoint | timeout | Gets the specified Service Fabric property. Gets the specified Service Fabric property under a given name. This will always return both value and metadata. |
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. |
SELECT examples
- get_property_info
Gets the specified Service Fabric property. Gets the specified Service Fabric property under a given name. This will always return both value and metadata.
SELECT
Metadata,
Name,
Value
FROM azure.service_fabric_dataplane.property_infos
WHERE PropertyName = '{{ PropertyName }}' -- required
AND name_id = '{{ name_id }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;