Class: Jenkins2::CLI::UpdateCredentialsDomainByXml
Instance Attribute Summary
#errors, #options
Class Method Summary
collapse
Instance Method Summary
collapse
#call, class_to_command, #initialize, #parse, subcommands
Constructor Details
This class inherits a constructor from Jenkins2::CLI
Class Method Details
.description ⇒ Object
209
210
211
|
# File 'lib/jenkins2/cli/credentials.rb', line 209
def self.description
'Update credentials domain by XML.'
end
|
Instance Method Details
#add_options ⇒ Object
213
214
215
216
217
218
219
220
221
|
# File 'lib/jenkins2/cli/credentials.rb', line 213
def add_options
parser.separator 'Mandatory arguments:'
parser.on '--store STORE', 'Store id. (e.g. "system")' do |s|
options[:store] = s
end
parser.on '--domain DOMAIN', 'Domain id. (e.g. "_")' do |d|
options[:domain] = d
end
end
|
#mandatory_arguments ⇒ Object
223
224
225
|
# File 'lib/jenkins2/cli/credentials.rb', line 223
def mandatory_arguments
super + %i[store domain]
end
|
#run ⇒ Object
227
228
229
|
# File 'lib/jenkins2/cli/credentials.rb', line 227
def run
jc.credentials.store(options[:store]).domain(options[:domain]).update($stdin.read)
end
|