Description Format Methods Public fields Methods Examples
LAMP.Type
An R6Class
generator object
getAttachment
@param type.id character
@param attachment.key character
status code : 200 | 200 Success
return type : object
response headers :
status code : 400 | 400 Bad Request
return type : Error
response headers :
status code : 403 | 403 Authorization Failed
return type : Error
response headers :
status code : 404 | 404 Not Found
return type : Error
response headers :
status code : 0 | 500 Internal Error
return type : Error
response headers :
getDynamicAttachment
@param type.id character
@param attachment.key character
@param invoke.always character
@param include.logs character
@param ignore.output character
status code : 200 | 200 Success
return type : object
response headers :
status code : 400 | 400 Bad Request
return type : Error
response headers :
status code : 403 | 403 Authorization Failed
return type : Error
response headers :
status code : 404 | 404 Not Found
return type : Error
response headers :
status code : 0 | 500 Internal Error
return type : Error
response headers :
listAttachments
@param type.id character
status code : 200 | 200 Success
return type : object
response headers :
status code : 400 | 400 Bad Request
return type : Error
response headers :
status code : 403 | 403 Authorization Failed
return type : Error
response headers :
status code : 404 | 404 Not Found
return type : Error
response headers :
status code : 0 | 500 Internal Error
return type : Error
response headers :
parent Find the owner(s) of the resource. Get the parent type identifier of the data structure referenced by the identifier.
@param type.id character
@param transform character
status code : 200 | 200 Success
return type : character
response headers :
status code : 400 | 400 Bad Request
return type : Error
response headers :
status code : 403 | 403 Authorization Failed
return type : Error
response headers :
status code : 404 | 404 Not Found
return type : Error
response headers :
status code : 0 | 500 Internal Error
return type : Error
response headers :
setAttachment
@param type.id character
@param target character
@param attachment.key character
@param body object
status code : 200 | 200 Success
return type : object
response headers :
status code : 400 | 400 Bad Request
return type : Error
response headers :
status code : 403 | 403 Authorization Failed
return type : Error
response headers :
status code : 404 | 404 Not Found
return type : Error
response headers :
status code : 0 | 500 Internal Error
return type : Error
response headers :
setDynamicAttachment
@param type.id character
@param target character
@param attachment.key character
@param invoke.once character
@param dynamic.attachment DynamicAttachment
status code : 200 | 200 Success
return type : object
response headers :
status code : 400 | 400 Bad Request
return type : Error
response headers :
status code : 403 | 403 Authorization Failed
return type : Error
response headers :
status code : 404 | 404 Not Found
return type : Error
response headers :
status code : 0 | 500 Internal Error
return type : Error
response headers :
apiClient
Handles the client-server communication.
new()
TypeApi$new(apiClient)
getAttachment()
TypeApi$getAttachment(type.id, attachment.key, ...)
getAttachmentWithHttpInfo()
TypeApi$getAttachmentWithHttpInfo(type.id, attachment.key, ...)
getDynamicAttachment()
TypeApi$getDynamicAttachment( type.id, attachment.key, invoke.always, include.logs, ignore.output, ... )
getDynamicAttachmentWithHttpInfo()
TypeApi$getDynamicAttachmentWithHttpInfo( type.id, attachment.key, invoke.always, include.logs, ignore.output, ... )
listAttachments()
TypeApi$listAttachments(type.id, ...)
listAttachmentsWithHttpInfo()
TypeApi$listAttachmentsWithHttpInfo(type.id, ...)
parent()
TypeApi$parent(type.id, transform = NULL, ...)
parentWithHttpInfo()
TypeApi$parentWithHttpInfo(type.id, transform = NULL, ...)
setAttachment()
TypeApi$setAttachment(type.id, target, attachment.key, body, ...)
setAttachmentWithHttpInfo()
TypeApi$setAttachmentWithHttpInfo(type.id, target, attachment.key, body, ...)
setDynamicAttachment()
TypeApi$setDynamicAttachment( type.id, target, attachment.key, invoke.once, dynamic.attachment, ... )
setDynamicAttachmentWithHttpInfo()
TypeApi$setDynamicAttachmentWithHttpInfo( type.id, target, attachment.key, invoke.once, dynamic.attachment, ... )
clone()
The objects of this class are cloneable with this method.
TypeApi$clone(deep = FALSE)
deep
Whether to make a deep clone.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | ## Not run:
#################### getAttachment ####################
library(LAMP)
var.type.id <- 'type.id_example' # character |
var.attachment.key <- 'attachment.key_example' # character |
result <- LAMP.Type$getAttachment(var.type.id, var.attachment.key)
#################### getDynamicAttachment ####################
library(LAMP)
var.type.id <- 'type.id_example' # character |
var.attachment.key <- 'attachment.key_example' # character |
var.invoke.always <- 'invoke.always_example' # character |
var.include.logs <- 'include.logs_example' # character |
var.ignore.output <- 'ignore.output_example' # character |
result <- LAMP.Type$getDynamicAttachment(var.type.id,
var.attachment.key,
var.invoke.always,
var.include.logs,
var.ignore.output)
#################### listAttachments ####################
library(LAMP)
var.type.id <- 'type.id_example' # character |
result <- LAMP.Type$listAttachments(var.type.id)
#################### parent ####################
library(LAMP)
var.type.id <- 'type.id_example' # character |
#Find the owner(s) of the resource.
result <- LAMP.Type$parent(var.type.id)
#################### setAttachment ####################
library(LAMP)
var.type.id <- 'type.id_example' # character |
var.target <- 'target_example' # character |
var.attachment.key <- 'attachment.key_example' # character |
var.body <- NULL # object |
result <- LAMP.Type$setAttachment(var.type.id, var.target, var.attachment.key, var.body)
#################### setDynamicAttachment ####################
library(LAMP)
var.type.id <- 'type.id_example' # character |
var.target <- 'target_example' # character |
var.attachment.key <- 'attachment.key_example' # character |
var.invoke.once <- 'invoke.once_example' # character |
var.dynamic.attachment <- DynamicAttachment$new() # DynamicAttachment |
result <- LAMP.Type$setDynamicAttachment(var.type.id,
var.target,
var.attachment.key,
var.invoke.once,
var.dynamic.attachment)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.