Create a VSAM cluster.
Usage
zowe zos-files create data-set-vsam <dataSetName> [options]
Positional Arguments
- 
dataSetName(string)
 
- The name of the data set in which to create a VSAM cluster
 
Options
- 
--attributes|-a(boolean)
 
- Show the full allocation attributes
 
- 
--data-class|--dc(string)
 
- The SMS data class to use for the allocation
 
- 
--data-set-organization|--dso|--dsorg(string)
 
- 
The data set organization. Default value: INDEXED
 Allowed values: INDEXED, IXD, LINEAR, LIN, NONINDEXED, NIXD, NUMBERED, NUMD, ZFS
 
 
- 
--management-class|--mc(string)
 
- The SMS management class to use for the allocation
 
- 
--retain-for|--rf(number)
 
- The number of days that the VSAM cluster will be retained on the system. You can delete the cluster at any time when neither retain-for nor retain-to is specified.
 
- 
--retain-to|--rt(string)
 
- The earliest date that a command without the PURGE parameter can delete an entry. Specify the expiration date in the form yyyyddd, where yyyy is a four-digit year (maximum value: 2155) and ddd is the three-digit day of the year from 001 through 365 (for non-leap years) or 366 (for leap years). You can delete the cluster at any time when neither retain-for nor retain-to is used. You cannot specify both the 'retain-to' and 'retain-for' options.
 
- 
--secondary-space|--ss(number)
 
- The number of items for the secondary space allocation (for example, 840). The type of item allocated is the same as the type used for the '--size' option. If you do not specify a secondary allocation, a value of ~10% of the primary allocation is used.
 
- 
--size|--sz(string)
 
- 
--storage-class|--sc(string)
 
- The SMS storage class to use for the allocation
 
- 
--volumes|-v(string)
 
- The storage volumes on which to allocate a VSAM cluster. Specify a single volume by its volume serial (VOLSER). To specify more than one volume, enclose the option in double-quotes and separate each VOLSER with a space. You must specify the volumes option when your cluster is not SMS-managed.
 
- 
--response-timeout|--rto(number)
 
- The maximum amount of time in seconds the z/OSMF Files TSO servlet should run before returning a response. Any request exceeding this amount of time will be terminated and return an error. Allowed values: 5 - 600
 
Zosmf Connection Options
- 
--host|-H(string)
 
- The z/OSMF server host name.
 
- 
--port|-P(number)
 
- 
The z/OSMF server port. Default value: 443 
 
- 
--user|-u(string)
 
- Mainframe (z/OSMF) user name, which can be the same as your TSO login.
 
- 
--password|--pass|--pw(string)
 
- Mainframe (z/OSMF) password, which can be the same as your TSO password.
 
- 
--reject-unauthorized|--ru(boolean)
 
- 
--base-path|--bp(string)
 
- The base path for your API mediation layer instance. Specify this option to prepend the base path to all z/OSMF resources when making REST requests. Do not specify this option if you are not using an API mediation layer.
 
- 
--protocol(string)
 
- 
--cert-file(local file path)
 
- The file path to a certificate file to use for authentication
 
- 
--cert-key-file(local file path)
 
- The file path to a certificate key file to use for authentication
 
- 
--completion-timeout|--cto(number)
 
- The amount in time, in seconds, a REST operation should wait to complete before timing out
 
- 
--establish-connection-timeout|--ecto(number)
 
- The amount of time, in seconds, a REST operation should wait while connecting to the server before timing out
 
Profile Options
Base Connection Options
Examples
- 
Create a VSAM data set named "SOME.DATA.SET.NAME" using default values of INDEXED, 840 KB primary storage and 84 KB secondary storage: 
- zowe zos-files create data-set-vsam SOME.DATA.SET.NAME
 
- 
Create a 5 MB LINEAR VSAM data set named "SOME.DATA.SET.NAME" with 1 MB of secondary space. Show the properties of the data set when it is created: 
- zowe zos-files create data-set-vsam SOME.DATA.SET.NAME --data-set-organization LINEAR --size 5MB --secondary-space 1 --attributes
 
- 
Create a VSAM data set named "SOME.DATA.SET.NAME", which is retained for 100 days: 
- zowe zos-files create data-set-vsam SOME.DATA.SET.NAME --retain-for 100