Class: DaggerRuby::Secret
Instance Attribute Summary
Attributes inherited from DaggerObject
#client, #query_builder
Class Method Summary
collapse
Instance Method Summary
collapse
#chain_operation, from_id, #id, #initialize
Class Method Details
.root_field_name ⇒ Object
7
8
9
|
# File 'lib/dagger_ruby/secret.rb', line 7
def self.root_field_name
"secret"
end
|
Instance Method Details
#name ⇒ Object
11
12
13
|
# File 'lib/dagger_ruby/secret.rb', line 11
def name
get_scalar("name")
end
|
#plaintext ⇒ Object
15
16
17
|
# File 'lib/dagger_ruby/secret.rb', line 15
def plaintext
get_scalar("plaintext")
end
|
#sync ⇒ Object
19
20
21
22
|
# File 'lib/dagger_ruby/secret.rb', line 19
def sync
get_scalar("id")
self
end
|