diff --git a/model/clusters_mgmt/v1/cluster_credentials_type.model b/model/clusters_mgmt/v1/cluster_credentials_type.model index eda6792e..c96f3dd2 100644 --- a/model/clusters_mgmt/v1/cluster_credentials_type.model +++ b/model/clusters_mgmt/v1/cluster_credentials_type.model @@ -19,10 +19,4 @@ class ClusterCredentials { // Administrator _kubeconfig_ file for the cluster. Kubeconfig String - // SSH key pair of the cluster. - SSH SSHCredentials - - // Temporary administrator credentials generated during the installation - // of the cluster. - Admin AdminCredentials } diff --git a/model/clusters_mgmt/v1/ssh_credentials_type.model b/model/clusters_mgmt/v1/ssh_credentials_type.model deleted file mode 100644 index a27f444b..00000000 --- a/model/clusters_mgmt/v1/ssh_credentials_type.model +++ /dev/null @@ -1,24 +0,0 @@ -/* -Copyright (c) 2019 Red Hat, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// SSH key pair of a cluster. -struct SSHCredentials { - // SSH public key of the cluster. - PublicKey String - - // SSH private key of the cluster. - PrivateKey String -}