1package serialconsole
2
3// Copyright (c) Microsoft and contributors.  All rights reserved.
4//
5// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13//
14// See the License for the specific language governing permissions and
15// limitations under the License.
16//
17// Code generated by Microsoft (R) AutoRest Code Generator.
18// Changes may cause incorrect behavior and will be lost if the code is regenerated.
19
20import (
21	"github.com/Azure/go-autorest/autorest"
22)
23
24// The package's fully qualified name.
25const fqdn = "github.com/Azure/azure-sdk-for-go/services/serialconsole/mgmt/2018-05-01/serialconsole"
26
27// DeploymentValidateResult details on Failure
28type DeploymentValidateResult struct {
29	// ErrorMessage - Error message
30	ErrorMessage *string `json:"errorMessage,omitempty"`
31}
32
33// GetDisabledResult returns whether or not Serial Console is disabled for this given subscription
34type GetDisabledResult struct {
35	autorest.Response `json:"-"`
36	// Disabled - Disabled result
37	Disabled *bool `json:"disabled,omitempty"`
38}
39
40// GetResult returns whether or not Serial Console is disabled.
41type GetResult struct {
42	// Value - Whether or not Serial Console is disabled.
43	Value *bool `json:"value,omitempty"`
44}
45
46// Operations serial Console operations
47type Operations struct {
48	autorest.Response `json:"-"`
49	// Value - Serial Console operations
50	Value *string `json:"value,omitempty"`
51}
52
53// SetDisabledResult sets disable status and returns whether or not Serial Console is now disabled for this
54// given subscription
55type SetDisabledResult struct {
56	autorest.Response `json:"-"`
57	// Disabled - Disabled result
58	Disabled *bool `json:"disabled,omitempty"`
59}
60