v2

package
v24.0.2 Latest Latest
Warning

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

Go to latest
Published: Jun 24, 2025 License: Apache-2.0 Imports: 24 Imported by: 0

README

Go API client for Keyfactor Command (API Version V2)

This page provides a utility through which the Keyfactor API endpoints can be called and results returned. It is intended to be used primarily for validation, testing and workflow development. It also serves secondarily as documentation for the API.

If you would like to view documentation containing details on the Keyfactor API and endpoints, please refer to the Web API section of the Keyfactor Command documentation.

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.

  • Keyfactor Command API Version: 24.4.2
  • API version: 2
  • Package version: 1.0.0
  • OpenAPI Generator Version: 7.12.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

For more information on the Keyfactor Command API Documentation, please visit here.

For more information on OpenAPI Generator, please visit its documentation.

Installation

Install the following dependencies:

go get "github.com/Keyfactor/keyfactor-go-client-sdk/v24"

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

import "github.com/Keyfactor/keyfactor-go-client-sdk/v24/api/keyfactor/v2"

Configuration

Configuration of the API client is done through the github.com/Keyfactor/keyfactor-auth-client-go/auth_providers Go package.

Here is an example of configuring your API client:

import (
	"os"
	"github.com/Keyfactor/keyfactor-auth-client-go/auth_providers"
	"github.com/Keyfactor/keyfactor-go-client-sdk/v24/api/keyfactor/v2"
)

hostname := os.Getenv(auth_providers.EnvKeyfactorHostName)
apiPath := os.Getenv(auth_providers.EnvKeyfactorAPIPath)

clientId := os.Getenv(auth_providers.EnvKeyfactorClientID)
clientSecret := os.Getenv(auth_providers.EnvKeyfactorClientSecret)
tokenUrl := os.Getenv(auth_providers.EnvKeyfactorAuthTokenURL)

oAuthNoParamsConfig := auth_providers.CommandConfigOauth{}
oAuthNoParamsConfig.CommandAuthConfig.
	WithCommandHostName(hostname).
	WithCommandAPIPath(apiPath).
	WithSkipVerify(false).
	WithClientTimeout(10)
oAuthNoParamsConfig.
	WithClientId(clientId).
	WithClientSecret(clientSecret).
	WithTokenUrl(tokenUrl).
	Authenticate()

// Configure API client
client, err := keyfactor.NewAPIClient(oAuthNoParamsConfig.GetServerConfig())

Documentation for API Endpoints

All URIs are relative to http://keyfactor.example.com

Class Method HTTP request Description
CertificateApi GetCertificatesIdentityAuditById Get /Certificates/IdentityAudit/{id} Audit identity permissions for certificate
EnrollmentApi CreateEnrollmentPFX Post /Enrollment/PFX Performs a PFX Enrollment based upon the provided request
PAMProviderApi CreatePamProviders Post /PamProviders Creates a new PAM provider with the associated properties
PAMProviderApi CreatePamProvidersTypes Post /PamProviders/Types Creates a new PAM provider type with the associated properties
PAMProviderApi DeletePamProvidersById Delete /PamProviders/{id} Deletes a PAM Provider
PAMProviderApi GetPamProviders Get /PamProviders Returns all PAM providers according to the provided filter and output parameters
PAMProviderApi GetPamProvidersById Get /PamProviders/{id} Returns a single PAM Provider that matches the associated id
PAMProviderApi GetPamProvidersTypes Get /PamProviders/Types Returns all PAM provider types in the Keyfactor instance
PAMProviderApi GetPamProvidersTypesById Get /PamProviders/Types/{id} Returns PAM provider Type for a specific PAM provider
PAMProviderApi UpdatePamProviders Put /PamProviders Updates an existing PAM provider according to the provided properties
SecurityRolesApi CreateSecurityRoles Post /Security/Roles Adds a new security role to the system.
SecurityRolesApi GetSecurityRoles Get /Security/Roles Returns all security roles according to the provided filter and output parameters.
SecurityRolesApi GetSecurityRolesById Get /Security/Roles/{id} Returns a single security role that matches the id.
SecurityRolesApi UpdateSecurityRoles Put /Security/Roles Updates an existing security role.
UserApi GetSSHUsers Get /SSH/Users Returns users matching the criteria from the provided query parameters
UserApi GetSSHUsersById Get /SSH/Users/{id} Looks up information about an existing SSH user.

Documentation For Models

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

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

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

	EnvCommandHostname = kfauth.EnvKeyfactorHostName
	EnvCommandUsername = kfauth.EnvKeyfactorUsername
	EnvCommandPassword = kfauth.EnvKeyfactorPassword
	EnvCommandDomain   = kfauth.EnvKeyfactorDomain
	EnvCommandApiPath  = kfauth.EnvKeyfactorAPIPath
)
View Source
var AllowedCSSCMSCoreEnumsClaimTypeEnumValues = []CSSCMSCoreEnumsClaimType{
	0,
	1,
	2,
	3,
	4,
	5,
	6,
}

All allowed values of CSSCMSCoreEnumsClaimType enum

View Source
var AllowedCSSCMSDataModelEnumsPamParameterDataTypeEnumValues = []CSSCMSDataModelEnumsPamParameterDataType{
	1,
	2,
}

All allowed values of CSSCMSDataModelEnumsPamParameterDataType enum

View Source
var AllowedKeyfactorCommonQueryableExtensionsSortOrderEnumValues = []KeyfactorCommonQueryableExtensionsSortOrder{
	0,
	1,
}

All allowed values of KeyfactorCommonQueryableExtensionsSortOrder enum

View Source
var AllowedSystemDayOfWeekEnumValues = []SystemDayOfWeek{
	0,
	1,
	2,
	3,
	4,
	5,
	6,
}

All allowed values of SystemDayOfWeek enum

Functions

func CacheExpires

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

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

func GetEnvConfiguration

func GetEnvConfiguration() map[string]string

GetEnvConfig returns a map of environment variables

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.

func ValidateConfiguration

func ValidateConfiguration(configuration *Configuration) []error

Types

type APIClient

type APIClient struct {
	AuthClient AuthConfig

	CertificateApi *CertificateApiService

	EnrollmentApi *EnrollmentApiService

	PAMProviderApi *PAMProviderApiService

	SecurityRolesApi *SecurityRolesApiService

	UserApi *UserApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Keyfactor API Reference and Utility API v2 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *auth_providers.Server) (*APIClient, error)

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() *auth_providers.Server

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type ApiCreateEnrollmentPFXRequest

type ApiCreateEnrollmentPFXRequest struct {
	ApiService *EnrollmentApiService
	// contains filtered or unexported fields
}

Request for V2 POST /Enrollment/PFX

func (ApiCreateEnrollmentPFXRequest) EnrollmentPFXEnrollmentWithStoresRequest

func (r ApiCreateEnrollmentPFXRequest) EnrollmentPFXEnrollmentWithStoresRequest(enrollmentPFXEnrollmentWithStoresRequest EnrollmentPFXEnrollmentWithStoresRequest) ApiCreateEnrollmentPFXRequest

The information needed to perform the PFX Enrollment

func (ApiCreateEnrollmentPFXRequest) Execute

Executes the V2 POST /Enrollment/PFX request context

func (ApiCreateEnrollmentPFXRequest) XCertificateformat

func (r ApiCreateEnrollmentPFXRequest) XCertificateformat(xCertificateformat string) ApiCreateEnrollmentPFXRequest

Desired format [PFX, ZIP, PEM, JKS, STORE, REPLACE]

func (ApiCreateEnrollmentPFXRequest) XKeyfactorApiVersion

func (r ApiCreateEnrollmentPFXRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCreateEnrollmentPFXRequest

Desired version of the api, if not provided defaults to v1

func (ApiCreateEnrollmentPFXRequest) XKeyfactorRequestedWith

func (r ApiCreateEnrollmentPFXRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCreateEnrollmentPFXRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCreatePamProvidersRequest

type ApiCreatePamProvidersRequest struct {
	ApiService *PAMProviderApiService
	// contains filtered or unexported fields
}

Request for V2 POST /PamProviders

func (ApiCreatePamProvidersRequest) Execute

Executes the V2 POST /PamProviders request context

func (ApiCreatePamProvidersRequest) PAMProviderCreateRequest

func (r ApiCreatePamProvidersRequest) PAMProviderCreateRequest(pAMProviderCreateRequest PAMProviderCreateRequest) ApiCreatePamProvidersRequest

PAM provider properties to be used

func (ApiCreatePamProvidersRequest) XKeyfactorApiVersion

func (r ApiCreatePamProvidersRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCreatePamProvidersRequest

Desired version of the api, if not provided defaults to v1

func (ApiCreatePamProvidersRequest) XKeyfactorRequestedWith

func (r ApiCreatePamProvidersRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCreatePamProvidersRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCreatePamProvidersTypesRequest

type ApiCreatePamProvidersTypesRequest struct {
	ApiService *PAMProviderApiService
	// contains filtered or unexported fields
}

Request for V2 POST /PamProviders/Types

func (ApiCreatePamProvidersTypesRequest) Execute

Executes the V2 POST /PamProviders/Types request context

func (ApiCreatePamProvidersTypesRequest) PAMProviderTypeCreateRequest

func (r ApiCreatePamProvidersTypesRequest) PAMProviderTypeCreateRequest(pAMProviderTypeCreateRequest PAMProviderTypeCreateRequest) ApiCreatePamProvidersTypesRequest

PAM provider type properties to be used

func (ApiCreatePamProvidersTypesRequest) XKeyfactorApiVersion

func (r ApiCreatePamProvidersTypesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCreatePamProvidersTypesRequest

Desired version of the api, if not provided defaults to v1

func (ApiCreatePamProvidersTypesRequest) XKeyfactorRequestedWith

func (r ApiCreatePamProvidersTypesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCreatePamProvidersTypesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCreateSecurityRolesRequest

type ApiCreateSecurityRolesRequest struct {
	ApiService *SecurityRolesApiService
	// contains filtered or unexported fields
}

Request for V2 POST /Security/Roles

func (ApiCreateSecurityRolesRequest) Execute

Executes the V2 POST /Security/Roles request context

func (ApiCreateSecurityRolesRequest) SecuritySecurityRolesSecurityRoleCreationRequest

func (r ApiCreateSecurityRolesRequest) SecuritySecurityRolesSecurityRoleCreationRequest(securitySecurityRolesSecurityRoleCreationRequest SecuritySecurityRolesSecurityRoleCreationRequest) ApiCreateSecurityRolesRequest

Security Role Creation Request

func (ApiCreateSecurityRolesRequest) XKeyfactorApiVersion

func (r ApiCreateSecurityRolesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCreateSecurityRolesRequest

Desired version of the api, if not provided defaults to v1

func (ApiCreateSecurityRolesRequest) XKeyfactorRequestedWith

func (r ApiCreateSecurityRolesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCreateSecurityRolesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiDeletePamProvidersByIdRequest

type ApiDeletePamProvidersByIdRequest struct {
	ApiService *PAMProviderApiService
	// contains filtered or unexported fields
}

Request for V2 DELETE /PamProviders/{id}

func (ApiDeletePamProvidersByIdRequest) Execute

Executes the V2 DELETE /PamProviders/{id} request context

func (ApiDeletePamProvidersByIdRequest) XKeyfactorApiVersion

func (r ApiDeletePamProvidersByIdRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiDeletePamProvidersByIdRequest

Desired version of the api, if not provided defaults to v1

func (ApiDeletePamProvidersByIdRequest) XKeyfactorRequestedWith

func (r ApiDeletePamProvidersByIdRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiDeletePamProvidersByIdRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiGetCertificatesIdentityAuditByIdRequest

type ApiGetCertificatesIdentityAuditByIdRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

Request for V2 GET /Certificates/IdentityAudit/{id}

func (ApiGetCertificatesIdentityAuditByIdRequest) CollectionId

An optional parameter for the collectin Id the certificate is in. Defaults to no collection

func (ApiGetCertificatesIdentityAuditByIdRequest) Execute

Executes the V2 GET /Certificates/IdentityAudit/{id} request context

func (ApiGetCertificatesIdentityAuditByIdRequest) XKeyfactorApiVersion

Desired version of the api, if not provided defaults to v1

func (ApiGetCertificatesIdentityAuditByIdRequest) XKeyfactorRequestedWith

func (r ApiGetCertificatesIdentityAuditByIdRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiGetCertificatesIdentityAuditByIdRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiGetPamProvidersByIdRequest

type ApiGetPamProvidersByIdRequest struct {
	ApiService *PAMProviderApiService
	// contains filtered or unexported fields
}

Request for V2 GET /PamProviders/{id}

func (ApiGetPamProvidersByIdRequest) Execute

Executes the V2 GET /PamProviders/{id} request context

func (ApiGetPamProvidersByIdRequest) XKeyfactorApiVersion

func (r ApiGetPamProvidersByIdRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiGetPamProvidersByIdRequest

Desired version of the api, if not provided defaults to v1

func (ApiGetPamProvidersByIdRequest) XKeyfactorRequestedWith

func (r ApiGetPamProvidersByIdRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiGetPamProvidersByIdRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiGetPamProvidersRequest

type ApiGetPamProvidersRequest struct {
	ApiService *PAMProviderApiService
	// contains filtered or unexported fields
}

Request for V2 GET /PamProviders

func (ApiGetPamProvidersRequest) Execute

Executes the V2 GET /PamProviders request context

func (ApiGetPamProvidersRequest) PageReturned

func (r ApiGetPamProvidersRequest) PageReturned(pageReturned int32) ApiGetPamProvidersRequest

The current page within the result set to be returned

func (ApiGetPamProvidersRequest) QueryString

func (r ApiGetPamProvidersRequest) QueryString(queryString string) ApiGetPamProvidersRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiGetPamProvidersRequest) ReturnLimit

func (r ApiGetPamProvidersRequest) ReturnLimit(returnLimit int32) ApiGetPamProvidersRequest

Maximum number of records to be returned in a single call

func (ApiGetPamProvidersRequest) SortAscending

Field sort direction [0=ascending, 1=descending]

func (ApiGetPamProvidersRequest) SortField

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiGetPamProvidersRequest) XKeyfactorApiVersion

func (r ApiGetPamProvidersRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiGetPamProvidersRequest

Desired version of the api, if not provided defaults to v1

func (ApiGetPamProvidersRequest) XKeyfactorRequestedWith

func (r ApiGetPamProvidersRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiGetPamProvidersRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiGetPamProvidersTypesByIdRequest

type ApiGetPamProvidersTypesByIdRequest struct {
	ApiService *PAMProviderApiService
	// contains filtered or unexported fields
}

Request for V2 GET /PamProviders/Types/{id}

func (ApiGetPamProvidersTypesByIdRequest) Execute

Executes the V2 GET /PamProviders/Types/{id} request context

func (ApiGetPamProvidersTypesByIdRequest) XKeyfactorApiVersion

func (r ApiGetPamProvidersTypesByIdRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiGetPamProvidersTypesByIdRequest

Desired version of the api, if not provided defaults to v1

func (ApiGetPamProvidersTypesByIdRequest) XKeyfactorRequestedWith

func (r ApiGetPamProvidersTypesByIdRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiGetPamProvidersTypesByIdRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiGetPamProvidersTypesRequest

type ApiGetPamProvidersTypesRequest struct {
	ApiService *PAMProviderApiService
	// contains filtered or unexported fields
}

Request for V2 GET /PamProviders/Types

func (ApiGetPamProvidersTypesRequest) Execute

Executes the V2 GET /PamProviders/Types request context

func (ApiGetPamProvidersTypesRequest) XKeyfactorApiVersion

func (r ApiGetPamProvidersTypesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiGetPamProvidersTypesRequest

Desired version of the api, if not provided defaults to v1

func (ApiGetPamProvidersTypesRequest) XKeyfactorRequestedWith

func (r ApiGetPamProvidersTypesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiGetPamProvidersTypesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiGetSSHUsersByIdRequest

type ApiGetSSHUsersByIdRequest struct {
	ApiService *UserApiService
	// contains filtered or unexported fields
}

Request for V2 GET /SSH/Users/{id}

func (ApiGetSSHUsersByIdRequest) Execute

Executes the V2 GET /SSH/Users/{id} request context

func (ApiGetSSHUsersByIdRequest) XKeyfactorApiVersion

func (r ApiGetSSHUsersByIdRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiGetSSHUsersByIdRequest

Desired version of the api, if not provided defaults to v1

func (ApiGetSSHUsersByIdRequest) XKeyfactorRequestedWith

func (r ApiGetSSHUsersByIdRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiGetSSHUsersByIdRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiGetSSHUsersRequest

type ApiGetSSHUsersRequest struct {
	ApiService *UserApiService
	// contains filtered or unexported fields
}

Request for V2 GET /SSH/Users

func (ApiGetSSHUsersRequest) Execute

Executes the V2 GET /SSH/Users request context

func (ApiGetSSHUsersRequest) PageReturned

func (r ApiGetSSHUsersRequest) PageReturned(pageReturned int32) ApiGetSSHUsersRequest

func (ApiGetSSHUsersRequest) QueryString

func (r ApiGetSSHUsersRequest) QueryString(queryString string) ApiGetSSHUsersRequest

func (ApiGetSSHUsersRequest) ReturnLimit

func (r ApiGetSSHUsersRequest) ReturnLimit(returnLimit int32) ApiGetSSHUsersRequest

func (ApiGetSSHUsersRequest) ShowOwnedAccess

func (r ApiGetSSHUsersRequest) ShowOwnedAccess(showOwnedAccess bool) ApiGetSSHUsersRequest

Whether or not to return only logons that have access to servers the requesting user owns

func (ApiGetSSHUsersRequest) SortAscending

func (ApiGetSSHUsersRequest) SortField

func (r ApiGetSSHUsersRequest) SortField(sortField string) ApiGetSSHUsersRequest

func (ApiGetSSHUsersRequest) XKeyfactorApiVersion

func (r ApiGetSSHUsersRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiGetSSHUsersRequest

Desired version of the api, if not provided defaults to v1

func (ApiGetSSHUsersRequest) XKeyfactorRequestedWith

func (r ApiGetSSHUsersRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiGetSSHUsersRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiGetSecurityRolesByIdRequest

type ApiGetSecurityRolesByIdRequest struct {
	ApiService *SecurityRolesApiService
	// contains filtered or unexported fields
}

Request for V2 GET /Security/Roles/{id}

func (ApiGetSecurityRolesByIdRequest) Execute

Executes the V2 GET /Security/Roles/{id} request context

func (ApiGetSecurityRolesByIdRequest) XKeyfactorApiVersion

func (r ApiGetSecurityRolesByIdRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiGetSecurityRolesByIdRequest

Desired version of the api, if not provided defaults to v1

func (ApiGetSecurityRolesByIdRequest) XKeyfactorRequestedWith

func (r ApiGetSecurityRolesByIdRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiGetSecurityRolesByIdRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiGetSecurityRolesRequest

type ApiGetSecurityRolesRequest struct {
	ApiService *SecurityRolesApiService
	// contains filtered or unexported fields
}

Request for V2 GET /Security/Roles

func (ApiGetSecurityRolesRequest) Execute

Executes the V2 GET /Security/Roles request context

func (ApiGetSecurityRolesRequest) PageReturned

func (r ApiGetSecurityRolesRequest) PageReturned(pageReturned int32) ApiGetSecurityRolesRequest

func (ApiGetSecurityRolesRequest) QueryString

func (ApiGetSecurityRolesRequest) ReturnLimit

func (r ApiGetSecurityRolesRequest) ReturnLimit(returnLimit int32) ApiGetSecurityRolesRequest

func (ApiGetSecurityRolesRequest) SortAscending

func (ApiGetSecurityRolesRequest) SortField

func (ApiGetSecurityRolesRequest) XKeyfactorApiVersion

func (r ApiGetSecurityRolesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiGetSecurityRolesRequest

Desired version of the api, if not provided defaults to v1

func (ApiGetSecurityRolesRequest) XKeyfactorRequestedWith

func (r ApiGetSecurityRolesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiGetSecurityRolesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiUpdatePamProvidersRequest

type ApiUpdatePamProvidersRequest struct {
	ApiService *PAMProviderApiService
	// contains filtered or unexported fields
}

Request for V2 PUT /PamProviders

func (ApiUpdatePamProvidersRequest) Execute

Executes the V2 PUT /PamProviders request context

func (ApiUpdatePamProvidersRequest) PAMProviderUpdateRequest

func (r ApiUpdatePamProvidersRequest) PAMProviderUpdateRequest(pAMProviderUpdateRequest PAMProviderUpdateRequest) ApiUpdatePamProvidersRequest

PAM provider properties to be used

func (ApiUpdatePamProvidersRequest) XKeyfactorApiVersion

func (r ApiUpdatePamProvidersRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiUpdatePamProvidersRequest

Desired version of the api, if not provided defaults to v1

func (ApiUpdatePamProvidersRequest) XKeyfactorRequestedWith

func (r ApiUpdatePamProvidersRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiUpdatePamProvidersRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiUpdateSecurityRolesRequest

type ApiUpdateSecurityRolesRequest struct {
	ApiService *SecurityRolesApiService
	// contains filtered or unexported fields
}

Request for V2 PUT /Security/Roles

func (ApiUpdateSecurityRolesRequest) Execute

Executes the V2 PUT /Security/Roles request context

func (ApiUpdateSecurityRolesRequest) SecuritySecurityRolesSecurityRoleUpdateRequest

func (r ApiUpdateSecurityRolesRequest) SecuritySecurityRolesSecurityRoleUpdateRequest(securitySecurityRolesSecurityRoleUpdateRequest SecuritySecurityRolesSecurityRoleUpdateRequest) ApiUpdateSecurityRolesRequest

Security Role Update Request

func (ApiUpdateSecurityRolesRequest) XKeyfactorApiVersion

func (r ApiUpdateSecurityRolesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiUpdateSecurityRolesRequest

Desired version of the api, if not provided defaults to v1

func (ApiUpdateSecurityRolesRequest) XKeyfactorRequestedWith

func (r ApiUpdateSecurityRolesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiUpdateSecurityRolesRequest

Type of the request [XMLHttpRequest, APIClient]

type AuthConfig

type AuthConfig interface {
	Authenticate() error
	GetHttpClient() (*http.Client, error)
	GetServerConfig() *auth_providers.Server
}

Define an interface that both CommandConfigOauth and CommandAuthConfigBasic implement

type BasicAuth

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

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

type CSSCMSCoreEnumsClaimType

type CSSCMSCoreEnumsClaimType int32

CSSCMSCoreEnumsClaimType the model 'CSSCMSCoreEnumsClaimType'

const (
	CSSCMSCOREENUMSCLAIMTYPE_User          CSSCMSCoreEnumsClaimType = 0
	CSSCMSCOREENUMSCLAIMTYPE_Group         CSSCMSCoreEnumsClaimType = 1
	CSSCMSCOREENUMSCLAIMTYPE_Computer      CSSCMSCoreEnumsClaimType = 2
	CSSCMSCOREENUMSCLAIMTYPE_OAuthOid      CSSCMSCoreEnumsClaimType = 3
	CSSCMSCOREENUMSCLAIMTYPE_OAuthRole     CSSCMSCoreEnumsClaimType = 4
	CSSCMSCOREENUMSCLAIMTYPE_OAuthSubject  CSSCMSCoreEnumsClaimType = 5
	CSSCMSCOREENUMSCLAIMTYPE_OAuthClientId CSSCMSCoreEnumsClaimType = 6
)

List of CSS.CMS.Core.Enums.ClaimType

func NewCSSCMSCoreEnumsClaimTypeFromValue

func NewCSSCMSCoreEnumsClaimTypeFromValue(v int32) (*CSSCMSCoreEnumsClaimType, error)

NewCSSCMSCoreEnumsClaimTypeFromValue returns a pointer to a valid CSSCMSCoreEnumsClaimType for the value passed as argument, or an error if the value passed is not allowed by the enum

func ParseCSSCMSCoreEnumsClaimType

func ParseCSSCMSCoreEnumsClaimType(s string) (*CSSCMSCoreEnumsClaimType, error)

func (CSSCMSCoreEnumsClaimType) IsValid

func (v CSSCMSCoreEnumsClaimType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (*CSSCMSCoreEnumsClaimType) Parse

func (CSSCMSCoreEnumsClaimType) Ptr

Ptr returns reference to CSS.CMS.Core.Enums.ClaimType value

func (*CSSCMSCoreEnumsClaimType) UnmarshalJSON

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

type CSSCMSDataModelEnumsPamParameterDataType

type CSSCMSDataModelEnumsPamParameterDataType int32

CSSCMSDataModelEnumsPamParameterDataType the model 'CSSCMSDataModelEnumsPamParameterDataType'

const (
	CSSCMSDATAMODELENUMSPAMPARAMETERDATATYPE__1 CSSCMSDataModelEnumsPamParameterDataType = 1
	CSSCMSDATAMODELENUMSPAMPARAMETERDATATYPE__2 CSSCMSDataModelEnumsPamParameterDataType = 2
)

List of CSS.CMS.Data.Model.Enums.PamParameterDataType

func NewCSSCMSDataModelEnumsPamParameterDataTypeFromValue

func NewCSSCMSDataModelEnumsPamParameterDataTypeFromValue(v int32) (*CSSCMSDataModelEnumsPamParameterDataType, error)

NewCSSCMSDataModelEnumsPamParameterDataTypeFromValue returns a pointer to a valid CSSCMSDataModelEnumsPamParameterDataType for the value passed as argument, or an error if the value passed is not allowed by the enum

func ParseCSSCMSDataModelEnumsPamParameterDataType

func ParseCSSCMSDataModelEnumsPamParameterDataType(s string) (*CSSCMSDataModelEnumsPamParameterDataType, error)

func (CSSCMSDataModelEnumsPamParameterDataType) IsValid

IsValid return true if the value is valid for the enum, false otherwise

func (*CSSCMSDataModelEnumsPamParameterDataType) Parse

func (CSSCMSDataModelEnumsPamParameterDataType) Ptr

Ptr returns reference to CSS.CMS.Data.Model.Enums.PamParameterDataType value

func (*CSSCMSDataModelEnumsPamParameterDataType) UnmarshalJSON

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

type CSSCMSDataModelModelsPkcs12CertificateResponse

type CSSCMSDataModelModelsPkcs12CertificateResponse struct {
	SerialNumber              NullableString    `json:"SerialNumber,omitempty"`
	IssuerDN                  NullableString    `json:"IssuerDN,omitempty"`
	Thumbprint                NullableString    `json:"Thumbprint,omitempty"`
	KeyfactorId               *int32            `json:"KeyfactorId,omitempty"`
	Pkcs12Blob                NullableString    `json:"Pkcs12Blob,omitempty"`
	Password                  NullableString    `json:"Password,omitempty"`
	WorkflowInstanceId        *string           `json:"WorkflowInstanceId,omitempty"`
	WorkflowReferenceId       *int64            `json:"WorkflowReferenceId,omitempty"`
	StoreIdsInvalidForRenewal []string          `json:"StoreIdsInvalidForRenewal,omitempty"`
	KeyfactorRequestId        *int32            `json:"KeyfactorRequestId,omitempty"`
	RequestDisposition        NullableString    `json:"RequestDisposition,omitempty"`
	DispositionMessage        NullableString    `json:"DispositionMessage,omitempty"`
	EnrollmentContext         map[string]string `json:"EnrollmentContext,omitempty"`
}

CSSCMSDataModelModelsPkcs12CertificateResponse struct for CSSCMSDataModelModelsPkcs12CertificateResponse

func NewCSSCMSDataModelModelsPkcs12CertificateResponse

func NewCSSCMSDataModelModelsPkcs12CertificateResponse() *CSSCMSDataModelModelsPkcs12CertificateResponse

NewCSSCMSDataModelModelsPkcs12CertificateResponse instantiates a new CSSCMSDataModelModelsPkcs12CertificateResponse 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 NewCSSCMSDataModelModelsPkcs12CertificateResponseWithDefaults

func NewCSSCMSDataModelModelsPkcs12CertificateResponseWithDefaults() *CSSCMSDataModelModelsPkcs12CertificateResponse

NewCSSCMSDataModelModelsPkcs12CertificateResponseWithDefaults instantiates a new CSSCMSDataModelModelsPkcs12CertificateResponse 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 (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetDispositionMessage

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetDispositionMessage() string

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

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetDispositionMessageOk

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetDispositionMessageOk() (*string, bool)

GetDispositionMessageOk returns a tuple with the DispositionMessage 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 (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetEnrollmentContext

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetEnrollmentContext() map[string]string

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

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetEnrollmentContextOk

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetEnrollmentContextOk() (*map[string]string, bool)

GetEnrollmentContextOk returns a tuple with the EnrollmentContext 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 (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetIssuerDN

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

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetIssuerDNOk

GetIssuerDNOk returns a tuple with the IssuerDN 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 (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetKeyfactorId

GetKeyfactorId returns the KeyfactorId field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetKeyfactorIdOk

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetKeyfactorIdOk() (*int32, bool)

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

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetKeyfactorRequestId

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetKeyfactorRequestId() int32

GetKeyfactorRequestId returns the KeyfactorRequestId field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetKeyfactorRequestIdOk

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetKeyfactorRequestIdOk() (*int32, bool)

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

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetPassword

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

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetPasswordOk

GetPasswordOk returns a tuple with the Password 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 (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetPkcs12Blob

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

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetPkcs12BlobOk

GetPkcs12BlobOk returns a tuple with the Pkcs12Blob 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 (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetRequestDisposition

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetRequestDisposition() string

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

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetRequestDispositionOk

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetRequestDispositionOk() (*string, bool)

GetRequestDispositionOk returns a tuple with the RequestDisposition 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 (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetSerialNumber

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

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetSerialNumberOk

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetSerialNumberOk() (*string, bool)

GetSerialNumberOk returns a tuple with the SerialNumber 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 (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetStoreIdsInvalidForRenewal

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetStoreIdsInvalidForRenewal() []string

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

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetStoreIdsInvalidForRenewalOk

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetStoreIdsInvalidForRenewalOk() ([]string, bool)

GetStoreIdsInvalidForRenewalOk returns a tuple with the StoreIdsInvalidForRenewal 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 (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetThumbprint

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

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetThumbprintOk

GetThumbprintOk returns a tuple with the Thumbprint 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 (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetWorkflowInstanceId

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetWorkflowInstanceId() string

GetWorkflowInstanceId returns the WorkflowInstanceId field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetWorkflowInstanceIdOk

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetWorkflowInstanceIdOk() (*string, bool)

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

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetWorkflowReferenceId

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetWorkflowReferenceId() int64

GetWorkflowReferenceId returns the WorkflowReferenceId field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) GetWorkflowReferenceIdOk

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) GetWorkflowReferenceIdOk() (*int64, bool)

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

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) HasDispositionMessage

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) HasDispositionMessage() bool

HasDispositionMessage returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) HasEnrollmentContext

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) HasEnrollmentContext() bool

HasEnrollmentContext returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) HasIssuerDN

HasIssuerDN returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) HasKeyfactorId

HasKeyfactorId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) HasKeyfactorRequestId

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) HasKeyfactorRequestId() bool

HasKeyfactorRequestId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) HasPassword

HasPassword returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) HasPkcs12Blob

HasPkcs12Blob returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) HasRequestDisposition

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) HasRequestDisposition() bool

HasRequestDisposition returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) HasSerialNumber

HasSerialNumber returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) HasStoreIdsInvalidForRenewal

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) HasStoreIdsInvalidForRenewal() bool

HasStoreIdsInvalidForRenewal returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) HasThumbprint

HasThumbprint returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) HasWorkflowInstanceId

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) HasWorkflowInstanceId() bool

HasWorkflowInstanceId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) HasWorkflowReferenceId

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) HasWorkflowReferenceId() bool

HasWorkflowReferenceId returns a boolean if a field has been set.

func (CSSCMSDataModelModelsPkcs12CertificateResponse) MarshalJSON

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetDispositionMessage

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) SetDispositionMessage(v string)

SetDispositionMessage gets a reference to the given NullableString and assigns it to the DispositionMessage field.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetDispositionMessageNil

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) SetDispositionMessageNil()

SetDispositionMessageNil sets the value for DispositionMessage to be an explicit nil

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetEnrollmentContext

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) SetEnrollmentContext(v map[string]string)

SetEnrollmentContext gets a reference to the given map[string]string and assigns it to the EnrollmentContext field.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetIssuerDN

SetIssuerDN gets a reference to the given NullableString and assigns it to the IssuerDN field.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetIssuerDNNil

SetIssuerDNNil sets the value for IssuerDN to be an explicit nil

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetKeyfactorId

SetKeyfactorId gets a reference to the given int32 and assigns it to the KeyfactorId field.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetKeyfactorRequestId

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) SetKeyfactorRequestId(v int32)

SetKeyfactorRequestId gets a reference to the given int32 and assigns it to the KeyfactorRequestId field.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetPassword

SetPassword gets a reference to the given NullableString and assigns it to the Password field.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetPasswordNil

SetPasswordNil sets the value for Password to be an explicit nil

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetPkcs12Blob

SetPkcs12Blob gets a reference to the given NullableString and assigns it to the Pkcs12Blob field.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetPkcs12BlobNil

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) SetPkcs12BlobNil()

SetPkcs12BlobNil sets the value for Pkcs12Blob to be an explicit nil

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetRequestDisposition

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) SetRequestDisposition(v string)

SetRequestDisposition gets a reference to the given NullableString and assigns it to the RequestDisposition field.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetRequestDispositionNil

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) SetRequestDispositionNil()

SetRequestDispositionNil sets the value for RequestDisposition to be an explicit nil

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetSerialNumber

SetSerialNumber gets a reference to the given NullableString and assigns it to the SerialNumber field.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetSerialNumberNil

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) SetSerialNumberNil()

SetSerialNumberNil sets the value for SerialNumber to be an explicit nil

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetStoreIdsInvalidForRenewal

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) SetStoreIdsInvalidForRenewal(v []string)

SetStoreIdsInvalidForRenewal gets a reference to the given []string and assigns it to the StoreIdsInvalidForRenewal field.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetThumbprint

SetThumbprint gets a reference to the given NullableString and assigns it to the Thumbprint field.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetThumbprintNil

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) SetThumbprintNil()

SetThumbprintNil sets the value for Thumbprint to be an explicit nil

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetWorkflowInstanceId

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) SetWorkflowInstanceId(v string)

SetWorkflowInstanceId gets a reference to the given string and assigns it to the WorkflowInstanceId field.

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) SetWorkflowReferenceId

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) SetWorkflowReferenceId(v int64)

SetWorkflowReferenceId gets a reference to the given int64 and assigns it to the WorkflowReferenceId field.

func (CSSCMSDataModelModelsPkcs12CertificateResponse) ToMap

func (o CSSCMSDataModelModelsPkcs12CertificateResponse) ToMap() (map[string]interface{}, error)

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) UnsetDispositionMessage

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) UnsetDispositionMessage()

UnsetDispositionMessage ensures that no value is present for DispositionMessage, not even an explicit nil

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) UnsetIssuerDN

UnsetIssuerDN ensures that no value is present for IssuerDN, not even an explicit nil

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) UnsetPassword

UnsetPassword ensures that no value is present for Password, not even an explicit nil

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) UnsetPkcs12Blob

UnsetPkcs12Blob ensures that no value is present for Pkcs12Blob, not even an explicit nil

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) UnsetRequestDisposition

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) UnsetRequestDisposition()

UnsetRequestDisposition ensures that no value is present for RequestDisposition, not even an explicit nil

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) UnsetSerialNumber

func (o *CSSCMSDataModelModelsPkcs12CertificateResponse) UnsetSerialNumber()

UnsetSerialNumber ensures that no value is present for SerialNumber, not even an explicit nil

func (*CSSCMSDataModelModelsPkcs12CertificateResponse) UnsetThumbprint

UnsetThumbprint ensures that no value is present for Thumbprint, not even an explicit nil

type CSSCMSDataModelModelsProviderType

type CSSCMSDataModelModelsProviderType struct {
	Id                 *string                                  `json:"Id,omitempty"`
	Name               NullableString                           `json:"Name,omitempty"`
	ProviderTypeParams []CSSCMSDataModelModelsProviderTypeParam `json:"ProviderTypeParams,omitempty"`
}

CSSCMSDataModelModelsProviderType struct for CSSCMSDataModelModelsProviderType

func NewCSSCMSDataModelModelsProviderType

func NewCSSCMSDataModelModelsProviderType() *CSSCMSDataModelModelsProviderType

NewCSSCMSDataModelModelsProviderType instantiates a new CSSCMSDataModelModelsProviderType 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 NewCSSCMSDataModelModelsProviderTypeWithDefaults

func NewCSSCMSDataModelModelsProviderTypeWithDefaults() *CSSCMSDataModelModelsProviderType

NewCSSCMSDataModelModelsProviderTypeWithDefaults instantiates a new CSSCMSDataModelModelsProviderType 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 (*CSSCMSDataModelModelsProviderType) GetId

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

func (*CSSCMSDataModelModelsProviderType) GetIdOk

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 (*CSSCMSDataModelModelsProviderType) GetName

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

func (*CSSCMSDataModelModelsProviderType) GetNameOk

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

GetNameOk returns a tuple with the Name 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 (*CSSCMSDataModelModelsProviderType) GetProviderTypeParams

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

func (*CSSCMSDataModelModelsProviderType) GetProviderTypeParamsOk

GetProviderTypeParamsOk returns a tuple with the ProviderTypeParams 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 (*CSSCMSDataModelModelsProviderType) HasId

HasId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProviderType) HasName

HasName returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProviderType) HasProviderTypeParams

func (o *CSSCMSDataModelModelsProviderType) HasProviderTypeParams() bool

HasProviderTypeParams returns a boolean if a field has been set.

func (CSSCMSDataModelModelsProviderType) MarshalJSON

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

func (*CSSCMSDataModelModelsProviderType) SetId

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

func (*CSSCMSDataModelModelsProviderType) SetName

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*CSSCMSDataModelModelsProviderType) SetNameNil

func (o *CSSCMSDataModelModelsProviderType) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*CSSCMSDataModelModelsProviderType) SetProviderTypeParams

SetProviderTypeParams gets a reference to the given []CSSCMSDataModelModelsProviderTypeParam and assigns it to the ProviderTypeParams field.

func (CSSCMSDataModelModelsProviderType) ToMap

func (o CSSCMSDataModelModelsProviderType) ToMap() (map[string]interface{}, error)

func (*CSSCMSDataModelModelsProviderType) UnsetName

func (o *CSSCMSDataModelModelsProviderType) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type CSSCMSDataModelModelsProviderTypeParam

type CSSCMSDataModelModelsProviderTypeParam struct {
	Id            *int32                                    `json:"Id,omitempty"`
	Name          NullableString                            `json:"Name,omitempty"`
	DisplayName   NullableString                            `json:"DisplayName,omitempty"`
	DataType      *CSSCMSDataModelEnumsPamParameterDataType `json:"DataType,omitempty"`
	InstanceLevel *bool                                     `json:"InstanceLevel,omitempty"`
	ProviderType  *CSSCMSDataModelModelsProviderType        `json:"ProviderType,omitempty"`
}

CSSCMSDataModelModelsProviderTypeParam struct for CSSCMSDataModelModelsProviderTypeParam

func NewCSSCMSDataModelModelsProviderTypeParam

func NewCSSCMSDataModelModelsProviderTypeParam() *CSSCMSDataModelModelsProviderTypeParam

NewCSSCMSDataModelModelsProviderTypeParam instantiates a new CSSCMSDataModelModelsProviderTypeParam 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 NewCSSCMSDataModelModelsProviderTypeParamWithDefaults

func NewCSSCMSDataModelModelsProviderTypeParamWithDefaults() *CSSCMSDataModelModelsProviderTypeParam

NewCSSCMSDataModelModelsProviderTypeParamWithDefaults instantiates a new CSSCMSDataModelModelsProviderTypeParam 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 (*CSSCMSDataModelModelsProviderTypeParam) GetDataType

GetDataType returns the DataType field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsProviderTypeParam) GetDataTypeOk

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

func (*CSSCMSDataModelModelsProviderTypeParam) GetDisplayName

func (o *CSSCMSDataModelModelsProviderTypeParam) GetDisplayName() string

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

func (*CSSCMSDataModelModelsProviderTypeParam) GetDisplayNameOk

func (o *CSSCMSDataModelModelsProviderTypeParam) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CSSCMSDataModelModelsProviderTypeParam) GetId

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

func (*CSSCMSDataModelModelsProviderTypeParam) GetIdOk

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 (*CSSCMSDataModelModelsProviderTypeParam) GetInstanceLevel

func (o *CSSCMSDataModelModelsProviderTypeParam) GetInstanceLevel() bool

GetInstanceLevel returns the InstanceLevel field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsProviderTypeParam) GetInstanceLevelOk

func (o *CSSCMSDataModelModelsProviderTypeParam) GetInstanceLevelOk() (*bool, bool)

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

func (*CSSCMSDataModelModelsProviderTypeParam) GetName

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

func (*CSSCMSDataModelModelsProviderTypeParam) GetNameOk

GetNameOk returns a tuple with the Name 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 (*CSSCMSDataModelModelsProviderTypeParam) GetProviderType

GetProviderType returns the ProviderType field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsProviderTypeParam) GetProviderTypeOk

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

func (*CSSCMSDataModelModelsProviderTypeParam) HasDataType

HasDataType returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProviderTypeParam) HasDisplayName

func (o *CSSCMSDataModelModelsProviderTypeParam) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProviderTypeParam) HasId

HasId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProviderTypeParam) HasInstanceLevel

func (o *CSSCMSDataModelModelsProviderTypeParam) HasInstanceLevel() bool

HasInstanceLevel returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProviderTypeParam) HasName

HasName returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProviderTypeParam) HasProviderType

func (o *CSSCMSDataModelModelsProviderTypeParam) HasProviderType() bool

HasProviderType returns a boolean if a field has been set.

func (CSSCMSDataModelModelsProviderTypeParam) MarshalJSON

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

func (*CSSCMSDataModelModelsProviderTypeParam) SetDataType

SetDataType gets a reference to the given CSSCMSDataModelEnumsPamParameterDataType and assigns it to the DataType field.

func (*CSSCMSDataModelModelsProviderTypeParam) SetDisplayName

func (o *CSSCMSDataModelModelsProviderTypeParam) SetDisplayName(v string)

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

func (*CSSCMSDataModelModelsProviderTypeParam) SetDisplayNameNil

func (o *CSSCMSDataModelModelsProviderTypeParam) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*CSSCMSDataModelModelsProviderTypeParam) SetId

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

func (*CSSCMSDataModelModelsProviderTypeParam) SetInstanceLevel

func (o *CSSCMSDataModelModelsProviderTypeParam) SetInstanceLevel(v bool)

SetInstanceLevel gets a reference to the given bool and assigns it to the InstanceLevel field.

func (*CSSCMSDataModelModelsProviderTypeParam) SetName

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*CSSCMSDataModelModelsProviderTypeParam) SetNameNil

SetNameNil sets the value for Name to be an explicit nil

func (*CSSCMSDataModelModelsProviderTypeParam) SetProviderType

SetProviderType gets a reference to the given CSSCMSDataModelModelsProviderType and assigns it to the ProviderType field.

func (CSSCMSDataModelModelsProviderTypeParam) ToMap

func (o CSSCMSDataModelModelsProviderTypeParam) ToMap() (map[string]interface{}, error)

func (*CSSCMSDataModelModelsProviderTypeParam) UnsetDisplayName

func (o *CSSCMSDataModelModelsProviderTypeParam) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

func (*CSSCMSDataModelModelsProviderTypeParam) UnsetName

UnsetName ensures that no value is present for Name, not even an explicit nil

type CSSCMSDataModelModelsSSHKeysKeyResponse

type CSSCMSDataModelModelsSSHKeysKeyResponse struct {
	Id           *int32         `json:"Id,omitempty"`
	Fingerprint  NullableString `json:"Fingerprint,omitempty"`
	PublicKey    NullableString `json:"PublicKey,omitempty"`
	PrivateKey   NullableString `json:"PrivateKey,omitempty"`
	KeyType      NullableString `json:"KeyType,omitempty"`
	KeyLength    *int32         `json:"KeyLength,omitempty"`
	CreationDate NullableTime   `json:"CreationDate,omitempty"`
	StaleDate    NullableTime   `json:"StaleDate,omitempty"`
	Email        NullableString `json:"Email,omitempty"`
	Comments     []string       `json:"Comments,omitempty"`
	LogonCount   *int32         `json:"LogonCount,omitempty"`
}

CSSCMSDataModelModelsSSHKeysKeyResponse struct for CSSCMSDataModelModelsSSHKeysKeyResponse

func NewCSSCMSDataModelModelsSSHKeysKeyResponse

func NewCSSCMSDataModelModelsSSHKeysKeyResponse() *CSSCMSDataModelModelsSSHKeysKeyResponse

NewCSSCMSDataModelModelsSSHKeysKeyResponse instantiates a new CSSCMSDataModelModelsSSHKeysKeyResponse 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 NewCSSCMSDataModelModelsSSHKeysKeyResponseWithDefaults

func NewCSSCMSDataModelModelsSSHKeysKeyResponseWithDefaults() *CSSCMSDataModelModelsSSHKeysKeyResponse

NewCSSCMSDataModelModelsSSHKeysKeyResponseWithDefaults instantiates a new CSSCMSDataModelModelsSSHKeysKeyResponse 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 (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetComments

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

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetCommentsOk

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) GetCommentsOk() ([]string, bool)

GetCommentsOk returns a tuple with the Comments 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 (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetCreationDate

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) GetCreationDate() time.Time

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

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetCreationDateOk

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) GetCreationDateOk() (*time.Time, bool)

GetCreationDateOk returns a tuple with the CreationDate 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 (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetEmail

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

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetEmailOk

GetEmailOk returns a tuple with the Email 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 (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetFingerprint

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) GetFingerprint() string

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

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetFingerprintOk

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) GetFingerprintOk() (*string, bool)

GetFingerprintOk returns a tuple with the Fingerprint 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 (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetId

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

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetIdOk

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 (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetKeyLength

GetKeyLength returns the KeyLength field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetKeyLengthOk

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) GetKeyLengthOk() (*int32, bool)

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

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetKeyType

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

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetKeyTypeOk

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) GetKeyTypeOk() (*string, bool)

GetKeyTypeOk returns a tuple with the KeyType 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 (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetLogonCount

GetLogonCount returns the LogonCount field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetLogonCountOk

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) GetLogonCountOk() (*int32, bool)

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

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetPrivateKey

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

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetPrivateKeyOk

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) GetPrivateKeyOk() (*string, bool)

GetPrivateKeyOk returns a tuple with the PrivateKey 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 (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetPublicKey

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

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetPublicKeyOk

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) GetPublicKeyOk() (*string, bool)

GetPublicKeyOk returns a tuple with the PublicKey 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 (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetStaleDate

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

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) GetStaleDateOk

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) GetStaleDateOk() (*time.Time, bool)

GetStaleDateOk returns a tuple with the StaleDate 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 (*CSSCMSDataModelModelsSSHKeysKeyResponse) HasComments

HasComments returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) HasCreationDate

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) HasCreationDate() bool

HasCreationDate returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) HasEmail

HasEmail returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) HasFingerprint

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) HasFingerprint() bool

HasFingerprint returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) HasId

HasId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) HasKeyLength

HasKeyLength returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) HasKeyType

HasKeyType returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) HasLogonCount

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) HasLogonCount() bool

HasLogonCount returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) HasPrivateKey

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) HasPrivateKey() bool

HasPrivateKey returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) HasPublicKey

HasPublicKey returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) HasStaleDate

HasStaleDate returns a boolean if a field has been set.

func (CSSCMSDataModelModelsSSHKeysKeyResponse) MarshalJSON

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

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetComments

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) SetComments(v []string)

SetComments gets a reference to the given []string and assigns it to the Comments field.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetCreationDate

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) SetCreationDate(v time.Time)

SetCreationDate gets a reference to the given NullableTime and assigns it to the CreationDate field.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetCreationDateNil

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) SetCreationDateNil()

SetCreationDateNil sets the value for CreationDate to be an explicit nil

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetEmail

SetEmail gets a reference to the given NullableString and assigns it to the Email field.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetEmailNil

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetFingerprint

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) SetFingerprint(v string)

SetFingerprint gets a reference to the given NullableString and assigns it to the Fingerprint field.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetFingerprintNil

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) SetFingerprintNil()

SetFingerprintNil sets the value for Fingerprint to be an explicit nil

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetId

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

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetKeyLength

SetKeyLength gets a reference to the given int32 and assigns it to the KeyLength field.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetKeyType

SetKeyType gets a reference to the given NullableString and assigns it to the KeyType field.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetKeyTypeNil

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) SetKeyTypeNil()

SetKeyTypeNil sets the value for KeyType to be an explicit nil

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetLogonCount

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) SetLogonCount(v int32)

SetLogonCount gets a reference to the given int32 and assigns it to the LogonCount field.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetPrivateKey

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) SetPrivateKey(v string)

SetPrivateKey gets a reference to the given NullableString and assigns it to the PrivateKey field.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetPrivateKeyNil

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) SetPrivateKeyNil()

SetPrivateKeyNil sets the value for PrivateKey to be an explicit nil

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetPublicKey

SetPublicKey gets a reference to the given NullableString and assigns it to the PublicKey field.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetPublicKeyNil

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) SetPublicKeyNil()

SetPublicKeyNil sets the value for PublicKey to be an explicit nil

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetStaleDate

SetStaleDate gets a reference to the given NullableTime and assigns it to the StaleDate field.

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) SetStaleDateNil

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) SetStaleDateNil()

SetStaleDateNil sets the value for StaleDate to be an explicit nil

func (CSSCMSDataModelModelsSSHKeysKeyResponse) ToMap

func (o CSSCMSDataModelModelsSSHKeysKeyResponse) ToMap() (map[string]interface{}, error)

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) UnsetCreationDate

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) UnsetCreationDate()

UnsetCreationDate ensures that no value is present for CreationDate, not even an explicit nil

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) UnsetEmail

UnsetEmail ensures that no value is present for Email, not even an explicit nil

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) UnsetFingerprint

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) UnsetFingerprint()

UnsetFingerprint ensures that no value is present for Fingerprint, not even an explicit nil

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) UnsetKeyType

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) UnsetKeyType()

UnsetKeyType ensures that no value is present for KeyType, not even an explicit nil

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) UnsetPrivateKey

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) UnsetPrivateKey()

UnsetPrivateKey ensures that no value is present for PrivateKey, not even an explicit nil

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) UnsetPublicKey

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) UnsetPublicKey()

UnsetPublicKey ensures that no value is present for PublicKey, not even an explicit nil

func (*CSSCMSDataModelModelsSSHKeysKeyResponse) UnsetStaleDate

func (o *CSSCMSDataModelModelsSSHKeysKeyResponse) UnsetStaleDate()

UnsetStaleDate ensures that no value is present for StaleDate, not even an explicit nil

type CSSCMSDataModelModelsSSHLogonsLogonResponse

type CSSCMSDataModelModelsSSHLogonsLogonResponse struct {
	Id        *int32                                         `json:"Id,omitempty"`
	Username  NullableString                                 `json:"Username,omitempty"`
	LastLogon NullableTime                                   `json:"LastLogon,omitempty"`
	Server    *CSSCMSDataModelModelsSSHServersServerResponse `json:"Server,omitempty"`
	KeyCount  *int32                                         `json:"KeyCount,omitempty"`
	Access    []CSSCMSDataModelModelsSSHUsersSshUserResponse `json:"Access,omitempty"`
}

CSSCMSDataModelModelsSSHLogonsLogonResponse struct for CSSCMSDataModelModelsSSHLogonsLogonResponse

func NewCSSCMSDataModelModelsSSHLogonsLogonResponse

func NewCSSCMSDataModelModelsSSHLogonsLogonResponse() *CSSCMSDataModelModelsSSHLogonsLogonResponse

NewCSSCMSDataModelModelsSSHLogonsLogonResponse instantiates a new CSSCMSDataModelModelsSSHLogonsLogonResponse 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 NewCSSCMSDataModelModelsSSHLogonsLogonResponseWithDefaults

func NewCSSCMSDataModelModelsSSHLogonsLogonResponseWithDefaults() *CSSCMSDataModelModelsSSHLogonsLogonResponse

NewCSSCMSDataModelModelsSSHLogonsLogonResponseWithDefaults instantiates a new CSSCMSDataModelModelsSSHLogonsLogonResponse 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 (*CSSCMSDataModelModelsSSHLogonsLogonResponse) GetAccess

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

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) GetAccessOk

GetAccessOk returns a tuple with the Access 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 (*CSSCMSDataModelModelsSSHLogonsLogonResponse) GetId

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

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) GetIdOk

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 (*CSSCMSDataModelModelsSSHLogonsLogonResponse) GetKeyCount

GetKeyCount returns the KeyCount field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) GetKeyCountOk

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

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) GetLastLogon

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

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) GetLastLogonOk

GetLastLogonOk returns a tuple with the LastLogon 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 (*CSSCMSDataModelModelsSSHLogonsLogonResponse) GetServer

GetServer returns the Server field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) GetServerOk

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

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) GetUsername

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

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) GetUsernameOk

GetUsernameOk returns a tuple with the Username 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 (*CSSCMSDataModelModelsSSHLogonsLogonResponse) HasAccess

HasAccess returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) HasId

HasId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) HasKeyCount

HasKeyCount returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) HasLastLogon

HasLastLogon returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) HasServer

HasServer returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) HasUsername

HasUsername returns a boolean if a field has been set.

func (CSSCMSDataModelModelsSSHLogonsLogonResponse) MarshalJSON

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) SetAccess

SetAccess gets a reference to the given []CSSCMSDataModelModelsSSHUsersSshUserResponse and assigns it to the Access field.

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) SetId

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

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) SetKeyCount

SetKeyCount gets a reference to the given int32 and assigns it to the KeyCount field.

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) SetLastLogon

SetLastLogon gets a reference to the given NullableTime and assigns it to the LastLogon field.

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) SetLastLogonNil

func (o *CSSCMSDataModelModelsSSHLogonsLogonResponse) SetLastLogonNil()

SetLastLogonNil sets the value for LastLogon to be an explicit nil

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) SetServer

SetServer gets a reference to the given CSSCMSDataModelModelsSSHServersServerResponse and assigns it to the Server field.

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) SetUsername

SetUsername gets a reference to the given NullableString and assigns it to the Username field.

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) SetUsernameNil

func (o *CSSCMSDataModelModelsSSHLogonsLogonResponse) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (CSSCMSDataModelModelsSSHLogonsLogonResponse) ToMap

func (o CSSCMSDataModelModelsSSHLogonsLogonResponse) ToMap() (map[string]interface{}, error)

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) UnsetLastLogon

func (o *CSSCMSDataModelModelsSSHLogonsLogonResponse) UnsetLastLogon()

UnsetLastLogon ensures that no value is present for LastLogon, not even an explicit nil

func (*CSSCMSDataModelModelsSSHLogonsLogonResponse) UnsetUsername

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type CSSCMSDataModelModelsSSHServersServerResponse

type CSSCMSDataModelModelsSSHServersServerResponse struct {
	Id              NullableInt32                                 `json:"Id,omitempty"`
	AgentId         NullableString                                `json:"AgentId,omitempty"`
	Hostname        NullableString                                `json:"Hostname,omitempty"`
	ServerGroupId   NullableString                                `json:"ServerGroupId,omitempty"`
	SyncSchedule    *KeyfactorCommonSchedulingKeyfactorSchedule   `json:"SyncSchedule,omitempty"`
	UnderManagement *bool                                         `json:"UnderManagement,omitempty"`
	Owner           *CSSCMSDataModelModelsSSHUsersSshUserResponse `json:"Owner,omitempty"`
	GroupName       NullableString                                `json:"GroupName,omitempty"`
	Orchestrator    NullableString                                `json:"Orchestrator,omitempty"`
	Port            NullableInt32                                 `json:"Port,omitempty"`
}

CSSCMSDataModelModelsSSHServersServerResponse struct for CSSCMSDataModelModelsSSHServersServerResponse

func NewCSSCMSDataModelModelsSSHServersServerResponse

func NewCSSCMSDataModelModelsSSHServersServerResponse() *CSSCMSDataModelModelsSSHServersServerResponse

NewCSSCMSDataModelModelsSSHServersServerResponse instantiates a new CSSCMSDataModelModelsSSHServersServerResponse 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 NewCSSCMSDataModelModelsSSHServersServerResponseWithDefaults

func NewCSSCMSDataModelModelsSSHServersServerResponseWithDefaults() *CSSCMSDataModelModelsSSHServersServerResponse

NewCSSCMSDataModelModelsSSHServersServerResponseWithDefaults instantiates a new CSSCMSDataModelModelsSSHServersServerResponse 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 (*CSSCMSDataModelModelsSSHServersServerResponse) GetAgentId

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

func (*CSSCMSDataModelModelsSSHServersServerResponse) GetAgentIdOk

GetAgentIdOk returns a tuple with the AgentId 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 (*CSSCMSDataModelModelsSSHServersServerResponse) GetGroupName

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

func (*CSSCMSDataModelModelsSSHServersServerResponse) GetGroupNameOk

GetGroupNameOk returns a tuple with the GroupName 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 (*CSSCMSDataModelModelsSSHServersServerResponse) GetHostname

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

func (*CSSCMSDataModelModelsSSHServersServerResponse) GetHostnameOk

GetHostnameOk returns a tuple with the Hostname 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 (*CSSCMSDataModelModelsSSHServersServerResponse) GetId

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

func (*CSSCMSDataModelModelsSSHServersServerResponse) GetIdOk

GetIdOk returns a tuple with the Id 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 (*CSSCMSDataModelModelsSSHServersServerResponse) GetOrchestrator

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

func (*CSSCMSDataModelModelsSSHServersServerResponse) GetOrchestratorOk

func (o *CSSCMSDataModelModelsSSHServersServerResponse) GetOrchestratorOk() (*string, bool)

GetOrchestratorOk returns a tuple with the Orchestrator 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 (*CSSCMSDataModelModelsSSHServersServerResponse) GetOwner

GetOwner returns the Owner field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsSSHServersServerResponse) GetOwnerOk

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

func (*CSSCMSDataModelModelsSSHServersServerResponse) GetPort

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

func (*CSSCMSDataModelModelsSSHServersServerResponse) GetPortOk

GetPortOk returns a tuple with the Port 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 (*CSSCMSDataModelModelsSSHServersServerResponse) GetServerGroupId

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

func (*CSSCMSDataModelModelsSSHServersServerResponse) GetServerGroupIdOk

func (o *CSSCMSDataModelModelsSSHServersServerResponse) GetServerGroupIdOk() (*string, bool)

GetServerGroupIdOk returns a tuple with the ServerGroupId 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 (*CSSCMSDataModelModelsSSHServersServerResponse) GetSyncSchedule

GetSyncSchedule returns the SyncSchedule field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsSSHServersServerResponse) GetSyncScheduleOk

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

func (*CSSCMSDataModelModelsSSHServersServerResponse) GetUnderManagement

func (o *CSSCMSDataModelModelsSSHServersServerResponse) GetUnderManagement() bool

GetUnderManagement returns the UnderManagement field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsSSHServersServerResponse) GetUnderManagementOk

func (o *CSSCMSDataModelModelsSSHServersServerResponse) GetUnderManagementOk() (*bool, bool)

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

func (*CSSCMSDataModelModelsSSHServersServerResponse) HasAgentId

HasAgentId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHServersServerResponse) HasGroupName

HasGroupName returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHServersServerResponse) HasHostname

HasHostname returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHServersServerResponse) HasId

HasId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHServersServerResponse) HasOrchestrator

HasOrchestrator returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHServersServerResponse) HasOwner

HasOwner returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHServersServerResponse) HasPort

HasPort returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHServersServerResponse) HasServerGroupId

HasServerGroupId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHServersServerResponse) HasSyncSchedule

HasSyncSchedule returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHServersServerResponse) HasUnderManagement

func (o *CSSCMSDataModelModelsSSHServersServerResponse) HasUnderManagement() bool

HasUnderManagement returns a boolean if a field has been set.

func (CSSCMSDataModelModelsSSHServersServerResponse) MarshalJSON

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetAgentId

SetAgentId gets a reference to the given NullableString and assigns it to the AgentId field.

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetAgentIdNil

SetAgentIdNil sets the value for AgentId to be an explicit nil

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetGroupName

SetGroupName gets a reference to the given NullableString and assigns it to the GroupName field.

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetGroupNameNil

func (o *CSSCMSDataModelModelsSSHServersServerResponse) SetGroupNameNil()

SetGroupNameNil sets the value for GroupName to be an explicit nil

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetHostname

SetHostname gets a reference to the given NullableString and assigns it to the Hostname field.

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetHostnameNil

SetHostnameNil sets the value for Hostname to be an explicit nil

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetId

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

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetIdNil

SetIdNil sets the value for Id to be an explicit nil

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetOrchestrator

SetOrchestrator gets a reference to the given NullableString and assigns it to the Orchestrator field.

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetOrchestratorNil

func (o *CSSCMSDataModelModelsSSHServersServerResponse) SetOrchestratorNil()

SetOrchestratorNil sets the value for Orchestrator to be an explicit nil

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetOwner

SetOwner gets a reference to the given CSSCMSDataModelModelsSSHUsersSshUserResponse and assigns it to the Owner field.

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetPort

SetPort gets a reference to the given NullableInt32 and assigns it to the Port field.

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetPortNil

SetPortNil sets the value for Port to be an explicit nil

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetServerGroupId

SetServerGroupId gets a reference to the given NullableString and assigns it to the ServerGroupId field.

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetServerGroupIdNil

func (o *CSSCMSDataModelModelsSSHServersServerResponse) SetServerGroupIdNil()

SetServerGroupIdNil sets the value for ServerGroupId to be an explicit nil

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetSyncSchedule

SetSyncSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the SyncSchedule field.

func (*CSSCMSDataModelModelsSSHServersServerResponse) SetUnderManagement

func (o *CSSCMSDataModelModelsSSHServersServerResponse) SetUnderManagement(v bool)

SetUnderManagement gets a reference to the given bool and assigns it to the UnderManagement field.

func (CSSCMSDataModelModelsSSHServersServerResponse) ToMap

func (o CSSCMSDataModelModelsSSHServersServerResponse) ToMap() (map[string]interface{}, error)

func (*CSSCMSDataModelModelsSSHServersServerResponse) UnsetAgentId

UnsetAgentId ensures that no value is present for AgentId, not even an explicit nil

func (*CSSCMSDataModelModelsSSHServersServerResponse) UnsetGroupName

UnsetGroupName ensures that no value is present for GroupName, not even an explicit nil

func (*CSSCMSDataModelModelsSSHServersServerResponse) UnsetHostname

UnsetHostname ensures that no value is present for Hostname, not even an explicit nil

func (*CSSCMSDataModelModelsSSHServersServerResponse) UnsetId

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*CSSCMSDataModelModelsSSHServersServerResponse) UnsetOrchestrator

func (o *CSSCMSDataModelModelsSSHServersServerResponse) UnsetOrchestrator()

UnsetOrchestrator ensures that no value is present for Orchestrator, not even an explicit nil

func (*CSSCMSDataModelModelsSSHServersServerResponse) UnsetPort

UnsetPort ensures that no value is present for Port, not even an explicit nil

func (*CSSCMSDataModelModelsSSHServersServerResponse) UnsetServerGroupId

func (o *CSSCMSDataModelModelsSSHServersServerResponse) UnsetServerGroupId()

UnsetServerGroupId ensures that no value is present for ServerGroupId, not even an explicit nil

type CSSCMSDataModelModelsSSHUsersSshUserAccessResponse

type CSSCMSDataModelModelsSSHUsersSshUserAccessResponse struct {
	Id       *int32                                        `json:"Id,omitempty"`
	Key      *CSSCMSDataModelModelsSSHKeysKeyResponse      `json:"Key,omitempty"`
	Username NullableString                                `json:"Username,omitempty"`
	Access   []CSSCMSDataModelModelsSSHLogonsLogonResponse `json:"Access,omitempty"`
	IsGroup  *bool                                         `json:"IsGroup,omitempty"`
}

CSSCMSDataModelModelsSSHUsersSshUserAccessResponse struct for CSSCMSDataModelModelsSSHUsersSshUserAccessResponse

func NewCSSCMSDataModelModelsSSHUsersSshUserAccessResponse

func NewCSSCMSDataModelModelsSSHUsersSshUserAccessResponse() *CSSCMSDataModelModelsSSHUsersSshUserAccessResponse

NewCSSCMSDataModelModelsSSHUsersSshUserAccessResponse instantiates a new CSSCMSDataModelModelsSSHUsersSshUserAccessResponse 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 NewCSSCMSDataModelModelsSSHUsersSshUserAccessResponseWithDefaults

func NewCSSCMSDataModelModelsSSHUsersSshUserAccessResponseWithDefaults() *CSSCMSDataModelModelsSSHUsersSshUserAccessResponse

NewCSSCMSDataModelModelsSSHUsersSshUserAccessResponseWithDefaults instantiates a new CSSCMSDataModelModelsSSHUsersSshUserAccessResponse 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 (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) GetAccess

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

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) GetAccessOk

GetAccessOk returns a tuple with the Access 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 (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) GetId

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

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) GetIdOk

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 (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) GetIsGroup

GetIsGroup returns the IsGroup field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) GetIsGroupOk

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

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) GetKey

GetKey returns the Key field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) GetKeyOk

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

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) GetUsername

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

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) GetUsernameOk

GetUsernameOk returns a tuple with the Username 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 (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) HasAccess

HasAccess returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) HasId

HasId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) HasIsGroup

HasIsGroup returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) HasKey

HasKey returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) HasUsername

HasUsername returns a boolean if a field has been set.

func (CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) MarshalJSON

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) SetAccess

SetAccess gets a reference to the given []CSSCMSDataModelModelsSSHLogonsLogonResponse and assigns it to the Access field.

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) SetId

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

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) SetIsGroup

SetIsGroup gets a reference to the given bool and assigns it to the IsGroup field.

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) SetKey

SetKey gets a reference to the given CSSCMSDataModelModelsSSHKeysKeyResponse and assigns it to the Key field.

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) SetUsername

SetUsername gets a reference to the given NullableString and assigns it to the Username field.

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) SetUsernameNil

SetUsernameNil sets the value for Username to be an explicit nil

func (CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) ToMap

func (*CSSCMSDataModelModelsSSHUsersSshUserAccessResponse) UnsetUsername

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type CSSCMSDataModelModelsSSHUsersSshUserResponse

type CSSCMSDataModelModelsSSHUsersSshUserResponse struct {
	Id       *int32                                   `json:"Id,omitempty"`
	Key      *CSSCMSDataModelModelsSSHKeysKeyResponse `json:"Key,omitempty"`
	Username NullableString                           `json:"Username,omitempty"`
	LogonIds []int32                                  `json:"LogonIds,omitempty"`
}

CSSCMSDataModelModelsSSHUsersSshUserResponse struct for CSSCMSDataModelModelsSSHUsersSshUserResponse

func NewCSSCMSDataModelModelsSSHUsersSshUserResponse

func NewCSSCMSDataModelModelsSSHUsersSshUserResponse() *CSSCMSDataModelModelsSSHUsersSshUserResponse

NewCSSCMSDataModelModelsSSHUsersSshUserResponse instantiates a new CSSCMSDataModelModelsSSHUsersSshUserResponse 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 NewCSSCMSDataModelModelsSSHUsersSshUserResponseWithDefaults

func NewCSSCMSDataModelModelsSSHUsersSshUserResponseWithDefaults() *CSSCMSDataModelModelsSSHUsersSshUserResponse

NewCSSCMSDataModelModelsSSHUsersSshUserResponseWithDefaults instantiates a new CSSCMSDataModelModelsSSHUsersSshUserResponse 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 (*CSSCMSDataModelModelsSSHUsersSshUserResponse) GetId

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

func (*CSSCMSDataModelModelsSSHUsersSshUserResponse) GetIdOk

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 (*CSSCMSDataModelModelsSSHUsersSshUserResponse) GetKey

GetKey returns the Key field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsSSHUsersSshUserResponse) GetKeyOk

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

func (*CSSCMSDataModelModelsSSHUsersSshUserResponse) GetLogonIds

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

func (*CSSCMSDataModelModelsSSHUsersSshUserResponse) GetLogonIdsOk

GetLogonIdsOk returns a tuple with the LogonIds 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 (*CSSCMSDataModelModelsSSHUsersSshUserResponse) GetUsername

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

func (*CSSCMSDataModelModelsSSHUsersSshUserResponse) GetUsernameOk

GetUsernameOk returns a tuple with the Username 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 (*CSSCMSDataModelModelsSSHUsersSshUserResponse) HasId

HasId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHUsersSshUserResponse) HasKey

HasKey returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHUsersSshUserResponse) HasLogonIds

HasLogonIds returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsSSHUsersSshUserResponse) HasUsername

HasUsername returns a boolean if a field has been set.

func (CSSCMSDataModelModelsSSHUsersSshUserResponse) MarshalJSON

func (*CSSCMSDataModelModelsSSHUsersSshUserResponse) SetId

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

func (*CSSCMSDataModelModelsSSHUsersSshUserResponse) SetKey

SetKey gets a reference to the given CSSCMSDataModelModelsSSHKeysKeyResponse and assigns it to the Key field.

func (*CSSCMSDataModelModelsSSHUsersSshUserResponse) SetLogonIds

SetLogonIds gets a reference to the given []int32 and assigns it to the LogonIds field.

func (*CSSCMSDataModelModelsSSHUsersSshUserResponse) SetUsername

SetUsername gets a reference to the given NullableString and assigns it to the Username field.

func (*CSSCMSDataModelModelsSSHUsersSshUserResponse) SetUsernameNil

SetUsernameNil sets the value for Username to be an explicit nil

func (CSSCMSDataModelModelsSSHUsersSshUserResponse) ToMap

func (o CSSCMSDataModelModelsSSHUsersSshUserResponse) ToMap() (map[string]interface{}, error)

func (*CSSCMSDataModelModelsSSHUsersSshUserResponse) UnsetUsername

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type CertificateApiService

type CertificateApiService service

CertificateApiService CertificateApi service

func (*CertificateApiService) GetCertificatesIdentityAuditByIdExecute

Executes the API request V2 GET /Certificates/IdentityAudit/{id}

@return []CertificatesCertificateIdentityAuditResponse2

func (*CertificateApiService) NewGetCertificatesIdentityAuditByIdRequest

func (a *CertificateApiService) NewGetCertificatesIdentityAuditByIdRequest(ctx context.Context, id int32) ApiGetCertificatesIdentityAuditByIdRequest

Creates a new V2 GET /Certificates/IdentityAudit/{id} request.

GetCertificatesIdentityAuditById Audit identity permissions for certificate

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The Id of the certificate being checked
@return ApiGetCertificatesIdentityAuditByIdRequest

type CertificatesCertificateIdentityAuditResponse2

type CertificatesCertificateIdentityAuditResponse2 struct {
	Identity *CertificatesCertificateIdentityAuditResponse2IdentityResponse `json:"Identity,omitempty"`
	// Permissions granted to the account represented by the audit reponse on the specified certifcate.
	Permissions []CertificatesCertificateIdentityAuditResponse2CertificatePermission `json:"Permissions,omitempty"`
}

CertificatesCertificateIdentityAuditResponse2 Represents an account with a list of permission granted to it on a given certificate by either a role or collection. Used for the V2 endpoint.

func NewCertificatesCertificateIdentityAuditResponse2

func NewCertificatesCertificateIdentityAuditResponse2() *CertificatesCertificateIdentityAuditResponse2

NewCertificatesCertificateIdentityAuditResponse2 instantiates a new CertificatesCertificateIdentityAuditResponse2 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 NewCertificatesCertificateIdentityAuditResponse2WithDefaults

func NewCertificatesCertificateIdentityAuditResponse2WithDefaults() *CertificatesCertificateIdentityAuditResponse2

NewCertificatesCertificateIdentityAuditResponse2WithDefaults instantiates a new CertificatesCertificateIdentityAuditResponse2 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 (*CertificatesCertificateIdentityAuditResponse2) GetIdentity

GetIdentity returns the Identity field value if set, zero value otherwise.

func (*CertificatesCertificateIdentityAuditResponse2) GetIdentityOk

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

func (*CertificatesCertificateIdentityAuditResponse2) GetPermissions

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

func (*CertificatesCertificateIdentityAuditResponse2) GetPermissionsOk

GetPermissionsOk returns a tuple with the Permissions 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 (*CertificatesCertificateIdentityAuditResponse2) HasIdentity

HasIdentity returns a boolean if a field has been set.

func (*CertificatesCertificateIdentityAuditResponse2) HasPermissions

HasPermissions returns a boolean if a field has been set.

func (CertificatesCertificateIdentityAuditResponse2) MarshalJSON

func (*CertificatesCertificateIdentityAuditResponse2) SetIdentity

SetIdentity gets a reference to the given CertificatesCertificateIdentityAuditResponse2IdentityResponse and assigns it to the Identity field.

func (*CertificatesCertificateIdentityAuditResponse2) SetPermissions

SetPermissions gets a reference to the given []CertificatesCertificateIdentityAuditResponse2CertificatePermission and assigns it to the Permissions field.

func (CertificatesCertificateIdentityAuditResponse2) ToMap

func (o CertificatesCertificateIdentityAuditResponse2) ToMap() (map[string]interface{}, error)

type CertificatesCertificateIdentityAuditResponse2CertificatePermission

type CertificatesCertificateIdentityAuditResponse2CertificatePermission struct {
	// The name of the permission
	Name NullableString `json:"Name,omitempty"`
	// A list of roles or collections that grant the given permission
	GrantedBy []string `json:"GrantedBy,omitempty"`
}

CertificatesCertificateIdentityAuditResponse2CertificatePermission Represents a permission granted to an account for a certificate

func NewCertificatesCertificateIdentityAuditResponse2CertificatePermission

func NewCertificatesCertificateIdentityAuditResponse2CertificatePermission() *CertificatesCertificateIdentityAuditResponse2CertificatePermission

NewCertificatesCertificateIdentityAuditResponse2CertificatePermission instantiates a new CertificatesCertificateIdentityAuditResponse2CertificatePermission 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 NewCertificatesCertificateIdentityAuditResponse2CertificatePermissionWithDefaults

func NewCertificatesCertificateIdentityAuditResponse2CertificatePermissionWithDefaults() *CertificatesCertificateIdentityAuditResponse2CertificatePermission

NewCertificatesCertificateIdentityAuditResponse2CertificatePermissionWithDefaults instantiates a new CertificatesCertificateIdentityAuditResponse2CertificatePermission 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 (*CertificatesCertificateIdentityAuditResponse2CertificatePermission) GetGrantedBy

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

func (*CertificatesCertificateIdentityAuditResponse2CertificatePermission) GetGrantedByOk

GetGrantedByOk returns a tuple with the GrantedBy 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 (*CertificatesCertificateIdentityAuditResponse2CertificatePermission) GetName

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

func (*CertificatesCertificateIdentityAuditResponse2CertificatePermission) GetNameOk

GetNameOk returns a tuple with the Name 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 (*CertificatesCertificateIdentityAuditResponse2CertificatePermission) HasGrantedBy

HasGrantedBy returns a boolean if a field has been set.

func (*CertificatesCertificateIdentityAuditResponse2CertificatePermission) HasName

HasName returns a boolean if a field has been set.

func (CertificatesCertificateIdentityAuditResponse2CertificatePermission) MarshalJSON

func (*CertificatesCertificateIdentityAuditResponse2CertificatePermission) SetGrantedBy

SetGrantedBy gets a reference to the given []string and assigns it to the GrantedBy field.

func (*CertificatesCertificateIdentityAuditResponse2CertificatePermission) SetName

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*CertificatesCertificateIdentityAuditResponse2CertificatePermission) SetNameNil

SetNameNil sets the value for Name to be an explicit nil

func (CertificatesCertificateIdentityAuditResponse2CertificatePermission) ToMap

func (*CertificatesCertificateIdentityAuditResponse2CertificatePermission) UnsetName

UnsetName ensures that no value is present for Name, not even an explicit nil

type CertificatesCertificateIdentityAuditResponse2IdentityProvider

type CertificatesCertificateIdentityAuditResponse2IdentityProvider struct {
	// The Id of the provider.
	Id *string `json:"Id,omitempty"`
	// The name of the provider.
	Name NullableString `json:"Name,omitempty"`
}

CertificatesCertificateIdentityAuditResponse2IdentityProvider struct for CertificatesCertificateIdentityAuditResponse2IdentityProvider

func NewCertificatesCertificateIdentityAuditResponse2IdentityProvider

func NewCertificatesCertificateIdentityAuditResponse2IdentityProvider() *CertificatesCertificateIdentityAuditResponse2IdentityProvider

NewCertificatesCertificateIdentityAuditResponse2IdentityProvider instantiates a new CertificatesCertificateIdentityAuditResponse2IdentityProvider 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 NewCertificatesCertificateIdentityAuditResponse2IdentityProviderWithDefaults

func NewCertificatesCertificateIdentityAuditResponse2IdentityProviderWithDefaults() *CertificatesCertificateIdentityAuditResponse2IdentityProvider

NewCertificatesCertificateIdentityAuditResponse2IdentityProviderWithDefaults instantiates a new CertificatesCertificateIdentityAuditResponse2IdentityProvider 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 (*CertificatesCertificateIdentityAuditResponse2IdentityProvider) GetId

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

func (*CertificatesCertificateIdentityAuditResponse2IdentityProvider) GetIdOk

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 (*CertificatesCertificateIdentityAuditResponse2IdentityProvider) GetName

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

func (*CertificatesCertificateIdentityAuditResponse2IdentityProvider) GetNameOk

GetNameOk returns a tuple with the Name 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 (*CertificatesCertificateIdentityAuditResponse2IdentityProvider) HasId

HasId returns a boolean if a field has been set.

func (*CertificatesCertificateIdentityAuditResponse2IdentityProvider) HasName

HasName returns a boolean if a field has been set.

func (CertificatesCertificateIdentityAuditResponse2IdentityProvider) MarshalJSON

func (*CertificatesCertificateIdentityAuditResponse2IdentityProvider) SetId

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

func (*CertificatesCertificateIdentityAuditResponse2IdentityProvider) SetName

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*CertificatesCertificateIdentityAuditResponse2IdentityProvider) SetNameNil

SetNameNil sets the value for Name to be an explicit nil

func (CertificatesCertificateIdentityAuditResponse2IdentityProvider) ToMap

func (*CertificatesCertificateIdentityAuditResponse2IdentityProvider) UnsetName

UnsetName ensures that no value is present for Name, not even an explicit nil

type CertificatesCertificateIdentityAuditResponse2IdentityResponse

type CertificatesCertificateIdentityAuditResponse2IdentityResponse struct {
	// The Id of the identity.
	Id *int32 `json:"Id,omitempty"`
	// The description of the identity.
	Description NullableString `json:"Description,omitempty"`
	// The claim type of the identity.
	ClaimType NullableString `json:"ClaimType,omitempty"`
	// The claim value of the identity.
	ClaimValue NullableString                                                 `json:"ClaimValue,omitempty"`
	Provider   *CertificatesCertificateIdentityAuditResponse2IdentityProvider `json:"Provider,omitempty"`
}

CertificatesCertificateIdentityAuditResponse2IdentityResponse struct for CertificatesCertificateIdentityAuditResponse2IdentityResponse

func NewCertificatesCertificateIdentityAuditResponse2IdentityResponse

func NewCertificatesCertificateIdentityAuditResponse2IdentityResponse() *CertificatesCertificateIdentityAuditResponse2IdentityResponse

NewCertificatesCertificateIdentityAuditResponse2IdentityResponse instantiates a new CertificatesCertificateIdentityAuditResponse2IdentityResponse 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 NewCertificatesCertificateIdentityAuditResponse2IdentityResponseWithDefaults

func NewCertificatesCertificateIdentityAuditResponse2IdentityResponseWithDefaults() *CertificatesCertificateIdentityAuditResponse2IdentityResponse

NewCertificatesCertificateIdentityAuditResponse2IdentityResponseWithDefaults instantiates a new CertificatesCertificateIdentityAuditResponse2IdentityResponse 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 (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) GetClaimType

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

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) GetClaimTypeOk

GetClaimTypeOk returns a tuple with the ClaimType 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 (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) GetClaimValue

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

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) GetClaimValueOk

GetClaimValueOk returns a tuple with the ClaimValue 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 (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) GetDescription

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

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) GetDescriptionOk

GetDescriptionOk returns a tuple with the Description 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 (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) GetId

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

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) GetIdOk

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 (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) GetProvider

GetProvider returns the Provider field value if set, zero value otherwise.

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) GetProviderOk

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

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) HasClaimType

HasClaimType returns a boolean if a field has been set.

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) HasClaimValue

HasClaimValue returns a boolean if a field has been set.

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) HasDescription

HasDescription returns a boolean if a field has been set.

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) HasId

HasId returns a boolean if a field has been set.

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) HasProvider

HasProvider returns a boolean if a field has been set.

func (CertificatesCertificateIdentityAuditResponse2IdentityResponse) MarshalJSON

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) SetClaimType

SetClaimType gets a reference to the given NullableString and assigns it to the ClaimType field.

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) SetClaimTypeNil

SetClaimTypeNil sets the value for ClaimType to be an explicit nil

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) SetClaimValue

SetClaimValue gets a reference to the given NullableString and assigns it to the ClaimValue field.

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) SetClaimValueNil

SetClaimValueNil sets the value for ClaimValue to be an explicit nil

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) SetDescription

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

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) SetDescriptionNil

SetDescriptionNil sets the value for Description to be an explicit nil

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) SetId

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

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) SetProvider

SetProvider gets a reference to the given CertificatesCertificateIdentityAuditResponse2IdentityProvider and assigns it to the Provider field.

func (CertificatesCertificateIdentityAuditResponse2IdentityResponse) ToMap

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) UnsetClaimType

UnsetClaimType ensures that no value is present for ClaimType, not even an explicit nil

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) UnsetClaimValue

UnsetClaimValue ensures that no value is present for ClaimValue, not even an explicit nil

func (*CertificatesCertificateIdentityAuditResponse2IdentityResponse) UnsetDescription

UnsetDescription ensures that no value is present for Description, not even an explicit nil

type Configuration

type Configuration struct {
	Host              string            `json:"host,omitempty"`
	BasicAuth         BasicAuth         `json:"basicAuth,omitempty"`
	DefaultHeader     map[string]string `json:"defaultHeader,omitempty"`
	UserAgent         string            `json:"userAgent,omitempty"`
	Debug             bool              `json:"debug,omitempty"`
	CaCertificatePath string            `json:"caCertificatePath,omitempty"`
	APIPath           string            `json:"apiPath,omitempty"`
	Domain            string            `json:"domain,omitempty"`
	HTTPClient        *http.Client
	// contains filtered or unexported fields
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration(config map[string]string) (*Configuration, error)

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) SetCaCertificates

func (c *Configuration) SetCaCertificates(caCertificates []*x509.Certificate)

type EnrollmentApiService

type EnrollmentApiService service

EnrollmentApiService EnrollmentApi service

func (*EnrollmentApiService) CreateEnrollmentPFXExecute

Executes the API request V2 POST /Enrollment/PFX

@return EnrollmentPFXEnrollmentManagementResponse

func (*EnrollmentApiService) NewCreateEnrollmentPFXRequest

func (a *EnrollmentApiService) NewCreateEnrollmentPFXRequest(ctx context.Context) ApiCreateEnrollmentPFXRequest

Creates a new V2 POST /Enrollment/PFX request.

CreateEnrollmentPFX Performs a PFX Enrollment based upon the provided request

### IMPORTANT: - The <b>'RenewalCertificateId'</b> field in the request should be set to <b>null</b> if the certificate is not being renewed as part of the enrollment. A value of <b>0</b> will produce an error.

### Subject Alternative Name Flags ### | Value | Description | |--------------------|---------------------------| | other | OtherName | | rfc822 | RFC822Name | | dns | DNSName | | x400 | X400Address | | directory | DirectoryName | | ediparty | EdipartyName | | uri | UniformResourceIdentifier | | ip | IPAddress | | ip4 | IPv4Address | | ip6 | IPv6Address | | registeredid | RegisteredId | | ms_ntprincipalname | MS_NTPrincipalName | | ms_ntdsreplication | MS_NTDSReplication |

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

type EnrollmentManagementStoreRequest

type EnrollmentManagementStoreRequest struct {
	StoreId    *string                `json:"StoreId,omitempty"`
	Alias      NullableString         `json:"Alias,omitempty"`
	Overwrite  *bool                  `json:"Overwrite,omitempty"`
	Properties map[string]interface{} `json:"Properties,omitempty"`
}

EnrollmentManagementStoreRequest struct for EnrollmentManagementStoreRequest

func NewEnrollmentManagementStoreRequest

func NewEnrollmentManagementStoreRequest() *EnrollmentManagementStoreRequest

NewEnrollmentManagementStoreRequest instantiates a new EnrollmentManagementStoreRequest 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 NewEnrollmentManagementStoreRequestWithDefaults

func NewEnrollmentManagementStoreRequestWithDefaults() *EnrollmentManagementStoreRequest

NewEnrollmentManagementStoreRequestWithDefaults instantiates a new EnrollmentManagementStoreRequest 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 (*EnrollmentManagementStoreRequest) GetAlias

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

func (*EnrollmentManagementStoreRequest) GetAliasOk

func (o *EnrollmentManagementStoreRequest) GetAliasOk() (*string, bool)

GetAliasOk returns a tuple with the Alias 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 (*EnrollmentManagementStoreRequest) GetOverwrite

func (o *EnrollmentManagementStoreRequest) GetOverwrite() bool

GetOverwrite returns the Overwrite field value if set, zero value otherwise.

func (*EnrollmentManagementStoreRequest) GetOverwriteOk

func (o *EnrollmentManagementStoreRequest) GetOverwriteOk() (*bool, bool)

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

func (*EnrollmentManagementStoreRequest) GetProperties

func (o *EnrollmentManagementStoreRequest) GetProperties() map[string]interface{}

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

func (*EnrollmentManagementStoreRequest) GetPropertiesOk

func (o *EnrollmentManagementStoreRequest) GetPropertiesOk() (map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties 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 (*EnrollmentManagementStoreRequest) GetStoreId

func (o *EnrollmentManagementStoreRequest) GetStoreId() string

GetStoreId returns the StoreId field value if set, zero value otherwise.

func (*EnrollmentManagementStoreRequest) GetStoreIdOk

func (o *EnrollmentManagementStoreRequest) GetStoreIdOk() (*string, bool)

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

func (*EnrollmentManagementStoreRequest) HasAlias

func (o *EnrollmentManagementStoreRequest) HasAlias() bool

HasAlias returns a boolean if a field has been set.

func (*EnrollmentManagementStoreRequest) HasOverwrite

func (o *EnrollmentManagementStoreRequest) HasOverwrite() bool

HasOverwrite returns a boolean if a field has been set.

func (*EnrollmentManagementStoreRequest) HasProperties

func (o *EnrollmentManagementStoreRequest) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*EnrollmentManagementStoreRequest) HasStoreId

func (o *EnrollmentManagementStoreRequest) HasStoreId() bool

HasStoreId returns a boolean if a field has been set.

func (EnrollmentManagementStoreRequest) MarshalJSON

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

func (*EnrollmentManagementStoreRequest) SetAlias

SetAlias gets a reference to the given NullableString and assigns it to the Alias field.

func (*EnrollmentManagementStoreRequest) SetAliasNil

func (o *EnrollmentManagementStoreRequest) SetAliasNil()

SetAliasNil sets the value for Alias to be an explicit nil

func (*EnrollmentManagementStoreRequest) SetOverwrite

func (o *EnrollmentManagementStoreRequest) SetOverwrite(v bool)

SetOverwrite gets a reference to the given bool and assigns it to the Overwrite field.

func (*EnrollmentManagementStoreRequest) SetProperties

func (o *EnrollmentManagementStoreRequest) SetProperties(v map[string]interface{})

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

func (*EnrollmentManagementStoreRequest) SetStoreId

func (o *EnrollmentManagementStoreRequest) SetStoreId(v string)

SetStoreId gets a reference to the given string and assigns it to the StoreId field.

func (EnrollmentManagementStoreRequest) ToMap

func (o EnrollmentManagementStoreRequest) ToMap() (map[string]interface{}, error)

func (*EnrollmentManagementStoreRequest) UnsetAlias

func (o *EnrollmentManagementStoreRequest) UnsetAlias()

UnsetAlias ensures that no value is present for Alias, not even an explicit nil

type EnrollmentPFXEnrollmentManagementResponse

type EnrollmentPFXEnrollmentManagementResponse struct {
	SuccessfulStores       []string                                        `json:"SuccessfulStores,omitempty"`
	CertificateInformation *CSSCMSDataModelModelsPkcs12CertificateResponse `json:"CertificateInformation,omitempty"`
	Metadata               map[string]string                               `json:"Metadata,omitempty"`
}

EnrollmentPFXEnrollmentManagementResponse struct for EnrollmentPFXEnrollmentManagementResponse

func NewEnrollmentPFXEnrollmentManagementResponse

func NewEnrollmentPFXEnrollmentManagementResponse() *EnrollmentPFXEnrollmentManagementResponse

NewEnrollmentPFXEnrollmentManagementResponse instantiates a new EnrollmentPFXEnrollmentManagementResponse 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 NewEnrollmentPFXEnrollmentManagementResponseWithDefaults

func NewEnrollmentPFXEnrollmentManagementResponseWithDefaults() *EnrollmentPFXEnrollmentManagementResponse

NewEnrollmentPFXEnrollmentManagementResponseWithDefaults instantiates a new EnrollmentPFXEnrollmentManagementResponse 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 (*EnrollmentPFXEnrollmentManagementResponse) GetCertificateInformation

GetCertificateInformation returns the CertificateInformation field value if set, zero value otherwise.

func (*EnrollmentPFXEnrollmentManagementResponse) GetCertificateInformationOk

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

func (*EnrollmentPFXEnrollmentManagementResponse) GetMetadata

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

func (*EnrollmentPFXEnrollmentManagementResponse) GetMetadataOk

func (o *EnrollmentPFXEnrollmentManagementResponse) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata 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 (*EnrollmentPFXEnrollmentManagementResponse) GetSuccessfulStores

func (o *EnrollmentPFXEnrollmentManagementResponse) GetSuccessfulStores() []string

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

func (*EnrollmentPFXEnrollmentManagementResponse) GetSuccessfulStoresOk

func (o *EnrollmentPFXEnrollmentManagementResponse) GetSuccessfulStoresOk() ([]string, bool)

GetSuccessfulStoresOk returns a tuple with the SuccessfulStores 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 (*EnrollmentPFXEnrollmentManagementResponse) HasCertificateInformation

func (o *EnrollmentPFXEnrollmentManagementResponse) HasCertificateInformation() bool

HasCertificateInformation returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentManagementResponse) HasMetadata

HasMetadata returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentManagementResponse) HasSuccessfulStores

func (o *EnrollmentPFXEnrollmentManagementResponse) HasSuccessfulStores() bool

HasSuccessfulStores returns a boolean if a field has been set.

func (EnrollmentPFXEnrollmentManagementResponse) MarshalJSON

func (*EnrollmentPFXEnrollmentManagementResponse) SetCertificateInformation

SetCertificateInformation gets a reference to the given CSSCMSDataModelModelsPkcs12CertificateResponse and assigns it to the CertificateInformation field.

func (*EnrollmentPFXEnrollmentManagementResponse) SetMetadata

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*EnrollmentPFXEnrollmentManagementResponse) SetSuccessfulStores

func (o *EnrollmentPFXEnrollmentManagementResponse) SetSuccessfulStores(v []string)

SetSuccessfulStores gets a reference to the given []string and assigns it to the SuccessfulStores field.

func (EnrollmentPFXEnrollmentManagementResponse) ToMap

func (o EnrollmentPFXEnrollmentManagementResponse) ToMap() (map[string]interface{}, error)

type EnrollmentPFXEnrollmentWithStoresRequest

type EnrollmentPFXEnrollmentWithStoresRequest struct {
	// A list of certificate stores a successfully issued PKCS12 should be installed into.
	Stores []EnrollmentManagementStoreRequest `json:"Stores,omitempty"`
	// The Friendly name of the issued certificate
	CustomFriendlyName NullableString `json:"CustomFriendlyName,omitempty"`
	// The custom password for the resulting Private key
	Password NullableString `json:"Password,omitempty"`
	// The certificte's subject
	Subject NullableString `json:"Subject,omitempty"`
	// An option to include the certificate chain in the response
	IncludeChain *bool `json:"IncludeChain,omitempty"`
	// An option to remove the subject header comment in pem file
	IncludeSubjectHeader *bool `json:"IncludeSubjectHeader,omitempty"`
	// An optional Id of a certificate being renewed
	RenewalCertificateId NullableInt32 `json:"RenewalCertificateId,omitempty"`
	// The Certifcate Authority configuration in the format hostname\\logicalname
	CertificateAuthority NullableString `json:"CertificateAuthority,omitempty"`
	// The metadata to be assigned to the certificate after issuance
	Metadata map[string]interface{} `json:"Metadata,omitempty"`
	// Any Additional Enrollment Fields to be included in the request
	AdditionalEnrollmentFields map[string]interface{} `json:"AdditionalEnrollmentFields,omitempty"`
	// A timestamp to help ensure a legitimate request
	Timestamp *time.Time `json:"Timestamp,omitempty"`
	// The template for the certificate
	Template NullableString `json:"Template,omitempty"`
	// Any Subject Alternative Names to be included in the request
	SANs map[string][]string `json:"SANs,omitempty"`
	// Allows the new certificate to be installed into all certificate stores the renewed certificate is currently installed into.
	InstallIntoExistingCertificateStores *bool `json:"InstallIntoExistingCertificateStores,omitempty"`
	// The time any management jobs should be scheduled.
	JobTime NullableTime `json:"JobTime,omitempty"`
	// The order of the certificates in the certificate chain
	ChainOrder          NullableString `json:"ChainOrder,omitempty"`
	UseLegacyEncryption NullableBool   `json:"UseLegacyEncryption,omitempty"`
	// Certificate key type [RSA, ECC]
	KeyType   NullableString `json:"KeyType,omitempty"`
	KeyLength *int32         `json:"KeyLength,omitempty"`
	// The curve being used that will be sent in when the Key Algorithm is of type ECC
	Curve NullableString `json:"Curve,omitempty"`
	// Optionally pass a microsoft cryptographic service provider to the generated certificate
	MicrosoftTargetCSP NullableString `json:"MicrosoftTargetCSP,omitempty"`
	// Id or name of the security role that will have ownership of the generated certificate
	OwnerRoleId   NullableInt32  `json:"OwnerRoleId,omitempty"`
	OwnerRoleName NullableString `json:"OwnerRoleName,omitempty"`
}

EnrollmentPFXEnrollmentWithStoresRequest struct for EnrollmentPFXEnrollmentWithStoresRequest

func NewEnrollmentPFXEnrollmentWithStoresRequest

func NewEnrollmentPFXEnrollmentWithStoresRequest() *EnrollmentPFXEnrollmentWithStoresRequest

NewEnrollmentPFXEnrollmentWithStoresRequest instantiates a new EnrollmentPFXEnrollmentWithStoresRequest 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 NewEnrollmentPFXEnrollmentWithStoresRequestWithDefaults

func NewEnrollmentPFXEnrollmentWithStoresRequestWithDefaults() *EnrollmentPFXEnrollmentWithStoresRequest

NewEnrollmentPFXEnrollmentWithStoresRequestWithDefaults instantiates a new EnrollmentPFXEnrollmentWithStoresRequest 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetAdditionalEnrollmentFields

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetAdditionalEnrollmentFields() map[string]interface{}

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetAdditionalEnrollmentFieldsOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetAdditionalEnrollmentFieldsOk() (map[string]interface{}, bool)

GetAdditionalEnrollmentFieldsOk returns a tuple with the AdditionalEnrollmentFields 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetCertificateAuthority

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetCertificateAuthority() string

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetCertificateAuthorityOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetCertificateAuthorityOk() (*string, bool)

GetCertificateAuthorityOk returns a tuple with the CertificateAuthority 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetChainOrder

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetChainOrderOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetChainOrderOk() (*string, bool)

GetChainOrderOk returns a tuple with the ChainOrder 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetCurve

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetCurveOk

GetCurveOk returns a tuple with the Curve 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetCustomFriendlyName

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetCustomFriendlyName() string

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetCustomFriendlyNameOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetCustomFriendlyNameOk() (*string, bool)

GetCustomFriendlyNameOk returns a tuple with the CustomFriendlyName 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetIncludeChain

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetIncludeChain() bool

GetIncludeChain returns the IncludeChain field value if set, zero value otherwise.

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetIncludeChainOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetIncludeChainOk() (*bool, bool)

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetIncludeSubjectHeader

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetIncludeSubjectHeader() bool

GetIncludeSubjectHeader returns the IncludeSubjectHeader field value if set, zero value otherwise.

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetIncludeSubjectHeaderOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetIncludeSubjectHeaderOk() (*bool, bool)

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetInstallIntoExistingCertificateStores

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetInstallIntoExistingCertificateStores() bool

GetInstallIntoExistingCertificateStores returns the InstallIntoExistingCertificateStores field value if set, zero value otherwise.

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetInstallIntoExistingCertificateStoresOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetInstallIntoExistingCertificateStoresOk() (*bool, bool)

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetJobTime

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetJobTimeOk

GetJobTimeOk returns a tuple with the JobTime 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetKeyLength

GetKeyLength returns the KeyLength field value if set, zero value otherwise.

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetKeyLengthOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetKeyLengthOk() (*int32, bool)

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetKeyType

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetKeyTypeOk

GetKeyTypeOk returns a tuple with the KeyType 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetMetadata

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetMetadata() map[string]interface{}

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetMetadataOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetMetadataOk() (map[string]interface{}, bool)

GetMetadataOk returns a tuple with the Metadata 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetMicrosoftTargetCSP

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetMicrosoftTargetCSP() string

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetMicrosoftTargetCSPOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetMicrosoftTargetCSPOk() (*string, bool)

GetMicrosoftTargetCSPOk returns a tuple with the MicrosoftTargetCSP 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetOwnerRoleId

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetOwnerRoleId() int32

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetOwnerRoleIdOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetOwnerRoleIdOk() (*int32, bool)

GetOwnerRoleIdOk returns a tuple with the OwnerRoleId 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetOwnerRoleName

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetOwnerRoleName() string

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetOwnerRoleNameOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetOwnerRoleNameOk() (*string, bool)

GetOwnerRoleNameOk returns a tuple with the OwnerRoleName 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetPassword

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetPasswordOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetRenewalCertificateId

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetRenewalCertificateId() int32

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetRenewalCertificateIdOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetRenewalCertificateIdOk() (*int32, bool)

GetRenewalCertificateIdOk returns a tuple with the RenewalCertificateId 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetSANs

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetSANsOk

GetSANsOk returns a tuple with the SANs 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetStores

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetStoresOk

GetStoresOk returns a tuple with the Stores 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetSubject

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetSubjectOk

GetSubjectOk returns a tuple with the Subject 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetTemplate

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetTemplateOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetTemplateOk() (*string, bool)

GetTemplateOk returns a tuple with the Template 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 (*EnrollmentPFXEnrollmentWithStoresRequest) GetTimestamp

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetTimestampOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetTimestampOk() (*time.Time, bool)

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetUseLegacyEncryption

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetUseLegacyEncryption() bool

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) GetUseLegacyEncryptionOk

func (o *EnrollmentPFXEnrollmentWithStoresRequest) GetUseLegacyEncryptionOk() (*bool, bool)

GetUseLegacyEncryptionOk returns a tuple with the UseLegacyEncryption 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 (*EnrollmentPFXEnrollmentWithStoresRequest) HasAdditionalEnrollmentFields

func (o *EnrollmentPFXEnrollmentWithStoresRequest) HasAdditionalEnrollmentFields() bool

HasAdditionalEnrollmentFields returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasCertificateAuthority

func (o *EnrollmentPFXEnrollmentWithStoresRequest) HasCertificateAuthority() bool

HasCertificateAuthority returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasChainOrder

HasChainOrder returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasCurve

HasCurve returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasCustomFriendlyName

func (o *EnrollmentPFXEnrollmentWithStoresRequest) HasCustomFriendlyName() bool

HasCustomFriendlyName returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasIncludeChain

func (o *EnrollmentPFXEnrollmentWithStoresRequest) HasIncludeChain() bool

HasIncludeChain returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasIncludeSubjectHeader

func (o *EnrollmentPFXEnrollmentWithStoresRequest) HasIncludeSubjectHeader() bool

HasIncludeSubjectHeader returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasInstallIntoExistingCertificateStores

func (o *EnrollmentPFXEnrollmentWithStoresRequest) HasInstallIntoExistingCertificateStores() bool

HasInstallIntoExistingCertificateStores returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasJobTime

HasJobTime returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasKeyLength

HasKeyLength returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasKeyType

HasKeyType returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasMetadata

HasMetadata returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasMicrosoftTargetCSP

func (o *EnrollmentPFXEnrollmentWithStoresRequest) HasMicrosoftTargetCSP() bool

HasMicrosoftTargetCSP returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasOwnerRoleId

func (o *EnrollmentPFXEnrollmentWithStoresRequest) HasOwnerRoleId() bool

HasOwnerRoleId returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasOwnerRoleName

func (o *EnrollmentPFXEnrollmentWithStoresRequest) HasOwnerRoleName() bool

HasOwnerRoleName returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasPassword

HasPassword returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasRenewalCertificateId

func (o *EnrollmentPFXEnrollmentWithStoresRequest) HasRenewalCertificateId() bool

HasRenewalCertificateId returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasSANs

HasSANs returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasStores

HasStores returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasSubject

HasSubject returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasTemplate

HasTemplate returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasTimestamp

HasTimestamp returns a boolean if a field has been set.

func (*EnrollmentPFXEnrollmentWithStoresRequest) HasUseLegacyEncryption

func (o *EnrollmentPFXEnrollmentWithStoresRequest) HasUseLegacyEncryption() bool

HasUseLegacyEncryption returns a boolean if a field has been set.

func (EnrollmentPFXEnrollmentWithStoresRequest) MarshalJSON

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetAdditionalEnrollmentFields

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetAdditionalEnrollmentFields(v map[string]interface{})

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetCertificateAuthority

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetCertificateAuthority(v string)

SetCertificateAuthority gets a reference to the given NullableString and assigns it to the CertificateAuthority field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetCertificateAuthorityNil

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetCertificateAuthorityNil()

SetCertificateAuthorityNil sets the value for CertificateAuthority to be an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetChainOrder

SetChainOrder gets a reference to the given NullableString and assigns it to the ChainOrder field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetChainOrderNil

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetChainOrderNil()

SetChainOrderNil sets the value for ChainOrder to be an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetCurve

SetCurve gets a reference to the given NullableString and assigns it to the Curve field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetCurveNil

SetCurveNil sets the value for Curve to be an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetCustomFriendlyName

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetCustomFriendlyName(v string)

SetCustomFriendlyName gets a reference to the given NullableString and assigns it to the CustomFriendlyName field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetCustomFriendlyNameNil

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetCustomFriendlyNameNil()

SetCustomFriendlyNameNil sets the value for CustomFriendlyName to be an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetIncludeChain

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetIncludeChain(v bool)

SetIncludeChain gets a reference to the given bool and assigns it to the IncludeChain field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetIncludeSubjectHeader

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetIncludeSubjectHeader(v bool)

SetIncludeSubjectHeader gets a reference to the given bool and assigns it to the IncludeSubjectHeader field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetInstallIntoExistingCertificateStores

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetInstallIntoExistingCertificateStores(v bool)

SetInstallIntoExistingCertificateStores gets a reference to the given bool and assigns it to the InstallIntoExistingCertificateStores field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetJobTime

SetJobTime gets a reference to the given NullableTime and assigns it to the JobTime field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetJobTimeNil

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetJobTimeNil()

SetJobTimeNil sets the value for JobTime to be an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetKeyLength

SetKeyLength gets a reference to the given int32 and assigns it to the KeyLength field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetKeyType

SetKeyType gets a reference to the given NullableString and assigns it to the KeyType field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetKeyTypeNil

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetKeyTypeNil()

SetKeyTypeNil sets the value for KeyType to be an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetMetadata

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetMetadata(v map[string]interface{})

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

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetMicrosoftTargetCSP

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetMicrosoftTargetCSP(v string)

SetMicrosoftTargetCSP gets a reference to the given NullableString and assigns it to the MicrosoftTargetCSP field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetMicrosoftTargetCSPNil

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetMicrosoftTargetCSPNil()

SetMicrosoftTargetCSPNil sets the value for MicrosoftTargetCSP to be an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetOwnerRoleId

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetOwnerRoleId(v int32)

SetOwnerRoleId gets a reference to the given NullableInt32 and assigns it to the OwnerRoleId field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetOwnerRoleIdNil

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetOwnerRoleIdNil()

SetOwnerRoleIdNil sets the value for OwnerRoleId to be an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetOwnerRoleName

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetOwnerRoleName(v string)

SetOwnerRoleName gets a reference to the given NullableString and assigns it to the OwnerRoleName field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetOwnerRoleNameNil

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetOwnerRoleNameNil()

SetOwnerRoleNameNil sets the value for OwnerRoleName to be an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetPassword

SetPassword gets a reference to the given NullableString and assigns it to the Password field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetPasswordNil

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetPasswordNil()

SetPasswordNil sets the value for Password to be an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetRenewalCertificateId

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetRenewalCertificateId(v int32)

SetRenewalCertificateId gets a reference to the given NullableInt32 and assigns it to the RenewalCertificateId field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetRenewalCertificateIdNil

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetRenewalCertificateIdNil()

SetRenewalCertificateIdNil sets the value for RenewalCertificateId to be an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetSANs

SetSANs gets a reference to the given map[string][]string and assigns it to the SANs field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetStores

SetStores gets a reference to the given []EnrollmentManagementStoreRequest and assigns it to the Stores field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetSubject

SetSubject gets a reference to the given NullableString and assigns it to the Subject field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetSubjectNil

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetSubjectNil()

SetSubjectNil sets the value for Subject to be an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetTemplate

SetTemplate gets a reference to the given NullableString and assigns it to the Template field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetTemplateNil

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetTemplateNil()

SetTemplateNil sets the value for Template to be an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetTimestamp

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetUseLegacyEncryption

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetUseLegacyEncryption(v bool)

SetUseLegacyEncryption gets a reference to the given NullableBool and assigns it to the UseLegacyEncryption field.

func (*EnrollmentPFXEnrollmentWithStoresRequest) SetUseLegacyEncryptionNil

func (o *EnrollmentPFXEnrollmentWithStoresRequest) SetUseLegacyEncryptionNil()

SetUseLegacyEncryptionNil sets the value for UseLegacyEncryption to be an explicit nil

func (EnrollmentPFXEnrollmentWithStoresRequest) ToMap

func (o EnrollmentPFXEnrollmentWithStoresRequest) ToMap() (map[string]interface{}, error)

func (*EnrollmentPFXEnrollmentWithStoresRequest) UnsetCertificateAuthority

func (o *EnrollmentPFXEnrollmentWithStoresRequest) UnsetCertificateAuthority()

UnsetCertificateAuthority ensures that no value is present for CertificateAuthority, not even an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) UnsetChainOrder

func (o *EnrollmentPFXEnrollmentWithStoresRequest) UnsetChainOrder()

UnsetChainOrder ensures that no value is present for ChainOrder, not even an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) UnsetCurve

UnsetCurve ensures that no value is present for Curve, not even an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) UnsetCustomFriendlyName

func (o *EnrollmentPFXEnrollmentWithStoresRequest) UnsetCustomFriendlyName()

UnsetCustomFriendlyName ensures that no value is present for CustomFriendlyName, not even an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) UnsetJobTime

func (o *EnrollmentPFXEnrollmentWithStoresRequest) UnsetJobTime()

UnsetJobTime ensures that no value is present for JobTime, not even an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) UnsetKeyType

func (o *EnrollmentPFXEnrollmentWithStoresRequest) UnsetKeyType()

UnsetKeyType ensures that no value is present for KeyType, not even an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) UnsetMicrosoftTargetCSP

func (o *EnrollmentPFXEnrollmentWithStoresRequest) UnsetMicrosoftTargetCSP()

UnsetMicrosoftTargetCSP ensures that no value is present for MicrosoftTargetCSP, not even an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) UnsetOwnerRoleId

func (o *EnrollmentPFXEnrollmentWithStoresRequest) UnsetOwnerRoleId()

UnsetOwnerRoleId ensures that no value is present for OwnerRoleId, not even an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) UnsetOwnerRoleName

func (o *EnrollmentPFXEnrollmentWithStoresRequest) UnsetOwnerRoleName()

UnsetOwnerRoleName ensures that no value is present for OwnerRoleName, not even an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) UnsetPassword

func (o *EnrollmentPFXEnrollmentWithStoresRequest) UnsetPassword()

UnsetPassword ensures that no value is present for Password, not even an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) UnsetRenewalCertificateId

func (o *EnrollmentPFXEnrollmentWithStoresRequest) UnsetRenewalCertificateId()

UnsetRenewalCertificateId ensures that no value is present for RenewalCertificateId, not even an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) UnsetSubject

func (o *EnrollmentPFXEnrollmentWithStoresRequest) UnsetSubject()

UnsetSubject ensures that no value is present for Subject, not even an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) UnsetTemplate

func (o *EnrollmentPFXEnrollmentWithStoresRequest) UnsetTemplate()

UnsetTemplate ensures that no value is present for Template, not even an explicit nil

func (*EnrollmentPFXEnrollmentWithStoresRequest) UnsetUseLegacyEncryption

func (o *EnrollmentPFXEnrollmentWithStoresRequest) UnsetUseLegacyEncryption()

UnsetUseLegacyEncryption ensures that no value is present for UseLegacyEncryption, not even an explicit nil

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 KeyfactorCommonQueryableExtensionsSortOrder

type KeyfactorCommonQueryableExtensionsSortOrder int32

KeyfactorCommonQueryableExtensionsSortOrder the model 'KeyfactorCommonQueryableExtensionsSortOrder'

const (
	KEYFACTORCOMMONQUERYABLEEXTENSIONSSORTORDER__0 KeyfactorCommonQueryableExtensionsSortOrder = 0
	KEYFACTORCOMMONQUERYABLEEXTENSIONSSORTORDER__1 KeyfactorCommonQueryableExtensionsSortOrder = 1
)

List of Keyfactor.Common.QueryableExtensions.SortOrder

func NewKeyfactorCommonQueryableExtensionsSortOrderFromValue

func NewKeyfactorCommonQueryableExtensionsSortOrderFromValue(v int32) (*KeyfactorCommonQueryableExtensionsSortOrder, error)

NewKeyfactorCommonQueryableExtensionsSortOrderFromValue returns a pointer to a valid KeyfactorCommonQueryableExtensionsSortOrder for the value passed as argument, or an error if the value passed is not allowed by the enum

func ParseKeyfactorCommonQueryableExtensionsSortOrder

func ParseKeyfactorCommonQueryableExtensionsSortOrder(s string) (*KeyfactorCommonQueryableExtensionsSortOrder, error)

func (KeyfactorCommonQueryableExtensionsSortOrder) IsValid

IsValid return true if the value is valid for the enum, false otherwise

func (*KeyfactorCommonQueryableExtensionsSortOrder) Parse

func (KeyfactorCommonQueryableExtensionsSortOrder) Ptr

Ptr returns reference to Keyfactor.Common.QueryableExtensions.SortOrder value

func (*KeyfactorCommonQueryableExtensionsSortOrder) UnmarshalJSON

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

type KeyfactorCommonSchedulingKeyfactorSchedule

type KeyfactorCommonSchedulingKeyfactorSchedule struct {
	Immediate   NullableBool                                  `json:"Immediate,omitempty"`
	Interval    *KeyfactorCommonSchedulingModelsIntervalModel `json:"Interval,omitempty"`
	Daily       *KeyfactorCommonSchedulingModelsTimeModel     `json:"Daily,omitempty"`
	Weekly      *KeyfactorCommonSchedulingModelsWeeklyModel   `json:"Weekly,omitempty"`
	Monthly     *KeyfactorCommonSchedulingModelsMonthlyModel  `json:"Monthly,omitempty"`
	ExactlyOnce *KeyfactorCommonSchedulingModelsTimeModel     `json:"ExactlyOnce,omitempty"`
}

KeyfactorCommonSchedulingKeyfactorSchedule struct for KeyfactorCommonSchedulingKeyfactorSchedule

func NewKeyfactorCommonSchedulingKeyfactorSchedule

func NewKeyfactorCommonSchedulingKeyfactorSchedule() *KeyfactorCommonSchedulingKeyfactorSchedule

NewKeyfactorCommonSchedulingKeyfactorSchedule instantiates a new KeyfactorCommonSchedulingKeyfactorSchedule 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 NewKeyfactorCommonSchedulingKeyfactorScheduleWithDefaults

func NewKeyfactorCommonSchedulingKeyfactorScheduleWithDefaults() *KeyfactorCommonSchedulingKeyfactorSchedule

NewKeyfactorCommonSchedulingKeyfactorScheduleWithDefaults instantiates a new KeyfactorCommonSchedulingKeyfactorSchedule 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 (*KeyfactorCommonSchedulingKeyfactorSchedule) GetDaily

GetDaily returns the Daily field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetDailyOk

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

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetExactlyOnce

GetExactlyOnce returns the ExactlyOnce field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetExactlyOnceOk

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

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetImmediate

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

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetImmediateOk

func (o *KeyfactorCommonSchedulingKeyfactorSchedule) GetImmediateOk() (*bool, bool)

GetImmediateOk returns a tuple with the Immediate 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 (*KeyfactorCommonSchedulingKeyfactorSchedule) GetInterval

GetInterval returns the Interval field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetIntervalOk

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

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetMonthly

GetMonthly returns the Monthly field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetMonthlyOk

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

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetWeekly

GetWeekly returns the Weekly field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetWeeklyOk

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

func (*KeyfactorCommonSchedulingKeyfactorSchedule) HasDaily

HasDaily returns a boolean if a field has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) HasExactlyOnce

HasExactlyOnce returns a boolean if a field has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) HasImmediate

HasImmediate returns a boolean if a field has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) HasInterval

HasInterval returns a boolean if a field has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) HasMonthly

HasMonthly returns a boolean if a field has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) HasWeekly

HasWeekly returns a boolean if a field has been set.

func (KeyfactorCommonSchedulingKeyfactorSchedule) MarshalJSON

func (*KeyfactorCommonSchedulingKeyfactorSchedule) SetDaily

SetDaily gets a reference to the given KeyfactorCommonSchedulingModelsTimeModel and assigns it to the Daily field.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) SetExactlyOnce

SetExactlyOnce gets a reference to the given KeyfactorCommonSchedulingModelsTimeModel and assigns it to the ExactlyOnce field.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) SetImmediate

SetImmediate gets a reference to the given NullableBool and assigns it to the Immediate field.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) SetImmediateNil

func (o *KeyfactorCommonSchedulingKeyfactorSchedule) SetImmediateNil()

SetImmediateNil sets the value for Immediate to be an explicit nil

func (*KeyfactorCommonSchedulingKeyfactorSchedule) SetInterval

SetInterval gets a reference to the given KeyfactorCommonSchedulingModelsIntervalModel and assigns it to the Interval field.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) SetMonthly

SetMonthly gets a reference to the given KeyfactorCommonSchedulingModelsMonthlyModel and assigns it to the Monthly field.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) SetWeekly

SetWeekly gets a reference to the given KeyfactorCommonSchedulingModelsWeeklyModel and assigns it to the Weekly field.

func (KeyfactorCommonSchedulingKeyfactorSchedule) ToMap

func (o KeyfactorCommonSchedulingKeyfactorSchedule) ToMap() (map[string]interface{}, error)

func (*KeyfactorCommonSchedulingKeyfactorSchedule) UnsetImmediate

func (o *KeyfactorCommonSchedulingKeyfactorSchedule) UnsetImmediate()

UnsetImmediate ensures that no value is present for Immediate, not even an explicit nil

type KeyfactorCommonSchedulingModelsIntervalModel

type KeyfactorCommonSchedulingModelsIntervalModel struct {
	Minutes *int32 `json:"Minutes,omitempty"`
}

KeyfactorCommonSchedulingModelsIntervalModel struct for KeyfactorCommonSchedulingModelsIntervalModel

func NewKeyfactorCommonSchedulingModelsIntervalModel

func NewKeyfactorCommonSchedulingModelsIntervalModel() *KeyfactorCommonSchedulingModelsIntervalModel

NewKeyfactorCommonSchedulingModelsIntervalModel instantiates a new KeyfactorCommonSchedulingModelsIntervalModel 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 NewKeyfactorCommonSchedulingModelsIntervalModelWithDefaults

func NewKeyfactorCommonSchedulingModelsIntervalModelWithDefaults() *KeyfactorCommonSchedulingModelsIntervalModel

NewKeyfactorCommonSchedulingModelsIntervalModelWithDefaults instantiates a new KeyfactorCommonSchedulingModelsIntervalModel 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 (*KeyfactorCommonSchedulingModelsIntervalModel) GetMinutes

GetMinutes returns the Minutes field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingModelsIntervalModel) GetMinutesOk

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

func (*KeyfactorCommonSchedulingModelsIntervalModel) HasMinutes

HasMinutes returns a boolean if a field has been set.

func (KeyfactorCommonSchedulingModelsIntervalModel) MarshalJSON

func (*KeyfactorCommonSchedulingModelsIntervalModel) SetMinutes

SetMinutes gets a reference to the given int32 and assigns it to the Minutes field.

func (KeyfactorCommonSchedulingModelsIntervalModel) ToMap

func (o KeyfactorCommonSchedulingModelsIntervalModel) ToMap() (map[string]interface{}, error)

type KeyfactorCommonSchedulingModelsMonthlyModel

type KeyfactorCommonSchedulingModelsMonthlyModel struct {
	Day  *int32     `json:"Day,omitempty"`
	Time *time.Time `json:"Time,omitempty"`
}

KeyfactorCommonSchedulingModelsMonthlyModel struct for KeyfactorCommonSchedulingModelsMonthlyModel

func NewKeyfactorCommonSchedulingModelsMonthlyModel

func NewKeyfactorCommonSchedulingModelsMonthlyModel() *KeyfactorCommonSchedulingModelsMonthlyModel

NewKeyfactorCommonSchedulingModelsMonthlyModel instantiates a new KeyfactorCommonSchedulingModelsMonthlyModel 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 NewKeyfactorCommonSchedulingModelsMonthlyModelWithDefaults

func NewKeyfactorCommonSchedulingModelsMonthlyModelWithDefaults() *KeyfactorCommonSchedulingModelsMonthlyModel

NewKeyfactorCommonSchedulingModelsMonthlyModelWithDefaults instantiates a new KeyfactorCommonSchedulingModelsMonthlyModel 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 (*KeyfactorCommonSchedulingModelsMonthlyModel) GetDay

GetDay returns the Day field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingModelsMonthlyModel) GetDayOk

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

func (*KeyfactorCommonSchedulingModelsMonthlyModel) GetTime

GetTime returns the Time field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingModelsMonthlyModel) GetTimeOk

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

func (*KeyfactorCommonSchedulingModelsMonthlyModel) HasDay

HasDay returns a boolean if a field has been set.

func (*KeyfactorCommonSchedulingModelsMonthlyModel) HasTime

HasTime returns a boolean if a field has been set.

func (KeyfactorCommonSchedulingModelsMonthlyModel) MarshalJSON

func (*KeyfactorCommonSchedulingModelsMonthlyModel) SetDay

SetDay gets a reference to the given int32 and assigns it to the Day field.

func (*KeyfactorCommonSchedulingModelsMonthlyModel) SetTime

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (KeyfactorCommonSchedulingModelsMonthlyModel) ToMap

func (o KeyfactorCommonSchedulingModelsMonthlyModel) ToMap() (map[string]interface{}, error)

type KeyfactorCommonSchedulingModelsTimeModel

type KeyfactorCommonSchedulingModelsTimeModel struct {
	Time *time.Time `json:"Time,omitempty"`
}

KeyfactorCommonSchedulingModelsTimeModel struct for KeyfactorCommonSchedulingModelsTimeModel

func NewKeyfactorCommonSchedulingModelsTimeModel

func NewKeyfactorCommonSchedulingModelsTimeModel() *KeyfactorCommonSchedulingModelsTimeModel

NewKeyfactorCommonSchedulingModelsTimeModel instantiates a new KeyfactorCommonSchedulingModelsTimeModel 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 NewKeyfactorCommonSchedulingModelsTimeModelWithDefaults

func NewKeyfactorCommonSchedulingModelsTimeModelWithDefaults() *KeyfactorCommonSchedulingModelsTimeModel

NewKeyfactorCommonSchedulingModelsTimeModelWithDefaults instantiates a new KeyfactorCommonSchedulingModelsTimeModel 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 (*KeyfactorCommonSchedulingModelsTimeModel) GetTime

GetTime returns the Time field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingModelsTimeModel) GetTimeOk

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

func (*KeyfactorCommonSchedulingModelsTimeModel) HasTime

HasTime returns a boolean if a field has been set.

func (KeyfactorCommonSchedulingModelsTimeModel) MarshalJSON

func (*KeyfactorCommonSchedulingModelsTimeModel) SetTime

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (KeyfactorCommonSchedulingModelsTimeModel) ToMap

func (o KeyfactorCommonSchedulingModelsTimeModel) ToMap() (map[string]interface{}, error)

type KeyfactorCommonSchedulingModelsWeeklyModel

type KeyfactorCommonSchedulingModelsWeeklyModel struct {
	Days []SystemDayOfWeek `json:"Days,omitempty"`
	Time *time.Time        `json:"Time,omitempty"`
}

KeyfactorCommonSchedulingModelsWeeklyModel struct for KeyfactorCommonSchedulingModelsWeeklyModel

func NewKeyfactorCommonSchedulingModelsWeeklyModel

func NewKeyfactorCommonSchedulingModelsWeeklyModel() *KeyfactorCommonSchedulingModelsWeeklyModel

NewKeyfactorCommonSchedulingModelsWeeklyModel instantiates a new KeyfactorCommonSchedulingModelsWeeklyModel 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 NewKeyfactorCommonSchedulingModelsWeeklyModelWithDefaults

func NewKeyfactorCommonSchedulingModelsWeeklyModelWithDefaults() *KeyfactorCommonSchedulingModelsWeeklyModel

NewKeyfactorCommonSchedulingModelsWeeklyModelWithDefaults instantiates a new KeyfactorCommonSchedulingModelsWeeklyModel 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 (*KeyfactorCommonSchedulingModelsWeeklyModel) GetDays

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

func (*KeyfactorCommonSchedulingModelsWeeklyModel) GetDaysOk

GetDaysOk returns a tuple with the Days 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 (*KeyfactorCommonSchedulingModelsWeeklyModel) GetTime

GetTime returns the Time field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingModelsWeeklyModel) GetTimeOk

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

func (*KeyfactorCommonSchedulingModelsWeeklyModel) HasDays

HasDays returns a boolean if a field has been set.

func (*KeyfactorCommonSchedulingModelsWeeklyModel) HasTime

HasTime returns a boolean if a field has been set.

func (KeyfactorCommonSchedulingModelsWeeklyModel) MarshalJSON

func (*KeyfactorCommonSchedulingModelsWeeklyModel) SetDays

SetDays gets a reference to the given []SystemDayOfWeek and assigns it to the Days field.

func (*KeyfactorCommonSchedulingModelsWeeklyModel) SetTime

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (KeyfactorCommonSchedulingModelsWeeklyModel) ToMap

func (o KeyfactorCommonSchedulingModelsWeeklyModel) ToMap() (map[string]interface{}, error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

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 NullableCSSCMSCoreEnumsClaimType

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

func (NullableCSSCMSCoreEnumsClaimType) Get

func (NullableCSSCMSCoreEnumsClaimType) IsSet

func (NullableCSSCMSCoreEnumsClaimType) MarshalJSON

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

func (*NullableCSSCMSCoreEnumsClaimType) Set

func (*NullableCSSCMSCoreEnumsClaimType) UnmarshalJSON

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

func (*NullableCSSCMSCoreEnumsClaimType) Unset

type NullableCSSCMSDataModelEnumsPamParameterDataType

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

func (NullableCSSCMSDataModelEnumsPamParameterDataType) Get

func (NullableCSSCMSDataModelEnumsPamParameterDataType) IsSet

func (NullableCSSCMSDataModelEnumsPamParameterDataType) MarshalJSON

func (*NullableCSSCMSDataModelEnumsPamParameterDataType) Set

func (*NullableCSSCMSDataModelEnumsPamParameterDataType) UnmarshalJSON

func (*NullableCSSCMSDataModelEnumsPamParameterDataType) Unset

type NullableCSSCMSDataModelModelsPkcs12CertificateResponse

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

func (NullableCSSCMSDataModelModelsPkcs12CertificateResponse) Get

func (NullableCSSCMSDataModelModelsPkcs12CertificateResponse) IsSet

func (NullableCSSCMSDataModelModelsPkcs12CertificateResponse) MarshalJSON

func (*NullableCSSCMSDataModelModelsPkcs12CertificateResponse) Set

func (*NullableCSSCMSDataModelModelsPkcs12CertificateResponse) UnmarshalJSON

func (*NullableCSSCMSDataModelModelsPkcs12CertificateResponse) Unset

type NullableCSSCMSDataModelModelsProviderType

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

func (NullableCSSCMSDataModelModelsProviderType) Get

func (NullableCSSCMSDataModelModelsProviderType) IsSet

func (NullableCSSCMSDataModelModelsProviderType) MarshalJSON

func (*NullableCSSCMSDataModelModelsProviderType) Set

func (*NullableCSSCMSDataModelModelsProviderType) UnmarshalJSON

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

func (*NullableCSSCMSDataModelModelsProviderType) Unset

type NullableCSSCMSDataModelModelsProviderTypeParam

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

func (NullableCSSCMSDataModelModelsProviderTypeParam) Get

func (NullableCSSCMSDataModelModelsProviderTypeParam) IsSet

func (NullableCSSCMSDataModelModelsProviderTypeParam) MarshalJSON

func (*NullableCSSCMSDataModelModelsProviderTypeParam) Set

func (*NullableCSSCMSDataModelModelsProviderTypeParam) UnmarshalJSON

func (*NullableCSSCMSDataModelModelsProviderTypeParam) Unset

type NullableCSSCMSDataModelModelsSSHKeysKeyResponse

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

func (NullableCSSCMSDataModelModelsSSHKeysKeyResponse) Get

func (NullableCSSCMSDataModelModelsSSHKeysKeyResponse) IsSet

func (NullableCSSCMSDataModelModelsSSHKeysKeyResponse) MarshalJSON

func (*NullableCSSCMSDataModelModelsSSHKeysKeyResponse) Set

func (*NullableCSSCMSDataModelModelsSSHKeysKeyResponse) UnmarshalJSON

func (*NullableCSSCMSDataModelModelsSSHKeysKeyResponse) Unset

type NullableCSSCMSDataModelModelsSSHLogonsLogonResponse

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

func (NullableCSSCMSDataModelModelsSSHLogonsLogonResponse) Get

func (NullableCSSCMSDataModelModelsSSHLogonsLogonResponse) IsSet

func (NullableCSSCMSDataModelModelsSSHLogonsLogonResponse) MarshalJSON

func (*NullableCSSCMSDataModelModelsSSHLogonsLogonResponse) Set

func (*NullableCSSCMSDataModelModelsSSHLogonsLogonResponse) UnmarshalJSON

func (*NullableCSSCMSDataModelModelsSSHLogonsLogonResponse) Unset

type NullableCSSCMSDataModelModelsSSHServersServerResponse

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

func (NullableCSSCMSDataModelModelsSSHServersServerResponse) Get

func (NullableCSSCMSDataModelModelsSSHServersServerResponse) IsSet

func (NullableCSSCMSDataModelModelsSSHServersServerResponse) MarshalJSON

func (*NullableCSSCMSDataModelModelsSSHServersServerResponse) Set

func (*NullableCSSCMSDataModelModelsSSHServersServerResponse) UnmarshalJSON

func (*NullableCSSCMSDataModelModelsSSHServersServerResponse) Unset

type NullableCSSCMSDataModelModelsSSHUsersSshUserAccessResponse

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

func (NullableCSSCMSDataModelModelsSSHUsersSshUserAccessResponse) Get

func (NullableCSSCMSDataModelModelsSSHUsersSshUserAccessResponse) IsSet

func (NullableCSSCMSDataModelModelsSSHUsersSshUserAccessResponse) MarshalJSON

func (*NullableCSSCMSDataModelModelsSSHUsersSshUserAccessResponse) Set

func (*NullableCSSCMSDataModelModelsSSHUsersSshUserAccessResponse) UnmarshalJSON

func (*NullableCSSCMSDataModelModelsSSHUsersSshUserAccessResponse) Unset

type NullableCSSCMSDataModelModelsSSHUsersSshUserResponse

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

func (NullableCSSCMSDataModelModelsSSHUsersSshUserResponse) Get

func (NullableCSSCMSDataModelModelsSSHUsersSshUserResponse) IsSet

func (NullableCSSCMSDataModelModelsSSHUsersSshUserResponse) MarshalJSON

func (*NullableCSSCMSDataModelModelsSSHUsersSshUserResponse) Set

func (*NullableCSSCMSDataModelModelsSSHUsersSshUserResponse) UnmarshalJSON

func (*NullableCSSCMSDataModelModelsSSHUsersSshUserResponse) Unset

type NullableCertificatesCertificateIdentityAuditResponse2

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

func (NullableCertificatesCertificateIdentityAuditResponse2) Get

func (NullableCertificatesCertificateIdentityAuditResponse2) IsSet

func (NullableCertificatesCertificateIdentityAuditResponse2) MarshalJSON

func (*NullableCertificatesCertificateIdentityAuditResponse2) Set

func (*NullableCertificatesCertificateIdentityAuditResponse2) UnmarshalJSON

func (*NullableCertificatesCertificateIdentityAuditResponse2) Unset

type NullableCertificatesCertificateIdentityAuditResponse2CertificatePermission

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

func (NullableCertificatesCertificateIdentityAuditResponse2CertificatePermission) Get

func (NullableCertificatesCertificateIdentityAuditResponse2CertificatePermission) IsSet

func (NullableCertificatesCertificateIdentityAuditResponse2CertificatePermission) MarshalJSON

func (*NullableCertificatesCertificateIdentityAuditResponse2CertificatePermission) Set

func (*NullableCertificatesCertificateIdentityAuditResponse2CertificatePermission) UnmarshalJSON

func (*NullableCertificatesCertificateIdentityAuditResponse2CertificatePermission) Unset

type NullableCertificatesCertificateIdentityAuditResponse2IdentityProvider

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

func (NullableCertificatesCertificateIdentityAuditResponse2IdentityProvider) Get

func (NullableCertificatesCertificateIdentityAuditResponse2IdentityProvider) IsSet

func (NullableCertificatesCertificateIdentityAuditResponse2IdentityProvider) MarshalJSON

func (*NullableCertificatesCertificateIdentityAuditResponse2IdentityProvider) Set

func (*NullableCertificatesCertificateIdentityAuditResponse2IdentityProvider) UnmarshalJSON

func (*NullableCertificatesCertificateIdentityAuditResponse2IdentityProvider) Unset

type NullableCertificatesCertificateIdentityAuditResponse2IdentityResponse

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

func (NullableCertificatesCertificateIdentityAuditResponse2IdentityResponse) Get

func (NullableCertificatesCertificateIdentityAuditResponse2IdentityResponse) IsSet

func (NullableCertificatesCertificateIdentityAuditResponse2IdentityResponse) MarshalJSON

func (*NullableCertificatesCertificateIdentityAuditResponse2IdentityResponse) Set

func (*NullableCertificatesCertificateIdentityAuditResponse2IdentityResponse) UnmarshalJSON

func (*NullableCertificatesCertificateIdentityAuditResponse2IdentityResponse) Unset

type NullableEnrollmentManagementStoreRequest

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

func (NullableEnrollmentManagementStoreRequest) Get

func (NullableEnrollmentManagementStoreRequest) IsSet

func (NullableEnrollmentManagementStoreRequest) MarshalJSON

func (*NullableEnrollmentManagementStoreRequest) Set

func (*NullableEnrollmentManagementStoreRequest) UnmarshalJSON

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

func (*NullableEnrollmentManagementStoreRequest) Unset

type NullableEnrollmentPFXEnrollmentManagementResponse

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

func (NullableEnrollmentPFXEnrollmentManagementResponse) Get

func (NullableEnrollmentPFXEnrollmentManagementResponse) IsSet

func (NullableEnrollmentPFXEnrollmentManagementResponse) MarshalJSON

func (*NullableEnrollmentPFXEnrollmentManagementResponse) Set

func (*NullableEnrollmentPFXEnrollmentManagementResponse) UnmarshalJSON

func (*NullableEnrollmentPFXEnrollmentManagementResponse) Unset

type NullableEnrollmentPFXEnrollmentWithStoresRequest

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

func (NullableEnrollmentPFXEnrollmentWithStoresRequest) Get

func (NullableEnrollmentPFXEnrollmentWithStoresRequest) IsSet

func (NullableEnrollmentPFXEnrollmentWithStoresRequest) MarshalJSON

func (*NullableEnrollmentPFXEnrollmentWithStoresRequest) Set

func (*NullableEnrollmentPFXEnrollmentWithStoresRequest) UnmarshalJSON

func (*NullableEnrollmentPFXEnrollmentWithStoresRequest) 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 NullableKeyfactorCommonQueryableExtensionsSortOrder

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

func (NullableKeyfactorCommonQueryableExtensionsSortOrder) Get

func (NullableKeyfactorCommonQueryableExtensionsSortOrder) IsSet

func (NullableKeyfactorCommonQueryableExtensionsSortOrder) MarshalJSON

func (*NullableKeyfactorCommonQueryableExtensionsSortOrder) Set

func (*NullableKeyfactorCommonQueryableExtensionsSortOrder) UnmarshalJSON

func (*NullableKeyfactorCommonQueryableExtensionsSortOrder) Unset

type NullableKeyfactorCommonSchedulingKeyfactorSchedule

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

func (NullableKeyfactorCommonSchedulingKeyfactorSchedule) Get

func (NullableKeyfactorCommonSchedulingKeyfactorSchedule) IsSet

func (NullableKeyfactorCommonSchedulingKeyfactorSchedule) MarshalJSON

func (*NullableKeyfactorCommonSchedulingKeyfactorSchedule) Set

func (*NullableKeyfactorCommonSchedulingKeyfactorSchedule) UnmarshalJSON

func (*NullableKeyfactorCommonSchedulingKeyfactorSchedule) Unset

type NullableKeyfactorCommonSchedulingModelsIntervalModel

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

func (NullableKeyfactorCommonSchedulingModelsIntervalModel) Get

func (NullableKeyfactorCommonSchedulingModelsIntervalModel) IsSet

func (NullableKeyfactorCommonSchedulingModelsIntervalModel) MarshalJSON

func (*NullableKeyfactorCommonSchedulingModelsIntervalModel) Set

func (*NullableKeyfactorCommonSchedulingModelsIntervalModel) UnmarshalJSON

func (*NullableKeyfactorCommonSchedulingModelsIntervalModel) Unset

type NullableKeyfactorCommonSchedulingModelsMonthlyModel

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

func (NullableKeyfactorCommonSchedulingModelsMonthlyModel) Get

func (NullableKeyfactorCommonSchedulingModelsMonthlyModel) IsSet

func (NullableKeyfactorCommonSchedulingModelsMonthlyModel) MarshalJSON

func (*NullableKeyfactorCommonSchedulingModelsMonthlyModel) Set

func (*NullableKeyfactorCommonSchedulingModelsMonthlyModel) UnmarshalJSON

func (*NullableKeyfactorCommonSchedulingModelsMonthlyModel) Unset

type NullableKeyfactorCommonSchedulingModelsTimeModel

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

func (NullableKeyfactorCommonSchedulingModelsTimeModel) Get

func (NullableKeyfactorCommonSchedulingModelsTimeModel) IsSet

func (NullableKeyfactorCommonSchedulingModelsTimeModel) MarshalJSON

func (*NullableKeyfactorCommonSchedulingModelsTimeModel) Set

func (*NullableKeyfactorCommonSchedulingModelsTimeModel) UnmarshalJSON

func (*NullableKeyfactorCommonSchedulingModelsTimeModel) Unset

type NullableKeyfactorCommonSchedulingModelsWeeklyModel

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

func (NullableKeyfactorCommonSchedulingModelsWeeklyModel) Get

func (NullableKeyfactorCommonSchedulingModelsWeeklyModel) IsSet

func (NullableKeyfactorCommonSchedulingModelsWeeklyModel) MarshalJSON

func (*NullableKeyfactorCommonSchedulingModelsWeeklyModel) Set

func (*NullableKeyfactorCommonSchedulingModelsWeeklyModel) UnmarshalJSON

func (*NullableKeyfactorCommonSchedulingModelsWeeklyModel) Unset

type NullablePAMPamProviderTypeParamValueResponse

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

func (NullablePAMPamProviderTypeParamValueResponse) Get

func (NullablePAMPamProviderTypeParamValueResponse) IsSet

func (NullablePAMPamProviderTypeParamValueResponse) MarshalJSON

func (*NullablePAMPamProviderTypeParamValueResponse) Set

func (*NullablePAMPamProviderTypeParamValueResponse) UnmarshalJSON

func (*NullablePAMPamProviderTypeParamValueResponse) Unset

type NullablePAMProviderCreateRequest

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

func (NullablePAMProviderCreateRequest) Get

func (NullablePAMProviderCreateRequest) IsSet

func (NullablePAMProviderCreateRequest) MarshalJSON

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

func (*NullablePAMProviderCreateRequest) Set

func (*NullablePAMProviderCreateRequest) UnmarshalJSON

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

func (*NullablePAMProviderCreateRequest) Unset

type NullablePAMProviderCreateRequestProviderType

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

func (NullablePAMProviderCreateRequestProviderType) Get

func (NullablePAMProviderCreateRequestProviderType) IsSet

func (NullablePAMProviderCreateRequestProviderType) MarshalJSON

func (*NullablePAMProviderCreateRequestProviderType) Set

func (*NullablePAMProviderCreateRequestProviderType) UnmarshalJSON

func (*NullablePAMProviderCreateRequestProviderType) Unset

type NullablePAMProviderCreateRequestProviderTypeParam

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

func (NullablePAMProviderCreateRequestProviderTypeParam) Get

func (NullablePAMProviderCreateRequestProviderTypeParam) IsSet

func (NullablePAMProviderCreateRequestProviderTypeParam) MarshalJSON

func (*NullablePAMProviderCreateRequestProviderTypeParam) Set

func (*NullablePAMProviderCreateRequestProviderTypeParam) UnmarshalJSON

func (*NullablePAMProviderCreateRequestProviderTypeParam) Unset

type NullablePAMProviderCreateRequestTypeParamValue

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

func (NullablePAMProviderCreateRequestTypeParamValue) Get

func (NullablePAMProviderCreateRequestTypeParamValue) IsSet

func (NullablePAMProviderCreateRequestTypeParamValue) MarshalJSON

func (*NullablePAMProviderCreateRequestTypeParamValue) Set

func (*NullablePAMProviderCreateRequestTypeParamValue) UnmarshalJSON

func (*NullablePAMProviderCreateRequestTypeParamValue) Unset

type NullablePAMProviderResponse

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

func NewNullablePAMProviderResponse

func NewNullablePAMProviderResponse(val *PAMProviderResponse) *NullablePAMProviderResponse

func (NullablePAMProviderResponse) Get

func (NullablePAMProviderResponse) IsSet

func (NullablePAMProviderResponse) MarshalJSON

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

func (*NullablePAMProviderResponse) Set

func (*NullablePAMProviderResponse) UnmarshalJSON

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

func (*NullablePAMProviderResponse) Unset

func (v *NullablePAMProviderResponse) Unset()

type NullablePAMProviderTypeCreateRequest

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

func (NullablePAMProviderTypeCreateRequest) Get

func (NullablePAMProviderTypeCreateRequest) IsSet

func (NullablePAMProviderTypeCreateRequest) MarshalJSON

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

func (*NullablePAMProviderTypeCreateRequest) Set

func (*NullablePAMProviderTypeCreateRequest) UnmarshalJSON

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

func (*NullablePAMProviderTypeCreateRequest) Unset

type NullablePAMProviderTypeParameterCreateRequest

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

func (NullablePAMProviderTypeParameterCreateRequest) Get

func (NullablePAMProviderTypeParameterCreateRequest) IsSet

func (NullablePAMProviderTypeParameterCreateRequest) MarshalJSON

func (*NullablePAMProviderTypeParameterCreateRequest) Set

func (*NullablePAMProviderTypeParameterCreateRequest) UnmarshalJSON

func (*NullablePAMProviderTypeParameterCreateRequest) Unset

type NullablePAMProviderTypeParameterResponse

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

func (NullablePAMProviderTypeParameterResponse) Get

func (NullablePAMProviderTypeParameterResponse) IsSet

func (NullablePAMProviderTypeParameterResponse) MarshalJSON

func (*NullablePAMProviderTypeParameterResponse) Set

func (*NullablePAMProviderTypeParameterResponse) UnmarshalJSON

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

func (*NullablePAMProviderTypeParameterResponse) Unset

type NullablePAMProviderTypeResponse

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

func (NullablePAMProviderTypeResponse) Get

func (NullablePAMProviderTypeResponse) IsSet

func (NullablePAMProviderTypeResponse) MarshalJSON

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

func (*NullablePAMProviderTypeResponse) Set

func (*NullablePAMProviderTypeResponse) UnmarshalJSON

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

func (*NullablePAMProviderTypeResponse) Unset

type NullablePAMProviderUpdateRequest

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

func (NullablePAMProviderUpdateRequest) Get

func (NullablePAMProviderUpdateRequest) IsSet

func (NullablePAMProviderUpdateRequest) MarshalJSON

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

func (*NullablePAMProviderUpdateRequest) Set

func (*NullablePAMProviderUpdateRequest) UnmarshalJSON

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

func (*NullablePAMProviderUpdateRequest) Unset

type NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse

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

func (NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) Get

func (NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) IsSet

func (NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) MarshalJSON

func (*NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) Set

func (*NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) UnmarshalJSON

func (*NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) Unset

type NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionRequest

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

func (NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) Get

func (NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) IsSet

func (NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) MarshalJSON

func (*NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) Set

func (*NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) UnmarshalJSON

func (*NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) Unset

type NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionResponse

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

func (NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) Get

func (NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) IsSet

func (NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) MarshalJSON

func (*NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) Set

func (*NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) UnmarshalJSON

func (*NullableSecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) Unset

type NullableSecuritySecurityRolesSecurityRoleCreationRequest

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

func (NullableSecuritySecurityRolesSecurityRoleCreationRequest) Get

func (NullableSecuritySecurityRolesSecurityRoleCreationRequest) IsSet

func (NullableSecuritySecurityRolesSecurityRoleCreationRequest) MarshalJSON

func (*NullableSecuritySecurityRolesSecurityRoleCreationRequest) Set

func (*NullableSecuritySecurityRolesSecurityRoleCreationRequest) UnmarshalJSON

func (*NullableSecuritySecurityRolesSecurityRoleCreationRequest) Unset

type NullableSecuritySecurityRolesSecurityRoleQueryResponse

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

func (NullableSecuritySecurityRolesSecurityRoleQueryResponse) Get

func (NullableSecuritySecurityRolesSecurityRoleQueryResponse) IsSet

func (NullableSecuritySecurityRolesSecurityRoleQueryResponse) MarshalJSON

func (*NullableSecuritySecurityRolesSecurityRoleQueryResponse) Set

func (*NullableSecuritySecurityRolesSecurityRoleQueryResponse) UnmarshalJSON

func (*NullableSecuritySecurityRolesSecurityRoleQueryResponse) Unset

type NullableSecuritySecurityRolesSecurityRoleResponse

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

func (NullableSecuritySecurityRolesSecurityRoleResponse) Get

func (NullableSecuritySecurityRolesSecurityRoleResponse) IsSet

func (NullableSecuritySecurityRolesSecurityRoleResponse) MarshalJSON

func (*NullableSecuritySecurityRolesSecurityRoleResponse) Set

func (*NullableSecuritySecurityRolesSecurityRoleResponse) UnmarshalJSON

func (*NullableSecuritySecurityRolesSecurityRoleResponse) Unset

type NullableSecuritySecurityRolesSecurityRoleUpdateRequest

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

func (NullableSecuritySecurityRolesSecurityRoleUpdateRequest) Get

func (NullableSecuritySecurityRolesSecurityRoleUpdateRequest) IsSet

func (NullableSecuritySecurityRolesSecurityRoleUpdateRequest) MarshalJSON

func (*NullableSecuritySecurityRolesSecurityRoleUpdateRequest) Set

func (*NullableSecuritySecurityRolesSecurityRoleUpdateRequest) UnmarshalJSON

func (*NullableSecuritySecurityRolesSecurityRoleUpdateRequest) 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 NullableSystemDayOfWeek

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

func NewNullableSystemDayOfWeek

func NewNullableSystemDayOfWeek(val *SystemDayOfWeek) *NullableSystemDayOfWeek

func (NullableSystemDayOfWeek) Get

func (NullableSystemDayOfWeek) IsSet

func (v NullableSystemDayOfWeek) IsSet() bool

func (NullableSystemDayOfWeek) MarshalJSON

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

func (*NullableSystemDayOfWeek) Set

func (*NullableSystemDayOfWeek) UnmarshalJSON

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

func (*NullableSystemDayOfWeek) Unset

func (v *NullableSystemDayOfWeek) 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 PAMPamProviderTypeParamValueResponse

type PAMPamProviderTypeParamValueResponse struct {
	Id                *int32                            `json:"Id,omitempty"`
	Value             NullableString                    `json:"Value,omitempty"`
	InstanceId        NullableInt32                     `json:"InstanceId,omitempty"`
	InstanceGuid      NullableString                    `json:"InstanceGuid,omitempty"`
	ProviderTypeParam *PAMProviderTypeParameterResponse `json:"ProviderTypeParam,omitempty"`
}

PAMPamProviderTypeParamValueResponse struct for PAMPamProviderTypeParamValueResponse

func NewPAMPamProviderTypeParamValueResponse

func NewPAMPamProviderTypeParamValueResponse() *PAMPamProviderTypeParamValueResponse

NewPAMPamProviderTypeParamValueResponse instantiates a new PAMPamProviderTypeParamValueResponse 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 NewPAMPamProviderTypeParamValueResponseWithDefaults

func NewPAMPamProviderTypeParamValueResponseWithDefaults() *PAMPamProviderTypeParamValueResponse

NewPAMPamProviderTypeParamValueResponseWithDefaults instantiates a new PAMPamProviderTypeParamValueResponse 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 (*PAMPamProviderTypeParamValueResponse) GetId

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

func (*PAMPamProviderTypeParamValueResponse) GetIdOk

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 (*PAMPamProviderTypeParamValueResponse) GetInstanceGuid

func (o *PAMPamProviderTypeParamValueResponse) GetInstanceGuid() string

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

func (*PAMPamProviderTypeParamValueResponse) GetInstanceGuidOk

func (o *PAMPamProviderTypeParamValueResponse) GetInstanceGuidOk() (*string, bool)

GetInstanceGuidOk returns a tuple with the InstanceGuid 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 (*PAMPamProviderTypeParamValueResponse) GetInstanceId

func (o *PAMPamProviderTypeParamValueResponse) GetInstanceId() int32

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

func (*PAMPamProviderTypeParamValueResponse) GetInstanceIdOk

func (o *PAMPamProviderTypeParamValueResponse) GetInstanceIdOk() (*int32, bool)

GetInstanceIdOk returns a tuple with the InstanceId 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 (*PAMPamProviderTypeParamValueResponse) GetProviderTypeParam

GetProviderTypeParam returns the ProviderTypeParam field value if set, zero value otherwise.

func (*PAMPamProviderTypeParamValueResponse) GetProviderTypeParamOk

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

func (*PAMPamProviderTypeParamValueResponse) GetValue

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

func (*PAMPamProviderTypeParamValueResponse) GetValueOk

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

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

func (*PAMPamProviderTypeParamValueResponse) HasId

HasId returns a boolean if a field has been set.

func (*PAMPamProviderTypeParamValueResponse) HasInstanceGuid

func (o *PAMPamProviderTypeParamValueResponse) HasInstanceGuid() bool

HasInstanceGuid returns a boolean if a field has been set.

func (*PAMPamProviderTypeParamValueResponse) HasInstanceId

func (o *PAMPamProviderTypeParamValueResponse) HasInstanceId() bool

HasInstanceId returns a boolean if a field has been set.

func (*PAMPamProviderTypeParamValueResponse) HasProviderTypeParam

func (o *PAMPamProviderTypeParamValueResponse) HasProviderTypeParam() bool

HasProviderTypeParam returns a boolean if a field has been set.

func (*PAMPamProviderTypeParamValueResponse) HasValue

HasValue returns a boolean if a field has been set.

func (PAMPamProviderTypeParamValueResponse) MarshalJSON

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

func (*PAMPamProviderTypeParamValueResponse) SetId

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

func (*PAMPamProviderTypeParamValueResponse) SetInstanceGuid

func (o *PAMPamProviderTypeParamValueResponse) SetInstanceGuid(v string)

SetInstanceGuid gets a reference to the given NullableString and assigns it to the InstanceGuid field.

func (*PAMPamProviderTypeParamValueResponse) SetInstanceGuidNil

func (o *PAMPamProviderTypeParamValueResponse) SetInstanceGuidNil()

SetInstanceGuidNil sets the value for InstanceGuid to be an explicit nil

func (*PAMPamProviderTypeParamValueResponse) SetInstanceId

func (o *PAMPamProviderTypeParamValueResponse) SetInstanceId(v int32)

SetInstanceId gets a reference to the given NullableInt32 and assigns it to the InstanceId field.

func (*PAMPamProviderTypeParamValueResponse) SetInstanceIdNil

func (o *PAMPamProviderTypeParamValueResponse) SetInstanceIdNil()

SetInstanceIdNil sets the value for InstanceId to be an explicit nil

func (*PAMPamProviderTypeParamValueResponse) SetProviderTypeParam

SetProviderTypeParam gets a reference to the given PAMProviderTypeParameterResponse and assigns it to the ProviderTypeParam field.

func (*PAMPamProviderTypeParamValueResponse) SetValue

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

func (*PAMPamProviderTypeParamValueResponse) SetValueNil

func (o *PAMPamProviderTypeParamValueResponse) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (PAMPamProviderTypeParamValueResponse) ToMap

func (o PAMPamProviderTypeParamValueResponse) ToMap() (map[string]interface{}, error)

func (*PAMPamProviderTypeParamValueResponse) UnsetInstanceGuid

func (o *PAMPamProviderTypeParamValueResponse) UnsetInstanceGuid()

UnsetInstanceGuid ensures that no value is present for InstanceGuid, not even an explicit nil

func (*PAMPamProviderTypeParamValueResponse) UnsetInstanceId

func (o *PAMPamProviderTypeParamValueResponse) UnsetInstanceId()

UnsetInstanceId ensures that no value is present for InstanceId, not even an explicit nil

func (*PAMPamProviderTypeParamValueResponse) UnsetValue

func (o *PAMPamProviderTypeParamValueResponse) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type PAMProviderApiService

type PAMProviderApiService service

PAMProviderApiService PAMProviderApi service

func (*PAMProviderApiService) CreatePamProvidersExecute

Executes the API request V2 POST /PamProviders

@return PAMProviderResponse

func (*PAMProviderApiService) CreatePamProvidersTypesExecute

Executes the API request V2 POST /PamProviders/Types

@return PAMProviderTypeResponse

func (*PAMProviderApiService) DeletePamProvidersByIdExecute

func (a *PAMProviderApiService) DeletePamProvidersByIdExecute(r ApiDeletePamProvidersByIdRequest) (*http.Response, error)

Executes the API request

func (*PAMProviderApiService) GetPamProvidersByIdExecute

Executes the API request V2 GET /PamProviders/{id}

@return PAMProviderResponse

func (*PAMProviderApiService) GetPamProvidersExecute

Executes the API request V2 GET /PamProviders

@return []PAMProviderResponse

func (*PAMProviderApiService) GetPamProvidersTypesByIdExecute

Executes the API request V2 GET /PamProviders/Types/{id}

@return []PAMProviderTypeResponse

func (*PAMProviderApiService) GetPamProvidersTypesExecute

Executes the API request V2 GET /PamProviders/Types

@return []PAMProviderTypeResponse

func (*PAMProviderApiService) NewCreatePamProvidersRequest

func (a *PAMProviderApiService) NewCreatePamProvidersRequest(ctx context.Context) ApiCreatePamProvidersRequest

Creates a new V2 POST /PamProviders request.

CreatePamProviders Creates a new PAM provider with the associated properties

### PAM Provider Data Types ### | Value | Description | |--------------------|---------------------------| | 1 | string | | 2 | secret |

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

func (*PAMProviderApiService) NewCreatePamProvidersTypesRequest

func (a *PAMProviderApiService) NewCreatePamProvidersTypesRequest(ctx context.Context) ApiCreatePamProvidersTypesRequest

Creates a new V2 POST /PamProviders/Types request.

CreatePamProvidersTypes Creates a new PAM provider type with the associated properties

### PAM Provider Data Types ### | Value | Description | |--------------------|---------------------------| | 1 | string | | 2 | secret |

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

func (*PAMProviderApiService) NewDeletePamProvidersByIdRequest

func (a *PAMProviderApiService) NewDeletePamProvidersByIdRequest(ctx context.Context, id int32) ApiDeletePamProvidersByIdRequest

Creates a new V2 DELETE /PamProviders/{id} request.

DeletePamProvidersById Deletes a PAM Provider

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the PAM provider to be deleted
@return ApiDeletePamProvidersByIdRequest

func (*PAMProviderApiService) NewGetPamProvidersByIdRequest

func (a *PAMProviderApiService) NewGetPamProvidersByIdRequest(ctx context.Context, id int32) ApiGetPamProvidersByIdRequest

Creates a new V2 GET /PamProviders/{id} request.

GetPamProvidersById Returns a single PAM Provider that matches the associated id

### PAM Provider Data Types ### | Value | Description | |--------------------|---------------------------| | 1 | string | | 2 | secret |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the PAM provider
@return ApiGetPamProvidersByIdRequest

func (*PAMProviderApiService) NewGetPamProvidersRequest

func (a *PAMProviderApiService) NewGetPamProvidersRequest(ctx context.Context) ApiGetPamProvidersRequest

Creates a new V2 GET /PamProviders request.

GetPamProviders Returns all PAM providers according to the provided filter and output parameters

### PAM Provider Data Types ### | Value | Description | |--------------------|---------------------------| | 1 | string | | 2 | secret |

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

func (*PAMProviderApiService) NewGetPamProvidersTypesByIdRequest

func (a *PAMProviderApiService) NewGetPamProvidersTypesByIdRequest(ctx context.Context, id int32) ApiGetPamProvidersTypesByIdRequest

Creates a new V2 GET /PamProviders/Types/{id} request.

GetPamProvidersTypesById Returns PAM provider Type for a specific PAM provider

### PAM Provider Data Types ### | Value | Description | |--------------------|---------------------------| | 1 | string | | 2 | secret |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the PAM provider
@return ApiGetPamProvidersTypesByIdRequest

func (*PAMProviderApiService) NewGetPamProvidersTypesRequest

func (a *PAMProviderApiService) NewGetPamProvidersTypesRequest(ctx context.Context) ApiGetPamProvidersTypesRequest

Creates a new V2 GET /PamProviders/Types request.

GetPamProvidersTypes Returns all PAM provider types in the Keyfactor instance

### PAM Provider Data Types ### | Value | Description | |--------------------|---------------------------| | 1 | string | | 2 | secret |

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

func (*PAMProviderApiService) NewUpdatePamProvidersRequest

func (a *PAMProviderApiService) NewUpdatePamProvidersRequest(ctx context.Context) ApiUpdatePamProvidersRequest

Creates a new V2 PUT /PamProviders request.

UpdatePamProviders Updates an existing PAM provider according to the provided properties

### PAM Provider Data Types ### | Value | Description | |--------------------|---------------------------| | 1 | string | | 2 | secret |

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

func (*PAMProviderApiService) UpdatePamProvidersExecute

Executes the API request V2 PUT /PamProviders

@return PAMProviderResponse

type PAMProviderCreateRequest

type PAMProviderCreateRequest struct {
	Name                    string                                   `json:"Name"`
	Remote                  *bool                                    `json:"Remote,omitempty"`
	Area                    *int32                                   `json:"Area,omitempty"`
	ProviderType            PAMProviderCreateRequestProviderType     `json:"ProviderType"`
	ProviderTypeParamValues []PAMProviderCreateRequestTypeParamValue `json:"ProviderTypeParamValues,omitempty"`
	SecuredAreaId           NullableInt32                            `json:"SecuredAreaId,omitempty"`
}

PAMProviderCreateRequest struct for PAMProviderCreateRequest

func NewPAMProviderCreateRequest

func NewPAMProviderCreateRequest(name string, providerType PAMProviderCreateRequestProviderType) *PAMProviderCreateRequest

NewPAMProviderCreateRequest instantiates a new PAMProviderCreateRequest 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 NewPAMProviderCreateRequestWithDefaults

func NewPAMProviderCreateRequestWithDefaults() *PAMProviderCreateRequest

NewPAMProviderCreateRequestWithDefaults instantiates a new PAMProviderCreateRequest 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 (*PAMProviderCreateRequest) GetArea

func (o *PAMProviderCreateRequest) GetArea() int32

GetArea returns the Area field value if set, zero value otherwise.

func (*PAMProviderCreateRequest) GetAreaOk

func (o *PAMProviderCreateRequest) GetAreaOk() (*int32, bool)

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

func (*PAMProviderCreateRequest) GetName

func (o *PAMProviderCreateRequest) GetName() string

GetName returns the Name field value

func (*PAMProviderCreateRequest) GetNameOk

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

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

func (*PAMProviderCreateRequest) GetProviderType

GetProviderType returns the ProviderType field value

func (*PAMProviderCreateRequest) GetProviderTypeOk

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

func (*PAMProviderCreateRequest) GetProviderTypeParamValues

func (o *PAMProviderCreateRequest) GetProviderTypeParamValues() []PAMProviderCreateRequestTypeParamValue

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

func (*PAMProviderCreateRequest) GetProviderTypeParamValuesOk

func (o *PAMProviderCreateRequest) GetProviderTypeParamValuesOk() ([]PAMProviderCreateRequestTypeParamValue, bool)

GetProviderTypeParamValuesOk returns a tuple with the ProviderTypeParamValues 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 (*PAMProviderCreateRequest) GetRemote

func (o *PAMProviderCreateRequest) GetRemote() bool

GetRemote returns the Remote field value if set, zero value otherwise.

func (*PAMProviderCreateRequest) GetRemoteOk

func (o *PAMProviderCreateRequest) GetRemoteOk() (*bool, bool)

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

func (*PAMProviderCreateRequest) GetSecuredAreaId

func (o *PAMProviderCreateRequest) GetSecuredAreaId() int32

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

func (*PAMProviderCreateRequest) GetSecuredAreaIdOk

func (o *PAMProviderCreateRequest) GetSecuredAreaIdOk() (*int32, bool)

GetSecuredAreaIdOk returns a tuple with the SecuredAreaId 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 (*PAMProviderCreateRequest) HasArea

func (o *PAMProviderCreateRequest) HasArea() bool

HasArea returns a boolean if a field has been set.

func (*PAMProviderCreateRequest) HasProviderTypeParamValues

func (o *PAMProviderCreateRequest) HasProviderTypeParamValues() bool

HasProviderTypeParamValues returns a boolean if a field has been set.

func (*PAMProviderCreateRequest) HasRemote

func (o *PAMProviderCreateRequest) HasRemote() bool

HasRemote returns a boolean if a field has been set.

func (*PAMProviderCreateRequest) HasSecuredAreaId

func (o *PAMProviderCreateRequest) HasSecuredAreaId() bool

HasSecuredAreaId returns a boolean if a field has been set.

func (PAMProviderCreateRequest) MarshalJSON

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

func (*PAMProviderCreateRequest) SetArea

func (o *PAMProviderCreateRequest) SetArea(v int32)

SetArea gets a reference to the given int32 and assigns it to the Area field.

func (*PAMProviderCreateRequest) SetName

func (o *PAMProviderCreateRequest) SetName(v string)

SetName sets field value

func (*PAMProviderCreateRequest) SetProviderType

SetProviderType sets field value

func (*PAMProviderCreateRequest) SetProviderTypeParamValues

func (o *PAMProviderCreateRequest) SetProviderTypeParamValues(v []PAMProviderCreateRequestTypeParamValue)

SetProviderTypeParamValues gets a reference to the given []PAMProviderCreateRequestTypeParamValue and assigns it to the ProviderTypeParamValues field.

func (*PAMProviderCreateRequest) SetRemote

func (o *PAMProviderCreateRequest) SetRemote(v bool)

SetRemote gets a reference to the given bool and assigns it to the Remote field.

func (*PAMProviderCreateRequest) SetSecuredAreaId

func (o *PAMProviderCreateRequest) SetSecuredAreaId(v int32)

SetSecuredAreaId gets a reference to the given NullableInt32 and assigns it to the SecuredAreaId field.

func (*PAMProviderCreateRequest) SetSecuredAreaIdNil

func (o *PAMProviderCreateRequest) SetSecuredAreaIdNil()

SetSecuredAreaIdNil sets the value for SecuredAreaId to be an explicit nil

func (PAMProviderCreateRequest) ToMap

func (o PAMProviderCreateRequest) ToMap() (map[string]interface{}, error)

func (*PAMProviderCreateRequest) UnsetSecuredAreaId

func (o *PAMProviderCreateRequest) UnsetSecuredAreaId()

UnsetSecuredAreaId ensures that no value is present for SecuredAreaId, not even an explicit nil

type PAMProviderCreateRequestProviderType

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

PAMProviderCreateRequestProviderType struct for PAMProviderCreateRequestProviderType

func NewPAMProviderCreateRequestProviderType

func NewPAMProviderCreateRequestProviderType() *PAMProviderCreateRequestProviderType

NewPAMProviderCreateRequestProviderType instantiates a new PAMProviderCreateRequestProviderType 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 NewPAMProviderCreateRequestProviderTypeWithDefaults

func NewPAMProviderCreateRequestProviderTypeWithDefaults() *PAMProviderCreateRequestProviderType

NewPAMProviderCreateRequestProviderTypeWithDefaults instantiates a new PAMProviderCreateRequestProviderType 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 (*PAMProviderCreateRequestProviderType) GetId

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

func (*PAMProviderCreateRequestProviderType) GetIdOk

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 (*PAMProviderCreateRequestProviderType) HasId

HasId returns a boolean if a field has been set.

func (PAMProviderCreateRequestProviderType) MarshalJSON

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

func (*PAMProviderCreateRequestProviderType) SetId

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

func (PAMProviderCreateRequestProviderType) ToMap

func (o PAMProviderCreateRequestProviderType) ToMap() (map[string]interface{}, error)

type PAMProviderCreateRequestProviderTypeParam

type PAMProviderCreateRequestProviderTypeParam struct {
	Id            *int32         `json:"Id,omitempty"`
	Name          NullableString `json:"Name,omitempty"`
	DisplayName   NullableString `json:"DisplayName,omitempty"`
	InstanceLevel *bool          `json:"InstanceLevel,omitempty"`
}

PAMProviderCreateRequestProviderTypeParam struct for PAMProviderCreateRequestProviderTypeParam

func NewPAMProviderCreateRequestProviderTypeParam

func NewPAMProviderCreateRequestProviderTypeParam() *PAMProviderCreateRequestProviderTypeParam

NewPAMProviderCreateRequestProviderTypeParam instantiates a new PAMProviderCreateRequestProviderTypeParam 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 NewPAMProviderCreateRequestProviderTypeParamWithDefaults

func NewPAMProviderCreateRequestProviderTypeParamWithDefaults() *PAMProviderCreateRequestProviderTypeParam

NewPAMProviderCreateRequestProviderTypeParamWithDefaults instantiates a new PAMProviderCreateRequestProviderTypeParam 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 (*PAMProviderCreateRequestProviderTypeParam) GetDisplayName

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

func (*PAMProviderCreateRequestProviderTypeParam) GetDisplayNameOk

func (o *PAMProviderCreateRequestProviderTypeParam) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PAMProviderCreateRequestProviderTypeParam) GetId

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

func (*PAMProviderCreateRequestProviderTypeParam) GetIdOk

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 (*PAMProviderCreateRequestProviderTypeParam) GetInstanceLevel

func (o *PAMProviderCreateRequestProviderTypeParam) GetInstanceLevel() bool

GetInstanceLevel returns the InstanceLevel field value if set, zero value otherwise.

func (*PAMProviderCreateRequestProviderTypeParam) GetInstanceLevelOk

func (o *PAMProviderCreateRequestProviderTypeParam) GetInstanceLevelOk() (*bool, bool)

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

func (*PAMProviderCreateRequestProviderTypeParam) GetName

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

func (*PAMProviderCreateRequestProviderTypeParam) GetNameOk

GetNameOk returns a tuple with the Name 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 (*PAMProviderCreateRequestProviderTypeParam) HasDisplayName

func (o *PAMProviderCreateRequestProviderTypeParam) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*PAMProviderCreateRequestProviderTypeParam) HasId

HasId returns a boolean if a field has been set.

func (*PAMProviderCreateRequestProviderTypeParam) HasInstanceLevel

func (o *PAMProviderCreateRequestProviderTypeParam) HasInstanceLevel() bool

HasInstanceLevel returns a boolean if a field has been set.

func (*PAMProviderCreateRequestProviderTypeParam) HasName

HasName returns a boolean if a field has been set.

func (PAMProviderCreateRequestProviderTypeParam) MarshalJSON

func (*PAMProviderCreateRequestProviderTypeParam) SetDisplayName

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

func (*PAMProviderCreateRequestProviderTypeParam) SetDisplayNameNil

func (o *PAMProviderCreateRequestProviderTypeParam) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*PAMProviderCreateRequestProviderTypeParam) SetId

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

func (*PAMProviderCreateRequestProviderTypeParam) SetInstanceLevel

func (o *PAMProviderCreateRequestProviderTypeParam) SetInstanceLevel(v bool)

SetInstanceLevel gets a reference to the given bool and assigns it to the InstanceLevel field.

func (*PAMProviderCreateRequestProviderTypeParam) SetName

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*PAMProviderCreateRequestProviderTypeParam) SetNameNil

SetNameNil sets the value for Name to be an explicit nil

func (PAMProviderCreateRequestProviderTypeParam) ToMap

func (o PAMProviderCreateRequestProviderTypeParam) ToMap() (map[string]interface{}, error)

func (*PAMProviderCreateRequestProviderTypeParam) UnsetDisplayName

func (o *PAMProviderCreateRequestProviderTypeParam) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

func (*PAMProviderCreateRequestProviderTypeParam) UnsetName

UnsetName ensures that no value is present for Name, not even an explicit nil

type PAMProviderCreateRequestTypeParamValue

type PAMProviderCreateRequestTypeParamValue struct {
	Id                *int32                                     `json:"Id,omitempty"`
	Value             NullableString                             `json:"Value,omitempty"`
	InstanceId        NullableInt32                              `json:"InstanceId,omitempty"`
	InstanceGuid      NullableString                             `json:"InstanceGuid,omitempty"`
	ProviderTypeParam *PAMProviderCreateRequestProviderTypeParam `json:"ProviderTypeParam,omitempty"`
}

PAMProviderCreateRequestTypeParamValue struct for PAMProviderCreateRequestTypeParamValue

func NewPAMProviderCreateRequestTypeParamValue

func NewPAMProviderCreateRequestTypeParamValue() *PAMProviderCreateRequestTypeParamValue

NewPAMProviderCreateRequestTypeParamValue instantiates a new PAMProviderCreateRequestTypeParamValue 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 NewPAMProviderCreateRequestTypeParamValueWithDefaults

func NewPAMProviderCreateRequestTypeParamValueWithDefaults() *PAMProviderCreateRequestTypeParamValue

NewPAMProviderCreateRequestTypeParamValueWithDefaults instantiates a new PAMProviderCreateRequestTypeParamValue 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 (*PAMProviderCreateRequestTypeParamValue) GetId

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

func (*PAMProviderCreateRequestTypeParamValue) GetIdOk

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 (*PAMProviderCreateRequestTypeParamValue) GetInstanceGuid

func (o *PAMProviderCreateRequestTypeParamValue) GetInstanceGuid() string

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

func (*PAMProviderCreateRequestTypeParamValue) GetInstanceGuidOk

func (o *PAMProviderCreateRequestTypeParamValue) GetInstanceGuidOk() (*string, bool)

GetInstanceGuidOk returns a tuple with the InstanceGuid 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 (*PAMProviderCreateRequestTypeParamValue) GetInstanceId

func (o *PAMProviderCreateRequestTypeParamValue) GetInstanceId() int32

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

func (*PAMProviderCreateRequestTypeParamValue) GetInstanceIdOk

func (o *PAMProviderCreateRequestTypeParamValue) GetInstanceIdOk() (*int32, bool)

GetInstanceIdOk returns a tuple with the InstanceId 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 (*PAMProviderCreateRequestTypeParamValue) GetProviderTypeParam

GetProviderTypeParam returns the ProviderTypeParam field value if set, zero value otherwise.

func (*PAMProviderCreateRequestTypeParamValue) GetProviderTypeParamOk

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

func (*PAMProviderCreateRequestTypeParamValue) GetValue

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

func (*PAMProviderCreateRequestTypeParamValue) GetValueOk

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

func (*PAMProviderCreateRequestTypeParamValue) HasId

HasId returns a boolean if a field has been set.

func (*PAMProviderCreateRequestTypeParamValue) HasInstanceGuid

func (o *PAMProviderCreateRequestTypeParamValue) HasInstanceGuid() bool

HasInstanceGuid returns a boolean if a field has been set.

func (*PAMProviderCreateRequestTypeParamValue) HasInstanceId

func (o *PAMProviderCreateRequestTypeParamValue) HasInstanceId() bool

HasInstanceId returns a boolean if a field has been set.

func (*PAMProviderCreateRequestTypeParamValue) HasProviderTypeParam

func (o *PAMProviderCreateRequestTypeParamValue) HasProviderTypeParam() bool

HasProviderTypeParam returns a boolean if a field has been set.

func (*PAMProviderCreateRequestTypeParamValue) HasValue

HasValue returns a boolean if a field has been set.

func (PAMProviderCreateRequestTypeParamValue) MarshalJSON

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

func (*PAMProviderCreateRequestTypeParamValue) SetId

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

func (*PAMProviderCreateRequestTypeParamValue) SetInstanceGuid

func (o *PAMProviderCreateRequestTypeParamValue) SetInstanceGuid(v string)

SetInstanceGuid gets a reference to the given NullableString and assigns it to the InstanceGuid field.

func (*PAMProviderCreateRequestTypeParamValue) SetInstanceGuidNil

func (o *PAMProviderCreateRequestTypeParamValue) SetInstanceGuidNil()

SetInstanceGuidNil sets the value for InstanceGuid to be an explicit nil

func (*PAMProviderCreateRequestTypeParamValue) SetInstanceId

func (o *PAMProviderCreateRequestTypeParamValue) SetInstanceId(v int32)

SetInstanceId gets a reference to the given NullableInt32 and assigns it to the InstanceId field.

func (*PAMProviderCreateRequestTypeParamValue) SetInstanceIdNil

func (o *PAMProviderCreateRequestTypeParamValue) SetInstanceIdNil()

SetInstanceIdNil sets the value for InstanceId to be an explicit nil

func (*PAMProviderCreateRequestTypeParamValue) SetProviderTypeParam

SetProviderTypeParam gets a reference to the given PAMProviderCreateRequestProviderTypeParam and assigns it to the ProviderTypeParam field.

func (*PAMProviderCreateRequestTypeParamValue) SetValue

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

func (*PAMProviderCreateRequestTypeParamValue) SetValueNil

func (o *PAMProviderCreateRequestTypeParamValue) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (PAMProviderCreateRequestTypeParamValue) ToMap

func (o PAMProviderCreateRequestTypeParamValue) ToMap() (map[string]interface{}, error)

func (*PAMProviderCreateRequestTypeParamValue) UnsetInstanceGuid

func (o *PAMProviderCreateRequestTypeParamValue) UnsetInstanceGuid()

UnsetInstanceGuid ensures that no value is present for InstanceGuid, not even an explicit nil

func (*PAMProviderCreateRequestTypeParamValue) UnsetInstanceId

func (o *PAMProviderCreateRequestTypeParamValue) UnsetInstanceId()

UnsetInstanceId ensures that no value is present for InstanceId, not even an explicit nil

func (*PAMProviderCreateRequestTypeParamValue) UnsetValue

UnsetValue ensures that no value is present for Value, not even an explicit nil

type PAMProviderResponse

type PAMProviderResponse struct {
	Id                      *int32                                 `json:"Id,omitempty"`
	Name                    NullableString                         `json:"Name,omitempty"`
	ProviderType            *CSSCMSDataModelModelsProviderType     `json:"ProviderType,omitempty"`
	ProviderTypeParamValues []PAMPamProviderTypeParamValueResponse `json:"ProviderTypeParamValues,omitempty"`
	Remote                  *bool                                  `json:"Remote,omitempty"`
}

PAMProviderResponse struct for PAMProviderResponse

func NewPAMProviderResponse

func NewPAMProviderResponse() *PAMProviderResponse

NewPAMProviderResponse instantiates a new PAMProviderResponse 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 NewPAMProviderResponseWithDefaults

func NewPAMProviderResponseWithDefaults() *PAMProviderResponse

NewPAMProviderResponseWithDefaults instantiates a new PAMProviderResponse 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 (*PAMProviderResponse) GetId

func (o *PAMProviderResponse) GetId() int32

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

func (*PAMProviderResponse) GetIdOk

func (o *PAMProviderResponse) GetIdOk() (*int32, 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 (*PAMProviderResponse) GetName

func (o *PAMProviderResponse) GetName() string

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

func (*PAMProviderResponse) GetNameOk

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

GetNameOk returns a tuple with the Name 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 (*PAMProviderResponse) GetProviderType

GetProviderType returns the ProviderType field value if set, zero value otherwise.

func (*PAMProviderResponse) GetProviderTypeOk

func (o *PAMProviderResponse) GetProviderTypeOk() (*CSSCMSDataModelModelsProviderType, bool)

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

func (*PAMProviderResponse) GetProviderTypeParamValues

func (o *PAMProviderResponse) GetProviderTypeParamValues() []PAMPamProviderTypeParamValueResponse

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

func (*PAMProviderResponse) GetProviderTypeParamValuesOk

func (o *PAMProviderResponse) GetProviderTypeParamValuesOk() ([]PAMPamProviderTypeParamValueResponse, bool)

GetProviderTypeParamValuesOk returns a tuple with the ProviderTypeParamValues 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 (*PAMProviderResponse) GetRemote

func (o *PAMProviderResponse) GetRemote() bool

GetRemote returns the Remote field value if set, zero value otherwise.

func (*PAMProviderResponse) GetRemoteOk

func (o *PAMProviderResponse) GetRemoteOk() (*bool, bool)

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

func (*PAMProviderResponse) HasId

func (o *PAMProviderResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*PAMProviderResponse) HasName

func (o *PAMProviderResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*PAMProviderResponse) HasProviderType

func (o *PAMProviderResponse) HasProviderType() bool

HasProviderType returns a boolean if a field has been set.

func (*PAMProviderResponse) HasProviderTypeParamValues

func (o *PAMProviderResponse) HasProviderTypeParamValues() bool

HasProviderTypeParamValues returns a boolean if a field has been set.

func (*PAMProviderResponse) HasRemote

func (o *PAMProviderResponse) HasRemote() bool

HasRemote returns a boolean if a field has been set.

func (PAMProviderResponse) MarshalJSON

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

func (*PAMProviderResponse) SetId

func (o *PAMProviderResponse) SetId(v int32)

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

func (*PAMProviderResponse) SetName

func (o *PAMProviderResponse) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*PAMProviderResponse) SetNameNil

func (o *PAMProviderResponse) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*PAMProviderResponse) SetProviderType

SetProviderType gets a reference to the given CSSCMSDataModelModelsProviderType and assigns it to the ProviderType field.

func (*PAMProviderResponse) SetProviderTypeParamValues

func (o *PAMProviderResponse) SetProviderTypeParamValues(v []PAMPamProviderTypeParamValueResponse)

SetProviderTypeParamValues gets a reference to the given []PAMPamProviderTypeParamValueResponse and assigns it to the ProviderTypeParamValues field.

func (*PAMProviderResponse) SetRemote

func (o *PAMProviderResponse) SetRemote(v bool)

SetRemote gets a reference to the given bool and assigns it to the Remote field.

func (PAMProviderResponse) ToMap

func (o PAMProviderResponse) ToMap() (map[string]interface{}, error)

func (*PAMProviderResponse) UnsetName

func (o *PAMProviderResponse) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type PAMProviderTypeCreateRequest

type PAMProviderTypeCreateRequest struct {
	Name       string                                  `json:"Name"`
	Parameters []PAMProviderTypeParameterCreateRequest `json:"Parameters,omitempty"`
}

PAMProviderTypeCreateRequest struct for PAMProviderTypeCreateRequest

func NewPAMProviderTypeCreateRequest

func NewPAMProviderTypeCreateRequest(name string) *PAMProviderTypeCreateRequest

NewPAMProviderTypeCreateRequest instantiates a new PAMProviderTypeCreateRequest 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 NewPAMProviderTypeCreateRequestWithDefaults

func NewPAMProviderTypeCreateRequestWithDefaults() *PAMProviderTypeCreateRequest

NewPAMProviderTypeCreateRequestWithDefaults instantiates a new PAMProviderTypeCreateRequest 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 (*PAMProviderTypeCreateRequest) GetName

func (o *PAMProviderTypeCreateRequest) GetName() string

GetName returns the Name field value

func (*PAMProviderTypeCreateRequest) GetNameOk

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

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

func (*PAMProviderTypeCreateRequest) GetParameters

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

func (*PAMProviderTypeCreateRequest) GetParametersOk

GetParametersOk returns a tuple with the Parameters 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 (*PAMProviderTypeCreateRequest) HasParameters

func (o *PAMProviderTypeCreateRequest) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (PAMProviderTypeCreateRequest) MarshalJSON

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

func (*PAMProviderTypeCreateRequest) SetName

func (o *PAMProviderTypeCreateRequest) SetName(v string)

SetName sets field value

func (*PAMProviderTypeCreateRequest) SetParameters

SetParameters gets a reference to the given []PAMProviderTypeParameterCreateRequest and assigns it to the Parameters field.

func (PAMProviderTypeCreateRequest) ToMap

func (o PAMProviderTypeCreateRequest) ToMap() (map[string]interface{}, error)

type PAMProviderTypeParameterCreateRequest

type PAMProviderTypeParameterCreateRequest struct {
	Name          string                                    `json:"Name"`
	DisplayName   NullableString                            `json:"DisplayName,omitempty"`
	DataType      *CSSCMSDataModelEnumsPamParameterDataType `json:"DataType,omitempty"`
	InstanceLevel *bool                                     `json:"InstanceLevel,omitempty"`
}

PAMProviderTypeParameterCreateRequest struct for PAMProviderTypeParameterCreateRequest

func NewPAMProviderTypeParameterCreateRequest

func NewPAMProviderTypeParameterCreateRequest(name string) *PAMProviderTypeParameterCreateRequest

NewPAMProviderTypeParameterCreateRequest instantiates a new PAMProviderTypeParameterCreateRequest 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 NewPAMProviderTypeParameterCreateRequestWithDefaults

func NewPAMProviderTypeParameterCreateRequestWithDefaults() *PAMProviderTypeParameterCreateRequest

NewPAMProviderTypeParameterCreateRequestWithDefaults instantiates a new PAMProviderTypeParameterCreateRequest 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 (*PAMProviderTypeParameterCreateRequest) GetDataType

GetDataType returns the DataType field value if set, zero value otherwise.

func (*PAMProviderTypeParameterCreateRequest) GetDataTypeOk

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

func (*PAMProviderTypeParameterCreateRequest) GetDisplayName

func (o *PAMProviderTypeParameterCreateRequest) GetDisplayName() string

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

func (*PAMProviderTypeParameterCreateRequest) GetDisplayNameOk

func (o *PAMProviderTypeParameterCreateRequest) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PAMProviderTypeParameterCreateRequest) GetInstanceLevel

func (o *PAMProviderTypeParameterCreateRequest) GetInstanceLevel() bool

GetInstanceLevel returns the InstanceLevel field value if set, zero value otherwise.

func (*PAMProviderTypeParameterCreateRequest) GetInstanceLevelOk

func (o *PAMProviderTypeParameterCreateRequest) GetInstanceLevelOk() (*bool, bool)

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

func (*PAMProviderTypeParameterCreateRequest) GetName

GetName returns the Name field value

func (*PAMProviderTypeParameterCreateRequest) GetNameOk

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

func (*PAMProviderTypeParameterCreateRequest) HasDataType

HasDataType returns a boolean if a field has been set.

func (*PAMProviderTypeParameterCreateRequest) HasDisplayName

func (o *PAMProviderTypeParameterCreateRequest) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*PAMProviderTypeParameterCreateRequest) HasInstanceLevel

func (o *PAMProviderTypeParameterCreateRequest) HasInstanceLevel() bool

HasInstanceLevel returns a boolean if a field has been set.

func (PAMProviderTypeParameterCreateRequest) MarshalJSON

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

func (*PAMProviderTypeParameterCreateRequest) SetDataType

SetDataType gets a reference to the given CSSCMSDataModelEnumsPamParameterDataType and assigns it to the DataType field.

func (*PAMProviderTypeParameterCreateRequest) SetDisplayName

func (o *PAMProviderTypeParameterCreateRequest) SetDisplayName(v string)

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

func (*PAMProviderTypeParameterCreateRequest) SetDisplayNameNil

func (o *PAMProviderTypeParameterCreateRequest) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*PAMProviderTypeParameterCreateRequest) SetInstanceLevel

func (o *PAMProviderTypeParameterCreateRequest) SetInstanceLevel(v bool)

SetInstanceLevel gets a reference to the given bool and assigns it to the InstanceLevel field.

func (*PAMProviderTypeParameterCreateRequest) SetName

SetName sets field value

func (PAMProviderTypeParameterCreateRequest) ToMap

func (o PAMProviderTypeParameterCreateRequest) ToMap() (map[string]interface{}, error)

func (*PAMProviderTypeParameterCreateRequest) UnsetDisplayName

func (o *PAMProviderTypeParameterCreateRequest) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

type PAMProviderTypeParameterResponse

type PAMProviderTypeParameterResponse struct {
	Id            *int32                                    `json:"Id,omitempty"`
	Name          NullableString                            `json:"Name,omitempty"`
	DisplayName   NullableString                            `json:"DisplayName,omitempty"`
	DataType      *CSSCMSDataModelEnumsPamParameterDataType `json:"DataType,omitempty"`
	InstanceLevel *bool                                     `json:"InstanceLevel,omitempty"`
}

PAMProviderTypeParameterResponse struct for PAMProviderTypeParameterResponse

func NewPAMProviderTypeParameterResponse

func NewPAMProviderTypeParameterResponse() *PAMProviderTypeParameterResponse

NewPAMProviderTypeParameterResponse instantiates a new PAMProviderTypeParameterResponse 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 NewPAMProviderTypeParameterResponseWithDefaults

func NewPAMProviderTypeParameterResponseWithDefaults() *PAMProviderTypeParameterResponse

NewPAMProviderTypeParameterResponseWithDefaults instantiates a new PAMProviderTypeParameterResponse 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 (*PAMProviderTypeParameterResponse) GetDataType

GetDataType returns the DataType field value if set, zero value otherwise.

func (*PAMProviderTypeParameterResponse) GetDataTypeOk

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

func (*PAMProviderTypeParameterResponse) GetDisplayName

func (o *PAMProviderTypeParameterResponse) GetDisplayName() string

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

func (*PAMProviderTypeParameterResponse) GetDisplayNameOk

func (o *PAMProviderTypeParameterResponse) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PAMProviderTypeParameterResponse) GetId

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

func (*PAMProviderTypeParameterResponse) GetIdOk

func (o *PAMProviderTypeParameterResponse) GetIdOk() (*int32, 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 (*PAMProviderTypeParameterResponse) GetInstanceLevel

func (o *PAMProviderTypeParameterResponse) GetInstanceLevel() bool

GetInstanceLevel returns the InstanceLevel field value if set, zero value otherwise.

func (*PAMProviderTypeParameterResponse) GetInstanceLevelOk

func (o *PAMProviderTypeParameterResponse) GetInstanceLevelOk() (*bool, bool)

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

func (*PAMProviderTypeParameterResponse) GetName

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

func (*PAMProviderTypeParameterResponse) GetNameOk

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

GetNameOk returns a tuple with the Name 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 (*PAMProviderTypeParameterResponse) HasDataType

func (o *PAMProviderTypeParameterResponse) HasDataType() bool

HasDataType returns a boolean if a field has been set.

func (*PAMProviderTypeParameterResponse) HasDisplayName

func (o *PAMProviderTypeParameterResponse) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*PAMProviderTypeParameterResponse) HasId

HasId returns a boolean if a field has been set.

func (*PAMProviderTypeParameterResponse) HasInstanceLevel

func (o *PAMProviderTypeParameterResponse) HasInstanceLevel() bool

HasInstanceLevel returns a boolean if a field has been set.

func (*PAMProviderTypeParameterResponse) HasName

HasName returns a boolean if a field has been set.

func (PAMProviderTypeParameterResponse) MarshalJSON

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

func (*PAMProviderTypeParameterResponse) SetDataType

SetDataType gets a reference to the given CSSCMSDataModelEnumsPamParameterDataType and assigns it to the DataType field.

func (*PAMProviderTypeParameterResponse) SetDisplayName

func (o *PAMProviderTypeParameterResponse) SetDisplayName(v string)

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

func (*PAMProviderTypeParameterResponse) SetDisplayNameNil

func (o *PAMProviderTypeParameterResponse) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*PAMProviderTypeParameterResponse) SetId

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

func (*PAMProviderTypeParameterResponse) SetInstanceLevel

func (o *PAMProviderTypeParameterResponse) SetInstanceLevel(v bool)

SetInstanceLevel gets a reference to the given bool and assigns it to the InstanceLevel field.

func (*PAMProviderTypeParameterResponse) SetName

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*PAMProviderTypeParameterResponse) SetNameNil

func (o *PAMProviderTypeParameterResponse) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (PAMProviderTypeParameterResponse) ToMap

func (o PAMProviderTypeParameterResponse) ToMap() (map[string]interface{}, error)

func (*PAMProviderTypeParameterResponse) UnsetDisplayName

func (o *PAMProviderTypeParameterResponse) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

func (*PAMProviderTypeParameterResponse) UnsetName

func (o *PAMProviderTypeParameterResponse) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type PAMProviderTypeResponse

type PAMProviderTypeResponse struct {
	Id         *string                            `json:"Id,omitempty"`
	Name       NullableString                     `json:"Name,omitempty"`
	Parameters []PAMProviderTypeParameterResponse `json:"Parameters,omitempty"`
}

PAMProviderTypeResponse struct for PAMProviderTypeResponse

func NewPAMProviderTypeResponse

func NewPAMProviderTypeResponse() *PAMProviderTypeResponse

NewPAMProviderTypeResponse instantiates a new PAMProviderTypeResponse 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 NewPAMProviderTypeResponseWithDefaults

func NewPAMProviderTypeResponseWithDefaults() *PAMProviderTypeResponse

NewPAMProviderTypeResponseWithDefaults instantiates a new PAMProviderTypeResponse 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 (*PAMProviderTypeResponse) GetId

func (o *PAMProviderTypeResponse) GetId() string

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

func (*PAMProviderTypeResponse) GetIdOk

func (o *PAMProviderTypeResponse) 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 (*PAMProviderTypeResponse) GetName

func (o *PAMProviderTypeResponse) GetName() string

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

func (*PAMProviderTypeResponse) GetNameOk

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

GetNameOk returns a tuple with the Name 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 (*PAMProviderTypeResponse) GetParameters

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

func (*PAMProviderTypeResponse) GetParametersOk

GetParametersOk returns a tuple with the Parameters 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 (*PAMProviderTypeResponse) HasId

func (o *PAMProviderTypeResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*PAMProviderTypeResponse) HasName

func (o *PAMProviderTypeResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*PAMProviderTypeResponse) HasParameters

func (o *PAMProviderTypeResponse) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (PAMProviderTypeResponse) MarshalJSON

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

func (*PAMProviderTypeResponse) SetId

func (o *PAMProviderTypeResponse) SetId(v string)

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

func (*PAMProviderTypeResponse) SetName

func (o *PAMProviderTypeResponse) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*PAMProviderTypeResponse) SetNameNil

func (o *PAMProviderTypeResponse) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*PAMProviderTypeResponse) SetParameters

SetParameters gets a reference to the given []PAMProviderTypeParameterResponse and assigns it to the Parameters field.

func (PAMProviderTypeResponse) ToMap

func (o PAMProviderTypeResponse) ToMap() (map[string]interface{}, error)

func (*PAMProviderTypeResponse) UnsetName

func (o *PAMProviderTypeResponse) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type PAMProviderUpdateRequest

type PAMProviderUpdateRequest struct {
	Id                      int32                                    `json:"Id"`
	Name                    string                                   `json:"Name"`
	Remote                  bool                                     `json:"Remote"`
	ProviderTypeParamValues []PAMProviderCreateRequestTypeParamValue `json:"ProviderTypeParamValues,omitempty"`
}

PAMProviderUpdateRequest struct for PAMProviderUpdateRequest

func NewPAMProviderUpdateRequest

func NewPAMProviderUpdateRequest(id int32, name string, remote bool) *PAMProviderUpdateRequest

NewPAMProviderUpdateRequest instantiates a new PAMProviderUpdateRequest 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 NewPAMProviderUpdateRequestWithDefaults

func NewPAMProviderUpdateRequestWithDefaults() *PAMProviderUpdateRequest

NewPAMProviderUpdateRequestWithDefaults instantiates a new PAMProviderUpdateRequest 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 (*PAMProviderUpdateRequest) GetId

func (o *PAMProviderUpdateRequest) GetId() int32

GetId returns the Id field value

func (*PAMProviderUpdateRequest) GetIdOk

func (o *PAMProviderUpdateRequest) GetIdOk() (*int32, bool)

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

func (*PAMProviderUpdateRequest) GetName

func (o *PAMProviderUpdateRequest) GetName() string

GetName returns the Name field value

func (*PAMProviderUpdateRequest) GetNameOk

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

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

func (*PAMProviderUpdateRequest) GetProviderTypeParamValues

func (o *PAMProviderUpdateRequest) GetProviderTypeParamValues() []PAMProviderCreateRequestTypeParamValue

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

func (*PAMProviderUpdateRequest) GetProviderTypeParamValuesOk

func (o *PAMProviderUpdateRequest) GetProviderTypeParamValuesOk() ([]PAMProviderCreateRequestTypeParamValue, bool)

GetProviderTypeParamValuesOk returns a tuple with the ProviderTypeParamValues 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 (*PAMProviderUpdateRequest) GetRemote

func (o *PAMProviderUpdateRequest) GetRemote() bool

GetRemote returns the Remote field value

func (*PAMProviderUpdateRequest) GetRemoteOk

func (o *PAMProviderUpdateRequest) GetRemoteOk() (*bool, bool)

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

func (*PAMProviderUpdateRequest) HasProviderTypeParamValues

func (o *PAMProviderUpdateRequest) HasProviderTypeParamValues() bool

HasProviderTypeParamValues returns a boolean if a field has been set.

func (PAMProviderUpdateRequest) MarshalJSON

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

func (*PAMProviderUpdateRequest) SetId

func (o *PAMProviderUpdateRequest) SetId(v int32)

SetId sets field value

func (*PAMProviderUpdateRequest) SetName

func (o *PAMProviderUpdateRequest) SetName(v string)

SetName sets field value

func (*PAMProviderUpdateRequest) SetProviderTypeParamValues

func (o *PAMProviderUpdateRequest) SetProviderTypeParamValues(v []PAMProviderCreateRequestTypeParamValue)

SetProviderTypeParamValues gets a reference to the given []PAMProviderCreateRequestTypeParamValue and assigns it to the ProviderTypeParamValues field.

func (*PAMProviderUpdateRequest) SetRemote

func (o *PAMProviderUpdateRequest) SetRemote(v bool)

SetRemote sets field value

func (PAMProviderUpdateRequest) ToMap

func (o PAMProviderUpdateRequest) ToMap() (map[string]interface{}, error)

type SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse

type SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse struct {
	Id                   *string        `json:"Id,omitempty"`
	AuthenticationScheme NullableString `json:"AuthenticationScheme,omitempty"`
	DisplayName          NullableString `json:"DisplayName,omitempty"`
}

SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse struct for SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse

func NewSecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse

func NewSecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse() *SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse

NewSecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse instantiates a new SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse 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 NewSecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponseWithDefaults

func NewSecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponseWithDefaults() *SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse

NewSecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponseWithDefaults instantiates a new SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse 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 (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) GetAuthenticationScheme

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

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) GetAuthenticationSchemeOk

GetAuthenticationSchemeOk returns a tuple with the AuthenticationScheme 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 (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) GetDisplayName

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

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) GetDisplayNameOk

GetDisplayNameOk returns a tuple with the DisplayName 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 (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) GetId

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

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) GetIdOk

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 (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) HasAuthenticationScheme

HasAuthenticationScheme returns a boolean if a field has been set.

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) HasDisplayName

HasDisplayName returns a boolean if a field has been set.

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) HasId

HasId returns a boolean if a field has been set.

func (SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) MarshalJSON

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) SetAuthenticationScheme

SetAuthenticationScheme gets a reference to the given NullableString and assigns it to the AuthenticationScheme field.

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) SetAuthenticationSchemeNil

SetAuthenticationSchemeNil sets the value for AuthenticationScheme to be an explicit nil

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) SetDisplayName

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

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) SetDisplayNameNil

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) SetId

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

func (SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) ToMap

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) UnsetAuthenticationScheme

UnsetAuthenticationScheme ensures that no value is present for AuthenticationScheme, not even an explicit nil

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse) UnsetDisplayName

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

type SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest

type SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest struct {
	ClaimType                    CSSCMSCoreEnumsClaimType `json:"ClaimType"`
	ClaimValue                   string                   `json:"ClaimValue"`
	ProviderAuthenticationScheme string                   `json:"ProviderAuthenticationScheme"`
	Description                  string                   `json:"Description"`
}

SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest struct for SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest

func NewSecurityRoleClaimDefinitionsRoleClaimDefinitionRequest

func NewSecurityRoleClaimDefinitionsRoleClaimDefinitionRequest(claimType CSSCMSCoreEnumsClaimType, claimValue string, providerAuthenticationScheme string, description string) *SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest

NewSecurityRoleClaimDefinitionsRoleClaimDefinitionRequest instantiates a new SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest 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 NewSecurityRoleClaimDefinitionsRoleClaimDefinitionRequestWithDefaults

func NewSecurityRoleClaimDefinitionsRoleClaimDefinitionRequestWithDefaults() *SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest

NewSecurityRoleClaimDefinitionsRoleClaimDefinitionRequestWithDefaults instantiates a new SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest 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 (*SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) GetClaimType

GetClaimType returns the ClaimType field value

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) GetClaimTypeOk

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

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) GetClaimValue

GetClaimValue returns the ClaimValue field value

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) GetClaimValueOk

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

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) GetDescription

GetDescription returns the Description field value

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) GetDescriptionOk

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

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) GetProviderAuthenticationScheme

func (o *SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) GetProviderAuthenticationScheme() string

GetProviderAuthenticationScheme returns the ProviderAuthenticationScheme field value

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) GetProviderAuthenticationSchemeOk

func (o *SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) GetProviderAuthenticationSchemeOk() (*string, bool)

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

func (SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) MarshalJSON

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) SetClaimType

SetClaimType sets field value

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) SetClaimValue

SetClaimValue sets field value

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) SetDescription

SetDescription sets field value

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) SetProviderAuthenticationScheme

func (o *SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) SetProviderAuthenticationScheme(v string)

SetProviderAuthenticationScheme sets field value

func (SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest) ToMap

type SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse

type SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse struct {
	Id          *int32                                                           `json:"Id,omitempty"`
	Description NullableString                                                   `json:"Description,omitempty"`
	ClaimType   NullableString                                                   `json:"ClaimType,omitempty"`
	ClaimValue  NullableString                                                   `json:"ClaimValue,omitempty"`
	Provider    *SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse `json:"Provider,omitempty"`
}

SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse struct for SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse

func NewSecurityRoleClaimDefinitionsRoleClaimDefinitionResponse

func NewSecurityRoleClaimDefinitionsRoleClaimDefinitionResponse() *SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse

NewSecurityRoleClaimDefinitionsRoleClaimDefinitionResponse instantiates a new SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse 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 NewSecurityRoleClaimDefinitionsRoleClaimDefinitionResponseWithDefaults

func NewSecurityRoleClaimDefinitionsRoleClaimDefinitionResponseWithDefaults() *SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse

NewSecurityRoleClaimDefinitionsRoleClaimDefinitionResponseWithDefaults instantiates a new SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse 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 (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) GetClaimType

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

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) GetClaimTypeOk

GetClaimTypeOk returns a tuple with the ClaimType 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 (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) GetClaimValue

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

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) GetClaimValueOk

GetClaimValueOk returns a tuple with the ClaimValue 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 (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) GetDescription

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

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) GetDescriptionOk

GetDescriptionOk returns a tuple with the Description 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 (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) GetId

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

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) GetIdOk

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 (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) GetProvider

GetProvider returns the Provider field value if set, zero value otherwise.

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) GetProviderOk

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

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) HasClaimType

HasClaimType returns a boolean if a field has been set.

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) HasClaimValue

HasClaimValue returns a boolean if a field has been set.

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) HasDescription

HasDescription returns a boolean if a field has been set.

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) HasId

HasId returns a boolean if a field has been set.

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) HasProvider

HasProvider returns a boolean if a field has been set.

func (SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) MarshalJSON

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) SetClaimType

SetClaimType gets a reference to the given NullableString and assigns it to the ClaimType field.

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) SetClaimTypeNil

SetClaimTypeNil sets the value for ClaimType to be an explicit nil

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) SetClaimValue

SetClaimValue gets a reference to the given NullableString and assigns it to the ClaimValue field.

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) SetClaimValueNil

SetClaimValueNil sets the value for ClaimValue to be an explicit nil

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) SetDescription

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

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) SetDescriptionNil

SetDescriptionNil sets the value for Description to be an explicit nil

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) SetId

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

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) SetProvider

SetProvider gets a reference to the given SecurityRoleClaimDefinitionsRoleClaimDefinitionProviderResponse and assigns it to the Provider field.

func (SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) ToMap

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) UnsetClaimType

UnsetClaimType ensures that no value is present for ClaimType, not even an explicit nil

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) UnsetClaimValue

UnsetClaimValue ensures that no value is present for ClaimValue, not even an explicit nil

func (*SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse) UnsetDescription

UnsetDescription ensures that no value is present for Description, not even an explicit nil

type SecurityRolesApiService

type SecurityRolesApiService service

SecurityRolesApiService SecurityRolesApi service

func (*SecurityRolesApiService) CreateSecurityRolesExecute

Executes the API request V2 POST /Security/Roles

@return SecuritySecurityRolesSecurityRoleResponse

func (*SecurityRolesApiService) GetSecurityRolesByIdExecute

Executes the API request V2 GET /Security/Roles/{id}

@return SecuritySecurityRolesSecurityRoleResponse

func (*SecurityRolesApiService) GetSecurityRolesExecute

Executes the API request V2 GET /Security/Roles

@return []SecuritySecurityRolesSecurityRoleQueryResponse

func (*SecurityRolesApiService) NewCreateSecurityRolesRequest

func (a *SecurityRolesApiService) NewCreateSecurityRolesRequest(ctx context.Context) ApiCreateSecurityRolesRequest

Creates a new V2 POST /Security/Roles request.

CreateSecurityRoles Adds a new security role to the system.

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

func (*SecurityRolesApiService) NewGetSecurityRolesByIdRequest

func (a *SecurityRolesApiService) NewGetSecurityRolesByIdRequest(ctx context.Context, id int32) ApiGetSecurityRolesByIdRequest

Creates a new V2 GET /Security/Roles/{id} request.

GetSecurityRolesById Returns a single security role that matches the id.

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

func (*SecurityRolesApiService) NewGetSecurityRolesRequest

func (a *SecurityRolesApiService) NewGetSecurityRolesRequest(ctx context.Context) ApiGetSecurityRolesRequest

Creates a new V2 GET /Security/Roles request.

GetSecurityRoles Returns all security roles according to the provided filter and output parameters.

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

func (*SecurityRolesApiService) NewUpdateSecurityRolesRequest

func (a *SecurityRolesApiService) NewUpdateSecurityRolesRequest(ctx context.Context) ApiUpdateSecurityRolesRequest

Creates a new V2 PUT /Security/Roles request.

UpdateSecurityRoles Updates an existing security role.

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

func (*SecurityRolesApiService) UpdateSecurityRolesExecute

Executes the API request V2 PUT /Security/Roles

@return SecuritySecurityRolesSecurityRoleResponse

type SecuritySecurityRolesSecurityRoleCreationRequest

type SecuritySecurityRolesSecurityRoleCreationRequest struct {
	// The name of the security role to create
	Name string `json:"Name"`
	// The description to be used on the created security role
	Description string `json:"Description"`
	// The email address to be used on the created security role
	EmailAddress NullableString `json:"EmailAddress,omitempty"`
	// The Id of the permission set this role is in.
	PermissionSetId string `json:"PermissionSetId"`
	// The permissions to include in the role. These must be supplied in the format of access control strings such as \"/security/modify/\".
	Permissions []string `json:"Permissions,omitempty"`
	// The claim definitions to assign to the created role
	Claims []SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest `json:"Claims,omitempty"`
}

SecuritySecurityRolesSecurityRoleCreationRequest struct for SecuritySecurityRolesSecurityRoleCreationRequest

func NewSecuritySecurityRolesSecurityRoleCreationRequest

func NewSecuritySecurityRolesSecurityRoleCreationRequest(name string, description string, permissionSetId string) *SecuritySecurityRolesSecurityRoleCreationRequest

NewSecuritySecurityRolesSecurityRoleCreationRequest instantiates a new SecuritySecurityRolesSecurityRoleCreationRequest 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 NewSecuritySecurityRolesSecurityRoleCreationRequestWithDefaults

func NewSecuritySecurityRolesSecurityRoleCreationRequestWithDefaults() *SecuritySecurityRolesSecurityRoleCreationRequest

NewSecuritySecurityRolesSecurityRoleCreationRequestWithDefaults instantiates a new SecuritySecurityRolesSecurityRoleCreationRequest 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 (*SecuritySecurityRolesSecurityRoleCreationRequest) GetClaims

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

func (*SecuritySecurityRolesSecurityRoleCreationRequest) GetClaimsOk

GetClaimsOk returns a tuple with the Claims 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 (*SecuritySecurityRolesSecurityRoleCreationRequest) GetDescription

GetDescription returns the Description field value

func (*SecuritySecurityRolesSecurityRoleCreationRequest) GetDescriptionOk

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

func (*SecuritySecurityRolesSecurityRoleCreationRequest) GetEmailAddress

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

func (*SecuritySecurityRolesSecurityRoleCreationRequest) GetEmailAddressOk

GetEmailAddressOk returns a tuple with the EmailAddress 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 (*SecuritySecurityRolesSecurityRoleCreationRequest) GetName

GetName returns the Name field value

func (*SecuritySecurityRolesSecurityRoleCreationRequest) GetNameOk

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

func (*SecuritySecurityRolesSecurityRoleCreationRequest) GetPermissionSetId

GetPermissionSetId returns the PermissionSetId field value

func (*SecuritySecurityRolesSecurityRoleCreationRequest) GetPermissionSetIdOk

func (o *SecuritySecurityRolesSecurityRoleCreationRequest) GetPermissionSetIdOk() (*string, bool)

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

func (*SecuritySecurityRolesSecurityRoleCreationRequest) GetPermissions

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

func (*SecuritySecurityRolesSecurityRoleCreationRequest) GetPermissionsOk

GetPermissionsOk returns a tuple with the Permissions 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 (*SecuritySecurityRolesSecurityRoleCreationRequest) HasClaims

HasClaims returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleCreationRequest) HasEmailAddress

HasEmailAddress returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleCreationRequest) HasPermissions

HasPermissions returns a boolean if a field has been set.

func (SecuritySecurityRolesSecurityRoleCreationRequest) MarshalJSON

func (*SecuritySecurityRolesSecurityRoleCreationRequest) SetClaims

SetClaims gets a reference to the given []SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest and assigns it to the Claims field.

func (*SecuritySecurityRolesSecurityRoleCreationRequest) SetDescription

SetDescription sets field value

func (*SecuritySecurityRolesSecurityRoleCreationRequest) SetEmailAddress

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

func (*SecuritySecurityRolesSecurityRoleCreationRequest) SetEmailAddressNil

func (o *SecuritySecurityRolesSecurityRoleCreationRequest) SetEmailAddressNil()

SetEmailAddressNil sets the value for EmailAddress to be an explicit nil

func (*SecuritySecurityRolesSecurityRoleCreationRequest) SetName

SetName sets field value

func (*SecuritySecurityRolesSecurityRoleCreationRequest) SetPermissionSetId

SetPermissionSetId sets field value

func (*SecuritySecurityRolesSecurityRoleCreationRequest) SetPermissions

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (SecuritySecurityRolesSecurityRoleCreationRequest) ToMap

func (o SecuritySecurityRolesSecurityRoleCreationRequest) ToMap() (map[string]interface{}, error)

func (*SecuritySecurityRolesSecurityRoleCreationRequest) UnsetEmailAddress

func (o *SecuritySecurityRolesSecurityRoleCreationRequest) UnsetEmailAddress()

UnsetEmailAddress ensures that no value is present for EmailAddress, not even an explicit nil

type SecuritySecurityRolesSecurityRoleQueryResponse

type SecuritySecurityRolesSecurityRoleQueryResponse struct {
	Id              *int32         `json:"Id,omitempty"`
	Name            NullableString `json:"Name,omitempty"`
	EmailAddress    NullableString `json:"EmailAddress,omitempty"`
	Immutable       *bool          `json:"Immutable,omitempty"`
	PermissionSetId *string        `json:"PermissionSetId,omitempty"`
	ClaimsCount     *int32         `json:"ClaimsCount,omitempty"`
}

SecuritySecurityRolesSecurityRoleQueryResponse struct for SecuritySecurityRolesSecurityRoleQueryResponse

func NewSecuritySecurityRolesSecurityRoleQueryResponse

func NewSecuritySecurityRolesSecurityRoleQueryResponse() *SecuritySecurityRolesSecurityRoleQueryResponse

NewSecuritySecurityRolesSecurityRoleQueryResponse instantiates a new SecuritySecurityRolesSecurityRoleQueryResponse 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 NewSecuritySecurityRolesSecurityRoleQueryResponseWithDefaults

func NewSecuritySecurityRolesSecurityRoleQueryResponseWithDefaults() *SecuritySecurityRolesSecurityRoleQueryResponse

NewSecuritySecurityRolesSecurityRoleQueryResponseWithDefaults instantiates a new SecuritySecurityRolesSecurityRoleQueryResponse 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 (*SecuritySecurityRolesSecurityRoleQueryResponse) GetClaimsCount

GetClaimsCount returns the ClaimsCount field value if set, zero value otherwise.

func (*SecuritySecurityRolesSecurityRoleQueryResponse) GetClaimsCountOk

func (o *SecuritySecurityRolesSecurityRoleQueryResponse) GetClaimsCountOk() (*int32, bool)

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

func (*SecuritySecurityRolesSecurityRoleQueryResponse) GetEmailAddress

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

func (*SecuritySecurityRolesSecurityRoleQueryResponse) GetEmailAddressOk

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

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

func (*SecuritySecurityRolesSecurityRoleQueryResponse) GetId

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

func (*SecuritySecurityRolesSecurityRoleQueryResponse) GetIdOk

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 (*SecuritySecurityRolesSecurityRoleQueryResponse) GetImmutable

GetImmutable returns the Immutable field value if set, zero value otherwise.

func (*SecuritySecurityRolesSecurityRoleQueryResponse) GetImmutableOk

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

func (*SecuritySecurityRolesSecurityRoleQueryResponse) GetName

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

func (*SecuritySecurityRolesSecurityRoleQueryResponse) GetNameOk

GetNameOk returns a tuple with the Name 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 (*SecuritySecurityRolesSecurityRoleQueryResponse) GetPermissionSetId

GetPermissionSetId returns the PermissionSetId field value if set, zero value otherwise.

func (*SecuritySecurityRolesSecurityRoleQueryResponse) GetPermissionSetIdOk

func (o *SecuritySecurityRolesSecurityRoleQueryResponse) GetPermissionSetIdOk() (*string, bool)

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

func (*SecuritySecurityRolesSecurityRoleQueryResponse) HasClaimsCount

HasClaimsCount returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleQueryResponse) HasEmailAddress

HasEmailAddress returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleQueryResponse) HasId

HasId returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleQueryResponse) HasImmutable

HasImmutable returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleQueryResponse) HasName

HasName returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleQueryResponse) HasPermissionSetId

func (o *SecuritySecurityRolesSecurityRoleQueryResponse) HasPermissionSetId() bool

HasPermissionSetId returns a boolean if a field has been set.

func (SecuritySecurityRolesSecurityRoleQueryResponse) MarshalJSON

func (*SecuritySecurityRolesSecurityRoleQueryResponse) SetClaimsCount

SetClaimsCount gets a reference to the given int32 and assigns it to the ClaimsCount field.

func (*SecuritySecurityRolesSecurityRoleQueryResponse) SetEmailAddress

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

func (*SecuritySecurityRolesSecurityRoleQueryResponse) SetEmailAddressNil

func (o *SecuritySecurityRolesSecurityRoleQueryResponse) SetEmailAddressNil()

SetEmailAddressNil sets the value for EmailAddress to be an explicit nil

func (*SecuritySecurityRolesSecurityRoleQueryResponse) SetId

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

func (*SecuritySecurityRolesSecurityRoleQueryResponse) SetImmutable

SetImmutable gets a reference to the given bool and assigns it to the Immutable field.

func (*SecuritySecurityRolesSecurityRoleQueryResponse) SetName

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*SecuritySecurityRolesSecurityRoleQueryResponse) SetNameNil

SetNameNil sets the value for Name to be an explicit nil

func (*SecuritySecurityRolesSecurityRoleQueryResponse) SetPermissionSetId

func (o *SecuritySecurityRolesSecurityRoleQueryResponse) SetPermissionSetId(v string)

SetPermissionSetId gets a reference to the given string and assigns it to the PermissionSetId field.

func (SecuritySecurityRolesSecurityRoleQueryResponse) ToMap

func (o SecuritySecurityRolesSecurityRoleQueryResponse) ToMap() (map[string]interface{}, error)

func (*SecuritySecurityRolesSecurityRoleQueryResponse) UnsetEmailAddress

func (o *SecuritySecurityRolesSecurityRoleQueryResponse) UnsetEmailAddress()

UnsetEmailAddress ensures that no value is present for EmailAddress, not even an explicit nil

func (*SecuritySecurityRolesSecurityRoleQueryResponse) UnsetName

UnsetName ensures that no value is present for Name, not even an explicit nil

type SecuritySecurityRolesSecurityRoleResponse

type SecuritySecurityRolesSecurityRoleResponse struct {
	Id              *int32                                                    `json:"Id,omitempty"`
	Name            NullableString                                            `json:"Name,omitempty"`
	Description     NullableString                                            `json:"Description,omitempty"`
	EmailAddress    NullableString                                            `json:"EmailAddress,omitempty"`
	Immutable       *bool                                                     `json:"Immutable,omitempty"`
	PermissionSetId *string                                                   `json:"PermissionSetId,omitempty"`
	Permissions     []string                                                  `json:"Permissions,omitempty"`
	Claims          []SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse `json:"Claims,omitempty"`
}

SecuritySecurityRolesSecurityRoleResponse struct for SecuritySecurityRolesSecurityRoleResponse

func NewSecuritySecurityRolesSecurityRoleResponse

func NewSecuritySecurityRolesSecurityRoleResponse() *SecuritySecurityRolesSecurityRoleResponse

NewSecuritySecurityRolesSecurityRoleResponse instantiates a new SecuritySecurityRolesSecurityRoleResponse 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 NewSecuritySecurityRolesSecurityRoleResponseWithDefaults

func NewSecuritySecurityRolesSecurityRoleResponseWithDefaults() *SecuritySecurityRolesSecurityRoleResponse

NewSecuritySecurityRolesSecurityRoleResponseWithDefaults instantiates a new SecuritySecurityRolesSecurityRoleResponse 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 (*SecuritySecurityRolesSecurityRoleResponse) GetClaims

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

func (*SecuritySecurityRolesSecurityRoleResponse) GetClaimsOk

GetClaimsOk returns a tuple with the Claims 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 (*SecuritySecurityRolesSecurityRoleResponse) GetDescription

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

func (*SecuritySecurityRolesSecurityRoleResponse) GetDescriptionOk

func (o *SecuritySecurityRolesSecurityRoleResponse) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SecuritySecurityRolesSecurityRoleResponse) GetEmailAddress

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

func (*SecuritySecurityRolesSecurityRoleResponse) GetEmailAddressOk

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

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

func (*SecuritySecurityRolesSecurityRoleResponse) GetId

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

func (*SecuritySecurityRolesSecurityRoleResponse) GetIdOk

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 (*SecuritySecurityRolesSecurityRoleResponse) GetImmutable

GetImmutable returns the Immutable field value if set, zero value otherwise.

func (*SecuritySecurityRolesSecurityRoleResponse) GetImmutableOk

func (o *SecuritySecurityRolesSecurityRoleResponse) GetImmutableOk() (*bool, bool)

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

func (*SecuritySecurityRolesSecurityRoleResponse) GetName

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

func (*SecuritySecurityRolesSecurityRoleResponse) GetNameOk

GetNameOk returns a tuple with the Name 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 (*SecuritySecurityRolesSecurityRoleResponse) GetPermissionSetId

func (o *SecuritySecurityRolesSecurityRoleResponse) GetPermissionSetId() string

GetPermissionSetId returns the PermissionSetId field value if set, zero value otherwise.

func (*SecuritySecurityRolesSecurityRoleResponse) GetPermissionSetIdOk

func (o *SecuritySecurityRolesSecurityRoleResponse) GetPermissionSetIdOk() (*string, bool)

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

func (*SecuritySecurityRolesSecurityRoleResponse) GetPermissions

func (o *SecuritySecurityRolesSecurityRoleResponse) GetPermissions() []string

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

func (*SecuritySecurityRolesSecurityRoleResponse) GetPermissionsOk

func (o *SecuritySecurityRolesSecurityRoleResponse) GetPermissionsOk() ([]string, bool)

GetPermissionsOk returns a tuple with the Permissions 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 (*SecuritySecurityRolesSecurityRoleResponse) HasClaims

HasClaims returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleResponse) HasDescription

func (o *SecuritySecurityRolesSecurityRoleResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleResponse) HasEmailAddress

func (o *SecuritySecurityRolesSecurityRoleResponse) HasEmailAddress() bool

HasEmailAddress returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleResponse) HasId

HasId returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleResponse) HasImmutable

HasImmutable returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleResponse) HasName

HasName returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleResponse) HasPermissionSetId

func (o *SecuritySecurityRolesSecurityRoleResponse) HasPermissionSetId() bool

HasPermissionSetId returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleResponse) HasPermissions

func (o *SecuritySecurityRolesSecurityRoleResponse) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (SecuritySecurityRolesSecurityRoleResponse) MarshalJSON

func (*SecuritySecurityRolesSecurityRoleResponse) SetClaims

SetClaims gets a reference to the given []SecurityRoleClaimDefinitionsRoleClaimDefinitionResponse and assigns it to the Claims field.

func (*SecuritySecurityRolesSecurityRoleResponse) SetDescription

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

func (*SecuritySecurityRolesSecurityRoleResponse) SetDescriptionNil

func (o *SecuritySecurityRolesSecurityRoleResponse) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*SecuritySecurityRolesSecurityRoleResponse) SetEmailAddress

func (o *SecuritySecurityRolesSecurityRoleResponse) SetEmailAddress(v string)

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

func (*SecuritySecurityRolesSecurityRoleResponse) SetEmailAddressNil

func (o *SecuritySecurityRolesSecurityRoleResponse) SetEmailAddressNil()

SetEmailAddressNil sets the value for EmailAddress to be an explicit nil

func (*SecuritySecurityRolesSecurityRoleResponse) SetId

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

func (*SecuritySecurityRolesSecurityRoleResponse) SetImmutable

SetImmutable gets a reference to the given bool and assigns it to the Immutable field.

func (*SecuritySecurityRolesSecurityRoleResponse) SetName

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*SecuritySecurityRolesSecurityRoleResponse) SetNameNil

SetNameNil sets the value for Name to be an explicit nil

func (*SecuritySecurityRolesSecurityRoleResponse) SetPermissionSetId

func (o *SecuritySecurityRolesSecurityRoleResponse) SetPermissionSetId(v string)

SetPermissionSetId gets a reference to the given string and assigns it to the PermissionSetId field.

func (*SecuritySecurityRolesSecurityRoleResponse) SetPermissions

func (o *SecuritySecurityRolesSecurityRoleResponse) SetPermissions(v []string)

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (SecuritySecurityRolesSecurityRoleResponse) ToMap

func (o SecuritySecurityRolesSecurityRoleResponse) ToMap() (map[string]interface{}, error)

func (*SecuritySecurityRolesSecurityRoleResponse) UnsetDescription

func (o *SecuritySecurityRolesSecurityRoleResponse) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*SecuritySecurityRolesSecurityRoleResponse) UnsetEmailAddress

func (o *SecuritySecurityRolesSecurityRoleResponse) UnsetEmailAddress()

UnsetEmailAddress ensures that no value is present for EmailAddress, not even an explicit nil

func (*SecuritySecurityRolesSecurityRoleResponse) UnsetName

UnsetName ensures that no value is present for Name, not even an explicit nil

type SecuritySecurityRolesSecurityRoleUpdateRequest

type SecuritySecurityRolesSecurityRoleUpdateRequest struct {
	// The Keyfactor identifier of the role to update
	Id int32 `json:"Id"`
	// The new name of the security role
	Name string `json:"Name"`
	// The new description to be used for the security role
	Description string `json:"Description"`
	// The new email address to be used for the security role
	EmailAddress    NullableString `json:"EmailAddress,omitempty"`
	PermissionSetId string         `json:"PermissionSetId"`
	// The complete list of permissions to include in the role. These must be supplied in the format of access control strings such as \"/security/modify/\".
	Permissions []string `json:"Permissions,omitempty"`
	// The complete list of claim definitions to assign to the role
	Claims []SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest `json:"Claims,omitempty"`
}

SecuritySecurityRolesSecurityRoleUpdateRequest struct for SecuritySecurityRolesSecurityRoleUpdateRequest

func NewSecuritySecurityRolesSecurityRoleUpdateRequest

func NewSecuritySecurityRolesSecurityRoleUpdateRequest(id int32, name string, description string, permissionSetId string) *SecuritySecurityRolesSecurityRoleUpdateRequest

NewSecuritySecurityRolesSecurityRoleUpdateRequest instantiates a new SecuritySecurityRolesSecurityRoleUpdateRequest 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 NewSecuritySecurityRolesSecurityRoleUpdateRequestWithDefaults

func NewSecuritySecurityRolesSecurityRoleUpdateRequestWithDefaults() *SecuritySecurityRolesSecurityRoleUpdateRequest

NewSecuritySecurityRolesSecurityRoleUpdateRequestWithDefaults instantiates a new SecuritySecurityRolesSecurityRoleUpdateRequest 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 (*SecuritySecurityRolesSecurityRoleUpdateRequest) GetClaims

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

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) GetClaimsOk

GetClaimsOk returns a tuple with the Claims 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 (*SecuritySecurityRolesSecurityRoleUpdateRequest) GetDescription

GetDescription returns the Description field value

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) GetDescriptionOk

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

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) GetEmailAddress

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

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) GetEmailAddressOk

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

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

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) GetId

GetId returns the Id field value

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) GetIdOk

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

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) GetName

GetName returns the Name field value

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) GetNameOk

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

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) GetPermissionSetId

GetPermissionSetId returns the PermissionSetId field value

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) GetPermissionSetIdOk

func (o *SecuritySecurityRolesSecurityRoleUpdateRequest) GetPermissionSetIdOk() (*string, bool)

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

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) GetPermissions

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

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) GetPermissionsOk

func (o *SecuritySecurityRolesSecurityRoleUpdateRequest) GetPermissionsOk() ([]string, bool)

GetPermissionsOk returns a tuple with the Permissions 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 (*SecuritySecurityRolesSecurityRoleUpdateRequest) HasClaims

HasClaims returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) HasEmailAddress

HasEmailAddress returns a boolean if a field has been set.

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) HasPermissions

HasPermissions returns a boolean if a field has been set.

func (SecuritySecurityRolesSecurityRoleUpdateRequest) MarshalJSON

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) SetClaims

SetClaims gets a reference to the given []SecurityRoleClaimDefinitionsRoleClaimDefinitionRequest and assigns it to the Claims field.

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) SetDescription

SetDescription sets field value

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) SetEmailAddress

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

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) SetEmailAddressNil

func (o *SecuritySecurityRolesSecurityRoleUpdateRequest) SetEmailAddressNil()

SetEmailAddressNil sets the value for EmailAddress to be an explicit nil

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) SetId

SetId sets field value

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) SetName

SetName sets field value

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) SetPermissionSetId

func (o *SecuritySecurityRolesSecurityRoleUpdateRequest) SetPermissionSetId(v string)

SetPermissionSetId sets field value

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) SetPermissions

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (SecuritySecurityRolesSecurityRoleUpdateRequest) ToMap

func (o SecuritySecurityRolesSecurityRoleUpdateRequest) ToMap() (map[string]interface{}, error)

func (*SecuritySecurityRolesSecurityRoleUpdateRequest) UnsetEmailAddress

func (o *SecuritySecurityRolesSecurityRoleUpdateRequest) UnsetEmailAddress()

UnsetEmailAddress ensures that no value is present for EmailAddress, not even an explicit nil

type ServerVariable

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

ServerVariable stores the information about a server variable

type SystemDayOfWeek

type SystemDayOfWeek int32

SystemDayOfWeek the model 'SystemDayOfWeek'

const (
	SYSTEMDAYOFWEEK_Sunday    SystemDayOfWeek = 0
	SYSTEMDAYOFWEEK_Monday    SystemDayOfWeek = 1
	SYSTEMDAYOFWEEK_Tuesday   SystemDayOfWeek = 2
	SYSTEMDAYOFWEEK_Wednesday SystemDayOfWeek = 3
	SYSTEMDAYOFWEEK_Thursday  SystemDayOfWeek = 4
	SYSTEMDAYOFWEEK_Friday    SystemDayOfWeek = 5
	SYSTEMDAYOFWEEK_Saturday  SystemDayOfWeek = 6
)

List of System.DayOfWeek

func NewSystemDayOfWeekFromValue

func NewSystemDayOfWeekFromValue(v int32) (*SystemDayOfWeek, error)

NewSystemDayOfWeekFromValue returns a pointer to a valid SystemDayOfWeek for the value passed as argument, or an error if the value passed is not allowed by the enum

func ParseSystemDayOfWeek

func ParseSystemDayOfWeek(s string) (*SystemDayOfWeek, error)

func (SystemDayOfWeek) IsValid

func (v SystemDayOfWeek) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (*SystemDayOfWeek) Parse

func (c *SystemDayOfWeek) Parse(s string) error

func (SystemDayOfWeek) Ptr

Ptr returns reference to System.DayOfWeek value

func (*SystemDayOfWeek) UnmarshalJSON

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

type UserApiService

type UserApiService service

UserApiService UserApi service

func (*UserApiService) GetSSHUsersByIdExecute

Executes the API request V2 GET /SSH/Users/{id}

@return CSSCMSDataModelModelsSSHUsersSshUserAccessResponse

func (*UserApiService) GetSSHUsersExecute

Executes the API request V2 GET /SSH/Users

@return []CSSCMSDataModelModelsSSHUsersSshUserAccessResponse

func (*UserApiService) NewGetSSHUsersByIdRequest

func (a *UserApiService) NewGetSSHUsersByIdRequest(ctx context.Context, id int32) ApiGetSSHUsersByIdRequest

Creates a new V2 GET /SSH/Users/{id} request.

GetSSHUsersById Looks up information about an existing SSH user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The Id of the SSH user to retrieve.
@return ApiGetSSHUsersByIdRequest

func (*UserApiService) NewGetSSHUsersRequest

func (a *UserApiService) NewGetSSHUsersRequest(ctx context.Context) ApiGetSSHUsersRequest

Creates a new V2 GET /SSH/Users request.

GetSSHUsers Returns users matching the criteria from the provided query parameters

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

Source Files

Jump to

Keyboard shortcuts

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