25 lines
554 B
Go
25 lines
554 B
Go
|
// Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
|
||
|
// Code generated. DO NOT EDIT.
|
||
|
|
||
|
// Container Engine for Kubernetes API
|
||
|
//
|
||
|
// Container Engine for Kubernetes API
|
||
|
//
|
||
|
|
||
|
package containerengine
|
||
|
|
||
|
import (
|
||
|
"github.com/oracle/oci-go-sdk/common"
|
||
|
)
|
||
|
|
||
|
// ClusterOptions Options for creating or updating clusters.
|
||
|
type ClusterOptions struct {
|
||
|
|
||
|
// Available Kubernetes versions.
|
||
|
KubernetesVersions []string `mandatory:"false" json:"kubernetesVersions"`
|
||
|
}
|
||
|
|
||
|
func (m ClusterOptions) String() string {
|
||
|
return common.PointerString(m)
|
||
|
}
|