-
Notifications
You must be signed in to change notification settings - Fork 464
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Librarian] Regenerated @ 78bf2bbef74e4846ca8353fbdee038a6b8080c59 22…
…50ef3ba08540233f688bf6aaa55e9c94febf3b
- Loading branch information
Showing
12 changed files
with
903 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module Twilio | ||
module REST | ||
class Iam < IamBase; | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
## | ||
# This code was generated by | ||
# ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ | ||
# | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ | ||
# | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ | ||
# | ||
# Twilio - Iam | ||
# This is the public Twilio REST API. | ||
# | ||
# NOTE: This class is auto generated by OpenAPI Generator. | ||
# https://openapi-generator.tech | ||
# Do not edit the class manually. | ||
# | ||
|
||
module Twilio | ||
module REST | ||
class Iam | ||
class V1 < Version | ||
## | ||
# Initialize the V1 version of Iam | ||
def initialize(domain) | ||
super | ||
@version = 'v1' | ||
@api_key = nil | ||
@get_api_keys = nil | ||
@new_api_key = nil | ||
end | ||
|
||
## | ||
# @param [String] sid The Twilio-provided string that uniquely identifies the Key resource to fetch. | ||
# @return [Twilio::REST::Iam::V1::ApiKeyContext] if sid was passed. | ||
# @return [Twilio::REST::Iam::V1::ApiKeyList] | ||
def api_key(sid=:unset) | ||
if sid.nil? | ||
raise ArgumentError, 'sid cannot be nil' | ||
end | ||
if sid == :unset | ||
@api_key ||= ApiKeyList.new self | ||
else | ||
ApiKeyContext.new(self, sid) | ||
end | ||
end | ||
## | ||
# @return [Twilio::REST::Iam::V1::GetApiKeysList] | ||
def get_api_keys | ||
@get_api_keys ||= GetApiKeysList.new self | ||
end | ||
## | ||
# @return [Twilio::REST::Iam::V1::NewApiKeyList] | ||
def new_api_key | ||
@new_api_key ||= NewApiKeyList.new self | ||
end | ||
## | ||
# Provide a user friendly representation | ||
def to_s | ||
'<Twilio::REST::Iam::V1>'; | ||
end | ||
end | ||
end | ||
end | ||
end |
Oops, something went wrong.