# 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 .proxy_resource_py3 import ProxyResource
[docs]class ServiceResourceUpdate(ProxyResource):
"""The service resource for patch operations.
Variables are only populated by the server, and will be ignored when
sending a request.
All required parameters must be populated in order to send to Azure.
:ivar id: Azure resource ID.
:vartype id: str
:ivar name: Azure resource name.
:vartype name: str
:ivar type: Azure resource type.
:vartype type: str
:param location: Required. Resource location.
:type location: str
:param placement_constraints: The placement constraints as a string.
Placement constraints are boolean expressions on node properties and allow
for restricting a service to particular nodes based on the service
requirements. For example, to place a service on nodes where NodeType is
blue specify the following: "NodeColor == blue)".
:type placement_constraints: str
:param correlation_scheme:
:type correlation_scheme:
list[~azure.mgmt.servicefabric.models.ServiceCorrelationDescription]
:param service_load_metrics:
:type service_load_metrics:
list[~azure.mgmt.servicefabric.models.ServiceLoadMetricDescription]
:param service_placement_policies:
:type service_placement_policies:
list[~azure.mgmt.servicefabric.models.ServicePlacementPolicyDescription]
:param default_move_cost: Possible values include: 'Zero', 'Low',
'Medium', 'High'
:type default_move_cost: str or ~azure.mgmt.servicefabric.models.enum
"""
_validation = {
'id': {'readonly': True},
'name': {'readonly': True},
'type': {'readonly': True},
'location': {'required': True},
}
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
'location': {'key': 'location', 'type': 'str'},
'placement_constraints': {'key': 'properties.placementConstraints', 'type': 'str'},
'correlation_scheme': {'key': 'properties.correlationScheme', 'type': '[ServiceCorrelationDescription]'},
'service_load_metrics': {'key': 'properties.serviceLoadMetrics', 'type': '[ServiceLoadMetricDescription]'},
'service_placement_policies': {'key': 'properties.servicePlacementPolicies', 'type': '[ServicePlacementPolicyDescription]'},
'default_move_cost': {'key': 'properties.defaultMoveCost', 'type': 'str'},
}
def __init__(self, *, location: str, placement_constraints: str=None, correlation_scheme=None, service_load_metrics=None, service_placement_policies=None, default_move_cost=None, **kwargs) -> None:
super(ServiceResourceUpdate, self).__init__(location=location, **kwargs)
self.placement_constraints = placement_constraints
self.correlation_scheme = correlation_scheme
self.service_load_metrics = service_load_metrics
self.service_placement_policies = service_placement_policies
self.default_move_cost = default_move_cost