blob: 2ac4ce9edd09e92ccd98288e6089fa3094c2bced (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# ---------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# ---------------------------------------------------------
from marshmallow import fields
from .compute import ComputeSchema
class AttachedComputeSchema(ComputeSchema):
resource_id = fields.Str(required=True)
ssh_port = fields.Int()
compute_location = fields.Str()
|