@@ -800,7 +800,7 @@ public Object createClusterUntyped(String namespace, Map<String, Object> body) t
800
800
/**
801
801
* Patch cluster.
802
802
*
803
- * @param name the domain uid (unique within the k8s cluster)
803
+ * @param name the domain name
804
804
* @param namespace the namespace containing the domain
805
805
* @param patchBody the patch to apply
806
806
* @return Updated cluster
@@ -921,41 +921,41 @@ public Step readDomainAsync(String name, String namespace, ResponseStep<DomainRe
921
921
/**
922
922
* Read domain synchronously.
923
923
*
924
- * @param uid the domain uid (unique within the k8s cluster)
924
+ * @param name the domain name
925
925
* @param namespace Namespace
926
926
* @return Replaced domain
927
927
* @throws ApiException APIException
928
928
*/
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 );
931
931
return executeSynchronousCall (requestParams , readDomainCall );
932
932
}
933
933
934
934
/**
935
935
* Replace domain.
936
936
*
937
- * @param uid the domain uid (unique within the k8s cluster)
937
+ * @param name the domain name
938
938
* @param namespace Namespace
939
939
* @param body Body
940
940
* @return Replaced domain
941
941
* @throws ApiException APIException
942
942
*/
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 );
945
945
return executeSynchronousCall (requestParams , replaceDomainCall );
946
946
}
947
947
948
948
/**
949
949
* Replace domain status.
950
950
*
951
- * @param uid the domain uid (unique within the k8s cluster)
951
+ * @param name the domain name
952
952
* @param namespace Namespace
953
953
* @param body Body
954
954
* @return Replaced domain
955
955
* @throws ApiException APIException
956
956
*/
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 );
959
959
return executeSynchronousCall (requestParams , replaceDomainStatusCall );
960
960
}
961
961
@@ -984,15 +984,15 @@ public Step replaceDomainAsync(
984
984
/**
985
985
* Patch domain.
986
986
*
987
- * @param uid the domain uid (unique within the k8s cluster)
987
+ * @param name the domain name
988
988
* @param namespace the namespace containing the domain
989
989
* @param patchBody the patch to apply
990
990
* @return Updated domain
991
991
* @throws ApiException APIException
992
992
*/
993
- public DomainResource patchDomain (String uid , String namespace , V1Patch patchBody ) throws ApiException {
993
+ public DomainResource patchDomain (String name , String namespace , V1Patch patchBody ) throws ApiException {
994
994
RequestParams requestParams =
995
- new RequestParams ("patchDomain" , namespace , uid , patchBody , uid );
995
+ new RequestParams ("patchDomain" , namespace , name , patchBody , name );
996
996
return executeSynchronousCall (requestParams , patchDomainCall );
997
997
}
998
998
0 commit comments