SetProperties function
Sets configuration property values. Sets or creates a specified class with the specified properties. If the class does not exist, it is created. If the class exists, it is updated with the specified settings.
WSDL operation
<operation name="SetProperties" parameterOrder="inargs">
<input message="tns:SetPropertiesRequest"
name="SetPropertiesRequest"/>
<output message="tns:SetPropertiesResponse"
name="SetPropertiesResponse"/>
<fault message="tns:AtriumServiceFault"
name="AtriumServiceFault" />
</operation>
WSDL messages
<message name="SetPropertiesRequest">
<part element="types:SetProperties" name="inargs"/>
</message>
<message name="SetPropertiesResponse">
<part element="types:SetPropertiesOutput" name="outargs"/>
</message>
<message name="AtriumServiceFault">
<part element="types:AtriumServiceFault" name="errargs"/>
</message>
XSD schema
<element name="SetProperties">
<complexType>
<sequence>
<element name="properties"
type="tns:ConfigPropertyList" />
</sequence>
</complexType>
</element>
<element name="SetPropertiesOutput">
<complexType>
<sequence>
<element name="createdProperties"
type="tns:ConfigPropertyList" />
<element name="modifiedProperties"
type="tns:ConfigPropertyList" />
<element name="duplicateProperties"
type="tns:ConfigPropertyList" />
<element name="invalidProperties"
type="tns:ConfigPropertyList" />
</sequence>
</complexType>
</element>
<element name="AtriumServiceFault"
type="common:AtriumServiceFault" />
<complexType name="AtriumServiceFault">
<sequence>
<element name="faultType"
type="tns:AtriumServiceFaultType" />
<element name="faultCode" type="string" />
<element name="message" type="string"
nillable="true" />
<element name="extensions" type="tns:ExtensionList"
nillable="true" />
/sequence>
</complexType>
Input arguments
properties | List of the configuration properties. |
Return values
createdProperties | List of the properties that were created. |
modifiedProperties | List of the properties that were modified. |
duplicateProperties | List of the properties that were duplicates. |
invalidProperties | Incorrect property names. |
Fault message
Fault message | See AtriumServiceFault. |
Comments