Uses of Class
zowe.client.sdk.rest.Response
-
Packages that use Response Package Description zowe.client.sdk.rest Http functionality used by the SDK via UNIREST library.zowe.client.sdk.rest.exception Custom exception packagezowe.client.sdk.zosfiles.dsn.methods z/OS dataset and member files functionality provided by the SDKzowe.client.sdk.zosfiles.uss.methods z/OS Unix System Services (USS) files functionality provided by the SDKzowe.client.sdk.zosjobs.methods z/OS jobs functionality provided by the SDKzowe.client.sdk.zosmfauth.methods z/OSMF authentication services functionality provided by the SDKzowe.client.sdk.zosmfauth.response Response objects for z/OSMF authentication services processingzowe.client.sdk.zostso.service z/OS tso console service processing -
-
Uses of Response in zowe.client.sdk.rest
Methods in zowe.client.sdk.rest that return Response Modifier and Type Method Description <T> ResponseZosmfRequest. buildResponse(kong.unirest.core.HttpResponse<T> reply)Build a Response object from a given HttpResponse replyResponseDeleteJsonZosmfRequest. executeRequest()Perform the http rest requestResponseGetJsonZosmfRequest. executeRequest()Perform the http rest requestResponseGetStreamZosmfRequest. executeRequest()Perform the http rest requestResponseGetTextZosmfRequest. executeRequest()Perform the http rest requestResponsePostJsonZosmfRequest. executeRequest()Perform the http rest requestResponsePutJsonZosmfRequest. executeRequest()/** Perform the http rest requestResponsePutStreamZosmfRequest. executeRequest()Perform the http rest requestResponsePutTextZosmfRequest. executeRequest()Perform the http rest requestabstract ResponseZosmfRequest. executeRequest()Perform the http rest request -
Uses of Response in zowe.client.sdk.rest.exception
Methods in zowe.client.sdk.rest.exception that return Response Modifier and Type Method Description ResponseZosmfRequestException. getResponse()Getter for response objectConstructors in zowe.client.sdk.rest.exception with parameters of type Response Constructor Description ZosmfRequestException(String message, Response response)ZosmfRequestException constructor for message and response valuesZosmfRequestException(String message, Response response, Throwable err)ZosmfRequestException constructor for message, response and throwable values -
Uses of Response in zowe.client.sdk.zosfiles.dsn.methods
Methods in zowe.client.sdk.zosfiles.dsn.methods that return Response Modifier and Type Method Description ResponseDsnCopy. copy(String fromDataSetName, String toDataSetName, boolean replace, boolean copyAllMembers)This copy method allows the following copy operations:ResponseDsnCopy. copyCommon(CopyParams params)Copy dataset or dataset member request driven by CopyParams object settingsResponseDsnCreate. create(String dataSetName, CreateParams params)Creates a new dataset with specified parametersResponseDsnRename. dataSetName(String dataSetName, String newDataSetName)Change the existing dataset name (source) to a new dataset name (destination)ResponseDsnDelete. delete(String dataSetName)Delete a datasetResponseDsnDelete. delete(String dataSetName, String memberName)Delete a dataset memberResponseDsnRename. memberName(String fromDataSetName, String memberName, String newMemberName)Change the existing member name (source) to a new member name (destination) within a partition datasetResponseDsnWrite. write(String dataSetName, String content)Replaces the content of an existing sequential data set with new content.ResponseDsnWrite. write(String dataSetName, String memberName, String content)Replaces the content of a member of a partitioned data set (PDS or PDSE) with new content. -
Uses of Response in zowe.client.sdk.zosfiles.uss.methods
Methods in zowe.client.sdk.zosfiles.uss.methods that return Response Modifier and Type Method Description ResponseUssChangeTag. binary(String fileNamePath)Change the tag of a UNIX file to a binary typeResponseUssChangeMode. change(String targetPath, ChangeModeParams params)Change the mode of a UNIX file or directory request driven by ChangeModeParams object settingsResponseUssChangeOwner. change(String targetPath, String owner)Perform chown operation on a UNIX file or directoryResponseUssChangeOwner. changeCommon(String targetPath, ChangeOwnerParams params)Perform chown operation on a UNIX file or directory request driven by ChangeOwnerParams object settingsResponseUssChangeTag. changeCommon(String fileNamePath, ChangeTagParams params)Change tag of a UNIX file request driven by ChangeTagParams object settingsResponseUssCopy. copy(String fromPath, String targetPath)Copy a Unix file or directory to another locationResponseUssCopy. copyCommon(String targetPath, CopyParams params)Copy a Unix file or directory to another location request driven by CopyParams object settingsResponseUssCreate. create(String targetPath, CreateParams params)Perform UNIX create a file or directory name request driven by CreateParams object settings.ResponseUssCreate. createZfs(String fileSystemName)Create a ZFS using default values of 755 permissions, 10 primary and 2 secondary cylinders allocated, and a timeout of 20 seconds.ResponseUssCreate. createZfsCommon(String fileSystemName, CreateZfsParams params)Create a ZFS request driven by the CreateZfsParams object settings.ResponseUssDelete. delete(String targetPath)Perform UNIX delete file or directory name requestResponseUssDelete. delete(String targetPath, boolean recursive)Perform UNIX delete file or directory name request with a recursive flagResponseUssSetAcl. delete(String targetPath, String value)Deletes the specified ACL entry from the file or directoryResponseUssSetAcl. deleteByType(String targetPath, DeleteAclType deleteType)Delete all extended ACL entries by type (setfacl -D type):ResponseUssDelete. deleteZfs(String fileSystemName)Delete UNIX zFS FilesystemResponseUssChangeTag. get(String fileNamePath)Retrieve existing UNIX file tag informationResponseUssGetAcl. getAclCommon(String targetPath, GetAclParams params)Get the ACL for a USS file or directoryResponseUssGet. getCommon(String fileNamePath, GetParams params)Get the contents of a UNIX file driven by the GetParams object settingsResponseUssSetAcl. modify(String targetPath, String value)Modifies the specified ACL entry for the file or directoryResponseUssMount. mount(String fileSystemName, String mountPoint, String fsType)Perform mount of a file system name to the UNIX file system.ResponseUssMount. mountCommon(String fileSystemName, MountParams params)Perform mount or unmount of a file system name request driven by MountParams settingsResponseUssMove. move(String fromPath, String targetPath)Move a UNIX file or directory with overwriting set as trueResponseUssMove. move(String fromPath, String targetPath, boolean overwrite)Move a UNIX file or directory with overwritten value specifiedResponseUssChangeTag. remove(String fileNamePath)Remove tag of a UNIX fileResponseUssExtAttr. reset(String targetPath, String value)Resets the attributes of a file or directoryResponseUssExtAttr. set(String targetPath, String value)Extends the attributes of a file or directoryResponseUssSetAcl. set(String targetPath, String value)Sets the ACL for a USS file or directoryResponseUssSetAcl. setAclCommon(String targetPath, SetAclParams params)Sets the ACL for a USS file or directory request driven by SetAclParams object settingsResponseUssChangeTag. text(String fileNamePath, String codeSet)Change the tag of a UNIX file to a text typeResponseUssMount. unmount(String fileSystemName)Perform unmounting of a file system nameResponseUssWrite. writeBinary(String fileNamePath, byte[] content)Perform UNIX write binary content requestResponseUssWrite. writeCommon(String fileNamePath, WriteParams params)Perform UNIX write request driven by WriteParams settingsResponseUssWrite. writeText(String fileNamePath, String content)Perform UNIX write text content request -
Uses of Response in zowe.client.sdk.zosjobs.methods
Methods in zowe.client.sdk.zosjobs.methods that return Response Modifier and Type Method Description ResponseJobCancel. cancel(String jobName, String jobId, String version)Cancel a job on z/OS by job name and job id values.ResponseJobCancel. cancelByJob(Job job, String version)Cancel a job on z/OS by job object.ResponseJobCancel. cancelCommon(ModifyJobParams params)Cancel a job on z/OS by ModifyJobParams object.ResponseJobCancel. cancelPurge(String jobName, String jobId, String version)Cancel a job on z/OS by job name and job id values and purge the job output.ResponseJobCancel. cancelPurgeByJob(Job job, String version)Cancel a job on z/OS by job object and purge the job output.ResponseJobDelete. delete(String jobName, String jobId, String version)Cancel and purge a job from spool.ResponseJobDelete. deleteByJob(Job job, String version)Cancel and purge a job from spool.ResponseJobDelete. deleteCommon(ModifyJobParams params)Delete a job on z/OS. -
Uses of Response in zowe.client.sdk.zosmfauth.methods
Methods in zowe.client.sdk.zosmfauth.methods that return Response Modifier and Type Method Description ResponseZosmfPassword. changePassword(PasswordParams params)Change the password or passphrase for a specified User ID driven by PasswordParams object settingsResponseZosmfLogout. logout(kong.unirest.core.Cookie token)Request to log out of server and delete authentication cookie token -
Uses of Response in zowe.client.sdk.zosmfauth.response
Methods in zowe.client.sdk.zosmfauth.response that return Response Modifier and Type Method Description ResponseZosmfLoginResponse. getResponse()Retrieve responseConstructors in zowe.client.sdk.zosmfauth.response with parameters of type Response Constructor Description ZosmfLoginResponse(Response response, kong.unirest.core.Cookies tokens)ZosmfLoginResponse constructor -
Uses of Response in zowe.client.sdk.zostso.service
Constructors in zowe.client.sdk.zostso.service with parameters of type Response Constructor Description TsoResponseService(Response response)TsoResponseService constructor with a Response object
-