1// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2// Code generated. DO NOT EDIT.
3
4// Core Services API
5//
6// API covering the Networking (https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/overview.htm),
7// Compute (https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/computeoverview.htm), and
8// Block Volume (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/overview.htm) services. Use this API
9// to manage resources such as virtual cloud networks (VCNs), compute instances, and
10// block storage volumes.
11//
12
13package core
14
15import (
16	"github.com/oracle/oci-go-sdk/common"
17)
18
19// DedicatedVmHostShapeSummary The shape used to launch the dedicated virtual machine (VM) host.
20type DedicatedVmHostShapeSummary struct {
21
22	// The name of the dedicated vm host shape. You can enumerate all available shapes by calling
23	// dedicatedVmHostShapes.
24	DedicatedVmHostShape *string `mandatory:"true" json:"dedicatedVmHostShape"`
25
26	// The shape's availability domain.
27	AvailabilityDomain *string `mandatory:"false" json:"availabilityDomain"`
28}
29
30func (m DedicatedVmHostShapeSummary) String() string {
31	return common.PointerString(m)
32}
33