lib/twilio-ruby/rest/microvisor.rb in twilio-ruby-5.74.2 vs lib/twilio-ruby/rest/microvisor.rb in twilio-ruby-5.74.3

- old
+ new

@@ -27,9 +27,25 @@ def v1 @v1 ||= V1.new self end ## + # @param [String] key The config key; up to 100 characters. + # @return [Twilio::REST::Microvisor::V1::AccountConfigInstance] if key was passed. + # @return [Twilio::REST::Microvisor::V1::AccountConfigList] + def account_configs(key=:unset) + self.v1.account_configs(key) + end + + ## + # @param [String] key The secret key; up to 100 characters. + # @return [Twilio::REST::Microvisor::V1::AccountSecretInstance] if key was passed. + # @return [Twilio::REST::Microvisor::V1::AccountSecretList] + def account_secrets(key=:unset) + self.v1.account_secrets(key) + end + + ## # @param [String] sid A 34-character string that uniquely identifies this App. # @return [Twilio::REST::Microvisor::V1::AppInstance] if sid was passed. # @return [Twilio::REST::Microvisor::V1::AppList] def apps(sid=:unset) self.v1.apps(sid) \ No newline at end of file