autoscaler/cluster-autoscaler/cloudprovider/oci/oci-go-sdk/v43/containerengine/key_details.go

28 lines
1.2 KiB
Go

// Copyright (c) 2016, 2018, 2021, Oracle and/or its affiliates. All rights reserved.
// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
// Code generated. DO NOT EDIT.
// Container Engine for Kubernetes API
//
// API for the Container Engine for Kubernetes service. Use this API to build, deploy,
// and manage cloud-native applications. For more information, see
// Overview of Container Engine for Kubernetes (https://docs.cloud.oracle.com/iaas/Content/ContEng/Concepts/contengoverview.htm).
//
package containerengine
import (
"k8s.io/autoscaler/cluster-autoscaler/cloudprovider/oci/oci-go-sdk/v43/common"
)
// KeyDetails The properties that define the kms keys used by OKE for Image Signature verification.
type KeyDetails struct {
// The OCIDs of the KMS key that will be used to verify whether the images are signed by an approved source.
KmsKeyId *string `mandatory:"false" json:"kmsKeyId"`
}
func (m KeyDetails) String() string {
return common.PointerString(m)
}