Skip to main content

property_infos

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

Overview

Nameproperty_infos
TypeResource
Idazure.service_fabric_dataplane.property_infos

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
MetadataobjectThe metadata associated with a property, including the property's name.
Namestring
ValueobjectDescribes 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_property_infoselectPropertyName, name_id, endpointtimeoutGets 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.

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.

SELECT examples

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