issueSecretCmd.Flags().String(walletFlag,"","Path to the wallet that will be owner of the credentials")
issueSecretCmd.Flags().String(addressFlag,"","Address of the wallet account")
issueSecretCmd.Flags().String(peerFlag,"","Address of a frostfs peer to connect to")
issueSecretCmd.Flags().StringSlice(gatePublicKeyFlag,nil,"Public 256r1 key of a gate (use flags repeatedly for multiple gates or separate them by comma)")
issueSecretCmd.Flags().String(containerIDFlag,"","Auth container id to put the secret into (if not provided new container will be created)")
issueSecretCmd.Flags().String(containerFriendlyNameFlag,"","Friendly name of auth container to put the secret into (flag value will be used only if --container-id is missed)")
issueSecretCmd.Flags().String(containerPlacementPolicyFlag,"REP 2 IN X CBF 3 SELECT 2 FROM * AS X","Placement policy of auth container to put the secret into (flag value will be used only if --container-id is missed)")
issueSecretCmd.Flags().String(sessionTokensFlag,"","create session tokens with rules, if the rules are set as 'none', no session tokens will be created")
issueSecretCmd.Flags().Duration(lifetimeFlag,defaultAccessBoxLifetime,"Lifetime of tokens. For example 50h30m (note: max time unit is an hour so to set a day you should use 24h).\nIt will be ceil rounded to the nearest amount of epoch.")
issueSecretCmd.Flags().String(containerPolicyFlag,"","Mapping AWS storage class to FrostFS storage policy as plain json string or path to json file")
issueSecretCmd.Flags().String(awsCLICredentialFlag,"","Path to the aws cli credential file")
issueSecretCmd.Flags().Duration(poolDialTimeoutFlag,defaultPoolDialTimeout,"Timeout for connection to the node in pool to be established")
issueSecretCmd.Flags().Duration(poolHealthcheckTimeoutFlag,defaultPoolHealthcheckTimeout,"Timeout for request to node to decide if it is alive")
issueSecretCmd.Flags().Duration(poolRebalanceIntervalFlag,defaultPoolRebalanceInterval,"Interval for updating nodes health status")
issueSecretCmd.Flags().Duration(poolStreamTimeoutFlag,defaultPoolStreamTimeout,"Timeout for individual operation in streaming RPC")