Skip to content
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.

Latest commit

 

History

History
93 lines (50 loc) · 2.37 KB

BaseLambda.md

File metadata and controls

93 lines (50 loc) · 2.37 KB

BaseLambda

Properties

Name Type Description Notes
Name string
Runtime string
LambdaType string

Methods

NewBaseLambda

func NewBaseLambda(name string, runtime string, lambdaType string, ) *BaseLambda

NewBaseLambda instantiates a new BaseLambda object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewBaseLambdaWithDefaults

func NewBaseLambdaWithDefaults() *BaseLambda

NewBaseLambdaWithDefaults instantiates a new BaseLambda object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetName

func (o *BaseLambda) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *BaseLambda) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetName

func (o *BaseLambda) SetName(v string)

SetName sets Name field to given value.

GetRuntime

func (o *BaseLambda) GetRuntime() string

GetRuntime returns the Runtime field if non-nil, zero value otherwise.

GetRuntimeOk

func (o *BaseLambda) GetRuntimeOk() (*string, bool)

GetRuntimeOk returns a tuple with the Runtime field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetRuntime

func (o *BaseLambda) SetRuntime(v string)

SetRuntime sets Runtime field to given value.

GetLambdaType

func (o *BaseLambda) GetLambdaType() string

GetLambdaType returns the LambdaType field if non-nil, zero value otherwise.

GetLambdaTypeOk

func (o *BaseLambda) GetLambdaTypeOk() (*string, bool)

GetLambdaTypeOk returns a tuple with the LambdaType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetLambdaType

func (o *BaseLambda) SetLambdaType(v string)

SetLambdaType sets LambdaType field to given value.

[Back to Model list] [Back to API list] [Back to README]