Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from .property_value import PropertyValue
class BinaryPropertyValue(PropertyValue):
"""Describes a Service Fabric property value of type Binary.
All required parameters must be populated in order to send to Azure.
:param kind: Required. Constant filled by server.
:type kind: str
:param data: Required. Array of bytes to be sent as an integer array. Each
element of array is a number between 0 and 255.
:type data: list[int]
"""
_validation = {
'kind': {'required': True},
'data': {'required': True},
}
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from .property_value import PropertyValue
class Int64PropertyValue(PropertyValue):
"""Describes a Service Fabric property value of type Int64.
All required parameters must be populated in order to send to Azure.
:param kind: Required. Constant filled by server.
:type kind: str
:param data: Required. The data of the property value.
:type data: str
"""
_validation = {
'kind': {'required': True},
'data': {'required': True},
}
_attribute_map = {
def __init__(self, **kwargs):
super(PropertyValue, self).__init__(**kwargs)
self.kind = None
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from .property_value import PropertyValue
class GuidPropertyValue(PropertyValue):
"""Describes a Service Fabric property value of type Guid.
All required parameters must be populated in order to send to Azure.
:param kind: Required. Constant filled by server.
:type kind: str
:param data: Required. The data of the property value.
:type data: str
"""
_validation = {
'kind': {'required': True},
'data': {'required': True},
}
_attribute_map = {
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from .property_value import PropertyValue
class DoublePropertyValue(PropertyValue):
"""Describes a Service Fabric property value of type Double.
All required parameters must be populated in order to send to Azure.
:param kind: Required. Constant filled by server.
:type kind: str
:param data: Required. The data of the property value.
:type data: float
"""
_validation = {
'kind': {'required': True},
'data': {'required': True},
}
_attribute_map = {
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from .property_value import PropertyValue
class StringPropertyValue(PropertyValue):
"""Describes a Service Fabric property value of type String.
All required parameters must be populated in order to send to Azure.
:param kind: Required. Constant filled by server.
:type kind: str
:param data: Required. The data of the property value.
:type data: str
"""
_validation = {
'kind': {'required': True},
'data': {'required': True},
}
_attribute_map = {