applicationprincipalmanagement

package
v2.1.3+incompatible Latest Latest
Warning

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

Go to latest
Published: Jul 11, 2023 License: MPL-2.0 Imports: 23 Imported by: 0

README

Go API client for applicationprincipalmanagement

Handles all administrative requests to manage application identities, including both Agents and Service principals.

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 1.0
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://appdynamics.com

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import applicationprincipalmanagement "github.com/cisco-open/appd-cloud-go-client"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), applicationprincipalmanagement.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), applicationprincipalmanagement.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), applicationprincipalmanagement.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), applicationprincipalmanagement.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://app-principal-mgmt.iam.svc.cluster.local:80/v1beta

Class Method HTTP request Description
AgentsApi CreateAgentClient Post /clients/agents
AgentsApi DeleteAgentClient Delete /clients/agents/{clientId}
AgentsApi GetAgentClient Get /clients/agents/{clientId}
AgentsApi ListAllAgentClients Get /clients/agents
AgentsApi RevokeAgentClientSecrets Post /clients/agents/{clientId}/secret/revokeRotated
AgentsApi RotateAgentClientSecret Post /clients/agents/{clientId}/secret/rotate
AgentsApi UpdateAgentClient Put /clients/agents/{clientId}
ServicesApi CreateServiceClient Post /clients/services
ServicesApi DeleteServiceClient Delete /clients/services/{clientId}
ServicesApi GetServiceClientById Get /clients/services/{clientId}
ServicesApi ListAllServiceClients Get /clients/services
ServicesApi RevokeServiceClientSecret Post /clients/services/{clientId}/secret/revokeRotated
ServicesApi RotateServiceClientSecret Post /clients/services/{clientId}/secret/rotate
ServicesApi UpdateServiceClient Put /clients/services/{clientId}

Documentation For Models

Documentation For Authorization

BearerAuth
  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "BEARER_TOKEN_STRING")
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

info@appdynamics.com

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

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 {
	AgentsApi *AgentsApiService

	ServicesApi *ServicesApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Application Principal Management Service API v1.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *client.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() *client.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 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 APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type AgentClientRequest

type AgentClientRequest struct {
	// The display name for the client.
	DisplayName *string `json:"displayName,omitempty"`
	// A user provided description of the client.
	Description *string `json:"description,omitempty"`
	// Supported authentication methods used to request oAuth tokens: * `client_secret_basic` - The client credentials will be sent in the authorization header. * `client_secret_post` - The client credentials will be sent in the request body.
	AuthType *string `json:"authType,omitempty"`
}

AgentClientRequest Request object for requests to manage Agent client identities. Extends BaseClientRequest.

func NewAgentClientRequest

func NewAgentClientRequest() *AgentClientRequest

NewAgentClientRequest instantiates a new AgentClientRequest 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 NewAgentClientRequestWithDefaults

func NewAgentClientRequestWithDefaults() *AgentClientRequest

NewAgentClientRequestWithDefaults instantiates a new AgentClientRequest 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 (*AgentClientRequest) GetAuthType

func (o *AgentClientRequest) GetAuthType() string

GetAuthType returns the AuthType field value if set, zero value otherwise.

func (*AgentClientRequest) GetAuthTypeOk

func (o *AgentClientRequest) GetAuthTypeOk() (*string, bool)

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

func (*AgentClientRequest) GetDescription

func (o *AgentClientRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*AgentClientRequest) GetDescriptionOk

func (o *AgentClientRequest) GetDescriptionOk() (*string, bool)

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

func (*AgentClientRequest) GetDisplayName

func (o *AgentClientRequest) GetDisplayName() string

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

func (*AgentClientRequest) GetDisplayNameOk

func (o *AgentClientRequest) 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 (*AgentClientRequest) HasAuthType

func (o *AgentClientRequest) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

func (*AgentClientRequest) HasDescription

func (o *AgentClientRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*AgentClientRequest) HasDisplayName

func (o *AgentClientRequest) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (AgentClientRequest) MarshalJSON

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

func (*AgentClientRequest) SetAuthType

func (o *AgentClientRequest) SetAuthType(v string)

SetAuthType gets a reference to the given string and assigns it to the AuthType field.

func (*AgentClientRequest) SetDescription

func (o *AgentClientRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*AgentClientRequest) SetDisplayName

func (o *AgentClientRequest) SetDisplayName(v string)

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

type AgentClientResponse

type AgentClientResponse struct {
	// The display name for the client.
	DisplayName *string `json:"displayName,omitempty"`
	// A user provided description of the client.
	Description *string `json:"description,omitempty"`
	// Supported authentication methods used to request oAuth tokens: * `client_secret_basic` - The client credentials will be sent in the authorization header. * `client_secret_post` - The client credentials will be sent in the request body.
	AuthType *string `json:"authType,omitempty"`
	// The unique client identifier.
	Id *string `json:"id,omitempty"`
	// Indicates if the client has rotated secrets. Rotated client secrets can be revoked.
	HasRotatedSecrets *bool `json:"hasRotatedSecrets,omitempty"`
	// The RFC3339 timestamp when the client was created.
	CreatedAt *string `json:"createdAt,omitempty"`
	// The RFC3339 timestamp when the client was last updated.
	UpdatedAt *string `json:"updatedAt,omitempty"`
}

AgentClientResponse Response object for requests to manage Agent client identities.

func NewAgentClientResponse

func NewAgentClientResponse() *AgentClientResponse

NewAgentClientResponse instantiates a new AgentClientResponse 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 NewAgentClientResponseWithDefaults

func NewAgentClientResponseWithDefaults() *AgentClientResponse

NewAgentClientResponseWithDefaults instantiates a new AgentClientResponse 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 (*AgentClientResponse) GetAuthType

func (o *AgentClientResponse) GetAuthType() string

GetAuthType returns the AuthType field value if set, zero value otherwise.

func (*AgentClientResponse) GetAuthTypeOk

func (o *AgentClientResponse) GetAuthTypeOk() (*string, bool)

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

func (*AgentClientResponse) GetCreatedAt

func (o *AgentClientResponse) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*AgentClientResponse) GetCreatedAtOk

func (o *AgentClientResponse) GetCreatedAtOk() (*string, bool)

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

func (*AgentClientResponse) GetDescription

func (o *AgentClientResponse) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*AgentClientResponse) GetDescriptionOk

func (o *AgentClientResponse) GetDescriptionOk() (*string, bool)

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

func (*AgentClientResponse) GetDisplayName

func (o *AgentClientResponse) GetDisplayName() string

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

func (*AgentClientResponse) GetDisplayNameOk

func (o *AgentClientResponse) 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 (*AgentClientResponse) GetHasRotatedSecrets

func (o *AgentClientResponse) GetHasRotatedSecrets() bool

GetHasRotatedSecrets returns the HasRotatedSecrets field value if set, zero value otherwise.

func (*AgentClientResponse) GetHasRotatedSecretsOk

func (o *AgentClientResponse) GetHasRotatedSecretsOk() (*bool, bool)

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

func (*AgentClientResponse) GetId

func (o *AgentClientResponse) GetId() string

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

func (*AgentClientResponse) GetIdOk

func (o *AgentClientResponse) 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 (*AgentClientResponse) GetUpdatedAt

func (o *AgentClientResponse) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*AgentClientResponse) GetUpdatedAtOk

func (o *AgentClientResponse) GetUpdatedAtOk() (*string, bool)

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

func (*AgentClientResponse) HasAuthType

func (o *AgentClientResponse) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

func (*AgentClientResponse) HasCreatedAt

func (o *AgentClientResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*AgentClientResponse) HasDescription

func (o *AgentClientResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*AgentClientResponse) HasDisplayName

func (o *AgentClientResponse) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*AgentClientResponse) HasHasRotatedSecrets

func (o *AgentClientResponse) HasHasRotatedSecrets() bool

HasHasRotatedSecrets returns a boolean if a field has been set.

func (*AgentClientResponse) HasId

func (o *AgentClientResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*AgentClientResponse) HasUpdatedAt

func (o *AgentClientResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (AgentClientResponse) MarshalJSON

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

func (*AgentClientResponse) SetAuthType

func (o *AgentClientResponse) SetAuthType(v string)

SetAuthType gets a reference to the given string and assigns it to the AuthType field.

func (*AgentClientResponse) SetCreatedAt

func (o *AgentClientResponse) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*AgentClientResponse) SetDescription

func (o *AgentClientResponse) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*AgentClientResponse) SetDisplayName

func (o *AgentClientResponse) SetDisplayName(v string)

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

func (*AgentClientResponse) SetHasRotatedSecrets

func (o *AgentClientResponse) SetHasRotatedSecrets(v bool)

SetHasRotatedSecrets gets a reference to the given bool and assigns it to the HasRotatedSecrets field.

func (*AgentClientResponse) SetId

func (o *AgentClientResponse) SetId(v string)

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

func (*AgentClientResponse) SetUpdatedAt

func (o *AgentClientResponse) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

type AgentClientResponseCreate

type AgentClientResponseCreate struct {
	// The display name for the client.
	DisplayName *string `json:"displayName,omitempty"`
	// A user provided description of the client.
	Description *string `json:"description,omitempty"`
	// Supported authentication methods used to request oAuth tokens: * `client_secret_basic` - The client credentials will be sent in the authorization header. * `client_secret_post` - The client credentials will be sent in the request body.
	AuthType *string `json:"authType,omitempty"`
	// The unique client identifier.
	Id *string `json:"id,omitempty"`
	// Indicates if the client has rotated secrets. Rotated client secrets can be revoked.
	HasRotatedSecrets *bool `json:"hasRotatedSecrets,omitempty"`
	// The RFC3339 timestamp when the client was created.
	CreatedAt *string `json:"createdAt,omitempty"`
	// The RFC3339 timestamp when the client was last updated.
	UpdatedAt *string `json:"updatedAt,omitempty"`
	// The client's secret, used to authenticate during an oAuth token request.
	ClientSecret *string `json:"clientSecret,omitempty"`
}

AgentClientResponseCreate Response object for requests to manage Agent client identities. Includes a generated client secret.

func NewAgentClientResponseCreate

func NewAgentClientResponseCreate() *AgentClientResponseCreate

NewAgentClientResponseCreate instantiates a new AgentClientResponseCreate 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 NewAgentClientResponseCreateWithDefaults

func NewAgentClientResponseCreateWithDefaults() *AgentClientResponseCreate

NewAgentClientResponseCreateWithDefaults instantiates a new AgentClientResponseCreate 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 (*AgentClientResponseCreate) GetAuthType

func (o *AgentClientResponseCreate) GetAuthType() string

GetAuthType returns the AuthType field value if set, zero value otherwise.

func (*AgentClientResponseCreate) GetAuthTypeOk

func (o *AgentClientResponseCreate) GetAuthTypeOk() (*string, bool)

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

func (*AgentClientResponseCreate) GetClientSecret

func (o *AgentClientResponseCreate) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*AgentClientResponseCreate) GetClientSecretOk

func (o *AgentClientResponseCreate) GetClientSecretOk() (*string, bool)

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

func (*AgentClientResponseCreate) GetCreatedAt

func (o *AgentClientResponseCreate) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*AgentClientResponseCreate) GetCreatedAtOk

func (o *AgentClientResponseCreate) GetCreatedAtOk() (*string, bool)

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

func (*AgentClientResponseCreate) GetDescription

func (o *AgentClientResponseCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*AgentClientResponseCreate) GetDescriptionOk

func (o *AgentClientResponseCreate) GetDescriptionOk() (*string, bool)

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

func (*AgentClientResponseCreate) GetDisplayName

func (o *AgentClientResponseCreate) GetDisplayName() string

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

func (*AgentClientResponseCreate) GetDisplayNameOk

func (o *AgentClientResponseCreate) 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 (*AgentClientResponseCreate) GetHasRotatedSecrets

func (o *AgentClientResponseCreate) GetHasRotatedSecrets() bool

GetHasRotatedSecrets returns the HasRotatedSecrets field value if set, zero value otherwise.

func (*AgentClientResponseCreate) GetHasRotatedSecretsOk

func (o *AgentClientResponseCreate) GetHasRotatedSecretsOk() (*bool, bool)

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

func (*AgentClientResponseCreate) GetId

func (o *AgentClientResponseCreate) GetId() string

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

func (*AgentClientResponseCreate) GetIdOk

func (o *AgentClientResponseCreate) 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 (*AgentClientResponseCreate) GetUpdatedAt

func (o *AgentClientResponseCreate) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*AgentClientResponseCreate) GetUpdatedAtOk

func (o *AgentClientResponseCreate) GetUpdatedAtOk() (*string, bool)

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

func (*AgentClientResponseCreate) HasAuthType

func (o *AgentClientResponseCreate) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

func (*AgentClientResponseCreate) HasClientSecret

func (o *AgentClientResponseCreate) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*AgentClientResponseCreate) HasCreatedAt

func (o *AgentClientResponseCreate) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*AgentClientResponseCreate) HasDescription

func (o *AgentClientResponseCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*AgentClientResponseCreate) HasDisplayName

func (o *AgentClientResponseCreate) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*AgentClientResponseCreate) HasHasRotatedSecrets

func (o *AgentClientResponseCreate) HasHasRotatedSecrets() bool

HasHasRotatedSecrets returns a boolean if a field has been set.

func (*AgentClientResponseCreate) HasId

func (o *AgentClientResponseCreate) HasId() bool

HasId returns a boolean if a field has been set.

func (*AgentClientResponseCreate) HasUpdatedAt

func (o *AgentClientResponseCreate) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (AgentClientResponseCreate) MarshalJSON

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

func (*AgentClientResponseCreate) SetAuthType

func (o *AgentClientResponseCreate) SetAuthType(v string)

SetAuthType gets a reference to the given string and assigns it to the AuthType field.

func (*AgentClientResponseCreate) SetClientSecret

func (o *AgentClientResponseCreate) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*AgentClientResponseCreate) SetCreatedAt

func (o *AgentClientResponseCreate) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*AgentClientResponseCreate) SetDescription

func (o *AgentClientResponseCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*AgentClientResponseCreate) SetDisplayName

func (o *AgentClientResponseCreate) SetDisplayName(v string)

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

func (*AgentClientResponseCreate) SetHasRotatedSecrets

func (o *AgentClientResponseCreate) SetHasRotatedSecrets(v bool)

SetHasRotatedSecrets gets a reference to the given bool and assigns it to the HasRotatedSecrets field.

func (*AgentClientResponseCreate) SetId

func (o *AgentClientResponseCreate) SetId(v string)

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

func (*AgentClientResponseCreate) SetUpdatedAt

func (o *AgentClientResponseCreate) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

type AgentClientsContainer

type AgentClientsContainer struct {
	Items []AgentClientResponse `json:"items,omitempty"`
}

AgentClientsContainer Generic response object which contains an array of AgentClientResponse.

func NewAgentClientsContainer

func NewAgentClientsContainer() *AgentClientsContainer

NewAgentClientsContainer instantiates a new AgentClientsContainer 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 NewAgentClientsContainerWithDefaults

func NewAgentClientsContainerWithDefaults() *AgentClientsContainer

NewAgentClientsContainerWithDefaults instantiates a new AgentClientsContainer 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 (*AgentClientsContainer) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*AgentClientsContainer) GetItemsOk

func (o *AgentClientsContainer) GetItemsOk() ([]AgentClientResponse, bool)

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

func (*AgentClientsContainer) HasItems

func (o *AgentClientsContainer) HasItems() bool

HasItems returns a boolean if a field has been set.

func (AgentClientsContainer) MarshalJSON

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

func (*AgentClientsContainer) SetItems

func (o *AgentClientsContainer) SetItems(v []AgentClientResponse)

SetItems gets a reference to the given []AgentClientResponse and assigns it to the Items field.

type AgentsApiService

type AgentsApiService service

AgentsApiService AgentsApi service

func (*AgentsApiService) CreateAgentClient

func (a *AgentsApiService) CreateAgentClient(ctx context.Context) ApiCreateAgentClientRequest

CreateAgentClient Method for CreateAgentClient

Creates a new agent client

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateAgentClientRequest

func (*AgentsApiService) CreateAgentClientExecute

Execute executes the request

@return AgentClientResponseCreate

func (*AgentsApiService) DeleteAgentClient

func (a *AgentsApiService) DeleteAgentClient(ctx context.Context, clientId string) ApiDeleteAgentClientRequest

DeleteAgentClient Method for DeleteAgentClient

Delete an existing agent client

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clientId The unique client identifer
@return ApiDeleteAgentClientRequest

func (*AgentsApiService) DeleteAgentClientExecute

func (a *AgentsApiService) DeleteAgentClientExecute(r ApiDeleteAgentClientRequest) (*http.Response, error)

Execute executes the request

func (*AgentsApiService) GetAgentClient

func (a *AgentsApiService) GetAgentClient(ctx context.Context, clientId string) ApiGetAgentClientRequest

GetAgentClient Method for GetAgentClient

Get a single agent client from the client ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clientId The unique client identifer
@return ApiGetAgentClientRequest

func (*AgentsApiService) GetAgentClientExecute

Execute executes the request

@return AgentClientResponse

func (*AgentsApiService) ListAllAgentClients

func (a *AgentsApiService) ListAllAgentClients(ctx context.Context) ApiListAllAgentClientsRequest

ListAllAgentClients Method for ListAllAgentClients

List all agent client

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListAllAgentClientsRequest

func (*AgentsApiService) ListAllAgentClientsExecute

Execute executes the request

@return AgentClientsContainer

func (*AgentsApiService) RevokeAgentClientSecrets

func (a *AgentsApiService) RevokeAgentClientSecrets(ctx context.Context, clientId string) ApiRevokeAgentClientSecretsRequest

RevokeAgentClientSecrets Method for RevokeAgentClientSecrets

Revokes the rotated client secrets of the specified agent client

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clientId The unique client identifer
@return ApiRevokeAgentClientSecretsRequest

func (*AgentsApiService) RevokeAgentClientSecretsExecute

func (a *AgentsApiService) RevokeAgentClientSecretsExecute(r ApiRevokeAgentClientSecretsRequest) (*RevokeSecretResponse, *http.Response, error)

Execute executes the request

@return RevokeSecretResponse

func (*AgentsApiService) RotateAgentClientSecret

func (a *AgentsApiService) RotateAgentClientSecret(ctx context.Context, clientId string) ApiRotateAgentClientSecretRequest

RotateAgentClientSecret Method for RotateAgentClientSecret

Rotates the client secret of the specified agent client

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clientId The unique client identifer
@return ApiRotateAgentClientSecretRequest

func (*AgentsApiService) RotateAgentClientSecretExecute

func (a *AgentsApiService) RotateAgentClientSecretExecute(r ApiRotateAgentClientSecretRequest) (*CredentialsDto, *http.Response, error)

Execute executes the request

@return CredentialsDto

func (*AgentsApiService) UpdateAgentClient

func (a *AgentsApiService) UpdateAgentClient(ctx context.Context, clientId string) ApiUpdateAgentClientRequest

UpdateAgentClient Method for UpdateAgentClient

Updates an existing agent client

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clientId The unique client identifer
@return ApiUpdateAgentClientRequest

func (*AgentsApiService) UpdateAgentClientExecute

Execute executes the request

@return AgentClientResponse

type ApiCreateAgentClientRequest

type ApiCreateAgentClientRequest struct {
	ApiService *AgentsApiService
	// contains filtered or unexported fields
}

func (ApiCreateAgentClientRequest) AgentClientRequest

func (r ApiCreateAgentClientRequest) AgentClientRequest(agentClientRequest AgentClientRequest) ApiCreateAgentClientRequest

func (ApiCreateAgentClientRequest) Execute

type ApiCreateServiceClientRequest

type ApiCreateServiceClientRequest struct {
	ApiService *ServicesApiService
	// contains filtered or unexported fields
}

func (ApiCreateServiceClientRequest) Execute

func (ApiCreateServiceClientRequest) ServiceClientRequest

func (r ApiCreateServiceClientRequest) ServiceClientRequest(serviceClientRequest ServiceClientRequest) ApiCreateServiceClientRequest

type ApiDeleteAgentClientRequest

type ApiDeleteAgentClientRequest struct {
	ApiService *AgentsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteAgentClientRequest) Execute

type ApiDeleteServiceClientRequest

type ApiDeleteServiceClientRequest struct {
	ApiService *ServicesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteServiceClientRequest) Execute

type ApiGetAgentClientRequest

type ApiGetAgentClientRequest struct {
	ApiService *AgentsApiService
	// contains filtered or unexported fields
}

func (ApiGetAgentClientRequest) Execute

type ApiGetServiceClientByIdRequest

type ApiGetServiceClientByIdRequest struct {
	ApiService *ServicesApiService
	// contains filtered or unexported fields
}

func (ApiGetServiceClientByIdRequest) Execute

type ApiListAllAgentClientsRequest

type ApiListAllAgentClientsRequest struct {
	ApiService *AgentsApiService
	// contains filtered or unexported fields
}

func (ApiListAllAgentClientsRequest) Cursor

The page identifier used in pagination.

func (ApiListAllAgentClientsRequest) Execute

func (ApiListAllAgentClientsRequest) Max

Max number of agent clients to be returned. Defaults to 100.

type ApiListAllServiceClientsRequest

type ApiListAllServiceClientsRequest struct {
	ApiService *ServicesApiService
	// contains filtered or unexported fields
}

func (ApiListAllServiceClientsRequest) Cursor

The page identifier used in pagination.

func (ApiListAllServiceClientsRequest) Execute

func (ApiListAllServiceClientsRequest) Max

Max number of agent clients to be returned. Defaults to 100.

type ApiRevokeAgentClientSecretsRequest

type ApiRevokeAgentClientSecretsRequest struct {
	ApiService *AgentsApiService
	// contains filtered or unexported fields
}

func (ApiRevokeAgentClientSecretsRequest) Execute

type ApiRevokeServiceClientSecretRequest

type ApiRevokeServiceClientSecretRequest struct {
	ApiService *ServicesApiService
	// contains filtered or unexported fields
}

func (ApiRevokeServiceClientSecretRequest) Execute

type ApiRotateAgentClientSecretRequest

type ApiRotateAgentClientSecretRequest struct {
	ApiService *AgentsApiService
	// contains filtered or unexported fields
}

func (ApiRotateAgentClientSecretRequest) Execute

func (ApiRotateAgentClientSecretRequest) RotationRequest

type ApiRotateServiceClientSecretRequest

type ApiRotateServiceClientSecretRequest struct {
	ApiService *ServicesApiService
	// contains filtered or unexported fields
}

func (ApiRotateServiceClientSecretRequest) Execute

func (ApiRotateServiceClientSecretRequest) RotationRequest

type ApiUpdateAgentClientRequest

type ApiUpdateAgentClientRequest struct {
	ApiService *AgentsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateAgentClientRequest) AgentClientRequest

func (r ApiUpdateAgentClientRequest) AgentClientRequest(agentClientRequest AgentClientRequest) ApiUpdateAgentClientRequest

func (ApiUpdateAgentClientRequest) Execute

type ApiUpdateServiceClientRequest

type ApiUpdateServiceClientRequest struct {
	ApiService *ServicesApiService
	// contains filtered or unexported fields
}

func (ApiUpdateServiceClientRequest) Execute

func (ApiUpdateServiceClientRequest) ServiceClientRequest

func (r ApiUpdateServiceClientRequest) ServiceClientRequest(serviceClientRequest ServiceClientRequest) ApiUpdateServiceClientRequest

type BadRequestError

type BadRequestError struct {
	Title  *string `json:"title,omitempty"`
	Type   *string `json:"type,omitempty"`
	Status *int32  `json:"status,omitempty"`
	Detail *string `json:"detail,omitempty"`
}

BadRequestError The user request was incomplete or invalid. Please check the request and try again.

func NewBadRequestError

func NewBadRequestError() *BadRequestError

NewBadRequestError instantiates a new BadRequestError 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 NewBadRequestErrorWithDefaults

func NewBadRequestErrorWithDefaults() *BadRequestError

NewBadRequestErrorWithDefaults instantiates a new BadRequestError 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 (*BadRequestError) GetDetail

func (o *BadRequestError) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*BadRequestError) GetDetailOk

func (o *BadRequestError) GetDetailOk() (*string, bool)

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

func (*BadRequestError) GetStatus

func (o *BadRequestError) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*BadRequestError) GetStatusOk

func (o *BadRequestError) GetStatusOk() (*int32, bool)

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

func (*BadRequestError) GetTitle

func (o *BadRequestError) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*BadRequestError) GetTitleOk

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

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

func (*BadRequestError) GetType

func (o *BadRequestError) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*BadRequestError) GetTypeOk

func (o *BadRequestError) GetTypeOk() (*string, bool)

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

func (*BadRequestError) HasDetail

func (o *BadRequestError) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*BadRequestError) HasStatus

func (o *BadRequestError) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*BadRequestError) HasTitle

func (o *BadRequestError) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*BadRequestError) HasType

func (o *BadRequestError) HasType() bool

HasType returns a boolean if a field has been set.

func (BadRequestError) MarshalJSON

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

func (*BadRequestError) SetDetail

func (o *BadRequestError) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*BadRequestError) SetStatus

func (o *BadRequestError) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*BadRequestError) SetTitle

func (o *BadRequestError) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*BadRequestError) SetType

func (o *BadRequestError) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type BaseClientRequest

type BaseClientRequest struct {
	// The display name for the client.
	DisplayName *string `json:"displayName,omitempty"`
	// A user provided description of the client.
	Description *string `json:"description,omitempty"`
	// Supported authentication methods used to request oAuth tokens: * `client_secret_basic` - The client credentials will be sent in the authorization header. * `client_secret_post` - The client credentials will be sent in the request body.
	AuthType *string `json:"authType,omitempty"`
}

BaseClientRequest struct for BaseClientRequest

func NewBaseClientRequest

func NewBaseClientRequest() *BaseClientRequest

NewBaseClientRequest instantiates a new BaseClientRequest 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 NewBaseClientRequestWithDefaults

func NewBaseClientRequestWithDefaults() *BaseClientRequest

NewBaseClientRequestWithDefaults instantiates a new BaseClientRequest 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 (*BaseClientRequest) GetAuthType

func (o *BaseClientRequest) GetAuthType() string

GetAuthType returns the AuthType field value if set, zero value otherwise.

func (*BaseClientRequest) GetAuthTypeOk

func (o *BaseClientRequest) GetAuthTypeOk() (*string, bool)

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

func (*BaseClientRequest) GetDescription

func (o *BaseClientRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*BaseClientRequest) GetDescriptionOk

func (o *BaseClientRequest) GetDescriptionOk() (*string, bool)

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

func (*BaseClientRequest) GetDisplayName

func (o *BaseClientRequest) GetDisplayName() string

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

func (*BaseClientRequest) GetDisplayNameOk

func (o *BaseClientRequest) 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 (*BaseClientRequest) HasAuthType

func (o *BaseClientRequest) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

func (*BaseClientRequest) HasDescription

func (o *BaseClientRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BaseClientRequest) HasDisplayName

func (o *BaseClientRequest) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (BaseClientRequest) MarshalJSON

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

func (*BaseClientRequest) SetAuthType

func (o *BaseClientRequest) SetAuthType(v string)

SetAuthType gets a reference to the given string and assigns it to the AuthType field.

func (*BaseClientRequest) SetDescription

func (o *BaseClientRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*BaseClientRequest) SetDisplayName

func (o *BaseClientRequest) SetDisplayName(v string)

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

type BaseClientResponse

type BaseClientResponse struct {
	// The display name for the client.
	DisplayName *string `json:"displayName,omitempty"`
	// A user provided description of the client.
	Description *string `json:"description,omitempty"`
	// Supported authentication methods used to request oAuth tokens: * `client_secret_basic` - The client credentials will be sent in the authorization header. * `client_secret_post` - The client credentials will be sent in the request body.
	AuthType *string `json:"authType,omitempty"`
	// The unique client identifier.
	Id *string `json:"id,omitempty"`
	// Indicates if the client has rotated secrets. Rotated client secrets can be revoked.
	HasRotatedSecrets *bool `json:"hasRotatedSecrets,omitempty"`
	// The RFC3339 timestamp when the client was created.
	CreatedAt *string `json:"createdAt,omitempty"`
	// The RFC3339 timestamp when the client was last updated.
	UpdatedAt *string `json:"updatedAt,omitempty"`
}

BaseClientResponse struct for BaseClientResponse

func NewBaseClientResponse

func NewBaseClientResponse() *BaseClientResponse

NewBaseClientResponse instantiates a new BaseClientResponse 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 NewBaseClientResponseWithDefaults

func NewBaseClientResponseWithDefaults() *BaseClientResponse

NewBaseClientResponseWithDefaults instantiates a new BaseClientResponse 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 (*BaseClientResponse) GetAuthType

func (o *BaseClientResponse) GetAuthType() string

GetAuthType returns the AuthType field value if set, zero value otherwise.

func (*BaseClientResponse) GetAuthTypeOk

func (o *BaseClientResponse) GetAuthTypeOk() (*string, bool)

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

func (*BaseClientResponse) GetCreatedAt

func (o *BaseClientResponse) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*BaseClientResponse) GetCreatedAtOk

func (o *BaseClientResponse) GetCreatedAtOk() (*string, bool)

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

func (*BaseClientResponse) GetDescription

func (o *BaseClientResponse) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*BaseClientResponse) GetDescriptionOk

func (o *BaseClientResponse) GetDescriptionOk() (*string, bool)

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

func (*BaseClientResponse) GetDisplayName

func (o *BaseClientResponse) GetDisplayName() string

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

func (*BaseClientResponse) GetDisplayNameOk

func (o *BaseClientResponse) 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 (*BaseClientResponse) GetHasRotatedSecrets

func (o *BaseClientResponse) GetHasRotatedSecrets() bool

GetHasRotatedSecrets returns the HasRotatedSecrets field value if set, zero value otherwise.

func (*BaseClientResponse) GetHasRotatedSecretsOk

func (o *BaseClientResponse) GetHasRotatedSecretsOk() (*bool, bool)

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

func (*BaseClientResponse) GetId

func (o *BaseClientResponse) GetId() string

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

func (*BaseClientResponse) GetIdOk

func (o *BaseClientResponse) 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 (*BaseClientResponse) GetUpdatedAt

func (o *BaseClientResponse) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*BaseClientResponse) GetUpdatedAtOk

func (o *BaseClientResponse) GetUpdatedAtOk() (*string, bool)

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

func (*BaseClientResponse) HasAuthType

func (o *BaseClientResponse) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

func (*BaseClientResponse) HasCreatedAt

func (o *BaseClientResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*BaseClientResponse) HasDescription

func (o *BaseClientResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BaseClientResponse) HasDisplayName

func (o *BaseClientResponse) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*BaseClientResponse) HasHasRotatedSecrets

func (o *BaseClientResponse) HasHasRotatedSecrets() bool

HasHasRotatedSecrets returns a boolean if a field has been set.

func (*BaseClientResponse) HasId

func (o *BaseClientResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*BaseClientResponse) HasUpdatedAt

func (o *BaseClientResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (BaseClientResponse) MarshalJSON

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

func (*BaseClientResponse) SetAuthType

func (o *BaseClientResponse) SetAuthType(v string)

SetAuthType gets a reference to the given string and assigns it to the AuthType field.

func (*BaseClientResponse) SetCreatedAt

func (o *BaseClientResponse) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*BaseClientResponse) SetDescription

func (o *BaseClientResponse) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*BaseClientResponse) SetDisplayName

func (o *BaseClientResponse) SetDisplayName(v string)

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

func (*BaseClientResponse) SetHasRotatedSecrets

func (o *BaseClientResponse) SetHasRotatedSecrets(v bool)

SetHasRotatedSecrets gets a reference to the given bool and assigns it to the HasRotatedSecrets field.

func (*BaseClientResponse) SetId

func (o *BaseClientResponse) SetId(v string)

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

func (*BaseClientResponse) SetUpdatedAt

func (o *BaseClientResponse) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

type BaseClientResponseAllOf

type BaseClientResponseAllOf struct {
	// The unique client identifier.
	Id *string `json:"id,omitempty"`
	// Indicates if the client has rotated secrets. Rotated client secrets can be revoked.
	HasRotatedSecrets *bool `json:"hasRotatedSecrets,omitempty"`
	// The RFC3339 timestamp when the client was created.
	CreatedAt *string `json:"createdAt,omitempty"`
	// The RFC3339 timestamp when the client was last updated.
	UpdatedAt *string `json:"updatedAt,omitempty"`
}

BaseClientResponseAllOf struct for BaseClientResponseAllOf

func NewBaseClientResponseAllOf

func NewBaseClientResponseAllOf() *BaseClientResponseAllOf

NewBaseClientResponseAllOf instantiates a new BaseClientResponseAllOf 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 NewBaseClientResponseAllOfWithDefaults

func NewBaseClientResponseAllOfWithDefaults() *BaseClientResponseAllOf

NewBaseClientResponseAllOfWithDefaults instantiates a new BaseClientResponseAllOf 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 (*BaseClientResponseAllOf) GetCreatedAt

func (o *BaseClientResponseAllOf) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*BaseClientResponseAllOf) GetCreatedAtOk

func (o *BaseClientResponseAllOf) GetCreatedAtOk() (*string, bool)

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

func (*BaseClientResponseAllOf) GetHasRotatedSecrets

func (o *BaseClientResponseAllOf) GetHasRotatedSecrets() bool

GetHasRotatedSecrets returns the HasRotatedSecrets field value if set, zero value otherwise.

func (*BaseClientResponseAllOf) GetHasRotatedSecretsOk

func (o *BaseClientResponseAllOf) GetHasRotatedSecretsOk() (*bool, bool)

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

func (*BaseClientResponseAllOf) GetId

func (o *BaseClientResponseAllOf) GetId() string

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

func (*BaseClientResponseAllOf) GetIdOk

func (o *BaseClientResponseAllOf) 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 (*BaseClientResponseAllOf) GetUpdatedAt

func (o *BaseClientResponseAllOf) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*BaseClientResponseAllOf) GetUpdatedAtOk

func (o *BaseClientResponseAllOf) GetUpdatedAtOk() (*string, bool)

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

func (*BaseClientResponseAllOf) HasCreatedAt

func (o *BaseClientResponseAllOf) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*BaseClientResponseAllOf) HasHasRotatedSecrets

func (o *BaseClientResponseAllOf) HasHasRotatedSecrets() bool

HasHasRotatedSecrets returns a boolean if a field has been set.

func (*BaseClientResponseAllOf) HasId

func (o *BaseClientResponseAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*BaseClientResponseAllOf) HasUpdatedAt

func (o *BaseClientResponseAllOf) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (BaseClientResponseAllOf) MarshalJSON

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

func (*BaseClientResponseAllOf) SetCreatedAt

func (o *BaseClientResponseAllOf) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*BaseClientResponseAllOf) SetHasRotatedSecrets

func (o *BaseClientResponseAllOf) SetHasRotatedSecrets(v bool)

SetHasRotatedSecrets gets a reference to the given bool and assigns it to the HasRotatedSecrets field.

func (*BaseClientResponseAllOf) SetId

func (o *BaseClientResponseAllOf) SetId(v string)

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

func (*BaseClientResponseAllOf) SetUpdatedAt

func (o *BaseClientResponseAllOf) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

type BaseClientResponseCreate

type BaseClientResponseCreate struct {
	// The display name for the client.
	DisplayName *string `json:"displayName,omitempty"`
	// A user provided description of the client.
	Description *string `json:"description,omitempty"`
	// Supported authentication methods used to request oAuth tokens: * `client_secret_basic` - The client credentials will be sent in the authorization header. * `client_secret_post` - The client credentials will be sent in the request body.
	AuthType *string `json:"authType,omitempty"`
	// The unique client identifier.
	Id *string `json:"id,omitempty"`
	// Indicates if the client has rotated secrets. Rotated client secrets can be revoked.
	HasRotatedSecrets *bool `json:"hasRotatedSecrets,omitempty"`
	// The RFC3339 timestamp when the client was created.
	CreatedAt *string `json:"createdAt,omitempty"`
	// The RFC3339 timestamp when the client was last updated.
	UpdatedAt *string `json:"updatedAt,omitempty"`
	// The client's secret, used to authenticate during an oAuth token request.
	ClientSecret *string `json:"clientSecret,omitempty"`
}

BaseClientResponseCreate struct for BaseClientResponseCreate

func NewBaseClientResponseCreate

func NewBaseClientResponseCreate() *BaseClientResponseCreate

NewBaseClientResponseCreate instantiates a new BaseClientResponseCreate 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 NewBaseClientResponseCreateWithDefaults

func NewBaseClientResponseCreateWithDefaults() *BaseClientResponseCreate

NewBaseClientResponseCreateWithDefaults instantiates a new BaseClientResponseCreate 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 (*BaseClientResponseCreate) GetAuthType

func (o *BaseClientResponseCreate) GetAuthType() string

GetAuthType returns the AuthType field value if set, zero value otherwise.

func (*BaseClientResponseCreate) GetAuthTypeOk

func (o *BaseClientResponseCreate) GetAuthTypeOk() (*string, bool)

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

func (*BaseClientResponseCreate) GetClientSecret

func (o *BaseClientResponseCreate) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*BaseClientResponseCreate) GetClientSecretOk

func (o *BaseClientResponseCreate) GetClientSecretOk() (*string, bool)

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

func (*BaseClientResponseCreate) GetCreatedAt

func (o *BaseClientResponseCreate) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*BaseClientResponseCreate) GetCreatedAtOk

func (o *BaseClientResponseCreate) GetCreatedAtOk() (*string, bool)

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

func (*BaseClientResponseCreate) GetDescription

func (o *BaseClientResponseCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*BaseClientResponseCreate) GetDescriptionOk

func (o *BaseClientResponseCreate) GetDescriptionOk() (*string, bool)

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

func (*BaseClientResponseCreate) GetDisplayName

func (o *BaseClientResponseCreate) GetDisplayName() string

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

func (*BaseClientResponseCreate) GetDisplayNameOk

func (o *BaseClientResponseCreate) 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 (*BaseClientResponseCreate) GetHasRotatedSecrets

func (o *BaseClientResponseCreate) GetHasRotatedSecrets() bool

GetHasRotatedSecrets returns the HasRotatedSecrets field value if set, zero value otherwise.

func (*BaseClientResponseCreate) GetHasRotatedSecretsOk

func (o *BaseClientResponseCreate) GetHasRotatedSecretsOk() (*bool, bool)

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

func (*BaseClientResponseCreate) GetId

func (o *BaseClientResponseCreate) GetId() string

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

func (*BaseClientResponseCreate) GetIdOk

func (o *BaseClientResponseCreate) 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 (*BaseClientResponseCreate) GetUpdatedAt

func (o *BaseClientResponseCreate) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*BaseClientResponseCreate) GetUpdatedAtOk

func (o *BaseClientResponseCreate) GetUpdatedAtOk() (*string, bool)

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

func (*BaseClientResponseCreate) HasAuthType

func (o *BaseClientResponseCreate) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

func (*BaseClientResponseCreate) HasClientSecret

func (o *BaseClientResponseCreate) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*BaseClientResponseCreate) HasCreatedAt

func (o *BaseClientResponseCreate) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*BaseClientResponseCreate) HasDescription

func (o *BaseClientResponseCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BaseClientResponseCreate) HasDisplayName

func (o *BaseClientResponseCreate) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*BaseClientResponseCreate) HasHasRotatedSecrets

func (o *BaseClientResponseCreate) HasHasRotatedSecrets() bool

HasHasRotatedSecrets returns a boolean if a field has been set.

func (*BaseClientResponseCreate) HasId

func (o *BaseClientResponseCreate) HasId() bool

HasId returns a boolean if a field has been set.

func (*BaseClientResponseCreate) HasUpdatedAt

func (o *BaseClientResponseCreate) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (BaseClientResponseCreate) MarshalJSON

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

func (*BaseClientResponseCreate) SetAuthType

func (o *BaseClientResponseCreate) SetAuthType(v string)

SetAuthType gets a reference to the given string and assigns it to the AuthType field.

func (*BaseClientResponseCreate) SetClientSecret

func (o *BaseClientResponseCreate) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*BaseClientResponseCreate) SetCreatedAt

func (o *BaseClientResponseCreate) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*BaseClientResponseCreate) SetDescription

func (o *BaseClientResponseCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*BaseClientResponseCreate) SetDisplayName

func (o *BaseClientResponseCreate) SetDisplayName(v string)

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

func (*BaseClientResponseCreate) SetHasRotatedSecrets

func (o *BaseClientResponseCreate) SetHasRotatedSecrets(v bool)

SetHasRotatedSecrets gets a reference to the given bool and assigns it to the HasRotatedSecrets field.

func (*BaseClientResponseCreate) SetId

func (o *BaseClientResponseCreate) SetId(v string)

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

func (*BaseClientResponseCreate) SetUpdatedAt

func (o *BaseClientResponseCreate) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

type BaseClientResponseCreateAllOf

type BaseClientResponseCreateAllOf struct {
	// The client's secret, used to authenticate during an oAuth token request.
	ClientSecret *string `json:"clientSecret,omitempty"`
}

BaseClientResponseCreateAllOf struct for BaseClientResponseCreateAllOf

func NewBaseClientResponseCreateAllOf

func NewBaseClientResponseCreateAllOf() *BaseClientResponseCreateAllOf

NewBaseClientResponseCreateAllOf instantiates a new BaseClientResponseCreateAllOf 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 NewBaseClientResponseCreateAllOfWithDefaults

func NewBaseClientResponseCreateAllOfWithDefaults() *BaseClientResponseCreateAllOf

NewBaseClientResponseCreateAllOfWithDefaults instantiates a new BaseClientResponseCreateAllOf 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 (*BaseClientResponseCreateAllOf) GetClientSecret

func (o *BaseClientResponseCreateAllOf) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*BaseClientResponseCreateAllOf) GetClientSecretOk

func (o *BaseClientResponseCreateAllOf) GetClientSecretOk() (*string, bool)

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

func (*BaseClientResponseCreateAllOf) HasClientSecret

func (o *BaseClientResponseCreateAllOf) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (BaseClientResponseCreateAllOf) MarshalJSON

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

func (*BaseClientResponseCreateAllOf) SetClientSecret

func (o *BaseClientResponseCreateAllOf) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

type CredentialsDto

type CredentialsDto struct {
	// The unique client identifier.
	ClientId *string `json:"clientId,omitempty"`
	// The client's secret, used to authenticate during an oAuth token request.
	ClientSecret *string `json:"clientSecret,omitempty"`
	// The RFC3339 timestamp when the rotated client secret will expire.
	RotatedSecretExpiresAt *string `json:"rotatedSecretExpiresAt,omitempty"`
}

CredentialsDto Data object for a client's credentials.

func NewCredentialsDto

func NewCredentialsDto() *CredentialsDto

NewCredentialsDto instantiates a new CredentialsDto 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 NewCredentialsDtoWithDefaults

func NewCredentialsDtoWithDefaults() *CredentialsDto

NewCredentialsDtoWithDefaults instantiates a new CredentialsDto 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 (*CredentialsDto) GetClientId

func (o *CredentialsDto) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*CredentialsDto) GetClientIdOk

func (o *CredentialsDto) GetClientIdOk() (*string, bool)

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

func (*CredentialsDto) GetClientSecret

func (o *CredentialsDto) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*CredentialsDto) GetClientSecretOk

func (o *CredentialsDto) GetClientSecretOk() (*string, bool)

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

func (*CredentialsDto) GetRotatedSecretExpiresAt

func (o *CredentialsDto) GetRotatedSecretExpiresAt() string

GetRotatedSecretExpiresAt returns the RotatedSecretExpiresAt field value if set, zero value otherwise.

func (*CredentialsDto) GetRotatedSecretExpiresAtOk

func (o *CredentialsDto) GetRotatedSecretExpiresAtOk() (*string, bool)

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

func (*CredentialsDto) HasClientId

func (o *CredentialsDto) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*CredentialsDto) HasClientSecret

func (o *CredentialsDto) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*CredentialsDto) HasRotatedSecretExpiresAt

func (o *CredentialsDto) HasRotatedSecretExpiresAt() bool

HasRotatedSecretExpiresAt returns a boolean if a field has been set.

func (CredentialsDto) MarshalJSON

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

func (*CredentialsDto) SetClientId

func (o *CredentialsDto) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*CredentialsDto) SetClientSecret

func (o *CredentialsDto) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*CredentialsDto) SetRotatedSecretExpiresAt

func (o *CredentialsDto) SetRotatedSecretExpiresAt(v string)

SetRotatedSecretExpiresAt gets a reference to the given string and assigns it to the RotatedSecretExpiresAt 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 InternalServerError

type InternalServerError struct {
	Title  *string `json:"title,omitempty"`
	Type   *string `json:"type,omitempty"`
	Status *int32  `json:"status,omitempty"`
	Detail *string `json:"detail,omitempty"`
}

InternalServerError An error occured in the service that could not be recovered from.

func NewInternalServerError

func NewInternalServerError() *InternalServerError

NewInternalServerError instantiates a new InternalServerError 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 NewInternalServerErrorWithDefaults

func NewInternalServerErrorWithDefaults() *InternalServerError

NewInternalServerErrorWithDefaults instantiates a new InternalServerError 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 (*InternalServerError) GetDetail

func (o *InternalServerError) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*InternalServerError) GetDetailOk

func (o *InternalServerError) GetDetailOk() (*string, bool)

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

func (*InternalServerError) GetStatus

func (o *InternalServerError) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*InternalServerError) GetStatusOk

func (o *InternalServerError) GetStatusOk() (*int32, bool)

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

func (*InternalServerError) GetTitle

func (o *InternalServerError) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*InternalServerError) GetTitleOk

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

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

func (*InternalServerError) GetType

func (o *InternalServerError) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*InternalServerError) GetTypeOk

func (o *InternalServerError) GetTypeOk() (*string, bool)

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

func (*InternalServerError) HasDetail

func (o *InternalServerError) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*InternalServerError) HasStatus

func (o *InternalServerError) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*InternalServerError) HasTitle

func (o *InternalServerError) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*InternalServerError) HasType

func (o *InternalServerError) HasType() bool

HasType returns a boolean if a field has been set.

func (InternalServerError) MarshalJSON

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

func (*InternalServerError) SetDetail

func (o *InternalServerError) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*InternalServerError) SetStatus

func (o *InternalServerError) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*InternalServerError) SetTitle

func (o *InternalServerError) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*InternalServerError) SetType

func (o *InternalServerError) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type InvalidFilterError

type InvalidFilterError struct {
	Title  *string `json:"title,omitempty"`
	Type   *string `json:"type,omitempty"`
	Status *int32  `json:"status,omitempty"`
	Detail *string `json:"detail,omitempty"`
}

InvalidFilterError The provided filter specified an incorrect filter attribute, attribute value, or operator.

func NewInvalidFilterError

func NewInvalidFilterError() *InvalidFilterError

NewInvalidFilterError instantiates a new InvalidFilterError 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 NewInvalidFilterErrorWithDefaults

func NewInvalidFilterErrorWithDefaults() *InvalidFilterError

NewInvalidFilterErrorWithDefaults instantiates a new InvalidFilterError 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 (*InvalidFilterError) GetDetail

func (o *InvalidFilterError) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*InvalidFilterError) GetDetailOk

func (o *InvalidFilterError) GetDetailOk() (*string, bool)

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

func (*InvalidFilterError) GetStatus

func (o *InvalidFilterError) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*InvalidFilterError) GetStatusOk

func (o *InvalidFilterError) GetStatusOk() (*int32, bool)

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

func (*InvalidFilterError) GetTitle

func (o *InvalidFilterError) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*InvalidFilterError) GetTitleOk

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

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

func (*InvalidFilterError) GetType

func (o *InvalidFilterError) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*InvalidFilterError) GetTypeOk

func (o *InvalidFilterError) GetTypeOk() (*string, bool)

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

func (*InvalidFilterError) HasDetail

func (o *InvalidFilterError) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*InvalidFilterError) HasStatus

func (o *InvalidFilterError) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*InvalidFilterError) HasTitle

func (o *InvalidFilterError) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*InvalidFilterError) HasType

func (o *InvalidFilterError) HasType() bool

HasType returns a boolean if a field has been set.

func (InvalidFilterError) MarshalJSON

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

func (*InvalidFilterError) SetDetail

func (o *InvalidFilterError) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*InvalidFilterError) SetStatus

func (o *InvalidFilterError) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*InvalidFilterError) SetTitle

func (o *InvalidFilterError) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*InvalidFilterError) SetType

func (o *InvalidFilterError) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type NullableAgentClientRequest

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

func NewNullableAgentClientRequest

func NewNullableAgentClientRequest(val *AgentClientRequest) *NullableAgentClientRequest

func (NullableAgentClientRequest) Get

func (NullableAgentClientRequest) IsSet

func (v NullableAgentClientRequest) IsSet() bool

func (NullableAgentClientRequest) MarshalJSON

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

func (*NullableAgentClientRequest) Set

func (*NullableAgentClientRequest) UnmarshalJSON

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

func (*NullableAgentClientRequest) Unset

func (v *NullableAgentClientRequest) Unset()

type NullableAgentClientResponse

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

func NewNullableAgentClientResponse

func NewNullableAgentClientResponse(val *AgentClientResponse) *NullableAgentClientResponse

func (NullableAgentClientResponse) Get

func (NullableAgentClientResponse) IsSet

func (NullableAgentClientResponse) MarshalJSON

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

func (*NullableAgentClientResponse) Set

func (*NullableAgentClientResponse) UnmarshalJSON

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

func (*NullableAgentClientResponse) Unset

func (v *NullableAgentClientResponse) Unset()

type NullableAgentClientResponseCreate

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

func (NullableAgentClientResponseCreate) Get

func (NullableAgentClientResponseCreate) IsSet

func (NullableAgentClientResponseCreate) MarshalJSON

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

func (*NullableAgentClientResponseCreate) Set

func (*NullableAgentClientResponseCreate) UnmarshalJSON

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

func (*NullableAgentClientResponseCreate) Unset

type NullableAgentClientsContainer

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

func (NullableAgentClientsContainer) Get

func (NullableAgentClientsContainer) IsSet

func (NullableAgentClientsContainer) MarshalJSON

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

func (*NullableAgentClientsContainer) Set

func (*NullableAgentClientsContainer) UnmarshalJSON

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

func (*NullableAgentClientsContainer) Unset

func (v *NullableAgentClientsContainer) Unset()

type NullableBadRequestError

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

func NewNullableBadRequestError

func NewNullableBadRequestError(val *BadRequestError) *NullableBadRequestError

func (NullableBadRequestError) Get

func (NullableBadRequestError) IsSet

func (v NullableBadRequestError) IsSet() bool

func (NullableBadRequestError) MarshalJSON

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

func (*NullableBadRequestError) Set

func (*NullableBadRequestError) UnmarshalJSON

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

func (*NullableBadRequestError) Unset

func (v *NullableBadRequestError) Unset()

type NullableBaseClientRequest

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

func NewNullableBaseClientRequest

func NewNullableBaseClientRequest(val *BaseClientRequest) *NullableBaseClientRequest

func (NullableBaseClientRequest) Get

func (NullableBaseClientRequest) IsSet

func (v NullableBaseClientRequest) IsSet() bool

func (NullableBaseClientRequest) MarshalJSON

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

func (*NullableBaseClientRequest) Set

func (*NullableBaseClientRequest) UnmarshalJSON

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

func (*NullableBaseClientRequest) Unset

func (v *NullableBaseClientRequest) Unset()

type NullableBaseClientResponse

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

func NewNullableBaseClientResponse

func NewNullableBaseClientResponse(val *BaseClientResponse) *NullableBaseClientResponse

func (NullableBaseClientResponse) Get

func (NullableBaseClientResponse) IsSet

func (v NullableBaseClientResponse) IsSet() bool

func (NullableBaseClientResponse) MarshalJSON

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

func (*NullableBaseClientResponse) Set

func (*NullableBaseClientResponse) UnmarshalJSON

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

func (*NullableBaseClientResponse) Unset

func (v *NullableBaseClientResponse) Unset()

type NullableBaseClientResponseAllOf

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

func (NullableBaseClientResponseAllOf) Get

func (NullableBaseClientResponseAllOf) IsSet

func (NullableBaseClientResponseAllOf) MarshalJSON

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

func (*NullableBaseClientResponseAllOf) Set

func (*NullableBaseClientResponseAllOf) UnmarshalJSON

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

func (*NullableBaseClientResponseAllOf) Unset

type NullableBaseClientResponseCreate

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

func (NullableBaseClientResponseCreate) Get

func (NullableBaseClientResponseCreate) IsSet

func (NullableBaseClientResponseCreate) MarshalJSON

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

func (*NullableBaseClientResponseCreate) Set

func (*NullableBaseClientResponseCreate) UnmarshalJSON

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

func (*NullableBaseClientResponseCreate) Unset

type NullableBaseClientResponseCreateAllOf

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

func (NullableBaseClientResponseCreateAllOf) Get

func (NullableBaseClientResponseCreateAllOf) IsSet

func (NullableBaseClientResponseCreateAllOf) MarshalJSON

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

func (*NullableBaseClientResponseCreateAllOf) Set

func (*NullableBaseClientResponseCreateAllOf) UnmarshalJSON

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

func (*NullableBaseClientResponseCreateAllOf) 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 NullableCredentialsDto

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

func NewNullableCredentialsDto

func NewNullableCredentialsDto(val *CredentialsDto) *NullableCredentialsDto

func (NullableCredentialsDto) Get

func (NullableCredentialsDto) IsSet

func (v NullableCredentialsDto) IsSet() bool

func (NullableCredentialsDto) MarshalJSON

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

func (*NullableCredentialsDto) Set

func (*NullableCredentialsDto) UnmarshalJSON

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

func (*NullableCredentialsDto) Unset

func (v *NullableCredentialsDto) 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 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 NullableInternalServerError

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

func NewNullableInternalServerError

func NewNullableInternalServerError(val *InternalServerError) *NullableInternalServerError

func (NullableInternalServerError) Get

func (NullableInternalServerError) IsSet

func (NullableInternalServerError) MarshalJSON

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

func (*NullableInternalServerError) Set

func (*NullableInternalServerError) UnmarshalJSON

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

func (*NullableInternalServerError) Unset

func (v *NullableInternalServerError) Unset()

type NullableInvalidFilterError

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

func NewNullableInvalidFilterError

func NewNullableInvalidFilterError(val *InvalidFilterError) *NullableInvalidFilterError

func (NullableInvalidFilterError) Get

func (NullableInvalidFilterError) IsSet

func (v NullableInvalidFilterError) IsSet() bool

func (NullableInvalidFilterError) MarshalJSON

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

func (*NullableInvalidFilterError) Set

func (*NullableInvalidFilterError) UnmarshalJSON

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

func (*NullableInvalidFilterError) Unset

func (v *NullableInvalidFilterError) Unset()

type NullableResourceNotFound

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

func NewNullableResourceNotFound

func NewNullableResourceNotFound(val *ResourceNotFound) *NullableResourceNotFound

func (NullableResourceNotFound) Get

func (NullableResourceNotFound) IsSet

func (v NullableResourceNotFound) IsSet() bool

func (NullableResourceNotFound) MarshalJSON

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

func (*NullableResourceNotFound) Set

func (*NullableResourceNotFound) UnmarshalJSON

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

func (*NullableResourceNotFound) Unset

func (v *NullableResourceNotFound) Unset()

type NullableRevokeSecretResponse

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

func NewNullableRevokeSecretResponse

func NewNullableRevokeSecretResponse(val *RevokeSecretResponse) *NullableRevokeSecretResponse

func (NullableRevokeSecretResponse) Get

func (NullableRevokeSecretResponse) IsSet

func (NullableRevokeSecretResponse) MarshalJSON

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

func (*NullableRevokeSecretResponse) Set

func (*NullableRevokeSecretResponse) UnmarshalJSON

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

func (*NullableRevokeSecretResponse) Unset

func (v *NullableRevokeSecretResponse) Unset()

type NullableRotationRequest

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

func NewNullableRotationRequest

func NewNullableRotationRequest(val *RotationRequest) *NullableRotationRequest

func (NullableRotationRequest) Get

func (NullableRotationRequest) IsSet

func (v NullableRotationRequest) IsSet() bool

func (NullableRotationRequest) MarshalJSON

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

func (*NullableRotationRequest) Set

func (*NullableRotationRequest) UnmarshalJSON

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

func (*NullableRotationRequest) Unset

func (v *NullableRotationRequest) Unset()

type NullableServiceClientRequest

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

func NewNullableServiceClientRequest

func NewNullableServiceClientRequest(val *ServiceClientRequest) *NullableServiceClientRequest

func (NullableServiceClientRequest) Get

func (NullableServiceClientRequest) IsSet

func (NullableServiceClientRequest) MarshalJSON

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

func (*NullableServiceClientRequest) Set

func (*NullableServiceClientRequest) UnmarshalJSON

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

func (*NullableServiceClientRequest) Unset

func (v *NullableServiceClientRequest) Unset()

type NullableServiceClientResponse

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

func (NullableServiceClientResponse) Get

func (NullableServiceClientResponse) IsSet

func (NullableServiceClientResponse) MarshalJSON

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

func (*NullableServiceClientResponse) Set

func (*NullableServiceClientResponse) UnmarshalJSON

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

func (*NullableServiceClientResponse) Unset

func (v *NullableServiceClientResponse) Unset()

type NullableServiceClientResponseCreate

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

func (NullableServiceClientResponseCreate) Get

func (NullableServiceClientResponseCreate) IsSet

func (NullableServiceClientResponseCreate) MarshalJSON

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

func (*NullableServiceClientResponseCreate) Set

func (*NullableServiceClientResponseCreate) UnmarshalJSON

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

func (*NullableServiceClientResponseCreate) Unset

type NullableServiceClientsContainer

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

func (NullableServiceClientsContainer) Get

func (NullableServiceClientsContainer) IsSet

func (NullableServiceClientsContainer) MarshalJSON

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

func (*NullableServiceClientsContainer) Set

func (*NullableServiceClientsContainer) UnmarshalJSON

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

func (*NullableServiceClientsContainer) 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 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 ResourceNotFound

type ResourceNotFound struct {
	Title  *string `json:"title,omitempty"`
	Type   *string `json:"type,omitempty"`
	Status *int32  `json:"status,omitempty"`
	Detail *string `json:"detail,omitempty"`
}

ResourceNotFound The requested client was not found. Check the ID and try again.

func NewResourceNotFound

func NewResourceNotFound() *ResourceNotFound

NewResourceNotFound instantiates a new ResourceNotFound 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 NewResourceNotFoundWithDefaults

func NewResourceNotFoundWithDefaults() *ResourceNotFound

NewResourceNotFoundWithDefaults instantiates a new ResourceNotFound 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 (*ResourceNotFound) GetDetail

func (o *ResourceNotFound) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ResourceNotFound) GetDetailOk

func (o *ResourceNotFound) GetDetailOk() (*string, bool)

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

func (*ResourceNotFound) GetStatus

func (o *ResourceNotFound) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*ResourceNotFound) GetStatusOk

func (o *ResourceNotFound) GetStatusOk() (*int32, bool)

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

func (*ResourceNotFound) GetTitle

func (o *ResourceNotFound) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ResourceNotFound) GetTitleOk

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

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

func (*ResourceNotFound) GetType

func (o *ResourceNotFound) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ResourceNotFound) GetTypeOk

func (o *ResourceNotFound) GetTypeOk() (*string, bool)

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

func (*ResourceNotFound) HasDetail

func (o *ResourceNotFound) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ResourceNotFound) HasStatus

func (o *ResourceNotFound) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ResourceNotFound) HasTitle

func (o *ResourceNotFound) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ResourceNotFound) HasType

func (o *ResourceNotFound) HasType() bool

HasType returns a boolean if a field has been set.

func (ResourceNotFound) MarshalJSON

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

func (*ResourceNotFound) SetDetail

func (o *ResourceNotFound) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ResourceNotFound) SetStatus

func (o *ResourceNotFound) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*ResourceNotFound) SetTitle

func (o *ResourceNotFound) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ResourceNotFound) SetType

func (o *ResourceNotFound) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type RevokeSecretResponse

type RevokeSecretResponse struct {
	Status  string `json:"status"`
	Message string `json:"message"`
}

RevokeSecretResponse struct for RevokeSecretResponse

func NewRevokeSecretResponse

func NewRevokeSecretResponse(status string, message string) *RevokeSecretResponse

NewRevokeSecretResponse instantiates a new RevokeSecretResponse 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 NewRevokeSecretResponseWithDefaults

func NewRevokeSecretResponseWithDefaults() *RevokeSecretResponse

NewRevokeSecretResponseWithDefaults instantiates a new RevokeSecretResponse 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 (*RevokeSecretResponse) GetMessage

func (o *RevokeSecretResponse) GetMessage() string

GetMessage returns the Message field value

func (*RevokeSecretResponse) GetMessageOk

func (o *RevokeSecretResponse) GetMessageOk() (*string, bool)

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

func (*RevokeSecretResponse) GetStatus

func (o *RevokeSecretResponse) GetStatus() string

GetStatus returns the Status field value

func (*RevokeSecretResponse) GetStatusOk

func (o *RevokeSecretResponse) GetStatusOk() (*string, bool)

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

func (RevokeSecretResponse) MarshalJSON

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

func (*RevokeSecretResponse) SetMessage

func (o *RevokeSecretResponse) SetMessage(v string)

SetMessage sets field value

func (*RevokeSecretResponse) SetStatus

func (o *RevokeSecretResponse) SetStatus(v string)

SetStatus sets field value

type RotationRequest

type RotationRequest struct {
	// An ISO-8601 duration for how long the rotated secret will last before expiring. Input can not exceed 30 days. If not specified, defaults to 30 days.
	RevokeRotatedAfter interface{} `json:"revokeRotatedAfter,omitempty"`
}

RotationRequest struct for RotationRequest

func NewRotationRequest

func NewRotationRequest() *RotationRequest

NewRotationRequest instantiates a new RotationRequest 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 NewRotationRequestWithDefaults

func NewRotationRequestWithDefaults() *RotationRequest

NewRotationRequestWithDefaults instantiates a new RotationRequest 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 (*RotationRequest) GetRevokeRotatedAfter

func (o *RotationRequest) GetRevokeRotatedAfter() interface{}

GetRevokeRotatedAfter returns the RevokeRotatedAfter field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RotationRequest) GetRevokeRotatedAfterOk

func (o *RotationRequest) GetRevokeRotatedAfterOk() (*interface{}, bool)

GetRevokeRotatedAfterOk returns a tuple with the RevokeRotatedAfter field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RotationRequest) HasRevokeRotatedAfter

func (o *RotationRequest) HasRevokeRotatedAfter() bool

HasRevokeRotatedAfter returns a boolean if a field has been set.

func (RotationRequest) MarshalJSON

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

func (*RotationRequest) SetRevokeRotatedAfter

func (o *RotationRequest) SetRevokeRotatedAfter(v interface{})

SetRevokeRotatedAfter gets a reference to the given interface{} and assigns it to the RevokeRotatedAfter field.

type ServiceClientRequest

type ServiceClientRequest struct {
	// The display name for the client.
	DisplayName *string `json:"displayName,omitempty"`
	// A user provided description of the client.
	Description *string `json:"description,omitempty"`
	// Supported authentication methods used to request oAuth tokens: * `client_secret_basic` - The client credentials will be sent in the authorization header. * `client_secret_post` - The client credentials will be sent in the request body.
	AuthType *string `json:"authType,omitempty"`
}

ServiceClientRequest Request object for requests to manage service clients.

func NewServiceClientRequest

func NewServiceClientRequest() *ServiceClientRequest

NewServiceClientRequest instantiates a new ServiceClientRequest 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 NewServiceClientRequestWithDefaults

func NewServiceClientRequestWithDefaults() *ServiceClientRequest

NewServiceClientRequestWithDefaults instantiates a new ServiceClientRequest 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 (*ServiceClientRequest) GetAuthType

func (o *ServiceClientRequest) GetAuthType() string

GetAuthType returns the AuthType field value if set, zero value otherwise.

func (*ServiceClientRequest) GetAuthTypeOk

func (o *ServiceClientRequest) GetAuthTypeOk() (*string, bool)

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

func (*ServiceClientRequest) GetDescription

func (o *ServiceClientRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ServiceClientRequest) GetDescriptionOk

func (o *ServiceClientRequest) GetDescriptionOk() (*string, bool)

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

func (*ServiceClientRequest) GetDisplayName

func (o *ServiceClientRequest) GetDisplayName() string

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

func (*ServiceClientRequest) GetDisplayNameOk

func (o *ServiceClientRequest) 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 (*ServiceClientRequest) HasAuthType

func (o *ServiceClientRequest) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

func (*ServiceClientRequest) HasDescription

func (o *ServiceClientRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ServiceClientRequest) HasDisplayName

func (o *ServiceClientRequest) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (ServiceClientRequest) MarshalJSON

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

func (*ServiceClientRequest) SetAuthType

func (o *ServiceClientRequest) SetAuthType(v string)

SetAuthType gets a reference to the given string and assigns it to the AuthType field.

func (*ServiceClientRequest) SetDescription

func (o *ServiceClientRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ServiceClientRequest) SetDisplayName

func (o *ServiceClientRequest) SetDisplayName(v string)

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

type ServiceClientResponse

type ServiceClientResponse struct {
	// The display name for the client.
	DisplayName *string `json:"displayName,omitempty"`
	// A user provided description of the client.
	Description *string `json:"description,omitempty"`
	// Supported authentication methods used to request oAuth tokens: * `client_secret_basic` - The client credentials will be sent in the authorization header. * `client_secret_post` - The client credentials will be sent in the request body.
	AuthType *string `json:"authType,omitempty"`
	// The unique client identifier.
	Id *string `json:"id,omitempty"`
	// Indicates if the client has rotated secrets. Rotated client secrets can be revoked.
	HasRotatedSecrets *bool `json:"hasRotatedSecrets,omitempty"`
	// The RFC3339 timestamp when the client was created.
	CreatedAt *string `json:"createdAt,omitempty"`
	// The RFC3339 timestamp when the client was last updated.
	UpdatedAt *string `json:"updatedAt,omitempty"`
}

ServiceClientResponse Response object for requests to manage service clients. Extends the BaseClientResponse.

func NewServiceClientResponse

func NewServiceClientResponse() *ServiceClientResponse

NewServiceClientResponse instantiates a new ServiceClientResponse 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 NewServiceClientResponseWithDefaults

func NewServiceClientResponseWithDefaults() *ServiceClientResponse

NewServiceClientResponseWithDefaults instantiates a new ServiceClientResponse 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 (*ServiceClientResponse) GetAuthType

func (o *ServiceClientResponse) GetAuthType() string

GetAuthType returns the AuthType field value if set, zero value otherwise.

func (*ServiceClientResponse) GetAuthTypeOk

func (o *ServiceClientResponse) GetAuthTypeOk() (*string, bool)

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

func (*ServiceClientResponse) GetCreatedAt

func (o *ServiceClientResponse) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*ServiceClientResponse) GetCreatedAtOk

func (o *ServiceClientResponse) GetCreatedAtOk() (*string, bool)

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

func (*ServiceClientResponse) GetDescription

func (o *ServiceClientResponse) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ServiceClientResponse) GetDescriptionOk

func (o *ServiceClientResponse) GetDescriptionOk() (*string, bool)

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

func (*ServiceClientResponse) GetDisplayName

func (o *ServiceClientResponse) GetDisplayName() string

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

func (*ServiceClientResponse) GetDisplayNameOk

func (o *ServiceClientResponse) 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 (*ServiceClientResponse) GetHasRotatedSecrets

func (o *ServiceClientResponse) GetHasRotatedSecrets() bool

GetHasRotatedSecrets returns the HasRotatedSecrets field value if set, zero value otherwise.

func (*ServiceClientResponse) GetHasRotatedSecretsOk

func (o *ServiceClientResponse) GetHasRotatedSecretsOk() (*bool, bool)

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

func (*ServiceClientResponse) GetId

func (o *ServiceClientResponse) GetId() string

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

func (*ServiceClientResponse) GetIdOk

func (o *ServiceClientResponse) 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 (*ServiceClientResponse) GetUpdatedAt

func (o *ServiceClientResponse) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*ServiceClientResponse) GetUpdatedAtOk

func (o *ServiceClientResponse) GetUpdatedAtOk() (*string, bool)

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

func (*ServiceClientResponse) HasAuthType

func (o *ServiceClientResponse) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

func (*ServiceClientResponse) HasCreatedAt

func (o *ServiceClientResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ServiceClientResponse) HasDescription

func (o *ServiceClientResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ServiceClientResponse) HasDisplayName

func (o *ServiceClientResponse) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ServiceClientResponse) HasHasRotatedSecrets

func (o *ServiceClientResponse) HasHasRotatedSecrets() bool

HasHasRotatedSecrets returns a boolean if a field has been set.

func (*ServiceClientResponse) HasId

func (o *ServiceClientResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*ServiceClientResponse) HasUpdatedAt

func (o *ServiceClientResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (ServiceClientResponse) MarshalJSON

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

func (*ServiceClientResponse) SetAuthType

func (o *ServiceClientResponse) SetAuthType(v string)

SetAuthType gets a reference to the given string and assigns it to the AuthType field.

func (*ServiceClientResponse) SetCreatedAt

func (o *ServiceClientResponse) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*ServiceClientResponse) SetDescription

func (o *ServiceClientResponse) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ServiceClientResponse) SetDisplayName

func (o *ServiceClientResponse) SetDisplayName(v string)

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

func (*ServiceClientResponse) SetHasRotatedSecrets

func (o *ServiceClientResponse) SetHasRotatedSecrets(v bool)

SetHasRotatedSecrets gets a reference to the given bool and assigns it to the HasRotatedSecrets field.

func (*ServiceClientResponse) SetId

func (o *ServiceClientResponse) SetId(v string)

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

func (*ServiceClientResponse) SetUpdatedAt

func (o *ServiceClientResponse) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

type ServiceClientResponseCreate

type ServiceClientResponseCreate struct {
	// The display name for the client.
	DisplayName *string `json:"displayName,omitempty"`
	// A user provided description of the client.
	Description *string `json:"description,omitempty"`
	// Supported authentication methods used to request oAuth tokens: * `client_secret_basic` - The client credentials will be sent in the authorization header. * `client_secret_post` - The client credentials will be sent in the request body.
	AuthType *string `json:"authType,omitempty"`
	// The unique client identifier.
	Id *string `json:"id,omitempty"`
	// Indicates if the client has rotated secrets. Rotated client secrets can be revoked.
	HasRotatedSecrets *bool `json:"hasRotatedSecrets,omitempty"`
	// The RFC3339 timestamp when the client was created.
	CreatedAt *string `json:"createdAt,omitempty"`
	// The RFC3339 timestamp when the client was last updated.
	UpdatedAt *string `json:"updatedAt,omitempty"`
	// The client's secret, used to authenticate during an oAuth token request.
	ClientSecret *string `json:"clientSecret,omitempty"`
}

ServiceClientResponseCreate Resopnse object for requests to manage service clients. Includes a generated client secret.

func NewServiceClientResponseCreate

func NewServiceClientResponseCreate() *ServiceClientResponseCreate

NewServiceClientResponseCreate instantiates a new ServiceClientResponseCreate 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 NewServiceClientResponseCreateWithDefaults

func NewServiceClientResponseCreateWithDefaults() *ServiceClientResponseCreate

NewServiceClientResponseCreateWithDefaults instantiates a new ServiceClientResponseCreate 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 (*ServiceClientResponseCreate) GetAuthType

func (o *ServiceClientResponseCreate) GetAuthType() string

GetAuthType returns the AuthType field value if set, zero value otherwise.

func (*ServiceClientResponseCreate) GetAuthTypeOk

func (o *ServiceClientResponseCreate) GetAuthTypeOk() (*string, bool)

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

func (*ServiceClientResponseCreate) GetClientSecret

func (o *ServiceClientResponseCreate) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*ServiceClientResponseCreate) GetClientSecretOk

func (o *ServiceClientResponseCreate) GetClientSecretOk() (*string, bool)

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

func (*ServiceClientResponseCreate) GetCreatedAt

func (o *ServiceClientResponseCreate) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*ServiceClientResponseCreate) GetCreatedAtOk

func (o *ServiceClientResponseCreate) GetCreatedAtOk() (*string, bool)

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

func (*ServiceClientResponseCreate) GetDescription

func (o *ServiceClientResponseCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ServiceClientResponseCreate) GetDescriptionOk

func (o *ServiceClientResponseCreate) GetDescriptionOk() (*string, bool)

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

func (*ServiceClientResponseCreate) GetDisplayName

func (o *ServiceClientResponseCreate) GetDisplayName() string

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

func (*ServiceClientResponseCreate) GetDisplayNameOk

func (o *ServiceClientResponseCreate) 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 (*ServiceClientResponseCreate) GetHasRotatedSecrets

func (o *ServiceClientResponseCreate) GetHasRotatedSecrets() bool

GetHasRotatedSecrets returns the HasRotatedSecrets field value if set, zero value otherwise.

func (*ServiceClientResponseCreate) GetHasRotatedSecretsOk

func (o *ServiceClientResponseCreate) GetHasRotatedSecretsOk() (*bool, bool)

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

func (*ServiceClientResponseCreate) GetId

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

func (*ServiceClientResponseCreate) GetIdOk

func (o *ServiceClientResponseCreate) 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 (*ServiceClientResponseCreate) GetUpdatedAt

func (o *ServiceClientResponseCreate) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*ServiceClientResponseCreate) GetUpdatedAtOk

func (o *ServiceClientResponseCreate) GetUpdatedAtOk() (*string, bool)

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

func (*ServiceClientResponseCreate) HasAuthType

func (o *ServiceClientResponseCreate) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

func (*ServiceClientResponseCreate) HasClientSecret

func (o *ServiceClientResponseCreate) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*ServiceClientResponseCreate) HasCreatedAt

func (o *ServiceClientResponseCreate) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ServiceClientResponseCreate) HasDescription

func (o *ServiceClientResponseCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ServiceClientResponseCreate) HasDisplayName

func (o *ServiceClientResponseCreate) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ServiceClientResponseCreate) HasHasRotatedSecrets

func (o *ServiceClientResponseCreate) HasHasRotatedSecrets() bool

HasHasRotatedSecrets returns a boolean if a field has been set.

func (*ServiceClientResponseCreate) HasId

func (o *ServiceClientResponseCreate) HasId() bool

HasId returns a boolean if a field has been set.

func (*ServiceClientResponseCreate) HasUpdatedAt

func (o *ServiceClientResponseCreate) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (ServiceClientResponseCreate) MarshalJSON

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

func (*ServiceClientResponseCreate) SetAuthType

func (o *ServiceClientResponseCreate) SetAuthType(v string)

SetAuthType gets a reference to the given string and assigns it to the AuthType field.

func (*ServiceClientResponseCreate) SetClientSecret

func (o *ServiceClientResponseCreate) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*ServiceClientResponseCreate) SetCreatedAt

func (o *ServiceClientResponseCreate) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*ServiceClientResponseCreate) SetDescription

func (o *ServiceClientResponseCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ServiceClientResponseCreate) SetDisplayName

func (o *ServiceClientResponseCreate) SetDisplayName(v string)

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

func (*ServiceClientResponseCreate) SetHasRotatedSecrets

func (o *ServiceClientResponseCreate) SetHasRotatedSecrets(v bool)

SetHasRotatedSecrets gets a reference to the given bool and assigns it to the HasRotatedSecrets field.

func (*ServiceClientResponseCreate) SetId

func (o *ServiceClientResponseCreate) SetId(v string)

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

func (*ServiceClientResponseCreate) SetUpdatedAt

func (o *ServiceClientResponseCreate) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

type ServiceClientsContainer

type ServiceClientsContainer struct {
	Items []ServiceClientResponse `json:"items,omitempty"`
}

ServiceClientsContainer Generic response object which contains an array of ServiceClientResponse.

func NewServiceClientsContainer

func NewServiceClientsContainer() *ServiceClientsContainer

NewServiceClientsContainer instantiates a new ServiceClientsContainer 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 NewServiceClientsContainerWithDefaults

func NewServiceClientsContainerWithDefaults() *ServiceClientsContainer

NewServiceClientsContainerWithDefaults instantiates a new ServiceClientsContainer 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 (*ServiceClientsContainer) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ServiceClientsContainer) GetItemsOk

func (o *ServiceClientsContainer) GetItemsOk() ([]ServiceClientResponse, bool)

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

func (*ServiceClientsContainer) HasItems

func (o *ServiceClientsContainer) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ServiceClientsContainer) MarshalJSON

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

func (*ServiceClientsContainer) SetItems

SetItems gets a reference to the given []ServiceClientResponse and assigns it to the Items field.

type ServicesApiService

type ServicesApiService service

ServicesApiService ServicesApi service

func (*ServicesApiService) CreateServiceClient

CreateServiceClient Method for CreateServiceClient

Creates a new service client

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateServiceClientRequest

func (*ServicesApiService) CreateServiceClientExecute

Execute executes the request

@return ServiceClientResponseCreate

func (*ServicesApiService) DeleteServiceClient

func (a *ServicesApiService) DeleteServiceClient(ctx context.Context, clientId string) ApiDeleteServiceClientRequest

DeleteServiceClient Method for DeleteServiceClient

Deletes an existing service client

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clientId The unique client identifer
@return ApiDeleteServiceClientRequest

func (*ServicesApiService) DeleteServiceClientExecute

func (a *ServicesApiService) DeleteServiceClientExecute(r ApiDeleteServiceClientRequest) (*http.Response, error)

Execute executes the request

func (*ServicesApiService) GetServiceClientById

func (a *ServicesApiService) GetServiceClientById(ctx context.Context, clientId string) ApiGetServiceClientByIdRequest

GetServiceClientById Method for GetServiceClientById

Get a single service client from the client ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clientId The unique client identifer
@return ApiGetServiceClientByIdRequest

func (*ServicesApiService) GetServiceClientByIdExecute

Execute executes the request

@return ServiceClientResponse

func (*ServicesApiService) ListAllServiceClients

func (a *ServicesApiService) ListAllServiceClients(ctx context.Context) ApiListAllServiceClientsRequest

ListAllServiceClients Method for ListAllServiceClients

Get all service clients

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListAllServiceClientsRequest

func (*ServicesApiService) ListAllServiceClientsExecute

Execute executes the request

@return ServiceClientsContainer

func (*ServicesApiService) RevokeServiceClientSecret

func (a *ServicesApiService) RevokeServiceClientSecret(ctx context.Context, clientId string) ApiRevokeServiceClientSecretRequest

RevokeServiceClientSecret Method for RevokeServiceClientSecret

Revokes the rotated client secrets of the specified service client

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clientId The unique client identifer
@return ApiRevokeServiceClientSecretRequest

func (*ServicesApiService) RevokeServiceClientSecretExecute

Execute executes the request

@return RevokeSecretResponse

func (*ServicesApiService) RotateServiceClientSecret

func (a *ServicesApiService) RotateServiceClientSecret(ctx context.Context, clientId string) ApiRotateServiceClientSecretRequest

RotateServiceClientSecret Method for RotateServiceClientSecret

Rotates the client secret of the specified service client

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clientId The unique client identifer
@return ApiRotateServiceClientSecretRequest

func (*ServicesApiService) RotateServiceClientSecretExecute

func (a *ServicesApiService) RotateServiceClientSecretExecute(r ApiRotateServiceClientSecretRequest) (*CredentialsDto, *http.Response, error)

Execute executes the request

@return CredentialsDto

func (*ServicesApiService) UpdateServiceClient

func (a *ServicesApiService) UpdateServiceClient(ctx context.Context, clientId string) ApiUpdateServiceClientRequest

UpdateServiceClient Method for UpdateServiceClient

Updates an existing service client

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clientId The unique client identifer
@return ApiUpdateServiceClientRequest

func (*ServicesApiService) UpdateServiceClientExecute

Execute executes the request

@return ServiceClientResponse

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL