seq

package module
v0.0.0-...-ab4a1a4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 25, 2021 License: MIT Imports: 22 Imported by: 0

README

build-test

go-seq

Go API Client for Seq.

Usage

$ go get github.com/innovationnorway/go-seq

Contributing

Install openapi-generator:

$ npm install -g @openapitools/openapi-generator-cli

Generate API client:

$ openapi-generator-cli generate -g go -i openapi.yaml --package-name=seq -p useOneOfDiscriminatorLookup=true

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
	ContextHttpSignatureAuth = contextKey("httpsignature")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	ApikeysApi *ApikeysApiService

	LicensesApi *LicensesApiService

	SettingsApi *SettingsApiService

	UsersApi *UsersApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Seq API API v1.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResonse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type ApiAddApiKeyRequest

type ApiAddApiKeyRequest struct {
	ApiService *ApikeysApiService
	// contains filtered or unexported fields
}

func (ApiAddApiKeyRequest) ApiKey

func (ApiAddApiKeyRequest) Execute

type ApiAddUserRequest

type ApiAddUserRequest struct {
	ApiService *UsersApiService
	// contains filtered or unexported fields
}

func (ApiAddUserRequest) Execute

func (r ApiAddUserRequest) Execute() (User, *_nethttp.Response, error)

func (ApiAddUserRequest) User

type ApiDeleteApiKeyRequest

type ApiDeleteApiKeyRequest struct {
	ApiService *ApikeysApiService
	// contains filtered or unexported fields
}

func (ApiDeleteApiKeyRequest) Execute

type ApiDeleteUserRequest

type ApiDeleteUserRequest struct {
	ApiService *UsersApiService
	// contains filtered or unexported fields
}

func (ApiDeleteUserRequest) Execute

func (r ApiDeleteUserRequest) Execute() (*_nethttp.Response, error)

type ApiDowngradeLicenseRequest

type ApiDowngradeLicenseRequest struct {
	ApiService *LicensesApiService
	// contains filtered or unexported fields
}

func (ApiDowngradeLicenseRequest) Execute

type ApiGetApiKeyRequest

type ApiGetApiKeyRequest struct {
	ApiService *ApikeysApiService
	// contains filtered or unexported fields
}

func (ApiGetApiKeyRequest) Execute

type ApiGetCurrentUserRequest

type ApiGetCurrentUserRequest struct {
	ApiService *UsersApiService
	// contains filtered or unexported fields
}

func (ApiGetCurrentUserRequest) Execute

type ApiGetLicenseRequest

type ApiGetLicenseRequest struct {
	ApiService *LicensesApiService
	// contains filtered or unexported fields
}

func (ApiGetLicenseRequest) Execute

type ApiGetSettingRequest

type ApiGetSettingRequest struct {
	ApiService *SettingsApiService
	// contains filtered or unexported fields
}

func (ApiGetSettingRequest) Execute

type ApiGetUserRequest

type ApiGetUserRequest struct {
	ApiService *UsersApiService
	// contains filtered or unexported fields
}

func (ApiGetUserRequest) Execute

func (r ApiGetUserRequest) Execute() (User, *_nethttp.Response, error)

type ApiKey

type ApiKey struct {
	AssignedPermissions *[]string      `json:"AssignedPermissions,omitempty"`
	Id                  *string        `json:"Id,omitempty"`
	InputSettings       *InputSettings `json:"InputSettings,omitempty"`
	IsDefault           *bool          `json:"IsDefault,omitempty"`
	OwnerId             *string        `json:"OwnerId,omitempty"`
	Title               string         `json:"Title"`
	Token               *string        `json:"Token,omitempty"`
	TokenPrefix         *string        `json:"TokenPrefix,omitempty"`
}

ApiKey struct for ApiKey

func NewApiKey

func NewApiKey(title string) *ApiKey

NewApiKey instantiates a new ApiKey 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

func NewApiKeyWithDefaults

func NewApiKeyWithDefaults() *ApiKey

NewApiKeyWithDefaults instantiates a new ApiKey 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

func (*ApiKey) GetAssignedPermissions

func (o *ApiKey) GetAssignedPermissions() []string

GetAssignedPermissions returns the AssignedPermissions field value if set, zero value otherwise.

func (*ApiKey) GetAssignedPermissionsOk

func (o *ApiKey) GetAssignedPermissionsOk() (*[]string, bool)

GetAssignedPermissionsOk returns a tuple with the AssignedPermissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiKey) GetId

func (o *ApiKey) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ApiKey) GetIdOk

func (o *ApiKey) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiKey) GetInputSettings

func (o *ApiKey) GetInputSettings() InputSettings

GetInputSettings returns the InputSettings field value if set, zero value otherwise.

func (*ApiKey) GetInputSettingsOk

func (o *ApiKey) GetInputSettingsOk() (*InputSettings, bool)

GetInputSettingsOk returns a tuple with the InputSettings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiKey) GetIsDefault

func (o *ApiKey) GetIsDefault() bool

GetIsDefault returns the IsDefault field value if set, zero value otherwise.

func (*ApiKey) GetIsDefaultOk

func (o *ApiKey) GetIsDefaultOk() (*bool, bool)

GetIsDefaultOk returns a tuple with the IsDefault field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiKey) GetOwnerId

func (o *ApiKey) GetOwnerId() string

GetOwnerId returns the OwnerId field value if set, zero value otherwise.

func (*ApiKey) GetOwnerIdOk

func (o *ApiKey) GetOwnerIdOk() (*string, bool)

GetOwnerIdOk returns a tuple with the OwnerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiKey) GetTitle

func (o *ApiKey) GetTitle() string

GetTitle returns the Title field value

func (*ApiKey) GetTitleOk

func (o *ApiKey) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value and a boolean to check if the value has been set.

func (*ApiKey) GetToken

func (o *ApiKey) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*ApiKey) GetTokenOk

func (o *ApiKey) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiKey) GetTokenPrefix

func (o *ApiKey) GetTokenPrefix() string

GetTokenPrefix returns the TokenPrefix field value if set, zero value otherwise.

func (*ApiKey) GetTokenPrefixOk

func (o *ApiKey) GetTokenPrefixOk() (*string, bool)

GetTokenPrefixOk returns a tuple with the TokenPrefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiKey) HasAssignedPermissions

func (o *ApiKey) HasAssignedPermissions() bool

HasAssignedPermissions returns a boolean if a field has been set.

func (*ApiKey) HasId

func (o *ApiKey) HasId() bool

HasId returns a boolean if a field has been set.

func (*ApiKey) HasInputSettings

func (o *ApiKey) HasInputSettings() bool

HasInputSettings returns a boolean if a field has been set.

func (*ApiKey) HasIsDefault

func (o *ApiKey) HasIsDefault() bool

HasIsDefault returns a boolean if a field has been set.

func (*ApiKey) HasOwnerId

func (o *ApiKey) HasOwnerId() bool

HasOwnerId returns a boolean if a field has been set.

func (*ApiKey) HasToken

func (o *ApiKey) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*ApiKey) HasTokenPrefix

func (o *ApiKey) HasTokenPrefix() bool

HasTokenPrefix returns a boolean if a field has been set.

func (ApiKey) MarshalJSON

func (o ApiKey) MarshalJSON() ([]byte, error)

func (*ApiKey) SetAssignedPermissions

func (o *ApiKey) SetAssignedPermissions(v []string)

SetAssignedPermissions gets a reference to the given []string and assigns it to the AssignedPermissions field.

func (*ApiKey) SetId

func (o *ApiKey) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ApiKey) SetInputSettings

func (o *ApiKey) SetInputSettings(v InputSettings)

SetInputSettings gets a reference to the given InputSettings and assigns it to the InputSettings field.

func (*ApiKey) SetIsDefault

func (o *ApiKey) SetIsDefault(v bool)

SetIsDefault gets a reference to the given bool and assigns it to the IsDefault field.

func (*ApiKey) SetOwnerId

func (o *ApiKey) SetOwnerId(v string)

SetOwnerId gets a reference to the given string and assigns it to the OwnerId field.

func (*ApiKey) SetTitle

func (o *ApiKey) SetTitle(v string)

SetTitle sets field value

func (*ApiKey) SetToken

func (o *ApiKey) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (*ApiKey) SetTokenPrefix

func (o *ApiKey) SetTokenPrefix(v string)

SetTokenPrefix gets a reference to the given string and assigns it to the TokenPrefix field.

type ApiListApiKeysRequest

type ApiListApiKeysRequest struct {
	ApiService *ApikeysApiService
	// contains filtered or unexported fields
}

func (ApiListApiKeysRequest) Execute

func (r ApiListApiKeysRequest) Execute() ([]ApiKey, *_nethttp.Response, error)

func (ApiListApiKeysRequest) OwnerId

func (ApiListApiKeysRequest) Shared

type ApiListLicensesRequest

type ApiListLicensesRequest struct {
	ApiService *LicensesApiService
	// contains filtered or unexported fields
}

func (ApiListLicensesRequest) Execute

type ApiListUsersRequest

type ApiListUsersRequest struct {
	ApiService *UsersApiService
	// contains filtered or unexported fields
}

func (ApiListUsersRequest) Execute

func (r ApiListUsersRequest) Execute() ([]User, *_nethttp.Response, error)

type ApiUpdateApiKeyRequest

type ApiUpdateApiKeyRequest struct {
	ApiService *ApikeysApiService
	// contains filtered or unexported fields
}

func (ApiUpdateApiKeyRequest) ApiKey

func (ApiUpdateApiKeyRequest) Execute

type ApiUpdateLicenseRequest

type ApiUpdateLicenseRequest struct {
	ApiService *LicensesApiService
	// contains filtered or unexported fields
}

func (ApiUpdateLicenseRequest) Execute

func (ApiUpdateLicenseRequest) License

type ApiUpdateSettingRequest

type ApiUpdateSettingRequest struct {
	ApiService *SettingsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateSettingRequest) Execute

func (ApiUpdateSettingRequest) Setting

type ApiUpdateUserRequest

type ApiUpdateUserRequest struct {
	ApiService *UsersApiService
	// contains filtered or unexported fields
}

func (ApiUpdateUserRequest) Execute

func (r ApiUpdateUserRequest) Execute() (User, *_nethttp.Response, error)

func (ApiUpdateUserRequest) User

type ApikeysApiService

type ApikeysApiService service

ApikeysApiService ApikeysApi service

func (*ApikeysApiService) AddApiKey

* AddApiKey Add a new API key * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiAddApiKeyRequest

func (*ApikeysApiService) AddApiKeyExecute

func (a *ApikeysApiService) AddApiKeyExecute(r ApiAddApiKeyRequest) (ApiKey, *_nethttp.Response, error)

* Execute executes the request * @return ApiKey

func (*ApikeysApiService) DeleteApiKey

* DeleteApiKey Remove an existing API key * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id The id of the API key * @return ApiDeleteApiKeyRequest

func (*ApikeysApiService) DeleteApiKeyExecute

func (a *ApikeysApiService) DeleteApiKeyExecute(r ApiDeleteApiKeyRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*ApikeysApiService) GetApiKey

* GetApiKey Retrieve the API key with the given id * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id The id of the API key * @return ApiGetApiKeyRequest

func (*ApikeysApiService) GetApiKeyExecute

func (a *ApikeysApiService) GetApiKeyExecute(r ApiGetApiKeyRequest) (ApiKey, *_nethttp.Response, error)

* Execute executes the request * @return ApiKey

func (*ApikeysApiService) ListApiKeys

* ListApiKeys Retrieve API keys * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiListApiKeysRequest

func (*ApikeysApiService) ListApiKeysExecute

func (a *ApikeysApiService) ListApiKeysExecute(r ApiListApiKeysRequest) ([]ApiKey, *_nethttp.Response, error)

* Execute executes the request * @return []ApiKey

func (*ApikeysApiService) UpdateApiKey

* UpdateApiKey Update an existing API key * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id The id of the API key * @return ApiUpdateApiKeyRequest

func (*ApikeysApiService) UpdateApiKeyExecute

func (a *ApikeysApiService) UpdateApiKeyExecute(r ApiUpdateApiKeyRequest) (ApiKey, *_nethttp.Response, error)

* Execute executes the request * @return ApiKey

type AuthenticationProvider

type AuthenticationProvider struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

AuthenticationProvider struct for AuthenticationProvider

func NewAuthenticationProvider

func NewAuthenticationProvider(id string, name string) *AuthenticationProvider

NewAuthenticationProvider instantiates a new AuthenticationProvider 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

func NewAuthenticationProviderWithDefaults

func NewAuthenticationProviderWithDefaults() *AuthenticationProvider

NewAuthenticationProviderWithDefaults instantiates a new AuthenticationProvider 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

func (*AuthenticationProvider) GetId

func (o *AuthenticationProvider) GetId() string

GetId returns the Id field value

func (*AuthenticationProvider) GetIdOk

func (o *AuthenticationProvider) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*AuthenticationProvider) GetName

func (o *AuthenticationProvider) GetName() string

GetName returns the Name field value

func (*AuthenticationProvider) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*AuthenticationProvider) GetValue

func (o *AuthenticationProvider) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*AuthenticationProvider) GetValueOk

func (o *AuthenticationProvider) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthenticationProvider) HasValue

func (o *AuthenticationProvider) HasValue() bool

HasValue returns a boolean if a field has been set.

func (AuthenticationProvider) MarshalJSON

func (o AuthenticationProvider) MarshalJSON() ([]byte, error)

func (*AuthenticationProvider) SetId

func (o *AuthenticationProvider) SetId(v string)

SetId sets field value

func (*AuthenticationProvider) SetName

func (o *AuthenticationProvider) SetName(v string)

SetName sets field value

func (*AuthenticationProvider) SetValue

func (o *AuthenticationProvider) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type AutomaticAccessADGroup

type AutomaticAccessADGroup struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

AutomaticAccessADGroup struct for AutomaticAccessADGroup

func NewAutomaticAccessADGroup

func NewAutomaticAccessADGroup(id string, name string) *AutomaticAccessADGroup

NewAutomaticAccessADGroup instantiates a new AutomaticAccessADGroup 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

func NewAutomaticAccessADGroupWithDefaults

func NewAutomaticAccessADGroupWithDefaults() *AutomaticAccessADGroup

NewAutomaticAccessADGroupWithDefaults instantiates a new AutomaticAccessADGroup 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

func (*AutomaticAccessADGroup) GetId

func (o *AutomaticAccessADGroup) GetId() string

GetId returns the Id field value

func (*AutomaticAccessADGroup) GetIdOk

func (o *AutomaticAccessADGroup) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*AutomaticAccessADGroup) GetName

func (o *AutomaticAccessADGroup) GetName() string

GetName returns the Name field value

func (*AutomaticAccessADGroup) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*AutomaticAccessADGroup) GetValue

func (o *AutomaticAccessADGroup) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*AutomaticAccessADGroup) GetValueOk

func (o *AutomaticAccessADGroup) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AutomaticAccessADGroup) HasValue

func (o *AutomaticAccessADGroup) HasValue() bool

HasValue returns a boolean if a field has been set.

func (AutomaticAccessADGroup) MarshalJSON

func (o AutomaticAccessADGroup) MarshalJSON() ([]byte, error)

func (*AutomaticAccessADGroup) SetId

func (o *AutomaticAccessADGroup) SetId(v string)

SetId sets field value

func (*AutomaticAccessADGroup) SetName

func (o *AutomaticAccessADGroup) SetName(v string)

SetName sets field value

func (*AutomaticAccessADGroup) SetValue

func (o *AutomaticAccessADGroup) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type AutomaticallyProvisionAuthenticatedUsers

type AutomaticallyProvisionAuthenticatedUsers struct {
	Id    string `json:"Id"`
	Name  string `json:"Name"`
	Value *bool  `json:"Value,omitempty"`
}

AutomaticallyProvisionAuthenticatedUsers struct for AutomaticallyProvisionAuthenticatedUsers

func NewAutomaticallyProvisionAuthenticatedUsers

func NewAutomaticallyProvisionAuthenticatedUsers(id string, name string) *AutomaticallyProvisionAuthenticatedUsers

NewAutomaticallyProvisionAuthenticatedUsers instantiates a new AutomaticallyProvisionAuthenticatedUsers 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

func NewAutomaticallyProvisionAuthenticatedUsersWithDefaults

func NewAutomaticallyProvisionAuthenticatedUsersWithDefaults() *AutomaticallyProvisionAuthenticatedUsers

NewAutomaticallyProvisionAuthenticatedUsersWithDefaults instantiates a new AutomaticallyProvisionAuthenticatedUsers 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

func (*AutomaticallyProvisionAuthenticatedUsers) GetId

GetId returns the Id field value

func (*AutomaticallyProvisionAuthenticatedUsers) GetIdOk

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*AutomaticallyProvisionAuthenticatedUsers) GetName

GetName returns the Name field value

func (*AutomaticallyProvisionAuthenticatedUsers) GetNameOk

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*AutomaticallyProvisionAuthenticatedUsers) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*AutomaticallyProvisionAuthenticatedUsers) GetValueOk

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AutomaticallyProvisionAuthenticatedUsers) HasValue

HasValue returns a boolean if a field has been set.

func (AutomaticallyProvisionAuthenticatedUsers) MarshalJSON

func (*AutomaticallyProvisionAuthenticatedUsers) SetId

SetId sets field value

func (*AutomaticallyProvisionAuthenticatedUsers) SetName

SetName sets field value

func (*AutomaticallyProvisionAuthenticatedUsers) SetValue

SetValue gets a reference to the given bool and assigns it to the Value field.

type AzureADAuthority

type AzureADAuthority struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

AzureADAuthority struct for AzureADAuthority

func NewAzureADAuthority

func NewAzureADAuthority(id string, name string) *AzureADAuthority

NewAzureADAuthority instantiates a new AzureADAuthority 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

func NewAzureADAuthorityWithDefaults

func NewAzureADAuthorityWithDefaults() *AzureADAuthority

NewAzureADAuthorityWithDefaults instantiates a new AzureADAuthority 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

func (*AzureADAuthority) GetId

func (o *AzureADAuthority) GetId() string

GetId returns the Id field value

func (*AzureADAuthority) GetIdOk

func (o *AzureADAuthority) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*AzureADAuthority) GetName

func (o *AzureADAuthority) GetName() string

GetName returns the Name field value

func (*AzureADAuthority) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*AzureADAuthority) GetValue

func (o *AzureADAuthority) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*AzureADAuthority) GetValueOk

func (o *AzureADAuthority) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AzureADAuthority) HasValue

func (o *AzureADAuthority) HasValue() bool

HasValue returns a boolean if a field has been set.

func (AzureADAuthority) MarshalJSON

func (o AzureADAuthority) MarshalJSON() ([]byte, error)

func (*AzureADAuthority) SetId

func (o *AzureADAuthority) SetId(v string)

SetId sets field value

func (*AzureADAuthority) SetName

func (o *AzureADAuthority) SetName(v string)

SetName sets field value

func (*AzureADAuthority) SetValue

func (o *AzureADAuthority) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type AzureADClientId

type AzureADClientId struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

AzureADClientId struct for AzureADClientId

func NewAzureADClientId

func NewAzureADClientId(id string, name string) *AzureADClientId

NewAzureADClientId instantiates a new AzureADClientId 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

func NewAzureADClientIdWithDefaults

func NewAzureADClientIdWithDefaults() *AzureADClientId

NewAzureADClientIdWithDefaults instantiates a new AzureADClientId 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

func (*AzureADClientId) GetId

func (o *AzureADClientId) GetId() string

GetId returns the Id field value

func (*AzureADClientId) GetIdOk

func (o *AzureADClientId) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*AzureADClientId) GetName

func (o *AzureADClientId) GetName() string

GetName returns the Name field value

func (*AzureADClientId) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*AzureADClientId) GetValue

func (o *AzureADClientId) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*AzureADClientId) GetValueOk

func (o *AzureADClientId) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AzureADClientId) HasValue

func (o *AzureADClientId) HasValue() bool

HasValue returns a boolean if a field has been set.

func (AzureADClientId) MarshalJSON

func (o AzureADClientId) MarshalJSON() ([]byte, error)

func (*AzureADClientId) SetId

func (o *AzureADClientId) SetId(v string)

SetId sets field value

func (*AzureADClientId) SetName

func (o *AzureADClientId) SetName(v string)

SetName sets field value

func (*AzureADClientId) SetValue

func (o *AzureADClientId) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type AzureADClientKey

type AzureADClientKey struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

AzureADClientKey struct for AzureADClientKey

func NewAzureADClientKey

func NewAzureADClientKey(id string, name string) *AzureADClientKey

NewAzureADClientKey instantiates a new AzureADClientKey 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

func NewAzureADClientKeyWithDefaults

func NewAzureADClientKeyWithDefaults() *AzureADClientKey

NewAzureADClientKeyWithDefaults instantiates a new AzureADClientKey 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

func (*AzureADClientKey) GetId

func (o *AzureADClientKey) GetId() string

GetId returns the Id field value

func (*AzureADClientKey) GetIdOk

func (o *AzureADClientKey) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*AzureADClientKey) GetName

func (o *AzureADClientKey) GetName() string

GetName returns the Name field value

func (*AzureADClientKey) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*AzureADClientKey) GetValue

func (o *AzureADClientKey) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*AzureADClientKey) GetValueOk

func (o *AzureADClientKey) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AzureADClientKey) HasValue

func (o *AzureADClientKey) HasValue() bool

HasValue returns a boolean if a field has been set.

func (AzureADClientKey) MarshalJSON

func (o AzureADClientKey) MarshalJSON() ([]byte, error)

func (*AzureADClientKey) SetId

func (o *AzureADClientKey) SetId(v string)

SetId sets field value

func (*AzureADClientKey) SetName

func (o *AzureADClientKey) SetName(v string)

SetName sets field value

func (*AzureADClientKey) SetValue

func (o *AzureADClientKey) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type AzureADTenantId

type AzureADTenantId struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

AzureADTenantId struct for AzureADTenantId

func NewAzureADTenantId

func NewAzureADTenantId(id string, name string) *AzureADTenantId

NewAzureADTenantId instantiates a new AzureADTenantId 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

func NewAzureADTenantIdWithDefaults

func NewAzureADTenantIdWithDefaults() *AzureADTenantId

NewAzureADTenantIdWithDefaults instantiates a new AzureADTenantId 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

func (*AzureADTenantId) GetId

func (o *AzureADTenantId) GetId() string

GetId returns the Id field value

func (*AzureADTenantId) GetIdOk

func (o *AzureADTenantId) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*AzureADTenantId) GetName

func (o *AzureADTenantId) GetName() string

GetName returns the Name field value

func (*AzureADTenantId) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*AzureADTenantId) GetValue

func (o *AzureADTenantId) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*AzureADTenantId) GetValueOk

func (o *AzureADTenantId) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AzureADTenantId) HasValue

func (o *AzureADTenantId) HasValue() bool

HasValue returns a boolean if a field has been set.

func (AzureADTenantId) MarshalJSON

func (o AzureADTenantId) MarshalJSON() ([]byte, error)

func (*AzureADTenantId) SetId

func (o *AzureADTenantId) SetId(v string)

SetId sets field value

func (*AzureADTenantId) SetName

func (o *AzureADTenantId) SetName(v string)

SetName sets field value

func (*AzureADTenantId) SetValue

func (o *AzureADTenantId) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type BackupLocation

type BackupLocation struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

BackupLocation struct for BackupLocation

func NewBackupLocation

func NewBackupLocation(id string, name string) *BackupLocation

NewBackupLocation instantiates a new BackupLocation 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

func NewBackupLocationWithDefaults

func NewBackupLocationWithDefaults() *BackupLocation

NewBackupLocationWithDefaults instantiates a new BackupLocation 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

func (*BackupLocation) GetId

func (o *BackupLocation) GetId() string

GetId returns the Id field value

func (*BackupLocation) GetIdOk

func (o *BackupLocation) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*BackupLocation) GetName

func (o *BackupLocation) GetName() string

GetName returns the Name field value

func (*BackupLocation) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*BackupLocation) GetValue

func (o *BackupLocation) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*BackupLocation) GetValueOk

func (o *BackupLocation) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BackupLocation) HasValue

func (o *BackupLocation) HasValue() bool

HasValue returns a boolean if a field has been set.

func (BackupLocation) MarshalJSON

func (o BackupLocation) MarshalJSON() ([]byte, error)

func (*BackupLocation) SetId

func (o *BackupLocation) SetId(v string)

SetId sets field value

func (*BackupLocation) SetName

func (o *BackupLocation) SetName(v string)

SetName sets field value

func (*BackupLocation) SetValue

func (o *BackupLocation) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type BackupUtcTimeOfDay

type BackupUtcTimeOfDay struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

BackupUtcTimeOfDay struct for BackupUtcTimeOfDay

func NewBackupUtcTimeOfDay

func NewBackupUtcTimeOfDay(id string, name string) *BackupUtcTimeOfDay

NewBackupUtcTimeOfDay instantiates a new BackupUtcTimeOfDay 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

func NewBackupUtcTimeOfDayWithDefaults

func NewBackupUtcTimeOfDayWithDefaults() *BackupUtcTimeOfDay

NewBackupUtcTimeOfDayWithDefaults instantiates a new BackupUtcTimeOfDay 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

func (*BackupUtcTimeOfDay) GetId

func (o *BackupUtcTimeOfDay) GetId() string

GetId returns the Id field value

func (*BackupUtcTimeOfDay) GetIdOk

func (o *BackupUtcTimeOfDay) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*BackupUtcTimeOfDay) GetName

func (o *BackupUtcTimeOfDay) GetName() string

GetName returns the Name field value

func (*BackupUtcTimeOfDay) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*BackupUtcTimeOfDay) GetValue

func (o *BackupUtcTimeOfDay) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*BackupUtcTimeOfDay) GetValueOk

func (o *BackupUtcTimeOfDay) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BackupUtcTimeOfDay) HasValue

func (o *BackupUtcTimeOfDay) HasValue() bool

HasValue returns a boolean if a field has been set.

func (BackupUtcTimeOfDay) MarshalJSON

func (o BackupUtcTimeOfDay) MarshalJSON() ([]byte, error)

func (*BackupUtcTimeOfDay) SetId

func (o *BackupUtcTimeOfDay) SetId(v string)

SetId sets field value

func (*BackupUtcTimeOfDay) SetName

func (o *BackupUtcTimeOfDay) SetName(v string)

SetName sets field value

func (*BackupUtcTimeOfDay) SetValue

func (o *BackupUtcTimeOfDay) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type BackupsToKeep

type BackupsToKeep struct {
	Id    string `json:"Id"`
	Name  string `json:"Name"`
	Value *int32 `json:"Value,omitempty"`
}

BackupsToKeep struct for BackupsToKeep

func NewBackupsToKeep

func NewBackupsToKeep(id string, name string) *BackupsToKeep

NewBackupsToKeep instantiates a new BackupsToKeep 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

func NewBackupsToKeepWithDefaults

func NewBackupsToKeepWithDefaults() *BackupsToKeep

NewBackupsToKeepWithDefaults instantiates a new BackupsToKeep 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

func (*BackupsToKeep) GetId

func (o *BackupsToKeep) GetId() string

GetId returns the Id field value

func (*BackupsToKeep) GetIdOk

func (o *BackupsToKeep) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*BackupsToKeep) GetName

func (o *BackupsToKeep) GetName() string

GetName returns the Name field value

func (*BackupsToKeep) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*BackupsToKeep) GetValue

func (o *BackupsToKeep) GetValue() int32

GetValue returns the Value field value if set, zero value otherwise.

func (*BackupsToKeep) GetValueOk

func (o *BackupsToKeep) GetValueOk() (*int32, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BackupsToKeep) HasValue

func (o *BackupsToKeep) HasValue() bool

HasValue returns a boolean if a field has been set.

func (BackupsToKeep) MarshalJSON

func (o BackupsToKeep) MarshalJSON() ([]byte, error)

func (*BackupsToKeep) SetId

func (o *BackupsToKeep) SetId(v string)

SetId sets field value

func (*BackupsToKeep) SetName

func (o *BackupsToKeep) SetName(v string)

SetName sets field value

func (*BackupsToKeep) SetValue

func (o *BackupsToKeep) SetValue(v int32)

SetValue gets a reference to the given int32 and assigns it to the Value field.

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type CheckForPackageUpdates

type CheckForPackageUpdates struct {
	Id    string `json:"Id"`
	Name  string `json:"Name"`
	Value *bool  `json:"Value,omitempty"`
}

CheckForPackageUpdates struct for CheckForPackageUpdates

func NewCheckForPackageUpdates

func NewCheckForPackageUpdates(id string, name string) *CheckForPackageUpdates

NewCheckForPackageUpdates instantiates a new CheckForPackageUpdates 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

func NewCheckForPackageUpdatesWithDefaults

func NewCheckForPackageUpdatesWithDefaults() *CheckForPackageUpdates

NewCheckForPackageUpdatesWithDefaults instantiates a new CheckForPackageUpdates 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

func (*CheckForPackageUpdates) GetId

func (o *CheckForPackageUpdates) GetId() string

GetId returns the Id field value

func (*CheckForPackageUpdates) GetIdOk

func (o *CheckForPackageUpdates) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*CheckForPackageUpdates) GetName

func (o *CheckForPackageUpdates) GetName() string

GetName returns the Name field value

func (*CheckForPackageUpdates) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*CheckForPackageUpdates) GetValue

func (o *CheckForPackageUpdates) GetValue() bool

GetValue returns the Value field value if set, zero value otherwise.

func (*CheckForPackageUpdates) GetValueOk

func (o *CheckForPackageUpdates) GetValueOk() (*bool, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckForPackageUpdates) HasValue

func (o *CheckForPackageUpdates) HasValue() bool

HasValue returns a boolean if a field has been set.

func (CheckForPackageUpdates) MarshalJSON

func (o CheckForPackageUpdates) MarshalJSON() ([]byte, error)

func (*CheckForPackageUpdates) SetId

func (o *CheckForPackageUpdates) SetId(v string)

SetId sets field value

func (*CheckForPackageUpdates) SetName

func (o *CheckForPackageUpdates) SetName(v string)

SetName sets field value

func (*CheckForPackageUpdates) SetValue

func (o *CheckForPackageUpdates) SetValue(v bool)

SetValue gets a reference to the given bool and assigns it to the Value field.

type CheckForUpdates

type CheckForUpdates struct {
	Id    string `json:"Id"`
	Name  string `json:"Name"`
	Value *bool  `json:"Value,omitempty"`
}

CheckForUpdates struct for CheckForUpdates

func NewCheckForUpdates

func NewCheckForUpdates(id string, name string) *CheckForUpdates

NewCheckForUpdates instantiates a new CheckForUpdates 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

func NewCheckForUpdatesWithDefaults

func NewCheckForUpdatesWithDefaults() *CheckForUpdates

NewCheckForUpdatesWithDefaults instantiates a new CheckForUpdates 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

func (*CheckForUpdates) GetId

func (o *CheckForUpdates) GetId() string

GetId returns the Id field value

func (*CheckForUpdates) GetIdOk

func (o *CheckForUpdates) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*CheckForUpdates) GetName

func (o *CheckForUpdates) GetName() string

GetName returns the Name field value

func (*CheckForUpdates) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*CheckForUpdates) GetValue

func (o *CheckForUpdates) GetValue() bool

GetValue returns the Value field value if set, zero value otherwise.

func (*CheckForUpdates) GetValueOk

func (o *CheckForUpdates) GetValueOk() (*bool, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckForUpdates) HasValue

func (o *CheckForUpdates) HasValue() bool

HasValue returns a boolean if a field has been set.

func (CheckForUpdates) MarshalJSON

func (o CheckForUpdates) MarshalJSON() ([]byte, error)

func (*CheckForUpdates) SetId

func (o *CheckForUpdates) SetId(v string)

SetId sets field value

func (*CheckForUpdates) SetName

func (o *CheckForUpdates) SetName(v string)

SetName sets field value

func (*CheckForUpdates) SetValue

func (o *CheckForUpdates) SetValue(v bool)

SetValue gets a reference to the given bool and assigns it to the Value field.

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type Error

type Error struct {
	Error *string `json:"Error,omitempty"`
}

Error struct for Error

func NewError

func NewError() *Error

NewError instantiates a new Error 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

func NewErrorWithDefaults

func NewErrorWithDefaults() *Error

NewErrorWithDefaults instantiates a new Error 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

func (*Error) GetError

func (o *Error) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*Error) GetErrorOk

func (o *Error) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) HasError

func (o *Error) HasError() bool

HasError returns a boolean if a field has been set.

func (Error) MarshalJSON

func (o Error) MarshalJSON() ([]byte, error)

func (*Error) SetError

func (o *Error) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type InputSettings

type InputSettings struct {
	AppliedProperties   *[]map[string]interface{} `json:"AppliedProperties,omitempty"`
	MinimumLevel        *string                   `json:"MinimumLevel,omitempty"`
	UseServerTimestamps *bool                     `json:"UseServerTimestamps,omitempty"`
}

InputSettings struct for InputSettings

func NewInputSettings

func NewInputSettings() *InputSettings

NewInputSettings instantiates a new InputSettings 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

func NewInputSettingsWithDefaults

func NewInputSettingsWithDefaults() *InputSettings

NewInputSettingsWithDefaults instantiates a new InputSettings 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

func (*InputSettings) GetAppliedProperties

func (o *InputSettings) GetAppliedProperties() []map[string]interface{}

GetAppliedProperties returns the AppliedProperties field value if set, zero value otherwise.

func (*InputSettings) GetAppliedPropertiesOk

func (o *InputSettings) GetAppliedPropertiesOk() (*[]map[string]interface{}, bool)

GetAppliedPropertiesOk returns a tuple with the AppliedProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InputSettings) GetMinimumLevel

func (o *InputSettings) GetMinimumLevel() string

GetMinimumLevel returns the MinimumLevel field value if set, zero value otherwise.

func (*InputSettings) GetMinimumLevelOk

func (o *InputSettings) GetMinimumLevelOk() (*string, bool)

GetMinimumLevelOk returns a tuple with the MinimumLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InputSettings) GetUseServerTimestamps

func (o *InputSettings) GetUseServerTimestamps() bool

GetUseServerTimestamps returns the UseServerTimestamps field value if set, zero value otherwise.

func (*InputSettings) GetUseServerTimestampsOk

func (o *InputSettings) GetUseServerTimestampsOk() (*bool, bool)

GetUseServerTimestampsOk returns a tuple with the UseServerTimestamps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InputSettings) HasAppliedProperties

func (o *InputSettings) HasAppliedProperties() bool

HasAppliedProperties returns a boolean if a field has been set.

func (*InputSettings) HasMinimumLevel

func (o *InputSettings) HasMinimumLevel() bool

HasMinimumLevel returns a boolean if a field has been set.

func (*InputSettings) HasUseServerTimestamps

func (o *InputSettings) HasUseServerTimestamps() bool

HasUseServerTimestamps returns a boolean if a field has been set.

func (InputSettings) MarshalJSON

func (o InputSettings) MarshalJSON() ([]byte, error)

func (*InputSettings) SetAppliedProperties

func (o *InputSettings) SetAppliedProperties(v []map[string]interface{})

SetAppliedProperties gets a reference to the given []map[string]interface{} and assigns it to the AppliedProperties field.

func (*InputSettings) SetMinimumLevel

func (o *InputSettings) SetMinimumLevel(v string)

SetMinimumLevel gets a reference to the given string and assigns it to the MinimumLevel field.

func (*InputSettings) SetUseServerTimestamps

func (o *InputSettings) SetUseServerTimestamps(v bool)

SetUseServerTimestamps gets a reference to the given bool and assigns it to the UseServerTimestamps field.

type InstanceTitle

type InstanceTitle struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

InstanceTitle struct for InstanceTitle

func NewInstanceTitle

func NewInstanceTitle(id string, name string) *InstanceTitle

NewInstanceTitle instantiates a new InstanceTitle 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

func NewInstanceTitleWithDefaults

func NewInstanceTitleWithDefaults() *InstanceTitle

NewInstanceTitleWithDefaults instantiates a new InstanceTitle 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

func (*InstanceTitle) GetId

func (o *InstanceTitle) GetId() string

GetId returns the Id field value

func (*InstanceTitle) GetIdOk

func (o *InstanceTitle) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*InstanceTitle) GetName

func (o *InstanceTitle) GetName() string

GetName returns the Name field value

func (*InstanceTitle) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*InstanceTitle) GetValue

func (o *InstanceTitle) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*InstanceTitle) GetValueOk

func (o *InstanceTitle) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceTitle) HasValue

func (o *InstanceTitle) HasValue() bool

HasValue returns a boolean if a field has been set.

func (InstanceTitle) MarshalJSON

func (o InstanceTitle) MarshalJSON() ([]byte, error)

func (*InstanceTitle) SetId

func (o *InstanceTitle) SetId(v string)

SetId sets field value

func (*InstanceTitle) SetName

func (o *InstanceTitle) SetName(v string)

SetName sets field value

func (*InstanceTitle) SetValue

func (o *InstanceTitle) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type IsAuthenticationEnabled

type IsAuthenticationEnabled struct {
	Id    string `json:"Id"`
	Name  string `json:"Name"`
	Value *bool  `json:"Value,omitempty"`
}

IsAuthenticationEnabled struct for IsAuthenticationEnabled

func NewIsAuthenticationEnabled

func NewIsAuthenticationEnabled(id string, name string) *IsAuthenticationEnabled

NewIsAuthenticationEnabled instantiates a new IsAuthenticationEnabled 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

func NewIsAuthenticationEnabledWithDefaults

func NewIsAuthenticationEnabledWithDefaults() *IsAuthenticationEnabled

NewIsAuthenticationEnabledWithDefaults instantiates a new IsAuthenticationEnabled 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

func (*IsAuthenticationEnabled) GetId

func (o *IsAuthenticationEnabled) GetId() string

GetId returns the Id field value

func (*IsAuthenticationEnabled) GetIdOk

func (o *IsAuthenticationEnabled) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*IsAuthenticationEnabled) GetName

func (o *IsAuthenticationEnabled) GetName() string

GetName returns the Name field value

func (*IsAuthenticationEnabled) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*IsAuthenticationEnabled) GetValue

func (o *IsAuthenticationEnabled) GetValue() bool

GetValue returns the Value field value if set, zero value otherwise.

func (*IsAuthenticationEnabled) GetValueOk

func (o *IsAuthenticationEnabled) GetValueOk() (*bool, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IsAuthenticationEnabled) HasValue

func (o *IsAuthenticationEnabled) HasValue() bool

HasValue returns a boolean if a field has been set.

func (IsAuthenticationEnabled) MarshalJSON

func (o IsAuthenticationEnabled) MarshalJSON() ([]byte, error)

func (*IsAuthenticationEnabled) SetId

func (o *IsAuthenticationEnabled) SetId(v string)

SetId sets field value

func (*IsAuthenticationEnabled) SetName

func (o *IsAuthenticationEnabled) SetName(v string)

SetName sets field value

func (*IsAuthenticationEnabled) SetValue

func (o *IsAuthenticationEnabled) SetValue(v bool)

SetValue gets a reference to the given bool and assigns it to the Value field.

type License

type License struct {
	LicenseText          string  `json:"LicenseText"`
	IsValid              *bool   `json:"IsValid,omitempty"`
	IsSingleUser         *bool   `json:"IsSingleUser,omitempty"`
	SubscriptionId       *string `json:"SubscriptionId,omitempty"`
	StatusDescription    *string `json:"StatusDescription,omitempty"`
	IsWarning            *bool   `json:"IsWarning,omitempty"`
	CanRenewOnlineNow    *bool   `json:"CanRenewOnlineNow,omitempty"`
	LicensedUsers        *int32  `json:"LicensedUsers,omitempty"`
	AutomaticallyRefresh *bool   `json:"AutomaticallyRefresh,omitempty"`
	Id                   *string `json:"Id,omitempty"`
}

License struct for License

func NewLicense

func NewLicense(licenseText string) *License

NewLicense instantiates a new License 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

func NewLicenseWithDefaults

func NewLicenseWithDefaults() *License

NewLicenseWithDefaults instantiates a new License 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

func (*License) GetAutomaticallyRefresh

func (o *License) GetAutomaticallyRefresh() bool

GetAutomaticallyRefresh returns the AutomaticallyRefresh field value if set, zero value otherwise.

func (*License) GetAutomaticallyRefreshOk

func (o *License) GetAutomaticallyRefreshOk() (*bool, bool)

GetAutomaticallyRefreshOk returns a tuple with the AutomaticallyRefresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*License) GetCanRenewOnlineNow

func (o *License) GetCanRenewOnlineNow() bool

GetCanRenewOnlineNow returns the CanRenewOnlineNow field value if set, zero value otherwise.

func (*License) GetCanRenewOnlineNowOk

func (o *License) GetCanRenewOnlineNowOk() (*bool, bool)

GetCanRenewOnlineNowOk returns a tuple with the CanRenewOnlineNow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*License) GetId

func (o *License) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*License) GetIdOk

func (o *License) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*License) GetIsSingleUser

func (o *License) GetIsSingleUser() bool

GetIsSingleUser returns the IsSingleUser field value if set, zero value otherwise.

func (*License) GetIsSingleUserOk

func (o *License) GetIsSingleUserOk() (*bool, bool)

GetIsSingleUserOk returns a tuple with the IsSingleUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*License) GetIsValid

func (o *License) GetIsValid() bool

GetIsValid returns the IsValid field value if set, zero value otherwise.

func (*License) GetIsValidOk

func (o *License) GetIsValidOk() (*bool, bool)

GetIsValidOk returns a tuple with the IsValid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*License) GetIsWarning

func (o *License) GetIsWarning() bool

GetIsWarning returns the IsWarning field value if set, zero value otherwise.

func (*License) GetIsWarningOk

func (o *License) GetIsWarningOk() (*bool, bool)

GetIsWarningOk returns a tuple with the IsWarning field value if set, nil otherwise and a boolean to check if the value has been set.

func (*License) GetLicenseText

func (o *License) GetLicenseText() string

GetLicenseText returns the LicenseText field value

func (*License) GetLicenseTextOk

func (o *License) GetLicenseTextOk() (*string, bool)

GetLicenseTextOk returns a tuple with the LicenseText field value and a boolean to check if the value has been set.

func (*License) GetLicensedUsers

func (o *License) GetLicensedUsers() int32

GetLicensedUsers returns the LicensedUsers field value if set, zero value otherwise.

func (*License) GetLicensedUsersOk

func (o *License) GetLicensedUsersOk() (*int32, bool)

GetLicensedUsersOk returns a tuple with the LicensedUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*License) GetStatusDescription

func (o *License) GetStatusDescription() string

GetStatusDescription returns the StatusDescription field value if set, zero value otherwise.

func (*License) GetStatusDescriptionOk

func (o *License) GetStatusDescriptionOk() (*string, bool)

GetStatusDescriptionOk returns a tuple with the StatusDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*License) GetSubscriptionId

func (o *License) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise.

func (*License) GetSubscriptionIdOk

func (o *License) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*License) HasAutomaticallyRefresh

func (o *License) HasAutomaticallyRefresh() bool

HasAutomaticallyRefresh returns a boolean if a field has been set.

func (*License) HasCanRenewOnlineNow

func (o *License) HasCanRenewOnlineNow() bool

HasCanRenewOnlineNow returns a boolean if a field has been set.

func (*License) HasId

func (o *License) HasId() bool

HasId returns a boolean if a field has been set.

func (*License) HasIsSingleUser

func (o *License) HasIsSingleUser() bool

HasIsSingleUser returns a boolean if a field has been set.

func (*License) HasIsValid

func (o *License) HasIsValid() bool

HasIsValid returns a boolean if a field has been set.

func (*License) HasIsWarning

func (o *License) HasIsWarning() bool

HasIsWarning returns a boolean if a field has been set.

func (*License) HasLicensedUsers

func (o *License) HasLicensedUsers() bool

HasLicensedUsers returns a boolean if a field has been set.

func (*License) HasStatusDescription

func (o *License) HasStatusDescription() bool

HasStatusDescription returns a boolean if a field has been set.

func (*License) HasSubscriptionId

func (o *License) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (License) MarshalJSON

func (o License) MarshalJSON() ([]byte, error)

func (*License) SetAutomaticallyRefresh

func (o *License) SetAutomaticallyRefresh(v bool)

SetAutomaticallyRefresh gets a reference to the given bool and assigns it to the AutomaticallyRefresh field.

func (*License) SetCanRenewOnlineNow

func (o *License) SetCanRenewOnlineNow(v bool)

SetCanRenewOnlineNow gets a reference to the given bool and assigns it to the CanRenewOnlineNow field.

func (*License) SetId

func (o *License) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*License) SetIsSingleUser

func (o *License) SetIsSingleUser(v bool)

SetIsSingleUser gets a reference to the given bool and assigns it to the IsSingleUser field.

func (*License) SetIsValid

func (o *License) SetIsValid(v bool)

SetIsValid gets a reference to the given bool and assigns it to the IsValid field.

func (*License) SetIsWarning

func (o *License) SetIsWarning(v bool)

SetIsWarning gets a reference to the given bool and assigns it to the IsWarning field.

func (*License) SetLicenseText

func (o *License) SetLicenseText(v string)

SetLicenseText sets field value

func (*License) SetLicensedUsers

func (o *License) SetLicensedUsers(v int32)

SetLicensedUsers gets a reference to the given int32 and assigns it to the LicensedUsers field.

func (*License) SetStatusDescription

func (o *License) SetStatusDescription(v string)

SetStatusDescription gets a reference to the given string and assigns it to the StatusDescription field.

func (*License) SetSubscriptionId

func (o *License) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given string and assigns it to the SubscriptionId field.

type LicensesApiService

type LicensesApiService service

LicensesApiService LicensesApi service

func (*LicensesApiService) DowngradeLicense

* DowngradeLicense Remove the current license, causing the server to fall back to the default configuration. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiDowngradeLicenseRequest

func (*LicensesApiService) DowngradeLicenseExecute

func (a *LicensesApiService) DowngradeLicenseExecute(r ApiDowngradeLicenseRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*LicensesApiService) GetLicense

* GetLicense Retrieve the license with the given id * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id The id of the license * @return ApiGetLicenseRequest

func (*LicensesApiService) GetLicenseExecute

* Execute executes the request * @return License

func (*LicensesApiService) ListLicenses

* ListLicenses Retrieve licenses * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiListLicensesRequest

func (*LicensesApiService) ListLicensesExecute

func (a *LicensesApiService) ListLicensesExecute(r ApiListLicensesRequest) ([]License, *_nethttp.Response, error)

* Execute executes the request * @return []License

func (*LicensesApiService) UpdateLicense

* UpdateLicense Update an existing license * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id The id of the license * @return ApiUpdateLicenseRequest

func (*LicensesApiService) UpdateLicenseExecute

func (a *LicensesApiService) UpdateLicenseExecute(r ApiUpdateLicenseRequest) (License, *_nethttp.Response, error)

* Execute executes the request * @return License

type MEqMTWriteFixAppliedAt

type MEqMTWriteFixAppliedAt struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

MEqMTWriteFixAppliedAt struct for MEqMTWriteFixAppliedAt

func NewMEqMTWriteFixAppliedAt

func NewMEqMTWriteFixAppliedAt(id string, name string) *MEqMTWriteFixAppliedAt

NewMEqMTWriteFixAppliedAt instantiates a new MEqMTWriteFixAppliedAt 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

func NewMEqMTWriteFixAppliedAtWithDefaults

func NewMEqMTWriteFixAppliedAtWithDefaults() *MEqMTWriteFixAppliedAt

NewMEqMTWriteFixAppliedAtWithDefaults instantiates a new MEqMTWriteFixAppliedAt 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

func (*MEqMTWriteFixAppliedAt) GetId

func (o *MEqMTWriteFixAppliedAt) GetId() string

GetId returns the Id field value

func (*MEqMTWriteFixAppliedAt) GetIdOk

func (o *MEqMTWriteFixAppliedAt) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*MEqMTWriteFixAppliedAt) GetName

func (o *MEqMTWriteFixAppliedAt) GetName() string

GetName returns the Name field value

func (*MEqMTWriteFixAppliedAt) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*MEqMTWriteFixAppliedAt) GetValue

func (o *MEqMTWriteFixAppliedAt) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*MEqMTWriteFixAppliedAt) GetValueOk

func (o *MEqMTWriteFixAppliedAt) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MEqMTWriteFixAppliedAt) HasValue

func (o *MEqMTWriteFixAppliedAt) HasValue() bool

HasValue returns a boolean if a field has been set.

func (MEqMTWriteFixAppliedAt) MarshalJSON

func (o MEqMTWriteFixAppliedAt) MarshalJSON() ([]byte, error)

func (*MEqMTWriteFixAppliedAt) SetId

func (o *MEqMTWriteFixAppliedAt) SetId(v string)

SetId sets field value

func (*MEqMTWriteFixAppliedAt) SetName

func (o *MEqMTWriteFixAppliedAt) SetName(v string)

SetName sets field value

func (*MEqMTWriteFixAppliedAt) SetValue

func (o *MEqMTWriteFixAppliedAt) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type MinimumFreeStorageSpace

type MinimumFreeStorageSpace struct {
	Id    string `json:"Id"`
	Name  string `json:"Name"`
	Value *int32 `json:"Value,omitempty"`
}

MinimumFreeStorageSpace struct for MinimumFreeStorageSpace

func NewMinimumFreeStorageSpace

func NewMinimumFreeStorageSpace(id string, name string) *MinimumFreeStorageSpace

NewMinimumFreeStorageSpace instantiates a new MinimumFreeStorageSpace 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

func NewMinimumFreeStorageSpaceWithDefaults

func NewMinimumFreeStorageSpaceWithDefaults() *MinimumFreeStorageSpace

NewMinimumFreeStorageSpaceWithDefaults instantiates a new MinimumFreeStorageSpace 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

func (*MinimumFreeStorageSpace) GetId

func (o *MinimumFreeStorageSpace) GetId() string

GetId returns the Id field value

func (*MinimumFreeStorageSpace) GetIdOk

func (o *MinimumFreeStorageSpace) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*MinimumFreeStorageSpace) GetName

func (o *MinimumFreeStorageSpace) GetName() string

GetName returns the Name field value

func (*MinimumFreeStorageSpace) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*MinimumFreeStorageSpace) GetValue

func (o *MinimumFreeStorageSpace) GetValue() int32

GetValue returns the Value field value if set, zero value otherwise.

func (*MinimumFreeStorageSpace) GetValueOk

func (o *MinimumFreeStorageSpace) GetValueOk() (*int32, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MinimumFreeStorageSpace) HasValue

func (o *MinimumFreeStorageSpace) HasValue() bool

HasValue returns a boolean if a field has been set.

func (MinimumFreeStorageSpace) MarshalJSON

func (o MinimumFreeStorageSpace) MarshalJSON() ([]byte, error)

func (*MinimumFreeStorageSpace) SetId

func (o *MinimumFreeStorageSpace) SetId(v string)

SetId sets field value

func (*MinimumFreeStorageSpace) SetName

func (o *MinimumFreeStorageSpace) SetName(v string)

SetName sets field value

func (*MinimumFreeStorageSpace) SetValue

func (o *MinimumFreeStorageSpace) SetValue(v int32)

SetValue gets a reference to the given int32 and assigns it to the Value field.

type MinimumPasswordLength

type MinimumPasswordLength struct {
	Id    string `json:"Id"`
	Name  string `json:"Name"`
	Value *int32 `json:"Value,omitempty"`
}

MinimumPasswordLength struct for MinimumPasswordLength

func NewMinimumPasswordLength

func NewMinimumPasswordLength(id string, name string) *MinimumPasswordLength

NewMinimumPasswordLength instantiates a new MinimumPasswordLength 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

func NewMinimumPasswordLengthWithDefaults

func NewMinimumPasswordLengthWithDefaults() *MinimumPasswordLength

NewMinimumPasswordLengthWithDefaults instantiates a new MinimumPasswordLength 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

func (*MinimumPasswordLength) GetId

func (o *MinimumPasswordLength) GetId() string

GetId returns the Id field value

func (*MinimumPasswordLength) GetIdOk

func (o *MinimumPasswordLength) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*MinimumPasswordLength) GetName

func (o *MinimumPasswordLength) GetName() string

GetName returns the Name field value

func (*MinimumPasswordLength) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*MinimumPasswordLength) GetValue

func (o *MinimumPasswordLength) GetValue() int32

GetValue returns the Value field value if set, zero value otherwise.

func (*MinimumPasswordLength) GetValueOk

func (o *MinimumPasswordLength) GetValueOk() (*int32, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MinimumPasswordLength) HasValue

func (o *MinimumPasswordLength) HasValue() bool

HasValue returns a boolean if a field has been set.

func (MinimumPasswordLength) MarshalJSON

func (o MinimumPasswordLength) MarshalJSON() ([]byte, error)

func (*MinimumPasswordLength) SetId

func (o *MinimumPasswordLength) SetId(v string)

SetId sets field value

func (*MinimumPasswordLength) SetName

func (o *MinimumPasswordLength) SetName(v string)

SetName sets field value

func (*MinimumPasswordLength) SetValue

func (o *MinimumPasswordLength) SetValue(v int32)

SetValue gets a reference to the given int32 and assigns it to the Value field.

type NewUserRoleIds

type NewUserRoleIds struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

NewUserRoleIds struct for NewUserRoleIds

func NewNewUserRoleIds

func NewNewUserRoleIds(id string, name string) *NewUserRoleIds

NewNewUserRoleIds instantiates a new NewUserRoleIds 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

func NewNewUserRoleIdsWithDefaults

func NewNewUserRoleIdsWithDefaults() *NewUserRoleIds

NewNewUserRoleIdsWithDefaults instantiates a new NewUserRoleIds 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

func (*NewUserRoleIds) GetId

func (o *NewUserRoleIds) GetId() string

GetId returns the Id field value

func (*NewUserRoleIds) GetIdOk

func (o *NewUserRoleIds) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*NewUserRoleIds) GetName

func (o *NewUserRoleIds) GetName() string

GetName returns the Name field value

func (*NewUserRoleIds) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*NewUserRoleIds) GetValue

func (o *NewUserRoleIds) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*NewUserRoleIds) GetValueOk

func (o *NewUserRoleIds) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NewUserRoleIds) HasValue

func (o *NewUserRoleIds) HasValue() bool

HasValue returns a boolean if a field has been set.

func (NewUserRoleIds) MarshalJSON

func (o NewUserRoleIds) MarshalJSON() ([]byte, error)

func (*NewUserRoleIds) SetId

func (o *NewUserRoleIds) SetId(v string)

SetId sets field value

func (*NewUserRoleIds) SetName

func (o *NewUserRoleIds) SetName(v string)

SetName sets field value

func (*NewUserRoleIds) SetValue

func (o *NewUserRoleIds) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type NewUserShowDashboardIds

type NewUserShowDashboardIds struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

NewUserShowDashboardIds struct for NewUserShowDashboardIds

func NewNewUserShowDashboardIds

func NewNewUserShowDashboardIds(id string, name string) *NewUserShowDashboardIds

NewNewUserShowDashboardIds instantiates a new NewUserShowDashboardIds 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

func NewNewUserShowDashboardIdsWithDefaults

func NewNewUserShowDashboardIdsWithDefaults() *NewUserShowDashboardIds

NewNewUserShowDashboardIdsWithDefaults instantiates a new NewUserShowDashboardIds 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

func (*NewUserShowDashboardIds) GetId

func (o *NewUserShowDashboardIds) GetId() string

GetId returns the Id field value

func (*NewUserShowDashboardIds) GetIdOk

func (o *NewUserShowDashboardIds) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*NewUserShowDashboardIds) GetName

func (o *NewUserShowDashboardIds) GetName() string

GetName returns the Name field value

func (*NewUserShowDashboardIds) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*NewUserShowDashboardIds) GetValue

func (o *NewUserShowDashboardIds) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*NewUserShowDashboardIds) GetValueOk

func (o *NewUserShowDashboardIds) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NewUserShowDashboardIds) HasValue

func (o *NewUserShowDashboardIds) HasValue() bool

HasValue returns a boolean if a field has been set.

func (NewUserShowDashboardIds) MarshalJSON

func (o NewUserShowDashboardIds) MarshalJSON() ([]byte, error)

func (*NewUserShowDashboardIds) SetId

func (o *NewUserShowDashboardIds) SetId(v string)

SetId sets field value

func (*NewUserShowDashboardIds) SetName

func (o *NewUserShowDashboardIds) SetName(v string)

SetName sets field value

func (*NewUserShowDashboardIds) SetValue

func (o *NewUserShowDashboardIds) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type NewUserShowQueryIds

type NewUserShowQueryIds struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

NewUserShowQueryIds struct for NewUserShowQueryIds

func NewNewUserShowQueryIds

func NewNewUserShowQueryIds(id string, name string) *NewUserShowQueryIds

NewNewUserShowQueryIds instantiates a new NewUserShowQueryIds 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

func NewNewUserShowQueryIdsWithDefaults

func NewNewUserShowQueryIdsWithDefaults() *NewUserShowQueryIds

NewNewUserShowQueryIdsWithDefaults instantiates a new NewUserShowQueryIds 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

func (*NewUserShowQueryIds) GetId

func (o *NewUserShowQueryIds) GetId() string

GetId returns the Id field value

func (*NewUserShowQueryIds) GetIdOk

func (o *NewUserShowQueryIds) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*NewUserShowQueryIds) GetName

func (o *NewUserShowQueryIds) GetName() string

GetName returns the Name field value

func (*NewUserShowQueryIds) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*NewUserShowQueryIds) GetValue

func (o *NewUserShowQueryIds) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*NewUserShowQueryIds) GetValueOk

func (o *NewUserShowQueryIds) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NewUserShowQueryIds) HasValue

func (o *NewUserShowQueryIds) HasValue() bool

HasValue returns a boolean if a field has been set.

func (NewUserShowQueryIds) MarshalJSON

func (o NewUserShowQueryIds) MarshalJSON() ([]byte, error)

func (*NewUserShowQueryIds) SetId

func (o *NewUserShowQueryIds) SetId(v string)

SetId sets field value

func (*NewUserShowQueryIds) SetName

func (o *NewUserShowQueryIds) SetName(v string)

SetName sets field value

func (*NewUserShowQueryIds) SetValue

func (o *NewUserShowQueryIds) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type NewUserShowSignalIds

type NewUserShowSignalIds struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

NewUserShowSignalIds struct for NewUserShowSignalIds

func NewNewUserShowSignalIds

func NewNewUserShowSignalIds(id string, name string) *NewUserShowSignalIds

NewNewUserShowSignalIds instantiates a new NewUserShowSignalIds 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

func NewNewUserShowSignalIdsWithDefaults

func NewNewUserShowSignalIdsWithDefaults() *NewUserShowSignalIds

NewNewUserShowSignalIdsWithDefaults instantiates a new NewUserShowSignalIds 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

func (*NewUserShowSignalIds) GetId

func (o *NewUserShowSignalIds) GetId() string

GetId returns the Id field value

func (*NewUserShowSignalIds) GetIdOk

func (o *NewUserShowSignalIds) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*NewUserShowSignalIds) GetName

func (o *NewUserShowSignalIds) GetName() string

GetName returns the Name field value

func (*NewUserShowSignalIds) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*NewUserShowSignalIds) GetValue

func (o *NewUserShowSignalIds) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*NewUserShowSignalIds) GetValueOk

func (o *NewUserShowSignalIds) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NewUserShowSignalIds) HasValue

func (o *NewUserShowSignalIds) HasValue() bool

HasValue returns a boolean if a field has been set.

func (NewUserShowSignalIds) MarshalJSON

func (o NewUserShowSignalIds) MarshalJSON() ([]byte, error)

func (*NewUserShowSignalIds) SetId

func (o *NewUserShowSignalIds) SetId(v string)

SetId sets field value

func (*NewUserShowSignalIds) SetName

func (o *NewUserShowSignalIds) SetName(v string)

SetName sets field value

func (*NewUserShowSignalIds) SetValue

func (o *NewUserShowSignalIds) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type NullableApiKey

type NullableApiKey struct {
	// contains filtered or unexported fields
}

func NewNullableApiKey

func NewNullableApiKey(val *ApiKey) *NullableApiKey

func (NullableApiKey) Get

func (v NullableApiKey) Get() *ApiKey

func (NullableApiKey) IsSet

func (v NullableApiKey) IsSet() bool

func (NullableApiKey) MarshalJSON

func (v NullableApiKey) MarshalJSON() ([]byte, error)

func (*NullableApiKey) Set

func (v *NullableApiKey) Set(val *ApiKey)

func (*NullableApiKey) UnmarshalJSON

func (v *NullableApiKey) UnmarshalJSON(src []byte) error

func (*NullableApiKey) Unset

func (v *NullableApiKey) Unset()

type NullableAuthenticationProvider

type NullableAuthenticationProvider struct {
	// contains filtered or unexported fields
}

func (NullableAuthenticationProvider) Get

func (NullableAuthenticationProvider) IsSet

func (NullableAuthenticationProvider) MarshalJSON

func (v NullableAuthenticationProvider) MarshalJSON() ([]byte, error)

func (*NullableAuthenticationProvider) Set

func (*NullableAuthenticationProvider) UnmarshalJSON

func (v *NullableAuthenticationProvider) UnmarshalJSON(src []byte) error

func (*NullableAuthenticationProvider) Unset

func (v *NullableAuthenticationProvider) Unset()

type NullableAutomaticAccessADGroup

type NullableAutomaticAccessADGroup struct {
	// contains filtered or unexported fields
}

func (NullableAutomaticAccessADGroup) Get

func (NullableAutomaticAccessADGroup) IsSet

func (NullableAutomaticAccessADGroup) MarshalJSON

func (v NullableAutomaticAccessADGroup) MarshalJSON() ([]byte, error)

func (*NullableAutomaticAccessADGroup) Set

func (*NullableAutomaticAccessADGroup) UnmarshalJSON

func (v *NullableAutomaticAccessADGroup) UnmarshalJSON(src []byte) error

func (*NullableAutomaticAccessADGroup) Unset

func (v *NullableAutomaticAccessADGroup) Unset()

type NullableAutomaticallyProvisionAuthenticatedUsers

type NullableAutomaticallyProvisionAuthenticatedUsers struct {
	// contains filtered or unexported fields
}

func (NullableAutomaticallyProvisionAuthenticatedUsers) Get

func (NullableAutomaticallyProvisionAuthenticatedUsers) IsSet

func (NullableAutomaticallyProvisionAuthenticatedUsers) MarshalJSON

func (*NullableAutomaticallyProvisionAuthenticatedUsers) Set

func (*NullableAutomaticallyProvisionAuthenticatedUsers) UnmarshalJSON

func (*NullableAutomaticallyProvisionAuthenticatedUsers) Unset

type NullableAzureADAuthority

type NullableAzureADAuthority struct {
	// contains filtered or unexported fields
}

func NewNullableAzureADAuthority

func NewNullableAzureADAuthority(val *AzureADAuthority) *NullableAzureADAuthority

func (NullableAzureADAuthority) Get

func (NullableAzureADAuthority) IsSet

func (v NullableAzureADAuthority) IsSet() bool

func (NullableAzureADAuthority) MarshalJSON

func (v NullableAzureADAuthority) MarshalJSON() ([]byte, error)

func (*NullableAzureADAuthority) Set

func (*NullableAzureADAuthority) UnmarshalJSON

func (v *NullableAzureADAuthority) UnmarshalJSON(src []byte) error

func (*NullableAzureADAuthority) Unset

func (v *NullableAzureADAuthority) Unset()

type NullableAzureADClientId

type NullableAzureADClientId struct {
	// contains filtered or unexported fields
}

func NewNullableAzureADClientId

func NewNullableAzureADClientId(val *AzureADClientId) *NullableAzureADClientId

func (NullableAzureADClientId) Get

func (NullableAzureADClientId) IsSet

func (v NullableAzureADClientId) IsSet() bool

func (NullableAzureADClientId) MarshalJSON

func (v NullableAzureADClientId) MarshalJSON() ([]byte, error)

func (*NullableAzureADClientId) Set

func (*NullableAzureADClientId) UnmarshalJSON

func (v *NullableAzureADClientId) UnmarshalJSON(src []byte) error

func (*NullableAzureADClientId) Unset

func (v *NullableAzureADClientId) Unset()

type NullableAzureADClientKey

type NullableAzureADClientKey struct {
	// contains filtered or unexported fields
}

func NewNullableAzureADClientKey

func NewNullableAzureADClientKey(val *AzureADClientKey) *NullableAzureADClientKey

func (NullableAzureADClientKey) Get

func (NullableAzureADClientKey) IsSet

func (v NullableAzureADClientKey) IsSet() bool

func (NullableAzureADClientKey) MarshalJSON

func (v NullableAzureADClientKey) MarshalJSON() ([]byte, error)

func (*NullableAzureADClientKey) Set

func (*NullableAzureADClientKey) UnmarshalJSON

func (v *NullableAzureADClientKey) UnmarshalJSON(src []byte) error

func (*NullableAzureADClientKey) Unset

func (v *NullableAzureADClientKey) Unset()

type NullableAzureADTenantId

type NullableAzureADTenantId struct {
	// contains filtered or unexported fields
}

func NewNullableAzureADTenantId

func NewNullableAzureADTenantId(val *AzureADTenantId) *NullableAzureADTenantId

func (NullableAzureADTenantId) Get

func (NullableAzureADTenantId) IsSet

func (v NullableAzureADTenantId) IsSet() bool

func (NullableAzureADTenantId) MarshalJSON

func (v NullableAzureADTenantId) MarshalJSON() ([]byte, error)

func (*NullableAzureADTenantId) Set

func (*NullableAzureADTenantId) UnmarshalJSON

func (v *NullableAzureADTenantId) UnmarshalJSON(src []byte) error

func (*NullableAzureADTenantId) Unset

func (v *NullableAzureADTenantId) Unset()

type NullableBackupLocation

type NullableBackupLocation struct {
	// contains filtered or unexported fields
}

func NewNullableBackupLocation

func NewNullableBackupLocation(val *BackupLocation) *NullableBackupLocation

func (NullableBackupLocation) Get

func (NullableBackupLocation) IsSet

func (v NullableBackupLocation) IsSet() bool

func (NullableBackupLocation) MarshalJSON

func (v NullableBackupLocation) MarshalJSON() ([]byte, error)

func (*NullableBackupLocation) Set

func (*NullableBackupLocation) UnmarshalJSON

func (v *NullableBackupLocation) UnmarshalJSON(src []byte) error

func (*NullableBackupLocation) Unset

func (v *NullableBackupLocation) Unset()

type NullableBackupUtcTimeOfDay

type NullableBackupUtcTimeOfDay struct {
	// contains filtered or unexported fields
}

func NewNullableBackupUtcTimeOfDay

func NewNullableBackupUtcTimeOfDay(val *BackupUtcTimeOfDay) *NullableBackupUtcTimeOfDay

func (NullableBackupUtcTimeOfDay) Get

func (NullableBackupUtcTimeOfDay) IsSet

func (v NullableBackupUtcTimeOfDay) IsSet() bool

func (NullableBackupUtcTimeOfDay) MarshalJSON

func (v NullableBackupUtcTimeOfDay) MarshalJSON() ([]byte, error)

func (*NullableBackupUtcTimeOfDay) Set

func (*NullableBackupUtcTimeOfDay) UnmarshalJSON

func (v *NullableBackupUtcTimeOfDay) UnmarshalJSON(src []byte) error

func (*NullableBackupUtcTimeOfDay) Unset

func (v *NullableBackupUtcTimeOfDay) Unset()

type NullableBackupsToKeep

type NullableBackupsToKeep struct {
	// contains filtered or unexported fields
}

func NewNullableBackupsToKeep

func NewNullableBackupsToKeep(val *BackupsToKeep) *NullableBackupsToKeep

func (NullableBackupsToKeep) Get

func (NullableBackupsToKeep) IsSet

func (v NullableBackupsToKeep) IsSet() bool

func (NullableBackupsToKeep) MarshalJSON

func (v NullableBackupsToKeep) MarshalJSON() ([]byte, error)

func (*NullableBackupsToKeep) Set

func (v *NullableBackupsToKeep) Set(val *BackupsToKeep)

func (*NullableBackupsToKeep) UnmarshalJSON

func (v *NullableBackupsToKeep) UnmarshalJSON(src []byte) error

func (*NullableBackupsToKeep) Unset

func (v *NullableBackupsToKeep) Unset()

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCheckForPackageUpdates

type NullableCheckForPackageUpdates struct {
	// contains filtered or unexported fields
}

func (NullableCheckForPackageUpdates) Get

func (NullableCheckForPackageUpdates) IsSet

func (NullableCheckForPackageUpdates) MarshalJSON

func (v NullableCheckForPackageUpdates) MarshalJSON() ([]byte, error)

func (*NullableCheckForPackageUpdates) Set

func (*NullableCheckForPackageUpdates) UnmarshalJSON

func (v *NullableCheckForPackageUpdates) UnmarshalJSON(src []byte) error

func (*NullableCheckForPackageUpdates) Unset

func (v *NullableCheckForPackageUpdates) Unset()

type NullableCheckForUpdates

type NullableCheckForUpdates struct {
	// contains filtered or unexported fields
}

func NewNullableCheckForUpdates

func NewNullableCheckForUpdates(val *CheckForUpdates) *NullableCheckForUpdates

func (NullableCheckForUpdates) Get

func (NullableCheckForUpdates) IsSet

func (v NullableCheckForUpdates) IsSet() bool

func (NullableCheckForUpdates) MarshalJSON

func (v NullableCheckForUpdates) MarshalJSON() ([]byte, error)

func (*NullableCheckForUpdates) Set

func (*NullableCheckForUpdates) UnmarshalJSON

func (v *NullableCheckForUpdates) UnmarshalJSON(src []byte) error

func (*NullableCheckForUpdates) Unset

func (v *NullableCheckForUpdates) Unset()

type NullableError

type NullableError struct {
	// contains filtered or unexported fields
}

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

func (v NullableError) MarshalJSON() ([]byte, error)

func (*NullableError) Set

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON

func (v *NullableError) UnmarshalJSON(src []byte) error

func (*NullableError) Unset

func (v *NullableError) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableInputSettings

type NullableInputSettings struct {
	// contains filtered or unexported fields
}

func NewNullableInputSettings

func NewNullableInputSettings(val *InputSettings) *NullableInputSettings

func (NullableInputSettings) Get

func (NullableInputSettings) IsSet

func (v NullableInputSettings) IsSet() bool

func (NullableInputSettings) MarshalJSON

func (v NullableInputSettings) MarshalJSON() ([]byte, error)

func (*NullableInputSettings) Set

func (v *NullableInputSettings) Set(val *InputSettings)

func (*NullableInputSettings) UnmarshalJSON

func (v *NullableInputSettings) UnmarshalJSON(src []byte) error

func (*NullableInputSettings) Unset

func (v *NullableInputSettings) Unset()

type NullableInstanceTitle

type NullableInstanceTitle struct {
	// contains filtered or unexported fields
}

func NewNullableInstanceTitle

func NewNullableInstanceTitle(val *InstanceTitle) *NullableInstanceTitle

func (NullableInstanceTitle) Get

func (NullableInstanceTitle) IsSet

func (v NullableInstanceTitle) IsSet() bool

func (NullableInstanceTitle) MarshalJSON

func (v NullableInstanceTitle) MarshalJSON() ([]byte, error)

func (*NullableInstanceTitle) Set

func (v *NullableInstanceTitle) Set(val *InstanceTitle)

func (*NullableInstanceTitle) UnmarshalJSON

func (v *NullableInstanceTitle) UnmarshalJSON(src []byte) error

func (*NullableInstanceTitle) Unset

func (v *NullableInstanceTitle) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableIsAuthenticationEnabled

type NullableIsAuthenticationEnabled struct {
	// contains filtered or unexported fields
}

func (NullableIsAuthenticationEnabled) Get

func (NullableIsAuthenticationEnabled) IsSet

func (NullableIsAuthenticationEnabled) MarshalJSON

func (v NullableIsAuthenticationEnabled) MarshalJSON() ([]byte, error)

func (*NullableIsAuthenticationEnabled) Set

func (*NullableIsAuthenticationEnabled) UnmarshalJSON

func (v *NullableIsAuthenticationEnabled) UnmarshalJSON(src []byte) error

func (*NullableIsAuthenticationEnabled) Unset

type NullableLicense

type NullableLicense struct {
	// contains filtered or unexported fields
}

func NewNullableLicense

func NewNullableLicense(val *License) *NullableLicense

func (NullableLicense) Get

func (v NullableLicense) Get() *License

func (NullableLicense) IsSet

func (v NullableLicense) IsSet() bool

func (NullableLicense) MarshalJSON

func (v NullableLicense) MarshalJSON() ([]byte, error)

func (*NullableLicense) Set

func (v *NullableLicense) Set(val *License)

func (*NullableLicense) UnmarshalJSON

func (v *NullableLicense) UnmarshalJSON(src []byte) error

func (*NullableLicense) Unset

func (v *NullableLicense) Unset()

type NullableMEqMTWriteFixAppliedAt

type NullableMEqMTWriteFixAppliedAt struct {
	// contains filtered or unexported fields
}

func (NullableMEqMTWriteFixAppliedAt) Get

func (NullableMEqMTWriteFixAppliedAt) IsSet

func (NullableMEqMTWriteFixAppliedAt) MarshalJSON

func (v NullableMEqMTWriteFixAppliedAt) MarshalJSON() ([]byte, error)

func (*NullableMEqMTWriteFixAppliedAt) Set

func (*NullableMEqMTWriteFixAppliedAt) UnmarshalJSON

func (v *NullableMEqMTWriteFixAppliedAt) UnmarshalJSON(src []byte) error

func (*NullableMEqMTWriteFixAppliedAt) Unset

func (v *NullableMEqMTWriteFixAppliedAt) Unset()

type NullableMinimumFreeStorageSpace

type NullableMinimumFreeStorageSpace struct {
	// contains filtered or unexported fields
}

func (NullableMinimumFreeStorageSpace) Get

func (NullableMinimumFreeStorageSpace) IsSet

func (NullableMinimumFreeStorageSpace) MarshalJSON

func (v NullableMinimumFreeStorageSpace) MarshalJSON() ([]byte, error)

func (*NullableMinimumFreeStorageSpace) Set

func (*NullableMinimumFreeStorageSpace) UnmarshalJSON

func (v *NullableMinimumFreeStorageSpace) UnmarshalJSON(src []byte) error

func (*NullableMinimumFreeStorageSpace) Unset

type NullableMinimumPasswordLength

type NullableMinimumPasswordLength struct {
	// contains filtered or unexported fields
}

func (NullableMinimumPasswordLength) Get

func (NullableMinimumPasswordLength) IsSet

func (NullableMinimumPasswordLength) MarshalJSON

func (v NullableMinimumPasswordLength) MarshalJSON() ([]byte, error)

func (*NullableMinimumPasswordLength) Set

func (*NullableMinimumPasswordLength) UnmarshalJSON

func (v *NullableMinimumPasswordLength) UnmarshalJSON(src []byte) error

func (*NullableMinimumPasswordLength) Unset

func (v *NullableMinimumPasswordLength) Unset()

type NullableNewUserRoleIds

type NullableNewUserRoleIds struct {
	// contains filtered or unexported fields
}

func NewNullableNewUserRoleIds

func NewNullableNewUserRoleIds(val *NewUserRoleIds) *NullableNewUserRoleIds

func (NullableNewUserRoleIds) Get

func (NullableNewUserRoleIds) IsSet

func (v NullableNewUserRoleIds) IsSet() bool

func (NullableNewUserRoleIds) MarshalJSON

func (v NullableNewUserRoleIds) MarshalJSON() ([]byte, error)

func (*NullableNewUserRoleIds) Set

func (*NullableNewUserRoleIds) UnmarshalJSON

func (v *NullableNewUserRoleIds) UnmarshalJSON(src []byte) error

func (*NullableNewUserRoleIds) Unset

func (v *NullableNewUserRoleIds) Unset()

type NullableNewUserShowDashboardIds

type NullableNewUserShowDashboardIds struct {
	// contains filtered or unexported fields
}

func (NullableNewUserShowDashboardIds) Get

func (NullableNewUserShowDashboardIds) IsSet

func (NullableNewUserShowDashboardIds) MarshalJSON

func (v NullableNewUserShowDashboardIds) MarshalJSON() ([]byte, error)

func (*NullableNewUserShowDashboardIds) Set

func (*NullableNewUserShowDashboardIds) UnmarshalJSON

func (v *NullableNewUserShowDashboardIds) UnmarshalJSON(src []byte) error

func (*NullableNewUserShowDashboardIds) Unset

type NullableNewUserShowQueryIds

type NullableNewUserShowQueryIds struct {
	// contains filtered or unexported fields
}

func NewNullableNewUserShowQueryIds

func NewNullableNewUserShowQueryIds(val *NewUserShowQueryIds) *NullableNewUserShowQueryIds

func (NullableNewUserShowQueryIds) Get

func (NullableNewUserShowQueryIds) IsSet

func (NullableNewUserShowQueryIds) MarshalJSON

func (v NullableNewUserShowQueryIds) MarshalJSON() ([]byte, error)

func (*NullableNewUserShowQueryIds) Set

func (*NullableNewUserShowQueryIds) UnmarshalJSON

func (v *NullableNewUserShowQueryIds) UnmarshalJSON(src []byte) error

func (*NullableNewUserShowQueryIds) Unset

func (v *NullableNewUserShowQueryIds) Unset()

type NullableNewUserShowSignalIds

type NullableNewUserShowSignalIds struct {
	// contains filtered or unexported fields
}

func NewNullableNewUserShowSignalIds

func NewNullableNewUserShowSignalIds(val *NewUserShowSignalIds) *NullableNewUserShowSignalIds

func (NullableNewUserShowSignalIds) Get

func (NullableNewUserShowSignalIds) IsSet

func (NullableNewUserShowSignalIds) MarshalJSON

func (v NullableNewUserShowSignalIds) MarshalJSON() ([]byte, error)

func (*NullableNewUserShowSignalIds) Set

func (*NullableNewUserShowSignalIds) UnmarshalJSON

func (v *NullableNewUserShowSignalIds) UnmarshalJSON(src []byte) error

func (*NullableNewUserShowSignalIds) Unset

func (v *NullableNewUserShowSignalIds) Unset()

type NullableOpenIdConnectAuthority

type NullableOpenIdConnectAuthority struct {
	// contains filtered or unexported fields
}

func (NullableOpenIdConnectAuthority) Get

func (NullableOpenIdConnectAuthority) IsSet

func (NullableOpenIdConnectAuthority) MarshalJSON

func (v NullableOpenIdConnectAuthority) MarshalJSON() ([]byte, error)

func (*NullableOpenIdConnectAuthority) Set

func (*NullableOpenIdConnectAuthority) UnmarshalJSON

func (v *NullableOpenIdConnectAuthority) UnmarshalJSON(src []byte) error

func (*NullableOpenIdConnectAuthority) Unset

func (v *NullableOpenIdConnectAuthority) Unset()

type NullableOpenIdConnectClientId

type NullableOpenIdConnectClientId struct {
	// contains filtered or unexported fields
}

func (NullableOpenIdConnectClientId) Get

func (NullableOpenIdConnectClientId) IsSet

func (NullableOpenIdConnectClientId) MarshalJSON

func (v NullableOpenIdConnectClientId) MarshalJSON() ([]byte, error)

func (*NullableOpenIdConnectClientId) Set

func (*NullableOpenIdConnectClientId) UnmarshalJSON

func (v *NullableOpenIdConnectClientId) UnmarshalJSON(src []byte) error

func (*NullableOpenIdConnectClientId) Unset

func (v *NullableOpenIdConnectClientId) Unset()

type NullableOpenIdConnectClientSecret

type NullableOpenIdConnectClientSecret struct {
	// contains filtered or unexported fields
}

func (NullableOpenIdConnectClientSecret) Get

func (NullableOpenIdConnectClientSecret) IsSet

func (NullableOpenIdConnectClientSecret) MarshalJSON

func (v NullableOpenIdConnectClientSecret) MarshalJSON() ([]byte, error)

func (*NullableOpenIdConnectClientSecret) Set

func (*NullableOpenIdConnectClientSecret) UnmarshalJSON

func (v *NullableOpenIdConnectClientSecret) UnmarshalJSON(src []byte) error

func (*NullableOpenIdConnectClientSecret) Unset

type NullableOpenIdConnectEndSessionRedirectUri

type NullableOpenIdConnectEndSessionRedirectUri struct {
	// contains filtered or unexported fields
}

func (NullableOpenIdConnectEndSessionRedirectUri) Get

func (NullableOpenIdConnectEndSessionRedirectUri) IsSet

func (NullableOpenIdConnectEndSessionRedirectUri) MarshalJSON

func (*NullableOpenIdConnectEndSessionRedirectUri) Set

func (*NullableOpenIdConnectEndSessionRedirectUri) UnmarshalJSON

func (v *NullableOpenIdConnectEndSessionRedirectUri) UnmarshalJSON(src []byte) error

func (*NullableOpenIdConnectEndSessionRedirectUri) Unset

type NullableOpenIdConnectScopes

type NullableOpenIdConnectScopes struct {
	// contains filtered or unexported fields
}

func NewNullableOpenIdConnectScopes

func NewNullableOpenIdConnectScopes(val *OpenIdConnectScopes) *NullableOpenIdConnectScopes

func (NullableOpenIdConnectScopes) Get

func (NullableOpenIdConnectScopes) IsSet

func (NullableOpenIdConnectScopes) MarshalJSON

func (v NullableOpenIdConnectScopes) MarshalJSON() ([]byte, error)

func (*NullableOpenIdConnectScopes) Set

func (*NullableOpenIdConnectScopes) UnmarshalJSON

func (v *NullableOpenIdConnectScopes) UnmarshalJSON(src []byte) error

func (*NullableOpenIdConnectScopes) Unset

func (v *NullableOpenIdConnectScopes) Unset()

type NullablePasswordRequiredCharacterClasses

type NullablePasswordRequiredCharacterClasses struct {
	// contains filtered or unexported fields
}

func (NullablePasswordRequiredCharacterClasses) Get

func (NullablePasswordRequiredCharacterClasses) IsSet

func (NullablePasswordRequiredCharacterClasses) MarshalJSON

func (*NullablePasswordRequiredCharacterClasses) Set

func (*NullablePasswordRequiredCharacterClasses) UnmarshalJSON

func (v *NullablePasswordRequiredCharacterClasses) UnmarshalJSON(src []byte) error

func (*NullablePasswordRequiredCharacterClasses) Unset

type NullableRawEventMaximumContentLength

type NullableRawEventMaximumContentLength struct {
	// contains filtered or unexported fields
}

func (NullableRawEventMaximumContentLength) Get

func (NullableRawEventMaximumContentLength) IsSet

func (NullableRawEventMaximumContentLength) MarshalJSON

func (v NullableRawEventMaximumContentLength) MarshalJSON() ([]byte, error)

func (*NullableRawEventMaximumContentLength) Set

func (*NullableRawEventMaximumContentLength) UnmarshalJSON

func (v *NullableRawEventMaximumContentLength) UnmarshalJSON(src []byte) error

func (*NullableRawEventMaximumContentLength) Unset

type NullableRawPayloadMaximumContentLength

type NullableRawPayloadMaximumContentLength struct {
	// contains filtered or unexported fields
}

func (NullableRawPayloadMaximumContentLength) Get

func (NullableRawPayloadMaximumContentLength) IsSet

func (NullableRawPayloadMaximumContentLength) MarshalJSON

func (v NullableRawPayloadMaximumContentLength) MarshalJSON() ([]byte, error)

func (*NullableRawPayloadMaximumContentLength) Set

func (*NullableRawPayloadMaximumContentLength) UnmarshalJSON

func (v *NullableRawPayloadMaximumContentLength) UnmarshalJSON(src []byte) error

func (*NullableRawPayloadMaximumContentLength) Unset

type NullableRequireApiKeyForWritingEvents

type NullableRequireApiKeyForWritingEvents struct {
	// contains filtered or unexported fields
}

func (NullableRequireApiKeyForWritingEvents) Get

func (NullableRequireApiKeyForWritingEvents) IsSet

func (NullableRequireApiKeyForWritingEvents) MarshalJSON

func (v NullableRequireApiKeyForWritingEvents) MarshalJSON() ([]byte, error)

func (*NullableRequireApiKeyForWritingEvents) Set

func (*NullableRequireApiKeyForWritingEvents) UnmarshalJSON

func (v *NullableRequireApiKeyForWritingEvents) UnmarshalJSON(src []byte) error

func (*NullableRequireApiKeyForWritingEvents) Unset

type NullableSecretKeyIsBackedUp

type NullableSecretKeyIsBackedUp struct {
	// contains filtered or unexported fields
}

func NewNullableSecretKeyIsBackedUp

func NewNullableSecretKeyIsBackedUp(val *SecretKeyIsBackedUp) *NullableSecretKeyIsBackedUp

func (NullableSecretKeyIsBackedUp) Get

func (NullableSecretKeyIsBackedUp) IsSet

func (NullableSecretKeyIsBackedUp) MarshalJSON

func (v NullableSecretKeyIsBackedUp) MarshalJSON() ([]byte, error)

func (*NullableSecretKeyIsBackedUp) Set

func (*NullableSecretKeyIsBackedUp) UnmarshalJSON

func (v *NullableSecretKeyIsBackedUp) UnmarshalJSON(src []byte) error

func (*NullableSecretKeyIsBackedUp) Unset

func (v *NullableSecretKeyIsBackedUp) Unset()

type NullableSetting

type NullableSetting struct {
	// contains filtered or unexported fields
}

func NewNullableSetting

func NewNullableSetting(val *Setting) *NullableSetting

func (NullableSetting) Get

func (v NullableSetting) Get() *Setting

func (NullableSetting) IsSet

func (v NullableSetting) IsSet() bool

func (NullableSetting) MarshalJSON

func (v NullableSetting) MarshalJSON() ([]byte, error)

func (*NullableSetting) Set

func (v *NullableSetting) Set(val *Setting)

func (*NullableSetting) UnmarshalJSON

func (v *NullableSetting) UnmarshalJSON(src []byte) error

func (*NullableSetting) Unset

func (v *NullableSetting) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTelemetryId

type NullableTelemetryId struct {
	// contains filtered or unexported fields
}

func NewNullableTelemetryId

func NewNullableTelemetryId(val *TelemetryId) *NullableTelemetryId

func (NullableTelemetryId) Get

func (NullableTelemetryId) IsSet

func (v NullableTelemetryId) IsSet() bool

func (NullableTelemetryId) MarshalJSON

func (v NullableTelemetryId) MarshalJSON() ([]byte, error)

func (*NullableTelemetryId) Set

func (v *NullableTelemetryId) Set(val *TelemetryId)

func (*NullableTelemetryId) UnmarshalJSON

func (v *NullableTelemetryId) UnmarshalJSON(src []byte) error

func (*NullableTelemetryId) Unset

func (v *NullableTelemetryId) Unset()

type NullableTelemetryReplyEmail

type NullableTelemetryReplyEmail struct {
	// contains filtered or unexported fields
}

func NewNullableTelemetryReplyEmail

func NewNullableTelemetryReplyEmail(val *TelemetryReplyEmail) *NullableTelemetryReplyEmail

func (NullableTelemetryReplyEmail) Get

func (NullableTelemetryReplyEmail) IsSet

func (NullableTelemetryReplyEmail) MarshalJSON

func (v NullableTelemetryReplyEmail) MarshalJSON() ([]byte, error)

func (*NullableTelemetryReplyEmail) Set

func (*NullableTelemetryReplyEmail) UnmarshalJSON

func (v *NullableTelemetryReplyEmail) UnmarshalJSON(src []byte) error

func (*NullableTelemetryReplyEmail) Unset

func (v *NullableTelemetryReplyEmail) Unset()

type NullableThemeStyles

type NullableThemeStyles struct {
	// contains filtered or unexported fields
}

func NewNullableThemeStyles

func NewNullableThemeStyles(val *ThemeStyles) *NullableThemeStyles

func (NullableThemeStyles) Get

func (NullableThemeStyles) IsSet

func (v NullableThemeStyles) IsSet() bool

func (NullableThemeStyles) MarshalJSON

func (v NullableThemeStyles) MarshalJSON() ([]byte, error)

func (*NullableThemeStyles) Set

func (v *NullableThemeStyles) Set(val *ThemeStyles)

func (*NullableThemeStyles) UnmarshalJSON

func (v *NullableThemeStyles) UnmarshalJSON(src []byte) error

func (*NullableThemeStyles) Unset

func (v *NullableThemeStyles) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUser

type NullableUser struct {
	// contains filtered or unexported fields
}

func NewNullableUser

func NewNullableUser(val *User) *NullableUser

func (NullableUser) Get

func (v NullableUser) Get() *User

func (NullableUser) IsSet

func (v NullableUser) IsSet() bool

func (NullableUser) MarshalJSON

func (v NullableUser) MarshalJSON() ([]byte, error)

func (*NullableUser) Set

func (v *NullableUser) Set(val *User)

func (*NullableUser) UnmarshalJSON

func (v *NullableUser) UnmarshalJSON(src []byte) error

func (*NullableUser) Unset

func (v *NullableUser) Unset()

type OpenIdConnectAuthority

type OpenIdConnectAuthority struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

OpenIdConnectAuthority struct for OpenIdConnectAuthority

func NewOpenIdConnectAuthority

func NewOpenIdConnectAuthority(id string, name string) *OpenIdConnectAuthority

NewOpenIdConnectAuthority instantiates a new OpenIdConnectAuthority 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

func NewOpenIdConnectAuthorityWithDefaults

func NewOpenIdConnectAuthorityWithDefaults() *OpenIdConnectAuthority

NewOpenIdConnectAuthorityWithDefaults instantiates a new OpenIdConnectAuthority 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

func (*OpenIdConnectAuthority) GetId

func (o *OpenIdConnectAuthority) GetId() string

GetId returns the Id field value

func (*OpenIdConnectAuthority) GetIdOk

func (o *OpenIdConnectAuthority) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*OpenIdConnectAuthority) GetName

func (o *OpenIdConnectAuthority) GetName() string

GetName returns the Name field value

func (*OpenIdConnectAuthority) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*OpenIdConnectAuthority) GetValue

func (o *OpenIdConnectAuthority) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*OpenIdConnectAuthority) GetValueOk

func (o *OpenIdConnectAuthority) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OpenIdConnectAuthority) HasValue

func (o *OpenIdConnectAuthority) HasValue() bool

HasValue returns a boolean if a field has been set.

func (OpenIdConnectAuthority) MarshalJSON

func (o OpenIdConnectAuthority) MarshalJSON() ([]byte, error)

func (*OpenIdConnectAuthority) SetId

func (o *OpenIdConnectAuthority) SetId(v string)

SetId sets field value

func (*OpenIdConnectAuthority) SetName

func (o *OpenIdConnectAuthority) SetName(v string)

SetName sets field value

func (*OpenIdConnectAuthority) SetValue

func (o *OpenIdConnectAuthority) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type OpenIdConnectClientId

type OpenIdConnectClientId struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

OpenIdConnectClientId struct for OpenIdConnectClientId

func NewOpenIdConnectClientId

func NewOpenIdConnectClientId(id string, name string) *OpenIdConnectClientId

NewOpenIdConnectClientId instantiates a new OpenIdConnectClientId 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

func NewOpenIdConnectClientIdWithDefaults

func NewOpenIdConnectClientIdWithDefaults() *OpenIdConnectClientId

NewOpenIdConnectClientIdWithDefaults instantiates a new OpenIdConnectClientId 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

func (*OpenIdConnectClientId) GetId

func (o *OpenIdConnectClientId) GetId() string

GetId returns the Id field value

func (*OpenIdConnectClientId) GetIdOk

func (o *OpenIdConnectClientId) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*OpenIdConnectClientId) GetName

func (o *OpenIdConnectClientId) GetName() string

GetName returns the Name field value

func (*OpenIdConnectClientId) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*OpenIdConnectClientId) GetValue

func (o *OpenIdConnectClientId) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*OpenIdConnectClientId) GetValueOk

func (o *OpenIdConnectClientId) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OpenIdConnectClientId) HasValue

func (o *OpenIdConnectClientId) HasValue() bool

HasValue returns a boolean if a field has been set.

func (OpenIdConnectClientId) MarshalJSON

func (o OpenIdConnectClientId) MarshalJSON() ([]byte, error)

func (*OpenIdConnectClientId) SetId

func (o *OpenIdConnectClientId) SetId(v string)

SetId sets field value

func (*OpenIdConnectClientId) SetName

func (o *OpenIdConnectClientId) SetName(v string)

SetName sets field value

func (*OpenIdConnectClientId) SetValue

func (o *OpenIdConnectClientId) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type OpenIdConnectClientSecret

type OpenIdConnectClientSecret struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

OpenIdConnectClientSecret struct for OpenIdConnectClientSecret

func NewOpenIdConnectClientSecret

func NewOpenIdConnectClientSecret(id string, name string) *OpenIdConnectClientSecret

NewOpenIdConnectClientSecret instantiates a new OpenIdConnectClientSecret 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

func NewOpenIdConnectClientSecretWithDefaults

func NewOpenIdConnectClientSecretWithDefaults() *OpenIdConnectClientSecret

NewOpenIdConnectClientSecretWithDefaults instantiates a new OpenIdConnectClientSecret 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

func (*OpenIdConnectClientSecret) GetId

func (o *OpenIdConnectClientSecret) GetId() string

GetId returns the Id field value

func (*OpenIdConnectClientSecret) GetIdOk

func (o *OpenIdConnectClientSecret) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*OpenIdConnectClientSecret) GetName

func (o *OpenIdConnectClientSecret) GetName() string

GetName returns the Name field value

func (*OpenIdConnectClientSecret) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*OpenIdConnectClientSecret) GetValue

func (o *OpenIdConnectClientSecret) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*OpenIdConnectClientSecret) GetValueOk

func (o *OpenIdConnectClientSecret) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OpenIdConnectClientSecret) HasValue

func (o *OpenIdConnectClientSecret) HasValue() bool

HasValue returns a boolean if a field has been set.

func (OpenIdConnectClientSecret) MarshalJSON

func (o OpenIdConnectClientSecret) MarshalJSON() ([]byte, error)

func (*OpenIdConnectClientSecret) SetId

func (o *OpenIdConnectClientSecret) SetId(v string)

SetId sets field value

func (*OpenIdConnectClientSecret) SetName

func (o *OpenIdConnectClientSecret) SetName(v string)

SetName sets field value

func (*OpenIdConnectClientSecret) SetValue

func (o *OpenIdConnectClientSecret) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type OpenIdConnectEndSessionRedirectUri

type OpenIdConnectEndSessionRedirectUri struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

OpenIdConnectEndSessionRedirectUri struct for OpenIdConnectEndSessionRedirectUri

func NewOpenIdConnectEndSessionRedirectUri

func NewOpenIdConnectEndSessionRedirectUri(id string, name string) *OpenIdConnectEndSessionRedirectUri

NewOpenIdConnectEndSessionRedirectUri instantiates a new OpenIdConnectEndSessionRedirectUri 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

func NewOpenIdConnectEndSessionRedirectUriWithDefaults

func NewOpenIdConnectEndSessionRedirectUriWithDefaults() *OpenIdConnectEndSessionRedirectUri

NewOpenIdConnectEndSessionRedirectUriWithDefaults instantiates a new OpenIdConnectEndSessionRedirectUri 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

func (*OpenIdConnectEndSessionRedirectUri) GetId

GetId returns the Id field value

func (*OpenIdConnectEndSessionRedirectUri) GetIdOk

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*OpenIdConnectEndSessionRedirectUri) GetName

GetName returns the Name field value

func (*OpenIdConnectEndSessionRedirectUri) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*OpenIdConnectEndSessionRedirectUri) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*OpenIdConnectEndSessionRedirectUri) GetValueOk

func (o *OpenIdConnectEndSessionRedirectUri) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OpenIdConnectEndSessionRedirectUri) HasValue

HasValue returns a boolean if a field has been set.

func (OpenIdConnectEndSessionRedirectUri) MarshalJSON

func (o OpenIdConnectEndSessionRedirectUri) MarshalJSON() ([]byte, error)

func (*OpenIdConnectEndSessionRedirectUri) SetId

SetId sets field value

func (*OpenIdConnectEndSessionRedirectUri) SetName

SetName sets field value

func (*OpenIdConnectEndSessionRedirectUri) SetValue

SetValue gets a reference to the given string and assigns it to the Value field.

type OpenIdConnectScopes

type OpenIdConnectScopes struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

OpenIdConnectScopes struct for OpenIdConnectScopes

func NewOpenIdConnectScopes

func NewOpenIdConnectScopes(id string, name string) *OpenIdConnectScopes

NewOpenIdConnectScopes instantiates a new OpenIdConnectScopes 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

func NewOpenIdConnectScopesWithDefaults

func NewOpenIdConnectScopesWithDefaults() *OpenIdConnectScopes

NewOpenIdConnectScopesWithDefaults instantiates a new OpenIdConnectScopes 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

func (*OpenIdConnectScopes) GetId

func (o *OpenIdConnectScopes) GetId() string

GetId returns the Id field value

func (*OpenIdConnectScopes) GetIdOk

func (o *OpenIdConnectScopes) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*OpenIdConnectScopes) GetName

func (o *OpenIdConnectScopes) GetName() string

GetName returns the Name field value

func (*OpenIdConnectScopes) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*OpenIdConnectScopes) GetValue

func (o *OpenIdConnectScopes) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*OpenIdConnectScopes) GetValueOk

func (o *OpenIdConnectScopes) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OpenIdConnectScopes) HasValue

func (o *OpenIdConnectScopes) HasValue() bool

HasValue returns a boolean if a field has been set.

func (OpenIdConnectScopes) MarshalJSON

func (o OpenIdConnectScopes) MarshalJSON() ([]byte, error)

func (*OpenIdConnectScopes) SetId

func (o *OpenIdConnectScopes) SetId(v string)

SetId sets field value

func (*OpenIdConnectScopes) SetName

func (o *OpenIdConnectScopes) SetName(v string)

SetName sets field value

func (*OpenIdConnectScopes) SetValue

func (o *OpenIdConnectScopes) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type PasswordRequiredCharacterClasses

type PasswordRequiredCharacterClasses struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

PasswordRequiredCharacterClasses struct for PasswordRequiredCharacterClasses

func NewPasswordRequiredCharacterClasses

func NewPasswordRequiredCharacterClasses(id string, name string) *PasswordRequiredCharacterClasses

NewPasswordRequiredCharacterClasses instantiates a new PasswordRequiredCharacterClasses 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

func NewPasswordRequiredCharacterClassesWithDefaults

func NewPasswordRequiredCharacterClassesWithDefaults() *PasswordRequiredCharacterClasses

NewPasswordRequiredCharacterClassesWithDefaults instantiates a new PasswordRequiredCharacterClasses 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

func (*PasswordRequiredCharacterClasses) GetId

GetId returns the Id field value

func (*PasswordRequiredCharacterClasses) GetIdOk

func (o *PasswordRequiredCharacterClasses) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*PasswordRequiredCharacterClasses) GetName

GetName returns the Name field value

func (*PasswordRequiredCharacterClasses) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*PasswordRequiredCharacterClasses) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*PasswordRequiredCharacterClasses) GetValueOk

func (o *PasswordRequiredCharacterClasses) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PasswordRequiredCharacterClasses) HasValue

func (o *PasswordRequiredCharacterClasses) HasValue() bool

HasValue returns a boolean if a field has been set.

func (PasswordRequiredCharacterClasses) MarshalJSON

func (o PasswordRequiredCharacterClasses) MarshalJSON() ([]byte, error)

func (*PasswordRequiredCharacterClasses) SetId

SetId sets field value

func (*PasswordRequiredCharacterClasses) SetName

SetName sets field value

func (*PasswordRequiredCharacterClasses) SetValue

SetValue gets a reference to the given string and assigns it to the Value field.

type RawEventMaximumContentLength

type RawEventMaximumContentLength struct {
	Id    string `json:"Id"`
	Name  string `json:"Name"`
	Value *int32 `json:"Value,omitempty"`
}

RawEventMaximumContentLength struct for RawEventMaximumContentLength

func NewRawEventMaximumContentLength

func NewRawEventMaximumContentLength(id string, name string) *RawEventMaximumContentLength

NewRawEventMaximumContentLength instantiates a new RawEventMaximumContentLength 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

func NewRawEventMaximumContentLengthWithDefaults

func NewRawEventMaximumContentLengthWithDefaults() *RawEventMaximumContentLength

NewRawEventMaximumContentLengthWithDefaults instantiates a new RawEventMaximumContentLength 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

func (*RawEventMaximumContentLength) GetId

GetId returns the Id field value

func (*RawEventMaximumContentLength) GetIdOk

func (o *RawEventMaximumContentLength) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*RawEventMaximumContentLength) GetName

func (o *RawEventMaximumContentLength) GetName() string

GetName returns the Name field value

func (*RawEventMaximumContentLength) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*RawEventMaximumContentLength) GetValue

func (o *RawEventMaximumContentLength) GetValue() int32

GetValue returns the Value field value if set, zero value otherwise.

func (*RawEventMaximumContentLength) GetValueOk

func (o *RawEventMaximumContentLength) GetValueOk() (*int32, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RawEventMaximumContentLength) HasValue

func (o *RawEventMaximumContentLength) HasValue() bool

HasValue returns a boolean if a field has been set.

func (RawEventMaximumContentLength) MarshalJSON

func (o RawEventMaximumContentLength) MarshalJSON() ([]byte, error)

func (*RawEventMaximumContentLength) SetId

SetId sets field value

func (*RawEventMaximumContentLength) SetName

func (o *RawEventMaximumContentLength) SetName(v string)

SetName sets field value

func (*RawEventMaximumContentLength) SetValue

func (o *RawEventMaximumContentLength) SetValue(v int32)

SetValue gets a reference to the given int32 and assigns it to the Value field.

type RawPayloadMaximumContentLength

type RawPayloadMaximumContentLength struct {
	Id    string `json:"Id"`
	Name  string `json:"Name"`
	Value *int32 `json:"Value,omitempty"`
}

RawPayloadMaximumContentLength struct for RawPayloadMaximumContentLength

func NewRawPayloadMaximumContentLength

func NewRawPayloadMaximumContentLength(id string, name string) *RawPayloadMaximumContentLength

NewRawPayloadMaximumContentLength instantiates a new RawPayloadMaximumContentLength 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

func NewRawPayloadMaximumContentLengthWithDefaults

func NewRawPayloadMaximumContentLengthWithDefaults() *RawPayloadMaximumContentLength

NewRawPayloadMaximumContentLengthWithDefaults instantiates a new RawPayloadMaximumContentLength 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

func (*RawPayloadMaximumContentLength) GetId

GetId returns the Id field value

func (*RawPayloadMaximumContentLength) GetIdOk

func (o *RawPayloadMaximumContentLength) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*RawPayloadMaximumContentLength) GetName

GetName returns the Name field value

func (*RawPayloadMaximumContentLength) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*RawPayloadMaximumContentLength) GetValue

func (o *RawPayloadMaximumContentLength) GetValue() int32

GetValue returns the Value field value if set, zero value otherwise.

func (*RawPayloadMaximumContentLength) GetValueOk

func (o *RawPayloadMaximumContentLength) GetValueOk() (*int32, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RawPayloadMaximumContentLength) HasValue

func (o *RawPayloadMaximumContentLength) HasValue() bool

HasValue returns a boolean if a field has been set.

func (RawPayloadMaximumContentLength) MarshalJSON

func (o RawPayloadMaximumContentLength) MarshalJSON() ([]byte, error)

func (*RawPayloadMaximumContentLength) SetId

SetId sets field value

func (*RawPayloadMaximumContentLength) SetName

func (o *RawPayloadMaximumContentLength) SetName(v string)

SetName sets field value

func (*RawPayloadMaximumContentLength) SetValue

func (o *RawPayloadMaximumContentLength) SetValue(v int32)

SetValue gets a reference to the given int32 and assigns it to the Value field.

type RequireApiKeyForWritingEvents

type RequireApiKeyForWritingEvents struct {
	Id    string `json:"Id"`
	Name  string `json:"Name"`
	Value *bool  `json:"Value,omitempty"`
}

RequireApiKeyForWritingEvents struct for RequireApiKeyForWritingEvents

func NewRequireApiKeyForWritingEvents

func NewRequireApiKeyForWritingEvents(id string, name string) *RequireApiKeyForWritingEvents

NewRequireApiKeyForWritingEvents instantiates a new RequireApiKeyForWritingEvents 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

func NewRequireApiKeyForWritingEventsWithDefaults

func NewRequireApiKeyForWritingEventsWithDefaults() *RequireApiKeyForWritingEvents

NewRequireApiKeyForWritingEventsWithDefaults instantiates a new RequireApiKeyForWritingEvents 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

func (*RequireApiKeyForWritingEvents) GetId

GetId returns the Id field value

func (*RequireApiKeyForWritingEvents) GetIdOk

func (o *RequireApiKeyForWritingEvents) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*RequireApiKeyForWritingEvents) GetName

GetName returns the Name field value

func (*RequireApiKeyForWritingEvents) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*RequireApiKeyForWritingEvents) GetValue

func (o *RequireApiKeyForWritingEvents) GetValue() bool

GetValue returns the Value field value if set, zero value otherwise.

func (*RequireApiKeyForWritingEvents) GetValueOk

func (o *RequireApiKeyForWritingEvents) GetValueOk() (*bool, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequireApiKeyForWritingEvents) HasValue

func (o *RequireApiKeyForWritingEvents) HasValue() bool

HasValue returns a boolean if a field has been set.

func (RequireApiKeyForWritingEvents) MarshalJSON

func (o RequireApiKeyForWritingEvents) MarshalJSON() ([]byte, error)

func (*RequireApiKeyForWritingEvents) SetId

SetId sets field value

func (*RequireApiKeyForWritingEvents) SetName

func (o *RequireApiKeyForWritingEvents) SetName(v string)

SetName sets field value

func (*RequireApiKeyForWritingEvents) SetValue

func (o *RequireApiKeyForWritingEvents) SetValue(v bool)

SetValue gets a reference to the given bool and assigns it to the Value field.

type SecretKeyIsBackedUp

type SecretKeyIsBackedUp struct {
	Id    string `json:"Id"`
	Name  string `json:"Name"`
	Value *bool  `json:"Value,omitempty"`
}

SecretKeyIsBackedUp struct for SecretKeyIsBackedUp

func NewSecretKeyIsBackedUp

func NewSecretKeyIsBackedUp(id string, name string) *SecretKeyIsBackedUp

NewSecretKeyIsBackedUp instantiates a new SecretKeyIsBackedUp 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

func NewSecretKeyIsBackedUpWithDefaults

func NewSecretKeyIsBackedUpWithDefaults() *SecretKeyIsBackedUp

NewSecretKeyIsBackedUpWithDefaults instantiates a new SecretKeyIsBackedUp 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

func (*SecretKeyIsBackedUp) GetId

func (o *SecretKeyIsBackedUp) GetId() string

GetId returns the Id field value

func (*SecretKeyIsBackedUp) GetIdOk

func (o *SecretKeyIsBackedUp) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*SecretKeyIsBackedUp) GetName

func (o *SecretKeyIsBackedUp) GetName() string

GetName returns the Name field value

func (*SecretKeyIsBackedUp) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SecretKeyIsBackedUp) GetValue

func (o *SecretKeyIsBackedUp) GetValue() bool

GetValue returns the Value field value if set, zero value otherwise.

func (*SecretKeyIsBackedUp) GetValueOk

func (o *SecretKeyIsBackedUp) GetValueOk() (*bool, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretKeyIsBackedUp) HasValue

func (o *SecretKeyIsBackedUp) HasValue() bool

HasValue returns a boolean if a field has been set.

func (SecretKeyIsBackedUp) MarshalJSON

func (o SecretKeyIsBackedUp) MarshalJSON() ([]byte, error)

func (*SecretKeyIsBackedUp) SetId

func (o *SecretKeyIsBackedUp) SetId(v string)

SetId sets field value

func (*SecretKeyIsBackedUp) SetName

func (o *SecretKeyIsBackedUp) SetName(v string)

SetName sets field value

func (*SecretKeyIsBackedUp) SetValue

func (o *SecretKeyIsBackedUp) SetValue(v bool)

SetValue gets a reference to the given bool and assigns it to the Value field.

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type Setting

type Setting struct {
	AuthenticationProvider                   *AuthenticationProvider
	AutomaticAccessADGroup                   *AutomaticAccessADGroup
	AutomaticallyProvisionAuthenticatedUsers *AutomaticallyProvisionAuthenticatedUsers
	AzureADAuthority                         *AzureADAuthority
	AzureADClientId                          *AzureADClientId
	AzureADClientKey                         *AzureADClientKey
	AzureADTenantId                          *AzureADTenantId
	BackupLocation                           *BackupLocation
	BackupUtcTimeOfDay                       *BackupUtcTimeOfDay
	BackupsToKeep                            *BackupsToKeep
	CheckForPackageUpdates                   *CheckForPackageUpdates
	CheckForUpdates                          *CheckForUpdates
	InstanceTitle                            *InstanceTitle
	IsAuthenticationEnabled                  *IsAuthenticationEnabled
	MEqMTWriteFixAppliedAt                   *MEqMTWriteFixAppliedAt
	MinimumFreeStorageSpace                  *MinimumFreeStorageSpace
	MinimumPasswordLength                    *MinimumPasswordLength
	NewUserRoleIds                           *NewUserRoleIds
	NewUserShowDashboardIds                  *NewUserShowDashboardIds
	NewUserShowQueryIds                      *NewUserShowQueryIds
	NewUserShowSignalIds                     *NewUserShowSignalIds
	OpenIdConnectAuthority                   *OpenIdConnectAuthority
	OpenIdConnectClientId                    *OpenIdConnectClientId
	OpenIdConnectClientSecret                *OpenIdConnectClientSecret
	OpenIdConnectEndSessionRedirectUri       *OpenIdConnectEndSessionRedirectUri
	OpenIdConnectScopes                      *OpenIdConnectScopes
	PasswordRequiredCharacterClasses         *PasswordRequiredCharacterClasses
	RawEventMaximumContentLength             *RawEventMaximumContentLength
	RawPayloadMaximumContentLength           *RawPayloadMaximumContentLength
	RequireApiKeyForWritingEvents            *RequireApiKeyForWritingEvents
	SecretKeyIsBackedUp                      *SecretKeyIsBackedUp
	TelemetryId                              *TelemetryId
	TelemetryReplyEmail                      *TelemetryReplyEmail
	ThemeStyles                              *ThemeStyles
}

Setting - struct for Setting

func AuthenticationProviderAsSetting

func AuthenticationProviderAsSetting(v *AuthenticationProvider) Setting

AuthenticationProviderAsSetting is a convenience function that returns AuthenticationProvider wrapped in Setting

func AutomaticAccessADGroupAsSetting

func AutomaticAccessADGroupAsSetting(v *AutomaticAccessADGroup) Setting

AutomaticAccessADGroupAsSetting is a convenience function that returns AutomaticAccessADGroup wrapped in Setting

func AutomaticallyProvisionAuthenticatedUsersAsSetting

func AutomaticallyProvisionAuthenticatedUsersAsSetting(v *AutomaticallyProvisionAuthenticatedUsers) Setting

AutomaticallyProvisionAuthenticatedUsersAsSetting is a convenience function that returns AutomaticallyProvisionAuthenticatedUsers wrapped in Setting

func AzureADAuthorityAsSetting

func AzureADAuthorityAsSetting(v *AzureADAuthority) Setting

AzureADAuthorityAsSetting is a convenience function that returns AzureADAuthority wrapped in Setting

func AzureADClientIdAsSetting

func AzureADClientIdAsSetting(v *AzureADClientId) Setting

AzureADClientIdAsSetting is a convenience function that returns AzureADClientId wrapped in Setting

func AzureADClientKeyAsSetting

func AzureADClientKeyAsSetting(v *AzureADClientKey) Setting

AzureADClientKeyAsSetting is a convenience function that returns AzureADClientKey wrapped in Setting

func AzureADTenantIdAsSetting

func AzureADTenantIdAsSetting(v *AzureADTenantId) Setting

AzureADTenantIdAsSetting is a convenience function that returns AzureADTenantId wrapped in Setting

func BackupLocationAsSetting

func BackupLocationAsSetting(v *BackupLocation) Setting

BackupLocationAsSetting is a convenience function that returns BackupLocation wrapped in Setting

func BackupUtcTimeOfDayAsSetting

func BackupUtcTimeOfDayAsSetting(v *BackupUtcTimeOfDay) Setting

BackupUtcTimeOfDayAsSetting is a convenience function that returns BackupUtcTimeOfDay wrapped in Setting

func BackupsToKeepAsSetting

func BackupsToKeepAsSetting(v *BackupsToKeep) Setting

BackupsToKeepAsSetting is a convenience function that returns BackupsToKeep wrapped in Setting

func CheckForPackageUpdatesAsSetting

func CheckForPackageUpdatesAsSetting(v *CheckForPackageUpdates) Setting

CheckForPackageUpdatesAsSetting is a convenience function that returns CheckForPackageUpdates wrapped in Setting

func CheckForUpdatesAsSetting

func CheckForUpdatesAsSetting(v *CheckForUpdates) Setting

CheckForUpdatesAsSetting is a convenience function that returns CheckForUpdates wrapped in Setting

func InstanceTitleAsSetting

func InstanceTitleAsSetting(v *InstanceTitle) Setting

InstanceTitleAsSetting is a convenience function that returns InstanceTitle wrapped in Setting

func IsAuthenticationEnabledAsSetting

func IsAuthenticationEnabledAsSetting(v *IsAuthenticationEnabled) Setting

IsAuthenticationEnabledAsSetting is a convenience function that returns IsAuthenticationEnabled wrapped in Setting

func MEqMTWriteFixAppliedAtAsSetting

func MEqMTWriteFixAppliedAtAsSetting(v *MEqMTWriteFixAppliedAt) Setting

MEqMTWriteFixAppliedAtAsSetting is a convenience function that returns MEqMTWriteFixAppliedAt wrapped in Setting

func MinimumFreeStorageSpaceAsSetting

func MinimumFreeStorageSpaceAsSetting(v *MinimumFreeStorageSpace) Setting

MinimumFreeStorageSpaceAsSetting is a convenience function that returns MinimumFreeStorageSpace wrapped in Setting

func MinimumPasswordLengthAsSetting

func MinimumPasswordLengthAsSetting(v *MinimumPasswordLength) Setting

MinimumPasswordLengthAsSetting is a convenience function that returns MinimumPasswordLength wrapped in Setting

func NewUserRoleIdsAsSetting

func NewUserRoleIdsAsSetting(v *NewUserRoleIds) Setting

NewUserRoleIdsAsSetting is a convenience function that returns NewUserRoleIds wrapped in Setting

func NewUserShowDashboardIdsAsSetting

func NewUserShowDashboardIdsAsSetting(v *NewUserShowDashboardIds) Setting

NewUserShowDashboardIdsAsSetting is a convenience function that returns NewUserShowDashboardIds wrapped in Setting

func NewUserShowQueryIdsAsSetting

func NewUserShowQueryIdsAsSetting(v *NewUserShowQueryIds) Setting

NewUserShowQueryIdsAsSetting is a convenience function that returns NewUserShowQueryIds wrapped in Setting

func NewUserShowSignalIdsAsSetting

func NewUserShowSignalIdsAsSetting(v *NewUserShowSignalIds) Setting

NewUserShowSignalIdsAsSetting is a convenience function that returns NewUserShowSignalIds wrapped in Setting

func OpenIdConnectAuthorityAsSetting

func OpenIdConnectAuthorityAsSetting(v *OpenIdConnectAuthority) Setting

OpenIdConnectAuthorityAsSetting is a convenience function that returns OpenIdConnectAuthority wrapped in Setting

func OpenIdConnectClientIdAsSetting

func OpenIdConnectClientIdAsSetting(v *OpenIdConnectClientId) Setting

OpenIdConnectClientIdAsSetting is a convenience function that returns OpenIdConnectClientId wrapped in Setting

func OpenIdConnectClientSecretAsSetting

func OpenIdConnectClientSecretAsSetting(v *OpenIdConnectClientSecret) Setting

OpenIdConnectClientSecretAsSetting is a convenience function that returns OpenIdConnectClientSecret wrapped in Setting

func OpenIdConnectEndSessionRedirectUriAsSetting

func OpenIdConnectEndSessionRedirectUriAsSetting(v *OpenIdConnectEndSessionRedirectUri) Setting

OpenIdConnectEndSessionRedirectUriAsSetting is a convenience function that returns OpenIdConnectEndSessionRedirectUri wrapped in Setting

func OpenIdConnectScopesAsSetting

func OpenIdConnectScopesAsSetting(v *OpenIdConnectScopes) Setting

OpenIdConnectScopesAsSetting is a convenience function that returns OpenIdConnectScopes wrapped in Setting

func PasswordRequiredCharacterClassesAsSetting

func PasswordRequiredCharacterClassesAsSetting(v *PasswordRequiredCharacterClasses) Setting

PasswordRequiredCharacterClassesAsSetting is a convenience function that returns PasswordRequiredCharacterClasses wrapped in Setting

func RawEventMaximumContentLengthAsSetting

func RawEventMaximumContentLengthAsSetting(v *RawEventMaximumContentLength) Setting

RawEventMaximumContentLengthAsSetting is a convenience function that returns RawEventMaximumContentLength wrapped in Setting

func RawPayloadMaximumContentLengthAsSetting

func RawPayloadMaximumContentLengthAsSetting(v *RawPayloadMaximumContentLength) Setting

RawPayloadMaximumContentLengthAsSetting is a convenience function that returns RawPayloadMaximumContentLength wrapped in Setting

func RequireApiKeyForWritingEventsAsSetting

func RequireApiKeyForWritingEventsAsSetting(v *RequireApiKeyForWritingEvents) Setting

RequireApiKeyForWritingEventsAsSetting is a convenience function that returns RequireApiKeyForWritingEvents wrapped in Setting

func SecretKeyIsBackedUpAsSetting

func SecretKeyIsBackedUpAsSetting(v *SecretKeyIsBackedUp) Setting

SecretKeyIsBackedUpAsSetting is a convenience function that returns SecretKeyIsBackedUp wrapped in Setting

func TelemetryIdAsSetting

func TelemetryIdAsSetting(v *TelemetryId) Setting

TelemetryIdAsSetting is a convenience function that returns TelemetryId wrapped in Setting

func TelemetryReplyEmailAsSetting

func TelemetryReplyEmailAsSetting(v *TelemetryReplyEmail) Setting

TelemetryReplyEmailAsSetting is a convenience function that returns TelemetryReplyEmail wrapped in Setting

func ThemeStylesAsSetting

func ThemeStylesAsSetting(v *ThemeStyles) Setting

ThemeStylesAsSetting is a convenience function that returns ThemeStyles wrapped in Setting

func (*Setting) GetActualInstance

func (obj *Setting) GetActualInstance() interface{}

Get the actual instance

func (Setting) MarshalJSON

func (src Setting) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Setting) UnmarshalJSON

func (dst *Setting) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type SettingsApiService

type SettingsApiService service

SettingsApiService SettingsApi service

func (*SettingsApiService) GetSetting

* GetSetting Retrieve the setting with the given id * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id The id of the setting * @return ApiGetSettingRequest

func (*SettingsApiService) GetSettingExecute

* Execute executes the request * @return Setting

func (*SettingsApiService) UpdateSetting

* UpdateSetting Update an existing setting * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id The id of the setting * @return ApiUpdateSettingRequest

func (*SettingsApiService) UpdateSettingExecute

func (a *SettingsApiService) UpdateSettingExecute(r ApiUpdateSettingRequest) (Setting, *_nethttp.Response, error)

* Execute executes the request * @return Setting

type TelemetryId

type TelemetryId struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

TelemetryId struct for TelemetryId

func NewTelemetryId

func NewTelemetryId(id string, name string) *TelemetryId

NewTelemetryId instantiates a new TelemetryId 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

func NewTelemetryIdWithDefaults

func NewTelemetryIdWithDefaults() *TelemetryId

NewTelemetryIdWithDefaults instantiates a new TelemetryId 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

func (*TelemetryId) GetId

func (o *TelemetryId) GetId() string

GetId returns the Id field value

func (*TelemetryId) GetIdOk

func (o *TelemetryId) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*TelemetryId) GetName

func (o *TelemetryId) GetName() string

GetName returns the Name field value

func (*TelemetryId) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*TelemetryId) GetValue

func (o *TelemetryId) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*TelemetryId) GetValueOk

func (o *TelemetryId) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TelemetryId) HasValue

func (o *TelemetryId) HasValue() bool

HasValue returns a boolean if a field has been set.

func (TelemetryId) MarshalJSON

func (o TelemetryId) MarshalJSON() ([]byte, error)

func (*TelemetryId) SetId

func (o *TelemetryId) SetId(v string)

SetId sets field value

func (*TelemetryId) SetName

func (o *TelemetryId) SetName(v string)

SetName sets field value

func (*TelemetryId) SetValue

func (o *TelemetryId) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type TelemetryReplyEmail

type TelemetryReplyEmail struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

TelemetryReplyEmail struct for TelemetryReplyEmail

func NewTelemetryReplyEmail

func NewTelemetryReplyEmail(id string, name string) *TelemetryReplyEmail

NewTelemetryReplyEmail instantiates a new TelemetryReplyEmail 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

func NewTelemetryReplyEmailWithDefaults

func NewTelemetryReplyEmailWithDefaults() *TelemetryReplyEmail

NewTelemetryReplyEmailWithDefaults instantiates a new TelemetryReplyEmail 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

func (*TelemetryReplyEmail) GetId

func (o *TelemetryReplyEmail) GetId() string

GetId returns the Id field value

func (*TelemetryReplyEmail) GetIdOk

func (o *TelemetryReplyEmail) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*TelemetryReplyEmail) GetName

func (o *TelemetryReplyEmail) GetName() string

GetName returns the Name field value

func (*TelemetryReplyEmail) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*TelemetryReplyEmail) GetValue

func (o *TelemetryReplyEmail) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*TelemetryReplyEmail) GetValueOk

func (o *TelemetryReplyEmail) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TelemetryReplyEmail) HasValue

func (o *TelemetryReplyEmail) HasValue() bool

HasValue returns a boolean if a field has been set.

func (TelemetryReplyEmail) MarshalJSON

func (o TelemetryReplyEmail) MarshalJSON() ([]byte, error)

func (*TelemetryReplyEmail) SetId

func (o *TelemetryReplyEmail) SetId(v string)

SetId sets field value

func (*TelemetryReplyEmail) SetName

func (o *TelemetryReplyEmail) SetName(v string)

SetName sets field value

func (*TelemetryReplyEmail) SetValue

func (o *TelemetryReplyEmail) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type ThemeStyles

type ThemeStyles struct {
	Id    string  `json:"Id"`
	Name  string  `json:"Name"`
	Value *string `json:"Value,omitempty"`
}

ThemeStyles struct for ThemeStyles

func NewThemeStyles

func NewThemeStyles(id string, name string) *ThemeStyles

NewThemeStyles instantiates a new ThemeStyles 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

func NewThemeStylesWithDefaults

func NewThemeStylesWithDefaults() *ThemeStyles

NewThemeStylesWithDefaults instantiates a new ThemeStyles 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

func (*ThemeStyles) GetId

func (o *ThemeStyles) GetId() string

GetId returns the Id field value

func (*ThemeStyles) GetIdOk

func (o *ThemeStyles) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ThemeStyles) GetName

func (o *ThemeStyles) GetName() string

GetName returns the Name field value

func (*ThemeStyles) GetNameOk

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

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ThemeStyles) GetValue

func (o *ThemeStyles) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ThemeStyles) GetValueOk

func (o *ThemeStyles) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThemeStyles) HasValue

func (o *ThemeStyles) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ThemeStyles) MarshalJSON

func (o ThemeStyles) MarshalJSON() ([]byte, error)

func (*ThemeStyles) SetId

func (o *ThemeStyles) SetId(v string)

SetId sets field value

func (*ThemeStyles) SetName

func (o *ThemeStyles) SetName(v string)

SetName sets field value

func (*ThemeStyles) SetValue

func (o *ThemeStyles) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type User

type User struct {
	Id                 *string                 `json:"Id,omitempty"`
	Username           string                  `json:"Username"`
	NewPassword        *string                 `json:"NewPassword,omitempty"`
	MustChangePassword *bool                   `json:"MustChangePassword,omitempty"`
	DisplayName        *string                 `json:"DisplayName,omitempty"`
	EmailAddress       *string                 `json:"EmailAddress,omitempty"`
	Preferences        *map[string]interface{} `json:"Preferences,omitempty"`
	RoleIds            *[]string               `json:"RoleIds,omitempty"`
	ViewFilter         *map[string]interface{} `json:"ViewFilter,omitempty"`
}

User struct for User

func NewUser

func NewUser(username string) *User

NewUser instantiates a new User 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

func NewUserWithDefaults

func NewUserWithDefaults() *User

NewUserWithDefaults instantiates a new User 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

func (*User) GetDisplayName

func (o *User) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*User) GetDisplayNameOk

func (o *User) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetEmailAddress

func (o *User) GetEmailAddress() string

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*User) GetEmailAddressOk

func (o *User) GetEmailAddressOk() (*string, bool)

GetEmailAddressOk returns a tuple with the EmailAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetId

func (o *User) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*User) GetIdOk

func (o *User) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetMustChangePassword

func (o *User) GetMustChangePassword() bool

GetMustChangePassword returns the MustChangePassword field value if set, zero value otherwise.

func (*User) GetMustChangePasswordOk

func (o *User) GetMustChangePasswordOk() (*bool, bool)

GetMustChangePasswordOk returns a tuple with the MustChangePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetNewPassword

func (o *User) GetNewPassword() string

GetNewPassword returns the NewPassword field value if set, zero value otherwise.

func (*User) GetNewPasswordOk

func (o *User) GetNewPasswordOk() (*string, bool)

GetNewPasswordOk returns a tuple with the NewPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetPreferences

func (o *User) GetPreferences() map[string]interface{}

GetPreferences returns the Preferences field value if set, zero value otherwise.

func (*User) GetPreferencesOk

func (o *User) GetPreferencesOk() (*map[string]interface{}, bool)

GetPreferencesOk returns a tuple with the Preferences field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetRoleIds

func (o *User) GetRoleIds() []string

GetRoleIds returns the RoleIds field value if set, zero value otherwise.

func (*User) GetRoleIdsOk

func (o *User) GetRoleIdsOk() (*[]string, bool)

GetRoleIdsOk returns a tuple with the RoleIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetUsername

func (o *User) GetUsername() string

GetUsername returns the Username field value

func (*User) GetUsernameOk

func (o *User) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value and a boolean to check if the value has been set.

func (*User) GetViewFilter

func (o *User) GetViewFilter() map[string]interface{}

GetViewFilter returns the ViewFilter field value if set, zero value otherwise.

func (*User) GetViewFilterOk

func (o *User) GetViewFilterOk() (*map[string]interface{}, bool)

GetViewFilterOk returns a tuple with the ViewFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) HasDisplayName

func (o *User) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*User) HasEmailAddress

func (o *User) HasEmailAddress() bool

HasEmailAddress returns a boolean if a field has been set.

func (*User) HasId

func (o *User) HasId() bool

HasId returns a boolean if a field has been set.

func (*User) HasMustChangePassword

func (o *User) HasMustChangePassword() bool

HasMustChangePassword returns a boolean if a field has been set.

func (*User) HasNewPassword

func (o *User) HasNewPassword() bool

HasNewPassword returns a boolean if a field has been set.

func (*User) HasPreferences

func (o *User) HasPreferences() bool

HasPreferences returns a boolean if a field has been set.

func (*User) HasRoleIds

func (o *User) HasRoleIds() bool

HasRoleIds returns a boolean if a field has been set.

func (*User) HasViewFilter

func (o *User) HasViewFilter() bool

HasViewFilter returns a boolean if a field has been set.

func (User) MarshalJSON

func (o User) MarshalJSON() ([]byte, error)

func (*User) SetDisplayName

func (o *User) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*User) SetEmailAddress

func (o *User) SetEmailAddress(v string)

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*User) SetId

func (o *User) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*User) SetMustChangePassword

func (o *User) SetMustChangePassword(v bool)

SetMustChangePassword gets a reference to the given bool and assigns it to the MustChangePassword field.

func (*User) SetNewPassword

func (o *User) SetNewPassword(v string)

SetNewPassword gets a reference to the given string and assigns it to the NewPassword field.

func (*User) SetPreferences

func (o *User) SetPreferences(v map[string]interface{})

SetPreferences gets a reference to the given map[string]interface{} and assigns it to the Preferences field.

func (*User) SetRoleIds

func (o *User) SetRoleIds(v []string)

SetRoleIds gets a reference to the given []string and assigns it to the RoleIds field.

func (*User) SetUsername

func (o *User) SetUsername(v string)

SetUsername sets field value

func (*User) SetViewFilter

func (o *User) SetViewFilter(v map[string]interface{})

SetViewFilter gets a reference to the given map[string]interface{} and assigns it to the ViewFilter field.

type UsersApiService

type UsersApiService service

UsersApiService UsersApi service

func (*UsersApiService) AddUser

* AddUser Add a new user * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiAddUserRequest

func (*UsersApiService) AddUserExecute

func (a *UsersApiService) AddUserExecute(r ApiAddUserRequest) (User, *_nethttp.Response, error)

* Execute executes the request * @return User

func (*UsersApiService) DeleteUser

* DeleteUser Remove an existing user * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id The id of the user * @return ApiDeleteUserRequest

func (*UsersApiService) DeleteUserExecute

func (a *UsersApiService) DeleteUserExecute(r ApiDeleteUserRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*UsersApiService) GetCurrentUser

* GetCurrentUser Retrieve the current logged-in user * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetCurrentUserRequest

func (*UsersApiService) GetCurrentUserExecute

func (a *UsersApiService) GetCurrentUserExecute(r ApiGetCurrentUserRequest) (User, *_nethttp.Response, error)

* Execute executes the request * @return User

func (*UsersApiService) GetUser

* GetUser Retrieve the user with the given id * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id The id of the user * @return ApiGetUserRequest

func (*UsersApiService) GetUserExecute

func (a *UsersApiService) GetUserExecute(r ApiGetUserRequest) (User, *_nethttp.Response, error)

* Execute executes the request * @return User

func (*UsersApiService) ListUsers

* ListUsers Retrieve users * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiListUsersRequest

func (*UsersApiService) ListUsersExecute

func (a *UsersApiService) ListUsersExecute(r ApiListUsersRequest) ([]User, *_nethttp.Response, error)

* Execute executes the request * @return []User

func (*UsersApiService) UpdateUser

* UpdateUser Update an existing user * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id The id of the user * @return ApiUpdateUserRequest

func (*UsersApiService) UpdateUserExecute

func (a *UsersApiService) UpdateUserExecute(r ApiUpdateUserRequest) (User, *_nethttp.Response, error)

* Execute executes the request * @return User

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL