CheckExistsPropertyBatchOperation Class

Represents a PropertyBatchOperation that compares the Boolean existence of a property with the Exists argument. The PropertyBatchOperation operation fails if the property's existence is not equal to the Exists argument. The CheckExistsPropertyBatchOperation is generally used as a precondition for the write operations in the batch. Note that if one PropertyBatchOperation in a PropertyBatch fails, the entire batch fails and cannot be committed in a transactional manner.

All required parameters must be populated in order to send to Azure.

Inheritance
azure.servicefabric.models._models_py3.PropertyBatchOperation
CheckExistsPropertyBatchOperation

Constructor

CheckExistsPropertyBatchOperation(*, property_name: str, exists: bool, **kwargs)

Parameters

property_name
str
Required

Required. The name of the Service Fabric property.

kind
str
Required

Required. Constant filled by server.

exists
bool
Required

Required. Whether or not the property should exist for the operation to pass.