@@ -800,7 +800,7 @@ public Object createClusterUntyped(String namespace, Map<String, Object> body) t
800800 /**
801801 * Patch cluster.
802802 *
803- * @param name the domain uid (unique within the k8s cluster)
803+ * @param name the domain name
804804 * @param namespace the namespace containing the domain
805805 * @param patchBody the patch to apply
806806 * @return Updated cluster
@@ -921,41 +921,41 @@ public Step readDomainAsync(String name, String namespace, ResponseStep<DomainRe
921921 /**
922922 * Read domain synchronously.
923923 *
924- * @param uid the domain uid (unique within the k8s cluster)
924+ * @param name the domain name
925925 * @param namespace Namespace
926926 * @return Replaced domain
927927 * @throws ApiException APIException
928928 */
929- public DomainResource readDomain (String uid , String namespace ) throws ApiException {
930- RequestParams requestParams = new RequestParams ("readDomain" , namespace , uid , null , (String )null );
929+ public DomainResource readDomain (String name , String namespace ) throws ApiException {
930+ RequestParams requestParams = new RequestParams ("readDomain" , namespace , name , null , (String )null );
931931 return executeSynchronousCall (requestParams , readDomainCall );
932932 }
933933
934934 /**
935935 * Replace domain.
936936 *
937- * @param uid the domain uid (unique within the k8s cluster)
937+ * @param name the domain name
938938 * @param namespace Namespace
939939 * @param body Body
940940 * @return Replaced domain
941941 * @throws ApiException APIException
942942 */
943- public DomainResource replaceDomain (String uid , String namespace , DomainResource body ) throws ApiException {
944- RequestParams requestParams = new RequestParams ("replaceDomain" , namespace , uid , body , uid );
943+ public DomainResource replaceDomain (String name , String namespace , DomainResource body ) throws ApiException {
944+ RequestParams requestParams = new RequestParams ("replaceDomain" , namespace , name , body , name );
945945 return executeSynchronousCall (requestParams , replaceDomainCall );
946946 }
947947
948948 /**
949949 * Replace domain status.
950950 *
951- * @param uid the domain uid (unique within the k8s cluster)
951+ * @param name the domain name
952952 * @param namespace Namespace
953953 * @param body Body
954954 * @return Replaced domain
955955 * @throws ApiException APIException
956956 */
957- public DomainResource replaceDomainStatus (String uid , String namespace , DomainResource body ) throws ApiException {
958- RequestParams requestParams = new RequestParams ("replaceDomainStatus" , namespace , uid , body , uid );
957+ public DomainResource replaceDomainStatus (String name , String namespace , DomainResource body ) throws ApiException {
958+ RequestParams requestParams = new RequestParams ("replaceDomainStatus" , namespace , name , body , name );
959959 return executeSynchronousCall (requestParams , replaceDomainStatusCall );
960960 }
961961
@@ -984,15 +984,15 @@ public Step replaceDomainAsync(
984984 /**
985985 * Patch domain.
986986 *
987- * @param uid the domain uid (unique within the k8s cluster)
987+ * @param name the domain name
988988 * @param namespace the namespace containing the domain
989989 * @param patchBody the patch to apply
990990 * @return Updated domain
991991 * @throws ApiException APIException
992992 */
993- public DomainResource patchDomain (String uid , String namespace , V1Patch patchBody ) throws ApiException {
993+ public DomainResource patchDomain (String name , String namespace , V1Patch patchBody ) throws ApiException {
994994 RequestParams requestParams =
995- new RequestParams ("patchDomain" , namespace , uid , patchBody , uid );
995+ new RequestParams ("patchDomain" , namespace , name , patchBody , name );
996996 return executeSynchronousCall (requestParams , patchDomainCall );
997997 }
998998
0 commit comments