-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Compute] Adding new API for VMSS: ForceRecoveryServiceFabricPlatform…
…UpdateDomainWalk (#1870) * Generated from 02702702645f7e64ae63f4b6016bcc966f8513d9 Adding 6.1 tag to readme * Generated from ef99ca24deaaecb3fdb6d1587617a98805cdd61b Dropping 4th digit from version number for clarity * Generated from c0dcfcd2e00ac0ac516d28ff343d1f1d40b3d45b Update readme.md * updating history to reflect new version * azure-servicefabric 6.1.2.9 * Restapi auto areddish custom vision swagger (#1771) * Generated from 0d4e675c639f9fe784946e2267223c132b266fcf Add automatic Python conf for Custom Vision Prediction * Generated from 049c2dd356adb296c9c28386207b66cd48781467 Add automatic Python conf to Custom Vision Training * Generated from 599b21132b4678729ebe24ad4a60439fbf57047c Fix Prediction Examples * Generated from disks (#1835) - doc only added image examples to 2017-12-01 * Restapi auto v sodsou content moderator v2 (#1861) * Generated from b594737f845e43b28bd77878820b39f8543650d1 Revert version changes * Generated from d18cc9d65430a8e1a1c3af522db42cbdbdcfe819 Missing Python version * Generated from 9787c7c2b73d0b3ed91ba60d44acd9eb641c4277 Adding new API for VMSS: ForceRecoveryServiceFabricPlatformUpdateDomainWalk
- Loading branch information
1 parent
a6a90a4
commit 4faf50d
Showing
3 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
azure-mgmt-compute/azure/mgmt/compute/v2017_12_01/models/recovery_walk_response.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# 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 msrest.serialization import Model | ||
|
||
|
||
class RecoveryWalkResponse(Model): | ||
"""Response after calling a manual recovery walk. | ||
Variables are only populated by the server, and will be ignored when | ||
sending a request. | ||
:ivar walk_performed: Whether the recovery walk was performed | ||
:vartype walk_performed: bool | ||
:ivar next_platform_update_domain: The next update domain that needs to be | ||
walked. Null means walk spanning all update domains has been completed | ||
:vartype next_platform_update_domain: int | ||
""" | ||
|
||
_validation = { | ||
'walk_performed': {'readonly': True}, | ||
'next_platform_update_domain': {'readonly': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'walk_performed': {'key': 'walkPerformed', 'type': 'bool'}, | ||
'next_platform_update_domain': {'key': 'nextPlatformUpdateDomain', 'type': 'int'}, | ||
} | ||
|
||
def __init__(self): | ||
super(RecoveryWalkResponse, self).__init__() | ||
self.walk_performed = None | ||
self.next_platform_update_domain = None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters