class Build::AddonAttachmentsApi

Defined in:

build-client/api/addon_attachments_api.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(api_client : Build::ApiClient = ApiClient.default) #

[View source]

Instance Method Detail

def api_client : ApiClient #

[View source]
def api_client=(api_client : ApiClient) #

[View source]
def create_addon_attachment(create_addon_attachment_request : CreateAddonAttachmentRequest | Nil = nil) #

create addon attachment Attach an addon to an app @return [AddonAttachment]


[View source]
def create_addon_attachment_with_http_info(create_addon_attachment_request : CreateAddonAttachmentRequest | Nil = nil) #

create addon attachment Attach an addon to an app @return [Array<(AddonAttachment, Integer, Hash)>] AddonAttachment data, response status code and response headers


[View source]
def delete_addon_attachment(addon_attachment_id : String) #

delete addon attachment Detach an addon from an app @param addon_attachment_id [String] Addon attachment ID @return [AddonAttachment]


[View source]
def delete_addon_attachment_with_http_info(addon_attachment_id : String) #

delete addon attachment Detach an addon from an app @param addon_attachment_id [String] Addon attachment ID @return [Array<(AddonAttachment, Integer, Hash)>] AddonAttachment data, response status code and response headers


[View source]
def get_addon_attachment(addon_attachment_id : String) #

show addon attachment Get info about an addon attachment @param addon_attachment_id [String] Addon attachment ID @return [AddonAttachment]


[View source]
def get_addon_attachment_with_http_info(addon_attachment_id : String) #

show addon attachment Get info about an addon attachment @param addon_attachment_id [String] Addon attachment ID @return [Array<(AddonAttachment, Integer, Hash)>] AddonAttachment data, response status code and response headers


[View source]
def list_addon_attachments #

list addon attachments List all addon attachments @return [Array(AddonAttachment)]


[View source]
def list_addon_attachments_with_http_info #

list addon attachments List all addon attachments @return [Array<(Array(AddonAttachment), Integer, Hash)>] Array(AddonAttachment) data, response status code and response headers


[View source]