identitycloud

package
v0.3.3 Latest Latest
Warning

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

Go to latest
Published: Dec 16, 2024 License: Apache-2.0 Imports: 25 Imported by: 0

README

Go API client for identitycloud

Introduction

The PingOne Advanced Identity Cloud REST API lets you manage your Advanced Identity Cloud tenants. The API exposes access management and identity management endpoints, with additional endpoints specific to Advanced Identity Cloud tenant environments.

We are now publishing the API spec in OpenAPI 3.0. For the legacy Swagger 2.0 spec, please download swagger.yaml, but note that it may not contain all new functionality.

For full PingOne Advanced Identity Cloud documentation, please visit the docs website.

Authenticating to the API

The PingOne Advanced Identity Cloud REST API has two different authentication methods:

  • API key and secret: used for tenant read-only operations
  • Access token: used for access management operations, identity management operations or tenant write operations

For a summary of how to use these authentication methods, refer to Authenticate to Advanced Identity Cloud REST API.

Overview

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

  • API version:
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

import identitycloud "github.com/pingidentity/identitycloud-go-client"

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to https://openam-example.id.forgerock.io

Class Method HTTP request Description
CSRsAPI CreateCertificateSigningRequest Post /environment/csrs Create CSR
CSRsAPI DeleteCertificateSigningRequestById Delete /environment/csrs/{id} Delete CSR by ID
CSRsAPI GetCertificateSigningRequestById Get /environment/csrs/{id} Get CSR by ID
CSRsAPI GetCertificateSigningRequests Get /environment/csrs Get all CSRs
CSRsAPI UpdateCertificateSigningRequestById Patch /environment/csrs/{id} Update CSR by ID
CertificatesAPI CreateCertificate Post /environment/certificates Create certificate
CertificatesAPI DeleteCertificateByID Delete /environment/certificates/{id} Delete certificate by ID
CertificatesAPI GetCertificateByID Get /environment/certificates/{id} Get certificate by ID
CertificatesAPI GetCertificates Get /environment/certificates Get all certificates
CertificatesAPI UpdateCertificateByID Patch /environment/certificates/{id} Update certificate by ID
ContentSecurityPolicyAPI GetEnforcedContentSecurityPolicy Get /environment/content-security-policy/enforced Get enforced content security policy
ContentSecurityPolicyAPI GetReportOnlyContentSecurityPolicy Get /environment/content-security-policy/report-only Get report-only content security policy
ContentSecurityPolicyAPI SetEnforcedContentSecurityPolicy Put /environment/content-security-policy/enforced Set enforced content security policy
ContentSecurityPolicyAPI SetReportOnlyContentSecurityPolicy Put /environment/content-security-policy/report-only Set report-only content security policy
CookieDomainsAPI GetCookieDomains Get /environment/cookie-domains Get cookie domains
CookieDomainsAPI SetCookieDomains Put /environment/cookie-domains Set cookie domains
CountAPI GetCount Get /environment/count Get count of ESVs
CustomDomainsAPI GetCustomDomains Get /environment/custom-domains/{realm} Get custom domains
CustomDomainsAPI SetCustomDomains Put /environment/custom-domains/{realm} Set custom domains
CustomDomainsAPI VerifyCustomDomains Post /environment/custom-domains Verify a CNAME
FederationEnforcementAPI GetEnforcement Get /environment/federation/enforcement Get enforcement of federation
FederationEnforcementAPI SetEnforcement Put /environment/federation/enforcement Set enforcement of federation
PromotionAPI CheckLock Get /environment/promotion/lock/state Get lock status
PromotionAPI GetLastReport Get /environment/promotion/report Get last promotion report
PromotionAPI GetProvisionalReport Get /environment/promotion/report/provisional Get a provisional promotion report
PromotionAPI GetProvisionalRollbackReport Get /environment/promotion/report/provisional-rollback Get a provisional rollback report
PromotionAPI GetReport Get /environment/promotion/report/{reportId} Get a promotion report
PromotionAPI GetReportList Get /environment/promotion/reports Get promotion reports
PromotionAPI Lock Post /environment/promotion/lock Lock environments
PromotionAPI Progress Get /environment/promotion/promote Get promotion status
PromotionAPI Rollback Post /environment/promotion/rollback Rollback a promotion
PromotionAPI Start Post /environment/promotion/promote Run a promotion
PromotionAPI Unlock Delete /environment/promotion/lock/{promotionId} Unlock environments
ReleaseAPI GetReleaseInfo Get /environment/release Get release information
RestartAPI GetRestartStatus Get /environment/startup Get restart status
RestartAPI Restart Post /environment/startup Initiate restart
SSOCookieAPI GetSSOCookie Get /environment/sso-cookie Get SSO cookie configuration
SSOCookieAPI ResetSSOCookie Post /environment/sso-cookie Reset SSO cookie configuration
SSOCookieAPI SetSSOCookie Put /environment/sso-cookie Set SSO cookie configuration
SecretsAPI ActionSecret Post /environment/secrets/{secretId} Set a secret description
SecretsAPI ChangeSecretVersion Post /environment/secrets/{secretId}/versions/{versionId} Update the status of a version of a secret
SecretsAPI CreateSecret Put /environment/secrets/{secretId} Create a secret
SecretsAPI CreateSecretVersion Post /environment/secrets/{secretId}/versions Create a new version of a secret
SecretsAPI DeleteSecret Delete /environment/secrets/{secretId} Delete a secret
SecretsAPI DeleteSecretVersion Delete /environment/secrets/{secretId}/versions/{versionId} Delete a version of a secret
SecretsAPI GetAllSecrets Get /environment/secrets Get all secrets
SecretsAPI GetSecret Get /environment/secrets/{secretId} Get a secret
SecretsAPI GetSecretVersion Get /environment/secrets/{secretId}/versions/{versionId} Get a version of a secret
SecretsAPI GetSecretVersions Get /environment/secrets/{secretId}/versions Get all versions of a secret
VariablesAPI ActionVariable Post /environment/variables/{variableId} Set a variable description
VariablesAPI CreateVariables Put /environment/variables/{variableId} Create or update a variable
VariablesAPI DeleteVariable Delete /environment/variables/{variableId} Delete a variable
VariablesAPI GetAllVariables Get /environment/variables Get all variables
VariablesAPI GetVariable Get /environment/variables/{variableId} Get a variable

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

OAuth2
  • Type: OAuth
  • Flow: accessCode
  • Authorization URL: https://example.com/oauth/authorize
  • Scopes:
  • fr:idc:certificate:*: Full access to certificates configuration
  • fr:idc:certificate:read: Read only access to certificates configuration
  • fr:idc:content-security-policy:*: Full access to content security policy configuration
  • fr:idc:custom-domain:*: Full access to custom domains configuration
  • fr:idc:esv:*: Full ESV access
  • fr:idc:esv:read: Read ESVs
  • fr:idc:esv:restart: Perform a restart of the ID Cloud workloads
  • fr:idc:esv:update: Modify or delete ESVs
  • fr:idc:federation:*: Full access to federation configuration
  • fr:idc:promotion:*: Allows a user to trigger a promotion
  • fr:idc:release:*: Full access to release configuration
  • fr:idc:sso-cookie:*: Full access to SSO cookie configuration
  • fr:idm:*: Grants full ESV access if user has openidm-admin role

Example

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

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, sw.ContextOAuth2, tokenSource)
r, err := client.Service.Operation(auth, args)
bearer
  • Type: HTTP Bearer token authentication

Example

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

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

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

	// 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")
)

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	CSRsAPI *CSRsAPIService

	CertificatesAPI *CertificatesAPIService

	ContentSecurityPolicyAPI *ContentSecurityPolicyAPIService

	CookieDomainsAPI *CookieDomainsAPIService

	CountAPI *CountAPIService

	CustomDomainsAPI *CustomDomainsAPIService

	FederationEnforcementAPI *FederationEnforcementAPIService

	PromotionAPI *PromotionAPIService

	ReleaseAPI *ReleaseAPIService

	RestartAPI *RestartAPIService

	SSOCookieAPI *SSOCookieAPIService

	SecretsAPI *SecretsAPIService

	VariablesAPI *VariablesAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the PingOne Advanced Identity Cloud API API v In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type ApiActionSecretRequest

type ApiActionSecretRequest struct {
	ApiService *SecretsAPIService
	// contains filtered or unexported fields
}

func (ApiActionSecretRequest) Action

func (ApiActionSecretRequest) Body added in v0.2.0

The description of this secret

func (ApiActionSecretRequest) Execute

func (r ApiActionSecretRequest) Execute() (*http.Response, error)

type ApiActionVariableRequest

type ApiActionVariableRequest struct {
	ApiService *VariablesAPIService
	// contains filtered or unexported fields
}

func (ApiActionVariableRequest) AcceptAPIVersion

func (r ApiActionVariableRequest) AcceptAPIVersion(acceptAPIVersion string) ApiActionVariableRequest

resource=2.0

func (ApiActionVariableRequest) Action

func (ApiActionVariableRequest) Body added in v0.2.0

The description of this variable

func (ApiActionVariableRequest) Execute

func (r ApiActionVariableRequest) Execute() (*http.Response, error)

type ApiChangeSecretVersionRequest

type ApiChangeSecretVersionRequest struct {
	ApiService *SecretsAPIService
	// contains filtered or unexported fields
}

func (ApiChangeSecretVersionRequest) AcceptAPIVersion

func (r ApiChangeSecretVersionRequest) AcceptAPIVersion(acceptAPIVersion string) ApiChangeSecretVersionRequest

resource=2.0

func (ApiChangeSecretVersionRequest) Action

Can only be changestatus

func (ApiChangeSecretVersionRequest) Body added in v0.2.0

JSON body of the new status of the secret version

func (ApiChangeSecretVersionRequest) Execute

type ApiCheckLockRequest

type ApiCheckLockRequest struct {
	ApiService *PromotionAPIService
	// contains filtered or unexported fields
}

func (ApiCheckLockRequest) AcceptAPIVersion

func (r ApiCheckLockRequest) AcceptAPIVersion(acceptAPIVersion string) ApiCheckLockRequest

protocol=1.0,resource=1.0

func (ApiCheckLockRequest) Execute

func (ApiCheckLockRequest) LocalLockOnly

func (r ApiCheckLockRequest) LocalLockOnly(localLockOnly bool) ApiCheckLockRequest

If set to true this parameter will only return the lock status of the environment the request is aimed at

type ApiCreateCertificateRequest

type ApiCreateCertificateRequest struct {
	ApiService *CertificatesAPIService
	// contains filtered or unexported fields
}

func (ApiCreateCertificateRequest) Body added in v0.2.0

JSON body of the new certificate

func (ApiCreateCertificateRequest) Execute

type ApiCreateCertificateSigningRequestRequest

type ApiCreateCertificateSigningRequestRequest struct {
	ApiService *CSRsAPIService
	// contains filtered or unexported fields
}

func (ApiCreateCertificateSigningRequestRequest) Body added in v0.2.0

JSON body of the new certificate signing request

func (ApiCreateCertificateSigningRequestRequest) Execute

type ApiCreateSecretRequest

type ApiCreateSecretRequest struct {
	ApiService *SecretsAPIService
	// contains filtered or unexported fields
}

func (ApiCreateSecretRequest) AcceptAPIVersion

func (r ApiCreateSecretRequest) AcceptAPIVersion(acceptAPIVersion string) ApiCreateSecretRequest

resource=2.0

func (ApiCreateSecretRequest) Body added in v0.2.0

JSON body of the new secret

func (ApiCreateSecretRequest) Execute

type ApiCreateSecretVersionRequest

type ApiCreateSecretVersionRequest struct {
	ApiService *SecretsAPIService
	// contains filtered or unexported fields
}

func (ApiCreateSecretVersionRequest) AcceptAPIVersion

func (r ApiCreateSecretVersionRequest) AcceptAPIVersion(acceptAPIVersion string) ApiCreateSecretVersionRequest

resource=2.0

func (ApiCreateSecretVersionRequest) Action

Can only be create

func (ApiCreateSecretVersionRequest) Body added in v0.2.0

JSON body of the new secret version

func (ApiCreateSecretVersionRequest) Execute

type ApiCreateVariablesRequest

type ApiCreateVariablesRequest struct {
	ApiService *VariablesAPIService
	// contains filtered or unexported fields
}

func (ApiCreateVariablesRequest) AcceptAPIVersion

func (r ApiCreateVariablesRequest) AcceptAPIVersion(acceptAPIVersion string) ApiCreateVariablesRequest

resource=2.0

func (ApiCreateVariablesRequest) Body added in v0.2.0

JSON body of the new variable

func (ApiCreateVariablesRequest) Execute

type ApiDeleteCertificateByIDRequest

type ApiDeleteCertificateByIDRequest struct {
	ApiService *CertificatesAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteCertificateByIDRequest) Execute

type ApiDeleteCertificateSigningRequestByIdRequest

type ApiDeleteCertificateSigningRequestByIdRequest struct {
	ApiService *CSRsAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteCertificateSigningRequestByIdRequest) Execute

type ApiDeleteSecretRequest

type ApiDeleteSecretRequest struct {
	ApiService *SecretsAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteSecretRequest) AcceptAPIVersion

func (r ApiDeleteSecretRequest) AcceptAPIVersion(acceptAPIVersion string) ApiDeleteSecretRequest

resource=2.0

func (ApiDeleteSecretRequest) Execute

type ApiDeleteSecretVersionRequest

type ApiDeleteSecretVersionRequest struct {
	ApiService *SecretsAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteSecretVersionRequest) AcceptAPIVersion

func (r ApiDeleteSecretVersionRequest) AcceptAPIVersion(acceptAPIVersion string) ApiDeleteSecretVersionRequest

resource=2.0

func (ApiDeleteSecretVersionRequest) Execute

type ApiDeleteVariableRequest

type ApiDeleteVariableRequest struct {
	ApiService *VariablesAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteVariableRequest) AcceptAPIVersion

func (r ApiDeleteVariableRequest) AcceptAPIVersion(acceptAPIVersion string) ApiDeleteVariableRequest

resource=2.0

func (ApiDeleteVariableRequest) Execute

type ApiGetAllSecretsRequest

type ApiGetAllSecretsRequest struct {
	ApiService *SecretsAPIService
	// contains filtered or unexported fields
}

func (ApiGetAllSecretsRequest) AcceptAPIVersion

func (r ApiGetAllSecretsRequest) AcceptAPIVersion(acceptAPIVersion string) ApiGetAllSecretsRequest

resource=2.0

func (ApiGetAllSecretsRequest) Execute

func (ApiGetAllSecretsRequest) OnlyPending

func (r ApiGetAllSecretsRequest) OnlyPending(onlyPending bool) ApiGetAllSecretsRequest

_Accept-API-Version: resource=2.0_ only, returns ESVs with unapplied changes

func (ApiGetAllSecretsRequest) PageSize

_Accept-API-Version: resource=2.0_ only, maximum number of results returned by endpoint before paging

func (ApiGetAllSecretsRequest) PagedResultsCookie

func (r ApiGetAllSecretsRequest) PagedResultsCookie(pagedResultsCookie string) ApiGetAllSecretsRequest

_Accept-API-Version: resource=2.0_ only, opaque data used for paging result data, can be used for paging instead of having to track pageSize and pagedResultsOffset

func (ApiGetAllSecretsRequest) PagedResultsOffset

func (r ApiGetAllSecretsRequest) PagedResultsOffset(pagedResultsOffset int64) ApiGetAllSecretsRequest

_Accept-API-Version: resource=2.0_ only, offset of the first result to be returned by endpoint

type ApiGetAllVariablesRequest

type ApiGetAllVariablesRequest struct {
	ApiService *VariablesAPIService
	// contains filtered or unexported fields
}

func (ApiGetAllVariablesRequest) AcceptAPIVersion

func (r ApiGetAllVariablesRequest) AcceptAPIVersion(acceptAPIVersion string) ApiGetAllVariablesRequest

resource=2.0

func (ApiGetAllVariablesRequest) Execute

func (ApiGetAllVariablesRequest) OnlyPending

func (r ApiGetAllVariablesRequest) OnlyPending(onlyPending bool) ApiGetAllVariablesRequest

_Accept-API-Version: resource=2.0_ only, returns ESVs with unapplied changes

func (ApiGetAllVariablesRequest) PageSize

_Accept-API-Version: resource=2.0_ only, maximum number of results returned by endpoint before paging

func (ApiGetAllVariablesRequest) PagedResultsCookie

func (r ApiGetAllVariablesRequest) PagedResultsCookie(pagedResultsCookie string) ApiGetAllVariablesRequest

_Accept-API-Version: resource=2.0_ only, opaque data used for paging result data, can be used for paging instead of having to track pageSize and pagedResultsOffset

func (ApiGetAllVariablesRequest) PagedResultsOffset

func (r ApiGetAllVariablesRequest) PagedResultsOffset(pagedResultsOffset int64) ApiGetAllVariablesRequest

_Accept-API-Version: resource=2.0_ only, offset of the first result to be returned by endpoint

type ApiGetCertificateByIDRequest

type ApiGetCertificateByIDRequest struct {
	ApiService *CertificatesAPIService
	// contains filtered or unexported fields
}

func (ApiGetCertificateByIDRequest) Execute

type ApiGetCertificateSigningRequestByIdRequest

type ApiGetCertificateSigningRequestByIdRequest struct {
	ApiService *CSRsAPIService
	// contains filtered or unexported fields
}

func (ApiGetCertificateSigningRequestByIdRequest) Execute

type ApiGetCertificateSigningRequestsRequest

type ApiGetCertificateSigningRequestsRequest struct {
	ApiService *CSRsAPIService
	// contains filtered or unexported fields
}

func (ApiGetCertificateSigningRequestsRequest) Execute

type ApiGetCertificatesRequest

type ApiGetCertificatesRequest struct {
	ApiService *CertificatesAPIService
	// contains filtered or unexported fields
}

func (ApiGetCertificatesRequest) Execute

type ApiGetCookieDomainsRequest

type ApiGetCookieDomainsRequest struct {
	ApiService *CookieDomainsAPIService
	// contains filtered or unexported fields
}

func (ApiGetCookieDomainsRequest) Execute

type ApiGetCountRequest

type ApiGetCountRequest struct {
	ApiService *CountAPIService
	// contains filtered or unexported fields
}

func (ApiGetCountRequest) AcceptAPIVersion

func (r ApiGetCountRequest) AcceptAPIVersion(acceptAPIVersion string) ApiGetCountRequest

resource=2.0

func (ApiGetCountRequest) Execute

func (r ApiGetCountRequest) Execute() (*EsvCount, *http.Response, error)

func (ApiGetCountRequest) OnlyPending

func (r ApiGetCountRequest) OnlyPending(onlyPending bool) ApiGetCountRequest

_Accept-API-Version: resource=2.0_ only, returns ESVs with unapplied changes

type ApiGetCustomDomainsRequest

type ApiGetCustomDomainsRequest struct {
	ApiService *CustomDomainsAPIService
	// contains filtered or unexported fields
}

func (ApiGetCustomDomainsRequest) Execute

type ApiGetEnforcedContentSecurityPolicyRequest

type ApiGetEnforcedContentSecurityPolicyRequest struct {
	ApiService *ContentSecurityPolicyAPIService
	// contains filtered or unexported fields
}

func (ApiGetEnforcedContentSecurityPolicyRequest) Execute

type ApiGetEnforcementRequest

type ApiGetEnforcementRequest struct {
	ApiService *FederationEnforcementAPIService
	// contains filtered or unexported fields
}

func (ApiGetEnforcementRequest) Execute

type ApiGetLastReportRequest

type ApiGetLastReportRequest struct {
	ApiService *PromotionAPIService
	// contains filtered or unexported fields
}

func (ApiGetLastReportRequest) AcceptAPIVersion

func (r ApiGetLastReportRequest) AcceptAPIVersion(acceptAPIVersion string) ApiGetLastReportRequest

protocol=1.0,resource=1.0

func (ApiGetLastReportRequest) Execute

type ApiGetProvisionalReportRequest

type ApiGetProvisionalReportRequest struct {
	ApiService *PromotionAPIService
	// contains filtered or unexported fields
}

func (ApiGetProvisionalReportRequest) AcceptAPIVersion

func (r ApiGetProvisionalReportRequest) AcceptAPIVersion(acceptAPIVersion string) ApiGetProvisionalReportRequest

protocol=1.0,resource=1.0

func (ApiGetProvisionalReportRequest) Execute

type ApiGetProvisionalRollbackReportRequest

type ApiGetProvisionalRollbackReportRequest struct {
	ApiService *PromotionAPIService
	// contains filtered or unexported fields
}

func (ApiGetProvisionalRollbackReportRequest) AcceptAPIVersion

protocol=1.0,resource=1.0

func (ApiGetProvisionalRollbackReportRequest) Execute

type ApiGetReleaseInfoRequest

type ApiGetReleaseInfoRequest struct {
	ApiService *ReleaseAPIService
	// contains filtered or unexported fields
}

func (ApiGetReleaseInfoRequest) Execute

type ApiGetReportListRequest

type ApiGetReportListRequest struct {
	ApiService *PromotionAPIService
	// contains filtered or unexported fields
}

func (ApiGetReportListRequest) AcceptAPIVersion

func (r ApiGetReportListRequest) AcceptAPIVersion(acceptAPIVersion string) ApiGetReportListRequest

protocol=1.0,resource=1.0

func (ApiGetReportListRequest) Execute

type ApiGetReportOnlyContentSecurityPolicyRequest

type ApiGetReportOnlyContentSecurityPolicyRequest struct {
	ApiService *ContentSecurityPolicyAPIService
	// contains filtered or unexported fields
}

func (ApiGetReportOnlyContentSecurityPolicyRequest) Execute

type ApiGetReportRequest

type ApiGetReportRequest struct {
	ApiService *PromotionAPIService
	// contains filtered or unexported fields
}

func (ApiGetReportRequest) AcceptAPIVersion

func (r ApiGetReportRequest) AcceptAPIVersion(acceptAPIVersion string) ApiGetReportRequest

protocol=1.0,resource=1.0

func (ApiGetReportRequest) Execute

type ApiGetRestartStatusRequest

type ApiGetRestartStatusRequest struct {
	ApiService *RestartAPIService
	// contains filtered or unexported fields
}

func (ApiGetRestartStatusRequest) AcceptAPIVersion

func (r ApiGetRestartStatusRequest) AcceptAPIVersion(acceptAPIVersion string) ApiGetRestartStatusRequest

resource=2.0

func (ApiGetRestartStatusRequest) Execute

type ApiGetSSOCookieRequest

type ApiGetSSOCookieRequest struct {
	ApiService *SSOCookieAPIService
	// contains filtered or unexported fields
}

func (ApiGetSSOCookieRequest) Execute

type ApiGetSecretRequest

type ApiGetSecretRequest struct {
	ApiService *SecretsAPIService
	// contains filtered or unexported fields
}

func (ApiGetSecretRequest) AcceptAPIVersion

func (r ApiGetSecretRequest) AcceptAPIVersion(acceptAPIVersion string) ApiGetSecretRequest

resource=2.0

func (ApiGetSecretRequest) Execute

type ApiGetSecretVersionRequest

type ApiGetSecretVersionRequest struct {
	ApiService *SecretsAPIService
	// contains filtered or unexported fields
}

func (ApiGetSecretVersionRequest) AcceptAPIVersion

func (r ApiGetSecretVersionRequest) AcceptAPIVersion(acceptAPIVersion string) ApiGetSecretVersionRequest

resource=2.0

func (ApiGetSecretVersionRequest) Execute

type ApiGetSecretVersionsRequest

type ApiGetSecretVersionsRequest struct {
	ApiService *SecretsAPIService
	// contains filtered or unexported fields
}

func (ApiGetSecretVersionsRequest) AcceptAPIVersion

func (r ApiGetSecretVersionsRequest) AcceptAPIVersion(acceptAPIVersion string) ApiGetSecretVersionsRequest

resource=2.0

func (ApiGetSecretVersionsRequest) Execute

type ApiGetVariableRequest

type ApiGetVariableRequest struct {
	ApiService *VariablesAPIService
	// contains filtered or unexported fields
}

func (ApiGetVariableRequest) AcceptAPIVersion

func (r ApiGetVariableRequest) AcceptAPIVersion(acceptAPIVersion string) ApiGetVariableRequest

resource=2.0

func (ApiGetVariableRequest) Execute

type ApiLockRequest

type ApiLockRequest struct {
	ApiService *PromotionAPIService
	// contains filtered or unexported fields
}

func (ApiLockRequest) AcceptAPIVersion

func (r ApiLockRequest) AcceptAPIVersion(acceptAPIVersion string) ApiLockRequest

protocol=1.0,resource=1.0

func (ApiLockRequest) Execute

type ApiProgressRequest

type ApiProgressRequest struct {
	ApiService *PromotionAPIService
	// contains filtered or unexported fields
}

func (ApiProgressRequest) AcceptAPIVersion

func (r ApiProgressRequest) AcceptAPIVersion(acceptAPIVersion string) ApiProgressRequest

protocol=1.0,resource=1.0

func (ApiProgressRequest) Execute

type ApiResetSSOCookieRequest

type ApiResetSSOCookieRequest struct {
	ApiService *SSOCookieAPIService
	// contains filtered or unexported fields
}

func (ApiResetSSOCookieRequest) Action

Reset SSO cookie configuration to default

func (ApiResetSSOCookieRequest) Execute

type ApiRestartRequest

type ApiRestartRequest struct {
	ApiService *RestartAPIService
	// contains filtered or unexported fields
}

func (ApiRestartRequest) AcceptAPIVersion

func (r ApiRestartRequest) AcceptAPIVersion(acceptAPIVersion string) ApiRestartRequest

resource=2.0

func (ApiRestartRequest) Action

func (r ApiRestartRequest) Action(action string) ApiRestartRequest

Can only be restart

func (ApiRestartRequest) Execute

type ApiRollbackRequest

type ApiRollbackRequest struct {
	ApiService *PromotionAPIService
	// contains filtered or unexported fields
}

func (ApiRollbackRequest) AcceptAPIVersion

func (r ApiRollbackRequest) AcceptAPIVersion(acceptAPIVersion string) ApiRollbackRequest

protocol=1.0,resource=1.0

func (ApiRollbackRequest) Body added in v0.2.0

A request body with info required to initiate a rollback

func (ApiRollbackRequest) Execute

type ApiSetCookieDomainsRequest

type ApiSetCookieDomainsRequest struct {
	ApiService *CookieDomainsAPIService
	// contains filtered or unexported fields
}

func (ApiSetCookieDomainsRequest) Body added in v0.2.0

Cookie domains

func (ApiSetCookieDomainsRequest) Execute

type ApiSetCustomDomainsRequest

type ApiSetCustomDomainsRequest struct {
	ApiService *CustomDomainsAPIService
	// contains filtered or unexported fields
}

func (ApiSetCustomDomainsRequest) Body added in v0.2.0

Custom domains

func (ApiSetCustomDomainsRequest) Execute

type ApiSetEnforcedContentSecurityPolicyRequest

type ApiSetEnforcedContentSecurityPolicyRequest struct {
	ApiService *ContentSecurityPolicyAPIService
	// contains filtered or unexported fields
}

func (ApiSetEnforcedContentSecurityPolicyRequest) Body added in v0.2.0

Enforced content security policy to apply to the tenant

func (ApiSetEnforcedContentSecurityPolicyRequest) Execute

type ApiSetEnforcementRequest

type ApiSetEnforcementRequest struct {
	ApiService *FederationEnforcementAPIService
	// contains filtered or unexported fields
}

func (ApiSetEnforcementRequest) Body added in v0.2.0

Enforcement settings to apply to the tenant

func (ApiSetEnforcementRequest) Execute

type ApiSetReportOnlyContentSecurityPolicyRequest

type ApiSetReportOnlyContentSecurityPolicyRequest struct {
	ApiService *ContentSecurityPolicyAPIService
	// contains filtered or unexported fields
}

func (ApiSetReportOnlyContentSecurityPolicyRequest) Body added in v0.2.0

Enforced content security policy to apply to the tenant

func (ApiSetReportOnlyContentSecurityPolicyRequest) Execute

type ApiSetSSOCookieRequest

type ApiSetSSOCookieRequest struct {
	ApiService *SSOCookieAPIService
	// contains filtered or unexported fields
}

func (ApiSetSSOCookieRequest) Body added in v0.2.0

SSO cookie configuration to apply to the tenant

func (ApiSetSSOCookieRequest) Execute

type ApiStartRequest

type ApiStartRequest struct {
	ApiService *PromotionAPIService
	// contains filtered or unexported fields
}

func (ApiStartRequest) AcceptAPIVersion

func (r ApiStartRequest) AcceptAPIVersion(acceptAPIVersion string) ApiStartRequest

protocol=1.0,resource=1.0

func (ApiStartRequest) Body added in v0.2.0

A request body with info required to initiate a promotion

func (ApiStartRequest) Execute

func (r ApiStartRequest) Execute() (*PromotionStart, *http.Response, error)

type ApiUnlockRequest

type ApiUnlockRequest struct {
	ApiService *PromotionAPIService
	// contains filtered or unexported fields
}

func (ApiUnlockRequest) AcceptAPIVersion

func (r ApiUnlockRequest) AcceptAPIVersion(acceptAPIVersion string) ApiUnlockRequest

protocol=1.0,resource=1.0

func (ApiUnlockRequest) Execute

type ApiUpdateCertificateByIDRequest

type ApiUpdateCertificateByIDRequest struct {
	ApiService *CertificatesAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateCertificateByIDRequest) Body added in v0.2.0

JSON body of the updated certificate

func (ApiUpdateCertificateByIDRequest) Execute

type ApiUpdateCertificateSigningRequestByIdRequest

type ApiUpdateCertificateSigningRequestByIdRequest struct {
	ApiService *CSRsAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateCertificateSigningRequestByIdRequest) Body added in v0.2.0

JSON body of the new certificate signing request

func (ApiUpdateCertificateSigningRequestByIdRequest) Execute

type ApiVerifyCustomDomainsRequest

type ApiVerifyCustomDomainsRequest struct {
	ApiService *CustomDomainsAPIService
	// contains filtered or unexported fields
}

func (ApiVerifyCustomDomainsRequest) Action

Requested action type

func (ApiVerifyCustomDomainsRequest) Body added in v0.2.0

Custom domain

func (ApiVerifyCustomDomainsRequest) Execute

type BadRequest

type BadRequest struct {
	Code    *int64  `json:"code,omitempty"`
	Message *string `json:"message,omitempty"`
}

BadRequest struct for BadRequest

func NewBadRequest

func NewBadRequest() *BadRequest

NewBadRequest instantiates a new BadRequest 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 NewBadRequestWithDefaults

func NewBadRequestWithDefaults() *BadRequest

NewBadRequestWithDefaults instantiates a new BadRequest 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 (*BadRequest) GetCode

func (o *BadRequest) GetCode() int64

GetCode returns the Code field value if set, zero value otherwise.

func (*BadRequest) GetCodeOk

func (o *BadRequest) GetCodeOk() (*int64, bool)

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

func (*BadRequest) GetMessage

func (o *BadRequest) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*BadRequest) GetMessageOk

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

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

func (*BadRequest) HasCode

func (o *BadRequest) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*BadRequest) HasMessage

func (o *BadRequest) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (BadRequest) MarshalJSON

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

func (*BadRequest) SetCode

func (o *BadRequest) SetCode(v int64)

SetCode gets a reference to the given int64 and assigns it to the Code field.

func (*BadRequest) SetMessage

func (o *BadRequest) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (BadRequest) ToMap

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

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 CName

type CName struct {
	// The canonical name of the domain to be validated.
	Name string `json:"name"`
}

CName struct for CName

func NewCName

func NewCName(name string) *CName

NewCName instantiates a new CName 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 NewCNameWithDefaults

func NewCNameWithDefaults() *CName

NewCNameWithDefaults instantiates a new CName 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 (*CName) GetName

func (o *CName) GetName() string

GetName returns the Name field value

func (*CName) GetNameOk

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

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

func (CName) MarshalJSON

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

func (*CName) SetName

func (o *CName) SetName(v string)

SetName sets field value

func (CName) ToMap

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

type CSRsAPIService

type CSRsAPIService service

CSRsAPIService CSRsAPI service

func (*CSRsAPIService) CreateCertificateSigningRequest

func (a *CSRsAPIService) CreateCertificateSigningRequest(ctx context.Context) ApiCreateCertificateSigningRequestRequest

CreateCertificateSigningRequest Create CSR

Create a new certificate signing request

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

func (*CSRsAPIService) CreateCertificateSigningRequestExecute

func (a *CSRsAPIService) CreateCertificateSigningRequestExecute(r ApiCreateCertificateSigningRequestRequest) (*CertificateSigningRequest, *http.Response, error)

Execute executes the request

@return CertificateSigningRequest

func (*CSRsAPIService) DeleteCertificateSigningRequestById

func (a *CSRsAPIService) DeleteCertificateSigningRequestById(ctx context.Context, id string) ApiDeleteCertificateSigningRequestByIdRequest

DeleteCertificateSigningRequestById Delete CSR by ID

Deletes a CSR created in the tenant.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID of the certificateSigningRequest
@return ApiDeleteCertificateSigningRequestByIdRequest

func (*CSRsAPIService) DeleteCertificateSigningRequestByIdExecute

func (a *CSRsAPIService) DeleteCertificateSigningRequestByIdExecute(r ApiDeleteCertificateSigningRequestByIdRequest) (*http.Response, error)

Execute executes the request

func (*CSRsAPIService) GetCertificateSigningRequestById

func (a *CSRsAPIService) GetCertificateSigningRequestById(ctx context.Context, id string) ApiGetCertificateSigningRequestByIdRequest

GetCertificateSigningRequestById Get CSR by ID

Returns information about a CSR created in the tenant.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID of the CSR
@return ApiGetCertificateSigningRequestByIdRequest

func (*CSRsAPIService) GetCertificateSigningRequestByIdExecute

func (a *CSRsAPIService) GetCertificateSigningRequestByIdExecute(r ApiGetCertificateSigningRequestByIdRequest) (*CertificateSigningRequest, *http.Response, error)

Execute executes the request

@return CertificateSigningRequest

func (*CSRsAPIService) GetCertificateSigningRequests

func (a *CSRsAPIService) GetCertificateSigningRequests(ctx context.Context) ApiGetCertificateSigningRequestsRequest

GetCertificateSigningRequests Get all CSRs

Returns all certificate signing requests created in the environment

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

func (*CSRsAPIService) GetCertificateSigningRequestsExecute

func (a *CSRsAPIService) GetCertificateSigningRequestsExecute(r ApiGetCertificateSigningRequestsRequest) ([]CertificateSigningRequest, *http.Response, error)

Execute executes the request

@return []CertificateSigningRequest

func (*CSRsAPIService) UpdateCertificateSigningRequestById

func (a *CSRsAPIService) UpdateCertificateSigningRequestById(ctx context.Context, id string) ApiUpdateCertificateSigningRequestByIdRequest

UpdateCertificateSigningRequestById Update CSR by ID

Upload a certificate to complete a CSR request, installing the certificate in the tenant. Only the `certificate` field can be set on an upload request.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID of the certificateSigningRequest
@return ApiUpdateCertificateSigningRequestByIdRequest

func (*CSRsAPIService) UpdateCertificateSigningRequestByIdExecute

func (a *CSRsAPIService) UpdateCertificateSigningRequestByIdExecute(r ApiUpdateCertificateSigningRequestByIdRequest) (*CertificateSigningRequest, *http.Response, error)

Execute executes the request

@return CertificateSigningRequest

type Certificate

type Certificate struct {
	// The active status of the certificate. Set this to true for the certificate to be made live on the loadbalancer.
	Active *bool `json:"active,omitempty"`
	// Deprecated. Contains no data.
	Certificate *string `json:"certificate,omitempty" datastore:",noindex"`
	// The expiry time of the certificate. Not used in insert requests.
	ExpireTime *string `json:"expireTime,omitempty"`
	// The unique identifier for the certificate resource. Not used in insert requests.
	Id *string `json:"id,omitempty"`
	// The issuer DN of the certificate
	Issuer *string `json:"issuer,omitempty"`
	// The live status of the certificate. This is automatically set by the system and indicates if the certificate is currently live externally.
	Live *bool `json:"live,omitempty"`
	// The subject DN of the certificate
	Subject *string `json:"subject,omitempty"`
	// Domains associated by with the certificate via the Subject Alternative Name extension. The common name should be included in the SANs as well. Not used in insert requests.
	SubjectAlternativeNames []string `json:"subjectAlternativeNames,omitempty"`
	// The notBefore time of the certificate.
	ValidFromTime *string `json:"validFromTime,omitempty"`
}

Certificate struct for Certificate

func NewCertificate

func NewCertificate() *Certificate

NewCertificate instantiates a new Certificate 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 NewCertificateWithDefaults

func NewCertificateWithDefaults() *Certificate

NewCertificateWithDefaults instantiates a new Certificate 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 (*Certificate) GetActive

func (o *Certificate) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*Certificate) GetActiveOk

func (o *Certificate) GetActiveOk() (*bool, bool)

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

func (*Certificate) GetCertificate

func (o *Certificate) GetCertificate() string

GetCertificate returns the Certificate field value if set, zero value otherwise.

func (*Certificate) GetCertificateOk

func (o *Certificate) GetCertificateOk() (*string, bool)

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

func (*Certificate) GetExpireTime

func (o *Certificate) GetExpireTime() string

GetExpireTime returns the ExpireTime field value if set, zero value otherwise.

func (*Certificate) GetExpireTimeOk

func (o *Certificate) GetExpireTimeOk() (*string, bool)

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

func (*Certificate) GetId

func (o *Certificate) GetId() string

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

func (*Certificate) GetIdOk

func (o *Certificate) 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 (*Certificate) GetIssuer

func (o *Certificate) GetIssuer() string

GetIssuer returns the Issuer field value if set, zero value otherwise.

func (*Certificate) GetIssuerOk

func (o *Certificate) GetIssuerOk() (*string, bool)

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

func (*Certificate) GetLive

func (o *Certificate) GetLive() bool

GetLive returns the Live field value if set, zero value otherwise.

func (*Certificate) GetLiveOk

func (o *Certificate) GetLiveOk() (*bool, bool)

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

func (*Certificate) GetSubject

func (o *Certificate) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*Certificate) GetSubjectAlternativeNames

func (o *Certificate) GetSubjectAlternativeNames() []string

GetSubjectAlternativeNames returns the SubjectAlternativeNames field value if set, zero value otherwise.

func (*Certificate) GetSubjectAlternativeNamesOk

func (o *Certificate) GetSubjectAlternativeNamesOk() ([]string, bool)

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

func (*Certificate) GetSubjectOk

func (o *Certificate) GetSubjectOk() (*string, bool)

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

func (*Certificate) GetValidFromTime

func (o *Certificate) GetValidFromTime() string

GetValidFromTime returns the ValidFromTime field value if set, zero value otherwise.

func (*Certificate) GetValidFromTimeOk

func (o *Certificate) GetValidFromTimeOk() (*string, bool)

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

func (*Certificate) HasActive

func (o *Certificate) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*Certificate) HasCertificate

func (o *Certificate) HasCertificate() bool

HasCertificate returns a boolean if a field has been set.

func (*Certificate) HasExpireTime

func (o *Certificate) HasExpireTime() bool

HasExpireTime returns a boolean if a field has been set.

func (*Certificate) HasId

func (o *Certificate) HasId() bool

HasId returns a boolean if a field has been set.

func (*Certificate) HasIssuer

func (o *Certificate) HasIssuer() bool

HasIssuer returns a boolean if a field has been set.

func (*Certificate) HasLive

func (o *Certificate) HasLive() bool

HasLive returns a boolean if a field has been set.

func (*Certificate) HasSubject

func (o *Certificate) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*Certificate) HasSubjectAlternativeNames

func (o *Certificate) HasSubjectAlternativeNames() bool

HasSubjectAlternativeNames returns a boolean if a field has been set.

func (*Certificate) HasValidFromTime

func (o *Certificate) HasValidFromTime() bool

HasValidFromTime returns a boolean if a field has been set.

func (Certificate) MarshalJSON

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

func (*Certificate) SetActive

func (o *Certificate) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*Certificate) SetCertificate

func (o *Certificate) SetCertificate(v string)

SetCertificate gets a reference to the given string and assigns it to the Certificate field.

func (*Certificate) SetExpireTime

func (o *Certificate) SetExpireTime(v string)

SetExpireTime gets a reference to the given string and assigns it to the ExpireTime field.

func (*Certificate) SetId

func (o *Certificate) SetId(v string)

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

func (*Certificate) SetIssuer

func (o *Certificate) SetIssuer(v string)

SetIssuer gets a reference to the given string and assigns it to the Issuer field.

func (*Certificate) SetLive

func (o *Certificate) SetLive(v bool)

SetLive gets a reference to the given bool and assigns it to the Live field.

func (*Certificate) SetSubject

func (o *Certificate) SetSubject(v string)

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

func (*Certificate) SetSubjectAlternativeNames

func (o *Certificate) SetSubjectAlternativeNames(v []string)

SetSubjectAlternativeNames gets a reference to the given []string and assigns it to the SubjectAlternativeNames field.

func (*Certificate) SetValidFromTime

func (o *Certificate) SetValidFromTime(v string)

SetValidFromTime gets a reference to the given string and assigns it to the ValidFromTime field.

func (Certificate) ToMap

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

type CertificateSigningRequest

type CertificateSigningRequest struct {
	// The algorithm for the private key. The encryption algorithm will either be RSA-2048 or ECDSA P-256 depending on the algorithm choice. The default is RSA-2048.
	Algorithm *string `json:"algorithm,omitempty"`
	// The ID of the certificate created from this CSR if the CSR has been completed.
	CertificateID *string `json:"certificateID,omitempty"`
	CreatedDate   *string `json:"createdDate,omitempty"`
	// The unique identifier for the CSR
	Id *string `json:"id,omitempty"`
	// PEM formatted CSR.
	Request *string `json:"request,omitempty" datastore:",noindex"`
	// the CSR subject
	Subject *string `json:"subject,omitempty"`
	// Additional domain or domains that the SSL certificate is securing
	SubjectAlternativeNames []string `json:"subjectAlternativeNames,omitempty"`
}

CertificateSigningRequest struct for CertificateSigningRequest

func NewCertificateSigningRequest

func NewCertificateSigningRequest() *CertificateSigningRequest

NewCertificateSigningRequest instantiates a new CertificateSigningRequest 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 NewCertificateSigningRequestWithDefaults

func NewCertificateSigningRequestWithDefaults() *CertificateSigningRequest

NewCertificateSigningRequestWithDefaults instantiates a new CertificateSigningRequest 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 (*CertificateSigningRequest) GetAlgorithm

func (o *CertificateSigningRequest) GetAlgorithm() string

GetAlgorithm returns the Algorithm field value if set, zero value otherwise.

func (*CertificateSigningRequest) GetAlgorithmOk

func (o *CertificateSigningRequest) GetAlgorithmOk() (*string, bool)

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

func (*CertificateSigningRequest) GetCertificateID

func (o *CertificateSigningRequest) GetCertificateID() string

GetCertificateID returns the CertificateID field value if set, zero value otherwise.

func (*CertificateSigningRequest) GetCertificateIDOk

func (o *CertificateSigningRequest) GetCertificateIDOk() (*string, bool)

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

func (*CertificateSigningRequest) GetCreatedDate

func (o *CertificateSigningRequest) GetCreatedDate() string

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*CertificateSigningRequest) GetCreatedDateOk

func (o *CertificateSigningRequest) GetCreatedDateOk() (*string, bool)

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

func (*CertificateSigningRequest) GetId

func (o *CertificateSigningRequest) GetId() string

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

func (*CertificateSigningRequest) GetIdOk

func (o *CertificateSigningRequest) 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 (*CertificateSigningRequest) GetRequest

func (o *CertificateSigningRequest) GetRequest() string

GetRequest returns the Request field value if set, zero value otherwise.

func (*CertificateSigningRequest) GetRequestOk

func (o *CertificateSigningRequest) GetRequestOk() (*string, bool)

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

func (*CertificateSigningRequest) GetSubject

func (o *CertificateSigningRequest) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*CertificateSigningRequest) GetSubjectAlternativeNames

func (o *CertificateSigningRequest) GetSubjectAlternativeNames() []string

GetSubjectAlternativeNames returns the SubjectAlternativeNames field value if set, zero value otherwise.

func (*CertificateSigningRequest) GetSubjectAlternativeNamesOk

func (o *CertificateSigningRequest) GetSubjectAlternativeNamesOk() ([]string, bool)

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

func (*CertificateSigningRequest) GetSubjectOk

func (o *CertificateSigningRequest) GetSubjectOk() (*string, bool)

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

func (*CertificateSigningRequest) HasAlgorithm

func (o *CertificateSigningRequest) HasAlgorithm() bool

HasAlgorithm returns a boolean if a field has been set.

func (*CertificateSigningRequest) HasCertificateID

func (o *CertificateSigningRequest) HasCertificateID() bool

HasCertificateID returns a boolean if a field has been set.

func (*CertificateSigningRequest) HasCreatedDate

func (o *CertificateSigningRequest) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*CertificateSigningRequest) HasId

func (o *CertificateSigningRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*CertificateSigningRequest) HasRequest

func (o *CertificateSigningRequest) HasRequest() bool

HasRequest returns a boolean if a field has been set.

func (*CertificateSigningRequest) HasSubject

func (o *CertificateSigningRequest) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*CertificateSigningRequest) HasSubjectAlternativeNames

func (o *CertificateSigningRequest) HasSubjectAlternativeNames() bool

HasSubjectAlternativeNames returns a boolean if a field has been set.

func (CertificateSigningRequest) MarshalJSON

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

func (*CertificateSigningRequest) SetAlgorithm

func (o *CertificateSigningRequest) SetAlgorithm(v string)

SetAlgorithm gets a reference to the given string and assigns it to the Algorithm field.

func (*CertificateSigningRequest) SetCertificateID

func (o *CertificateSigningRequest) SetCertificateID(v string)

SetCertificateID gets a reference to the given string and assigns it to the CertificateID field.

func (*CertificateSigningRequest) SetCreatedDate

func (o *CertificateSigningRequest) SetCreatedDate(v string)

SetCreatedDate gets a reference to the given string and assigns it to the CreatedDate field.

func (*CertificateSigningRequest) SetId

func (o *CertificateSigningRequest) SetId(v string)

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

func (*CertificateSigningRequest) SetRequest

func (o *CertificateSigningRequest) SetRequest(v string)

SetRequest gets a reference to the given string and assigns it to the Request field.

func (*CertificateSigningRequest) SetSubject

func (o *CertificateSigningRequest) SetSubject(v string)

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

func (*CertificateSigningRequest) SetSubjectAlternativeNames

func (o *CertificateSigningRequest) SetSubjectAlternativeNames(v []string)

SetSubjectAlternativeNames gets a reference to the given []string and assigns it to the SubjectAlternativeNames field.

func (CertificateSigningRequest) ToMap

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

type CertificatesAPIService

type CertificatesAPIService service

CertificatesAPIService CertificatesAPI service

func (*CertificatesAPIService) CreateCertificate

CreateCertificate Create certificate

Upload a new certificate to the tenant.

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

func (*CertificatesAPIService) CreateCertificateExecute

Execute executes the request

@return Certificate

func (*CertificatesAPIService) DeleteCertificateByID

DeleteCertificateByID Delete certificate by ID

Deletes a certificate installed on the tenant. This certificate must be disabled before deletion will be allowed.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID of the certificate resource
@return ApiDeleteCertificateByIDRequest

func (*CertificatesAPIService) DeleteCertificateByIDExecute

func (a *CertificatesAPIService) DeleteCertificateByIDExecute(r ApiDeleteCertificateByIDRequest) (*http.Response, error)

Execute executes the request

func (*CertificatesAPIService) GetCertificateByID

GetCertificateByID Get certificate by ID

Returns information about a certificate installed on the tenant.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID of the certificate resource
@return ApiGetCertificateByIDRequest

func (*CertificatesAPIService) GetCertificateByIDExecute

func (a *CertificatesAPIService) GetCertificateByIDExecute(r ApiGetCertificateByIDRequest) (*Certificate, *http.Response, error)

Execute executes the request

@return Certificate

func (*CertificatesAPIService) GetCertificates

GetCertificates Get all certificates

Returns all certificates installed in the tenant.

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

func (*CertificatesAPIService) GetCertificatesExecute

func (a *CertificatesAPIService) GetCertificatesExecute(r ApiGetCertificatesRequest) ([]Certificate, *http.Response, error)

Execute executes the request

@return []Certificate

func (*CertificatesAPIService) UpdateCertificateByID

UpdateCertificateByID Update certificate by ID

Updates information about a certificate installed on the tenant. This can be used to enable / disable certificates.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID of the certificate resource
@return ApiUpdateCertificateByIDRequest

func (*CertificatesAPIService) UpdateCertificateByIDExecute

func (a *CertificatesAPIService) UpdateCertificateByIDExecute(r ApiUpdateCertificateByIDRequest) (*Certificate, *http.Response, error)

Execute executes the request

@return Certificate

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

func (*Configuration) UserAgent

func (c *Configuration) UserAgent() string

type Conflict

type Conflict struct {
	Code    *int64  `json:"code,omitempty"`
	Message *string `json:"message,omitempty"`
}

Conflict struct for Conflict

func NewConflict

func NewConflict() *Conflict

NewConflict instantiates a new Conflict 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 NewConflictWithDefaults

func NewConflictWithDefaults() *Conflict

NewConflictWithDefaults instantiates a new Conflict 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 (*Conflict) GetCode

func (o *Conflict) GetCode() int64

GetCode returns the Code field value if set, zero value otherwise.

func (*Conflict) GetCodeOk

func (o *Conflict) GetCodeOk() (*int64, bool)

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

func (*Conflict) GetMessage

func (o *Conflict) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*Conflict) GetMessageOk

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

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

func (*Conflict) HasCode

func (o *Conflict) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Conflict) HasMessage

func (o *Conflict) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (Conflict) MarshalJSON

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

func (*Conflict) SetCode

func (o *Conflict) SetCode(v int64)

SetCode gets a reference to the given int64 and assigns it to the Code field.

func (*Conflict) SetMessage

func (o *Conflict) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (Conflict) ToMap

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

type ContentSecurityPolicy

type ContentSecurityPolicy struct {
	Active     *bool                `json:"active,omitempty"`
	Directives *map[string][]string `json:"directives,omitempty"`
}

ContentSecurityPolicy struct for ContentSecurityPolicy

func NewContentSecurityPolicy

func NewContentSecurityPolicy() *ContentSecurityPolicy

NewContentSecurityPolicy instantiates a new ContentSecurityPolicy 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 NewContentSecurityPolicyWithDefaults

func NewContentSecurityPolicyWithDefaults() *ContentSecurityPolicy

NewContentSecurityPolicyWithDefaults instantiates a new ContentSecurityPolicy 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 (*ContentSecurityPolicy) GetActive

func (o *ContentSecurityPolicy) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*ContentSecurityPolicy) GetActiveOk

func (o *ContentSecurityPolicy) GetActiveOk() (*bool, bool)

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

func (*ContentSecurityPolicy) GetDirectives

func (o *ContentSecurityPolicy) GetDirectives() map[string][]string

GetDirectives returns the Directives field value if set, zero value otherwise.

func (*ContentSecurityPolicy) GetDirectivesOk

func (o *ContentSecurityPolicy) GetDirectivesOk() (*map[string][]string, bool)

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

func (*ContentSecurityPolicy) HasActive

func (o *ContentSecurityPolicy) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*ContentSecurityPolicy) HasDirectives

func (o *ContentSecurityPolicy) HasDirectives() bool

HasDirectives returns a boolean if a field has been set.

func (ContentSecurityPolicy) MarshalJSON

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

func (*ContentSecurityPolicy) SetActive

func (o *ContentSecurityPolicy) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*ContentSecurityPolicy) SetDirectives

func (o *ContentSecurityPolicy) SetDirectives(v map[string][]string)

SetDirectives gets a reference to the given map[string][]string and assigns it to the Directives field.

func (ContentSecurityPolicy) ToMap

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

type ContentSecurityPolicyAPIService

type ContentSecurityPolicyAPIService service

ContentSecurityPolicyAPIService ContentSecurityPolicyAPI service

func (*ContentSecurityPolicyAPIService) GetEnforcedContentSecurityPolicy

GetEnforcedContentSecurityPolicy Get enforced content security policy

Returns current enforced content security policy

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

func (*ContentSecurityPolicyAPIService) GetEnforcedContentSecurityPolicyExecute

Execute executes the request

@return ContentSecurityPolicy

func (*ContentSecurityPolicyAPIService) GetReportOnlyContentSecurityPolicy

GetReportOnlyContentSecurityPolicy Get report-only content security policy

Returns current report-only content security policy

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

func (*ContentSecurityPolicyAPIService) GetReportOnlyContentSecurityPolicyExecute

Execute executes the request

@return ContentSecurityPolicy

func (*ContentSecurityPolicyAPIService) SetEnforcedContentSecurityPolicy

SetEnforcedContentSecurityPolicy Set enforced content security policy

Specify enforced content security policy

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

func (*ContentSecurityPolicyAPIService) SetEnforcedContentSecurityPolicyExecute

Execute executes the request

@return ContentSecurityPolicy

func (*ContentSecurityPolicyAPIService) SetReportOnlyContentSecurityPolicy

SetReportOnlyContentSecurityPolicy Set report-only content security policy

Specify report-only content security policy

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

func (*ContentSecurityPolicyAPIService) SetReportOnlyContentSecurityPolicyExecute

Execute executes the request

@return ContentSecurityPolicy

type CookieDomains

type CookieDomains struct {
	// Cookie domains
	Domains []string `json:"domains,omitempty"`
}

CookieDomains struct for CookieDomains

func NewCookieDomains

func NewCookieDomains() *CookieDomains

NewCookieDomains instantiates a new CookieDomains 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 NewCookieDomainsWithDefaults

func NewCookieDomainsWithDefaults() *CookieDomains

NewCookieDomainsWithDefaults instantiates a new CookieDomains 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 (*CookieDomains) GetDomains

func (o *CookieDomains) GetDomains() []string

GetDomains returns the Domains field value if set, zero value otherwise.

func (*CookieDomains) GetDomainsOk

func (o *CookieDomains) GetDomainsOk() ([]string, bool)

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

func (*CookieDomains) HasDomains

func (o *CookieDomains) HasDomains() bool

HasDomains returns a boolean if a field has been set.

func (CookieDomains) MarshalJSON

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

func (*CookieDomains) SetDomains

func (o *CookieDomains) SetDomains(v []string)

SetDomains gets a reference to the given []string and assigns it to the Domains field.

func (CookieDomains) ToMap

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

type CookieDomainsAPIService

type CookieDomainsAPIService service

CookieDomainsAPIService CookieDomainsAPI service

func (*CookieDomainsAPIService) GetCookieDomains

GetCookieDomains Get cookie domains

Returns current cookie domains

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

func (*CookieDomainsAPIService) GetCookieDomainsExecute

Execute executes the request

@return CookieDomains

func (*CookieDomainsAPIService) SetCookieDomains

SetCookieDomains Set cookie domains

Specify cookie domains

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

func (*CookieDomainsAPIService) SetCookieDomainsExecute

Execute executes the request

@return CookieDomains

type CountAPIService

type CountAPIService service

CountAPIService CountAPI service

func (*CountAPIService) GetCount

GetCount Get count of ESVs

Get count of ESV secrets and variables in the environment.

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

func (*CountAPIService) GetCountExecute

func (a *CountAPIService) GetCountExecute(r ApiGetCountRequest) (*EsvCount, *http.Response, error)

Execute executes the request

@return EsvCount

type CreateCertificateRequest

type CreateCertificateRequest struct {
	// The active status of the certificate. Set this to true for the certificate to actively be served.
	Active *bool `json:"active,omitempty"`
	// The PEM formatted certificate.
	Certificate string `json:"certificate"`
	// The private key for the certificate. For security reasons, only insert requests include this field.
	PrivateKey string `json:"privateKey"`
}

CreateCertificateRequest struct for CreateCertificateRequest

func NewCreateCertificateRequest

func NewCreateCertificateRequest(certificate string, privateKey string) *CreateCertificateRequest

NewCreateCertificateRequest instantiates a new CreateCertificateRequest 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 NewCreateCertificateRequestWithDefaults

func NewCreateCertificateRequestWithDefaults() *CreateCertificateRequest

NewCreateCertificateRequestWithDefaults instantiates a new CreateCertificateRequest 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 (*CreateCertificateRequest) GetActive

func (o *CreateCertificateRequest) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*CreateCertificateRequest) GetActiveOk

func (o *CreateCertificateRequest) GetActiveOk() (*bool, bool)

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

func (*CreateCertificateRequest) GetCertificate

func (o *CreateCertificateRequest) GetCertificate() string

GetCertificate returns the Certificate field value

func (*CreateCertificateRequest) GetCertificateOk

func (o *CreateCertificateRequest) GetCertificateOk() (*string, bool)

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

func (*CreateCertificateRequest) GetPrivateKey

func (o *CreateCertificateRequest) GetPrivateKey() string

GetPrivateKey returns the PrivateKey field value

func (*CreateCertificateRequest) GetPrivateKeyOk

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

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

func (*CreateCertificateRequest) HasActive

func (o *CreateCertificateRequest) HasActive() bool

HasActive returns a boolean if a field has been set.

func (CreateCertificateRequest) MarshalJSON

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

func (*CreateCertificateRequest) SetActive

func (o *CreateCertificateRequest) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*CreateCertificateRequest) SetCertificate

func (o *CreateCertificateRequest) SetCertificate(v string)

SetCertificate sets field value

func (*CreateCertificateRequest) SetPrivateKey

func (o *CreateCertificateRequest) SetPrivateKey(v string)

SetPrivateKey sets field value

func (CreateCertificateRequest) ToMap

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

type CreateCertificateSigningRequestRequest

type CreateCertificateSigningRequestRequest struct {
	// The algorithm for the private key. The encryption algorithm will either be RSA-2048 or ECDSA P-256 depending on the algorithm choice. The default is RSA-2048.
	Algorithm *string `json:"algorithm,omitempty"`
	// Category of business, such as \"Private Organization\", “Government Entity”, “Business Entity”, or “Non-Commercial Entity”. Relevant for EV certificates.
	BusinessCategory *string `json:"businessCategory,omitempty"`
	City             *string `json:"city,omitempty"`
	// Domain name that the SSL certificate is securing
	CommonName *string `json:"commonName,omitempty"`
	// Two-letter ISO-3166 country code
	Country *string `json:"country,omitempty"`
	Email   *string `json:"email,omitempty"`
	// This field contains only information relevant to the Jurisdiction of Incorporation or Registration. Relevant for EV certificates.
	JurisdictionCity *string `json:"jurisdictionCity,omitempty"`
	// This field contains only information relevant to the Jurisdiction of Incorporation or Registration. Relevant for EV certificates.
	JurisdictionCountry *string `json:"jurisdictionCountry,omitempty"`
	// This field contains only information relevant to the Jurisdiction of Incorporation or Registration. Relevant for EV certificates.
	JurisdictionState *string `json:"jurisdictionState,omitempty"`
	// Full name of company
	Organization *string `json:"organization,omitempty"`
	// Company section or department
	OrganizationalUnit *string `json:"organizationalUnit,omitempty"`
	PostalCode         *string `json:"postalCode,omitempty"`
	// The Registration (or similar) Number assigned to the Subject by the Incorporating or Registration Agency in its Jurisdiction of Incorporation or Registration. Relevant for EV certificates.
	SerialNumber  *string `json:"serialNumber,omitempty"`
	State         *string `json:"state,omitempty"`
	StreetAddress *string `json:"streetAddress,omitempty"`
	// Additional domain or domains that the SSL certificate is securing
	SubjectAlternativeNames []string `json:"subjectAlternativeNames,omitempty"`
}

CreateCertificateSigningRequestRequest struct for CreateCertificateSigningRequestRequest

func NewCreateCertificateSigningRequestRequest

func NewCreateCertificateSigningRequestRequest() *CreateCertificateSigningRequestRequest

NewCreateCertificateSigningRequestRequest instantiates a new CreateCertificateSigningRequestRequest 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 NewCreateCertificateSigningRequestRequestWithDefaults

func NewCreateCertificateSigningRequestRequestWithDefaults() *CreateCertificateSigningRequestRequest

NewCreateCertificateSigningRequestRequestWithDefaults instantiates a new CreateCertificateSigningRequestRequest 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 (*CreateCertificateSigningRequestRequest) GetAlgorithm

GetAlgorithm returns the Algorithm field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) GetAlgorithmOk

func (o *CreateCertificateSigningRequestRequest) GetAlgorithmOk() (*string, bool)

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

func (*CreateCertificateSigningRequestRequest) GetBusinessCategory

func (o *CreateCertificateSigningRequestRequest) GetBusinessCategory() string

GetBusinessCategory returns the BusinessCategory field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) GetBusinessCategoryOk

func (o *CreateCertificateSigningRequestRequest) GetBusinessCategoryOk() (*string, bool)

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

func (*CreateCertificateSigningRequestRequest) GetCity

GetCity returns the City field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) GetCityOk

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

func (*CreateCertificateSigningRequestRequest) GetCommonName

GetCommonName returns the CommonName field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) GetCommonNameOk

func (o *CreateCertificateSigningRequestRequest) GetCommonNameOk() (*string, bool)

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

func (*CreateCertificateSigningRequestRequest) GetCountry

GetCountry returns the Country field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) GetCountryOk

func (o *CreateCertificateSigningRequestRequest) GetCountryOk() (*string, bool)

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

func (*CreateCertificateSigningRequestRequest) GetEmail

GetEmail returns the Email field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) 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.

func (*CreateCertificateSigningRequestRequest) GetJurisdictionCity

func (o *CreateCertificateSigningRequestRequest) GetJurisdictionCity() string

GetJurisdictionCity returns the JurisdictionCity field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) GetJurisdictionCityOk

func (o *CreateCertificateSigningRequestRequest) GetJurisdictionCityOk() (*string, bool)

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

func (*CreateCertificateSigningRequestRequest) GetJurisdictionCountry

func (o *CreateCertificateSigningRequestRequest) GetJurisdictionCountry() string

GetJurisdictionCountry returns the JurisdictionCountry field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) GetJurisdictionCountryOk

func (o *CreateCertificateSigningRequestRequest) GetJurisdictionCountryOk() (*string, bool)

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

func (*CreateCertificateSigningRequestRequest) GetJurisdictionState

func (o *CreateCertificateSigningRequestRequest) GetJurisdictionState() string

GetJurisdictionState returns the JurisdictionState field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) GetJurisdictionStateOk

func (o *CreateCertificateSigningRequestRequest) GetJurisdictionStateOk() (*string, bool)

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

func (*CreateCertificateSigningRequestRequest) GetOrganization

func (o *CreateCertificateSigningRequestRequest) GetOrganization() string

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) GetOrganizationOk

func (o *CreateCertificateSigningRequestRequest) GetOrganizationOk() (*string, bool)

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

func (*CreateCertificateSigningRequestRequest) GetOrganizationalUnit

func (o *CreateCertificateSigningRequestRequest) GetOrganizationalUnit() string

GetOrganizationalUnit returns the OrganizationalUnit field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) GetOrganizationalUnitOk

func (o *CreateCertificateSigningRequestRequest) GetOrganizationalUnitOk() (*string, bool)

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

func (*CreateCertificateSigningRequestRequest) GetPostalCode

GetPostalCode returns the PostalCode field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) GetPostalCodeOk

func (o *CreateCertificateSigningRequestRequest) GetPostalCodeOk() (*string, bool)

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

func (*CreateCertificateSigningRequestRequest) GetSerialNumber

func (o *CreateCertificateSigningRequestRequest) GetSerialNumber() string

GetSerialNumber returns the SerialNumber field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) GetSerialNumberOk

func (o *CreateCertificateSigningRequestRequest) 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.

func (*CreateCertificateSigningRequestRequest) GetState

GetState returns the State field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) GetStateOk

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

func (*CreateCertificateSigningRequestRequest) GetStreetAddress

func (o *CreateCertificateSigningRequestRequest) GetStreetAddress() string

GetStreetAddress returns the StreetAddress field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) GetStreetAddressOk

func (o *CreateCertificateSigningRequestRequest) GetStreetAddressOk() (*string, bool)

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

func (*CreateCertificateSigningRequestRequest) GetSubjectAlternativeNames

func (o *CreateCertificateSigningRequestRequest) GetSubjectAlternativeNames() []string

GetSubjectAlternativeNames returns the SubjectAlternativeNames field value if set, zero value otherwise.

func (*CreateCertificateSigningRequestRequest) GetSubjectAlternativeNamesOk

func (o *CreateCertificateSigningRequestRequest) GetSubjectAlternativeNamesOk() ([]string, bool)

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

func (*CreateCertificateSigningRequestRequest) HasAlgorithm

func (o *CreateCertificateSigningRequestRequest) HasAlgorithm() bool

HasAlgorithm returns a boolean if a field has been set.

func (*CreateCertificateSigningRequestRequest) HasBusinessCategory

func (o *CreateCertificateSigningRequestRequest) HasBusinessCategory() bool

HasBusinessCategory returns a boolean if a field has been set.

func (*CreateCertificateSigningRequestRequest) HasCity

HasCity returns a boolean if a field has been set.

func (*CreateCertificateSigningRequestRequest) HasCommonName

func (o *CreateCertificateSigningRequestRequest) HasCommonName() bool

HasCommonName returns a boolean if a field has been set.

func (*CreateCertificateSigningRequestRequest) HasCountry

HasCountry returns a boolean if a field has been set.

func (*CreateCertificateSigningRequestRequest) HasEmail

HasEmail returns a boolean if a field has been set.

func (*CreateCertificateSigningRequestRequest) HasJurisdictionCity

func (o *CreateCertificateSigningRequestRequest) HasJurisdictionCity() bool

HasJurisdictionCity returns a boolean if a field has been set.

func (*CreateCertificateSigningRequestRequest) HasJurisdictionCountry

func (o *CreateCertificateSigningRequestRequest) HasJurisdictionCountry() bool

HasJurisdictionCountry returns a boolean if a field has been set.

func (*CreateCertificateSigningRequestRequest) HasJurisdictionState

func (o *CreateCertificateSigningRequestRequest) HasJurisdictionState() bool

HasJurisdictionState returns a boolean if a field has been set.

func (*CreateCertificateSigningRequestRequest) HasOrganization

func (o *CreateCertificateSigningRequestRequest) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (*CreateCertificateSigningRequestRequest) HasOrganizationalUnit

func (o *CreateCertificateSigningRequestRequest) HasOrganizationalUnit() bool

HasOrganizationalUnit returns a boolean if a field has been set.

func (*CreateCertificateSigningRequestRequest) HasPostalCode

func (o *CreateCertificateSigningRequestRequest) HasPostalCode() bool

HasPostalCode returns a boolean if a field has been set.

func (*CreateCertificateSigningRequestRequest) HasSerialNumber

func (o *CreateCertificateSigningRequestRequest) HasSerialNumber() bool

HasSerialNumber returns a boolean if a field has been set.

func (*CreateCertificateSigningRequestRequest) HasState

HasState returns a boolean if a field has been set.

func (*CreateCertificateSigningRequestRequest) HasStreetAddress

func (o *CreateCertificateSigningRequestRequest) HasStreetAddress() bool

HasStreetAddress returns a boolean if a field has been set.

func (*CreateCertificateSigningRequestRequest) HasSubjectAlternativeNames

func (o *CreateCertificateSigningRequestRequest) HasSubjectAlternativeNames() bool

HasSubjectAlternativeNames returns a boolean if a field has been set.

func (CreateCertificateSigningRequestRequest) MarshalJSON

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

func (*CreateCertificateSigningRequestRequest) SetAlgorithm

SetAlgorithm gets a reference to the given string and assigns it to the Algorithm field.

func (*CreateCertificateSigningRequestRequest) SetBusinessCategory

func (o *CreateCertificateSigningRequestRequest) SetBusinessCategory(v string)

SetBusinessCategory gets a reference to the given string and assigns it to the BusinessCategory field.

func (*CreateCertificateSigningRequestRequest) SetCity

SetCity gets a reference to the given string and assigns it to the City field.

func (*CreateCertificateSigningRequestRequest) SetCommonName

func (o *CreateCertificateSigningRequestRequest) SetCommonName(v string)

SetCommonName gets a reference to the given string and assigns it to the CommonName field.

func (*CreateCertificateSigningRequestRequest) SetCountry

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*CreateCertificateSigningRequestRequest) SetEmail

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

func (*CreateCertificateSigningRequestRequest) SetJurisdictionCity

func (o *CreateCertificateSigningRequestRequest) SetJurisdictionCity(v string)

SetJurisdictionCity gets a reference to the given string and assigns it to the JurisdictionCity field.

func (*CreateCertificateSigningRequestRequest) SetJurisdictionCountry

func (o *CreateCertificateSigningRequestRequest) SetJurisdictionCountry(v string)

SetJurisdictionCountry gets a reference to the given string and assigns it to the JurisdictionCountry field.

func (*CreateCertificateSigningRequestRequest) SetJurisdictionState

func (o *CreateCertificateSigningRequestRequest) SetJurisdictionState(v string)

SetJurisdictionState gets a reference to the given string and assigns it to the JurisdictionState field.

func (*CreateCertificateSigningRequestRequest) SetOrganization

func (o *CreateCertificateSigningRequestRequest) SetOrganization(v string)

SetOrganization gets a reference to the given string and assigns it to the Organization field.

func (*CreateCertificateSigningRequestRequest) SetOrganizationalUnit

func (o *CreateCertificateSigningRequestRequest) SetOrganizationalUnit(v string)

SetOrganizationalUnit gets a reference to the given string and assigns it to the OrganizationalUnit field.

func (*CreateCertificateSigningRequestRequest) SetPostalCode

func (o *CreateCertificateSigningRequestRequest) SetPostalCode(v string)

SetPostalCode gets a reference to the given string and assigns it to the PostalCode field.

func (*CreateCertificateSigningRequestRequest) SetSerialNumber

func (o *CreateCertificateSigningRequestRequest) SetSerialNumber(v string)

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

func (*CreateCertificateSigningRequestRequest) SetState

SetState gets a reference to the given string and assigns it to the State field.

func (*CreateCertificateSigningRequestRequest) SetStreetAddress

func (o *CreateCertificateSigningRequestRequest) SetStreetAddress(v string)

SetStreetAddress gets a reference to the given string and assigns it to the StreetAddress field.

func (*CreateCertificateSigningRequestRequest) SetSubjectAlternativeNames

func (o *CreateCertificateSigningRequestRequest) SetSubjectAlternativeNames(v []string)

SetSubjectAlternativeNames gets a reference to the given []string and assigns it to the SubjectAlternativeNames field.

func (CreateCertificateSigningRequestRequest) ToMap

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

type CustomDomains

type CustomDomains struct {
	// Custom domains
	Domains []string `json:"domains,omitempty"`
}

CustomDomains struct for CustomDomains

func NewCustomDomains

func NewCustomDomains() *CustomDomains

NewCustomDomains instantiates a new CustomDomains 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 NewCustomDomainsWithDefaults

func NewCustomDomainsWithDefaults() *CustomDomains

NewCustomDomainsWithDefaults instantiates a new CustomDomains 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 (*CustomDomains) GetDomains

func (o *CustomDomains) GetDomains() []string

GetDomains returns the Domains field value if set, zero value otherwise.

func (*CustomDomains) GetDomainsOk

func (o *CustomDomains) GetDomainsOk() ([]string, bool)

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

func (*CustomDomains) HasDomains

func (o *CustomDomains) HasDomains() bool

HasDomains returns a boolean if a field has been set.

func (CustomDomains) MarshalJSON

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

func (*CustomDomains) SetDomains

func (o *CustomDomains) SetDomains(v []string)

SetDomains gets a reference to the given []string and assigns it to the Domains field.

func (CustomDomains) ToMap

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

type CustomDomainsAPIService

type CustomDomainsAPIService service

CustomDomainsAPIService CustomDomainsAPI service

func (*CustomDomainsAPIService) GetCustomDomains

GetCustomDomains Get custom domains

Returns current custom domains

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

func (*CustomDomainsAPIService) GetCustomDomainsExecute

Execute executes the request

@return CustomDomains

func (*CustomDomainsAPIService) SetCustomDomains

SetCustomDomains Set custom domains

Specify custom domains

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

func (*CustomDomainsAPIService) SetCustomDomainsExecute

Execute executes the request

@return CustomDomains

func (*CustomDomainsAPIService) VerifyCustomDomains

VerifyCustomDomains Verify a CNAME

Verify a CNAME

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

func (*CustomDomainsAPIService) VerifyCustomDomainsExecute

func (a *CustomDomainsAPIService) VerifyCustomDomainsExecute(r ApiVerifyCustomDomainsRequest) (*http.Response, error)

Execute executes the request

type Error

type Error struct {
	Code    *int64  `json:"code,omitempty"`
	Message *string `json:"message,omitempty"`
	Status  *string `json:"status,omitempty"`
}

Error struct for Error

func NewError

func NewError() *Error

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

func NewErrorWithDefaults

func NewErrorWithDefaults() *Error

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

func (*Error) GetCode

func (o *Error) GetCode() int64

GetCode returns the Code field value if set, zero value otherwise.

func (*Error) GetCodeOk

func (o *Error) GetCodeOk() (*int64, bool)

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

func (*Error) GetMessage

func (o *Error) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*Error) GetMessageOk

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

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

func (*Error) GetStatus

func (o *Error) GetStatus() string

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

func (*Error) GetStatusOk

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

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

func (*Error) HasCode

func (o *Error) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Error) HasMessage

func (o *Error) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*Error) HasStatus

func (o *Error) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (Error) MarshalJSON

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

func (*Error) SetCode

func (o *Error) SetCode(v int64)

SetCode gets a reference to the given int64 and assigns it to the Code field.

func (*Error) SetMessage

func (o *Error) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*Error) SetStatus

func (o *Error) SetStatus(v string)

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

func (Error) ToMap

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

type EsvCount

type EsvCount struct {
	Secrets   int64 `json:"secrets"`
	Variables int64 `json:"variables"`
}

EsvCount struct for EsvCount

func NewEsvCount

func NewEsvCount(secrets int64, variables int64) *EsvCount

NewEsvCount instantiates a new EsvCount 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 NewEsvCountWithDefaults

func NewEsvCountWithDefaults() *EsvCount

NewEsvCountWithDefaults instantiates a new EsvCount 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 (*EsvCount) GetSecrets

func (o *EsvCount) GetSecrets() int64

GetSecrets returns the Secrets field value

func (*EsvCount) GetSecretsOk

func (o *EsvCount) GetSecretsOk() (*int64, bool)

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

func (*EsvCount) GetVariables

func (o *EsvCount) GetVariables() int64

GetVariables returns the Variables field value

func (*EsvCount) GetVariablesOk

func (o *EsvCount) GetVariablesOk() (*int64, bool)

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

func (EsvCount) MarshalJSON

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

func (*EsvCount) SetSecrets

func (o *EsvCount) SetSecrets(v int64)

SetSecrets sets field value

func (*EsvCount) SetVariables

func (o *EsvCount) SetVariables(v int64)

SetVariables sets field value

func (EsvCount) ToMap

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

type EsvError

type EsvError struct {
	Code    int64  `json:"code"`
	Message string `json:"message"`
}

EsvError struct for EsvError

func NewEsvError

func NewEsvError(code int64, message string) *EsvError

NewEsvError instantiates a new EsvError 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 NewEsvErrorWithDefaults

func NewEsvErrorWithDefaults() *EsvError

NewEsvErrorWithDefaults instantiates a new EsvError 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 (*EsvError) GetCode

func (o *EsvError) GetCode() int64

GetCode returns the Code field value

func (*EsvError) GetCodeOk

func (o *EsvError) GetCodeOk() (*int64, bool)

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

func (*EsvError) GetMessage

func (o *EsvError) GetMessage() string

GetMessage returns the Message field value

func (*EsvError) GetMessageOk

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

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

func (EsvError) MarshalJSON

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

func (*EsvError) SetCode

func (o *EsvError) SetCode(v int64)

SetCode sets field value

func (*EsvError) SetMessage

func (o *EsvError) SetMessage(v string)

SetMessage sets field value

func (EsvError) ToMap

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

type EsvRestartStatus

type EsvRestartStatus struct {
	RestartStatus string `json:"restartStatus"`
}

EsvRestartStatus struct for EsvRestartStatus

func NewEsvRestartStatus

func NewEsvRestartStatus(restartStatus string) *EsvRestartStatus

NewEsvRestartStatus instantiates a new EsvRestartStatus 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 NewEsvRestartStatusWithDefaults

func NewEsvRestartStatusWithDefaults() *EsvRestartStatus

NewEsvRestartStatusWithDefaults instantiates a new EsvRestartStatus 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 (*EsvRestartStatus) GetRestartStatus

func (o *EsvRestartStatus) GetRestartStatus() string

GetRestartStatus returns the RestartStatus field value

func (*EsvRestartStatus) GetRestartStatusOk

func (o *EsvRestartStatus) GetRestartStatusOk() (*string, bool)

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

func (EsvRestartStatus) MarshalJSON

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

func (*EsvRestartStatus) SetRestartStatus

func (o *EsvRestartStatus) SetRestartStatus(v string)

SetRestartStatus sets field value

func (EsvRestartStatus) ToMap

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

type EsvSecretCreateRequest

type EsvSecretCreateRequest struct {
	Description       *string `json:"description,omitempty"`
	Encoding          string  `json:"encoding"`
	UseInPlaceholders bool    `json:"useInPlaceholders"`
	ValueBase64       string  `json:"valueBase64"`
}

EsvSecretCreateRequest struct for EsvSecretCreateRequest

func NewEsvSecretCreateRequest

func NewEsvSecretCreateRequest(encoding string, useInPlaceholders bool, valueBase64 string) *EsvSecretCreateRequest

NewEsvSecretCreateRequest instantiates a new EsvSecretCreateRequest 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 NewEsvSecretCreateRequestWithDefaults

func NewEsvSecretCreateRequestWithDefaults() *EsvSecretCreateRequest

NewEsvSecretCreateRequestWithDefaults instantiates a new EsvSecretCreateRequest 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 (*EsvSecretCreateRequest) GetDescription

func (o *EsvSecretCreateRequest) GetDescription() string

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

func (*EsvSecretCreateRequest) GetDescriptionOk

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

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

func (*EsvSecretCreateRequest) GetEncoding

func (o *EsvSecretCreateRequest) GetEncoding() string

GetEncoding returns the Encoding field value

func (*EsvSecretCreateRequest) GetEncodingOk

func (o *EsvSecretCreateRequest) GetEncodingOk() (*string, bool)

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

func (*EsvSecretCreateRequest) GetUseInPlaceholders

func (o *EsvSecretCreateRequest) GetUseInPlaceholders() bool

GetUseInPlaceholders returns the UseInPlaceholders field value

func (*EsvSecretCreateRequest) GetUseInPlaceholdersOk

func (o *EsvSecretCreateRequest) GetUseInPlaceholdersOk() (*bool, bool)

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

func (*EsvSecretCreateRequest) GetValueBase64

func (o *EsvSecretCreateRequest) GetValueBase64() string

GetValueBase64 returns the ValueBase64 field value

func (*EsvSecretCreateRequest) GetValueBase64Ok

func (o *EsvSecretCreateRequest) GetValueBase64Ok() (*string, bool)

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

func (*EsvSecretCreateRequest) HasDescription

func (o *EsvSecretCreateRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (EsvSecretCreateRequest) MarshalJSON

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

func (*EsvSecretCreateRequest) SetDescription

func (o *EsvSecretCreateRequest) SetDescription(v string)

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

func (*EsvSecretCreateRequest) SetEncoding

func (o *EsvSecretCreateRequest) SetEncoding(v string)

SetEncoding sets field value

func (*EsvSecretCreateRequest) SetUseInPlaceholders

func (o *EsvSecretCreateRequest) SetUseInPlaceholders(v bool)

SetUseInPlaceholders sets field value

func (*EsvSecretCreateRequest) SetValueBase64

func (o *EsvSecretCreateRequest) SetValueBase64(v string)

SetValueBase64 sets field value

func (EsvSecretCreateRequest) ToMap

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

type EsvSecretResponse

type EsvSecretResponse struct {
	Id                string    `json:"_id"`
	ActiveVersion     string    `json:"activeVersion"`
	Description       string    `json:"description"`
	Encoding          string    `json:"encoding"`
	LastChangeDate    time.Time `json:"lastChangeDate"`
	LastChangedBy     string    `json:"lastChangedBy"`
	Loaded            bool      `json:"loaded"`
	LoadedVersion     string    `json:"loadedVersion"`
	UseInPlaceholders bool      `json:"useInPlaceholders"`
}

EsvSecretResponse struct for EsvSecretResponse

func NewEsvSecretResponse

func NewEsvSecretResponse(id string, activeVersion string, description string, encoding string, lastChangeDate time.Time, lastChangedBy string, loaded bool, loadedVersion string, useInPlaceholders bool) *EsvSecretResponse

NewEsvSecretResponse instantiates a new EsvSecretResponse 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 NewEsvSecretResponseWithDefaults

func NewEsvSecretResponseWithDefaults() *EsvSecretResponse

NewEsvSecretResponseWithDefaults instantiates a new EsvSecretResponse 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 (*EsvSecretResponse) GetActiveVersion

func (o *EsvSecretResponse) GetActiveVersion() string

GetActiveVersion returns the ActiveVersion field value

func (*EsvSecretResponse) GetActiveVersionOk

func (o *EsvSecretResponse) GetActiveVersionOk() (*string, bool)

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

func (*EsvSecretResponse) GetDescription

func (o *EsvSecretResponse) GetDescription() string

GetDescription returns the Description field value

func (*EsvSecretResponse) GetDescriptionOk

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

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

func (*EsvSecretResponse) GetEncoding

func (o *EsvSecretResponse) GetEncoding() string

GetEncoding returns the Encoding field value

func (*EsvSecretResponse) GetEncodingOk

func (o *EsvSecretResponse) GetEncodingOk() (*string, bool)

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

func (*EsvSecretResponse) GetId

func (o *EsvSecretResponse) GetId() string

GetId returns the Id field value

func (*EsvSecretResponse) GetIdOk

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

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

func (*EsvSecretResponse) GetLastChangeDate

func (o *EsvSecretResponse) GetLastChangeDate() time.Time

GetLastChangeDate returns the LastChangeDate field value

func (*EsvSecretResponse) GetLastChangeDateOk

func (o *EsvSecretResponse) GetLastChangeDateOk() (*time.Time, bool)

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

func (*EsvSecretResponse) GetLastChangedBy

func (o *EsvSecretResponse) GetLastChangedBy() string

GetLastChangedBy returns the LastChangedBy field value

func (*EsvSecretResponse) GetLastChangedByOk

func (o *EsvSecretResponse) GetLastChangedByOk() (*string, bool)

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

func (*EsvSecretResponse) GetLoaded

func (o *EsvSecretResponse) GetLoaded() bool

GetLoaded returns the Loaded field value

func (*EsvSecretResponse) GetLoadedOk

func (o *EsvSecretResponse) GetLoadedOk() (*bool, bool)

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

func (*EsvSecretResponse) GetLoadedVersion

func (o *EsvSecretResponse) GetLoadedVersion() string

GetLoadedVersion returns the LoadedVersion field value

func (*EsvSecretResponse) GetLoadedVersionOk

func (o *EsvSecretResponse) GetLoadedVersionOk() (*string, bool)

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

func (*EsvSecretResponse) GetUseInPlaceholders

func (o *EsvSecretResponse) GetUseInPlaceholders() bool

GetUseInPlaceholders returns the UseInPlaceholders field value

func (*EsvSecretResponse) GetUseInPlaceholdersOk

func (o *EsvSecretResponse) GetUseInPlaceholdersOk() (*bool, bool)

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

func (EsvSecretResponse) MarshalJSON

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

func (*EsvSecretResponse) SetActiveVersion

func (o *EsvSecretResponse) SetActiveVersion(v string)

SetActiveVersion sets field value

func (*EsvSecretResponse) SetDescription

func (o *EsvSecretResponse) SetDescription(v string)

SetDescription sets field value

func (*EsvSecretResponse) SetEncoding

func (o *EsvSecretResponse) SetEncoding(v string)

SetEncoding sets field value

func (*EsvSecretResponse) SetId

func (o *EsvSecretResponse) SetId(v string)

SetId sets field value

func (*EsvSecretResponse) SetLastChangeDate

func (o *EsvSecretResponse) SetLastChangeDate(v time.Time)

SetLastChangeDate sets field value

func (*EsvSecretResponse) SetLastChangedBy

func (o *EsvSecretResponse) SetLastChangedBy(v string)

SetLastChangedBy sets field value

func (*EsvSecretResponse) SetLoaded

func (o *EsvSecretResponse) SetLoaded(v bool)

SetLoaded sets field value

func (*EsvSecretResponse) SetLoadedVersion

func (o *EsvSecretResponse) SetLoadedVersion(v string)

SetLoadedVersion sets field value

func (*EsvSecretResponse) SetUseInPlaceholders

func (o *EsvSecretResponse) SetUseInPlaceholders(v bool)

SetUseInPlaceholders sets field value

func (EsvSecretResponse) ToMap

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

type EsvSecretVersionCreateRequest

type EsvSecretVersionCreateRequest struct {
	ValueBase64 string `json:"valueBase64"`
}

EsvSecretVersionCreateRequest struct for EsvSecretVersionCreateRequest

func NewEsvSecretVersionCreateRequest

func NewEsvSecretVersionCreateRequest(valueBase64 string) *EsvSecretVersionCreateRequest

NewEsvSecretVersionCreateRequest instantiates a new EsvSecretVersionCreateRequest 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 NewEsvSecretVersionCreateRequestWithDefaults

func NewEsvSecretVersionCreateRequestWithDefaults() *EsvSecretVersionCreateRequest

NewEsvSecretVersionCreateRequestWithDefaults instantiates a new EsvSecretVersionCreateRequest 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 (*EsvSecretVersionCreateRequest) GetValueBase64

func (o *EsvSecretVersionCreateRequest) GetValueBase64() string

GetValueBase64 returns the ValueBase64 field value

func (*EsvSecretVersionCreateRequest) GetValueBase64Ok

func (o *EsvSecretVersionCreateRequest) GetValueBase64Ok() (*string, bool)

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

func (EsvSecretVersionCreateRequest) MarshalJSON

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

func (*EsvSecretVersionCreateRequest) SetValueBase64

func (o *EsvSecretVersionCreateRequest) SetValueBase64(v string)

SetValueBase64 sets field value

func (EsvSecretVersionCreateRequest) ToMap

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

type EsvSecretVersionResponse

type EsvSecretVersionResponse struct {
	CreateDate time.Time `json:"createDate"`
	Loaded     bool      `json:"loaded"`
	Status     string    `json:"status"`
	Version    string    `json:"version"`
}

EsvSecretVersionResponse struct for EsvSecretVersionResponse

func NewEsvSecretVersionResponse

func NewEsvSecretVersionResponse(createDate time.Time, loaded bool, status string, version string) *EsvSecretVersionResponse

NewEsvSecretVersionResponse instantiates a new EsvSecretVersionResponse 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 NewEsvSecretVersionResponseWithDefaults

func NewEsvSecretVersionResponseWithDefaults() *EsvSecretVersionResponse

NewEsvSecretVersionResponseWithDefaults instantiates a new EsvSecretVersionResponse 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 (*EsvSecretVersionResponse) GetCreateDate

func (o *EsvSecretVersionResponse) GetCreateDate() time.Time

GetCreateDate returns the CreateDate field value

func (*EsvSecretVersionResponse) GetCreateDateOk

func (o *EsvSecretVersionResponse) GetCreateDateOk() (*time.Time, bool)

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

func (*EsvSecretVersionResponse) GetLoaded

func (o *EsvSecretVersionResponse) GetLoaded() bool

GetLoaded returns the Loaded field value

func (*EsvSecretVersionResponse) GetLoadedOk

func (o *EsvSecretVersionResponse) GetLoadedOk() (*bool, bool)

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

func (*EsvSecretVersionResponse) GetStatus

func (o *EsvSecretVersionResponse) GetStatus() string

GetStatus returns the Status field value

func (*EsvSecretVersionResponse) GetStatusOk

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

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

func (*EsvSecretVersionResponse) GetVersion

func (o *EsvSecretVersionResponse) GetVersion() string

GetVersion returns the Version field value

func (*EsvSecretVersionResponse) GetVersionOk

func (o *EsvSecretVersionResponse) GetVersionOk() (*string, bool)

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

func (EsvSecretVersionResponse) MarshalJSON

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

func (*EsvSecretVersionResponse) SetCreateDate

func (o *EsvSecretVersionResponse) SetCreateDate(v time.Time)

SetCreateDate sets field value

func (*EsvSecretVersionResponse) SetLoaded

func (o *EsvSecretVersionResponse) SetLoaded(v bool)

SetLoaded sets field value

func (*EsvSecretVersionResponse) SetStatus

func (o *EsvSecretVersionResponse) SetStatus(v string)

SetStatus sets field value

func (*EsvSecretVersionResponse) SetVersion

func (o *EsvSecretVersionResponse) SetVersion(v string)

SetVersion sets field value

func (EsvSecretVersionResponse) ToMap

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

type EsvSecretVersionStatusRequest

type EsvSecretVersionStatusRequest struct {
	Status string `json:"status"`
}

EsvSecretVersionStatusRequest struct for EsvSecretVersionStatusRequest

func NewEsvSecretVersionStatusRequest

func NewEsvSecretVersionStatusRequest(status string) *EsvSecretVersionStatusRequest

NewEsvSecretVersionStatusRequest instantiates a new EsvSecretVersionStatusRequest 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 NewEsvSecretVersionStatusRequestWithDefaults

func NewEsvSecretVersionStatusRequestWithDefaults() *EsvSecretVersionStatusRequest

NewEsvSecretVersionStatusRequestWithDefaults instantiates a new EsvSecretVersionStatusRequest 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 (*EsvSecretVersionStatusRequest) GetStatus

func (o *EsvSecretVersionStatusRequest) GetStatus() string

GetStatus returns the Status field value

func (*EsvSecretVersionStatusRequest) GetStatusOk

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

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

func (EsvSecretVersionStatusRequest) MarshalJSON

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

func (*EsvSecretVersionStatusRequest) SetStatus

func (o *EsvSecretVersionStatusRequest) SetStatus(v string)

SetStatus sets field value

func (EsvSecretVersionStatusRequest) ToMap

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

type EsvSecretsListResponse

type EsvSecretsListResponse struct {
	PagedResultsCookie      NullableString      `json:"pagedResultsCookie"`
	RemainingPagedResults   int64               `json:"remainingPagedResults"`
	Result                  []EsvSecretResponse `json:"result"`
	ResultCount             int64               `json:"resultCount"`
	TotalPagedResults       int64               `json:"totalPagedResults"`
	TotalPagedResultsPolicy string              `json:"totalPagedResultsPolicy"`
}

EsvSecretsListResponse struct for EsvSecretsListResponse

func NewEsvSecretsListResponse

func NewEsvSecretsListResponse(pagedResultsCookie NullableString, remainingPagedResults int64, result []EsvSecretResponse, resultCount int64, totalPagedResults int64, totalPagedResultsPolicy string) *EsvSecretsListResponse

NewEsvSecretsListResponse instantiates a new EsvSecretsListResponse 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 NewEsvSecretsListResponseWithDefaults

func NewEsvSecretsListResponseWithDefaults() *EsvSecretsListResponse

NewEsvSecretsListResponseWithDefaults instantiates a new EsvSecretsListResponse 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 (*EsvSecretsListResponse) GetPagedResultsCookie

func (o *EsvSecretsListResponse) GetPagedResultsCookie() string

GetPagedResultsCookie returns the PagedResultsCookie field value If the value is explicit nil, the zero value for string will be returned

func (*EsvSecretsListResponse) GetPagedResultsCookieOk

func (o *EsvSecretsListResponse) GetPagedResultsCookieOk() (*string, bool)

GetPagedResultsCookieOk returns a tuple with the PagedResultsCookie field value 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 (*EsvSecretsListResponse) GetRemainingPagedResults

func (o *EsvSecretsListResponse) GetRemainingPagedResults() int64

GetRemainingPagedResults returns the RemainingPagedResults field value

func (*EsvSecretsListResponse) GetRemainingPagedResultsOk

func (o *EsvSecretsListResponse) GetRemainingPagedResultsOk() (*int64, bool)

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

func (*EsvSecretsListResponse) GetResult

func (o *EsvSecretsListResponse) GetResult() []EsvSecretResponse

GetResult returns the Result field value

func (*EsvSecretsListResponse) GetResultCount

func (o *EsvSecretsListResponse) GetResultCount() int64

GetResultCount returns the ResultCount field value

func (*EsvSecretsListResponse) GetResultCountOk

func (o *EsvSecretsListResponse) GetResultCountOk() (*int64, bool)

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

func (*EsvSecretsListResponse) GetResultOk

func (o *EsvSecretsListResponse) GetResultOk() ([]EsvSecretResponse, bool)

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

func (*EsvSecretsListResponse) GetTotalPagedResults

func (o *EsvSecretsListResponse) GetTotalPagedResults() int64

GetTotalPagedResults returns the TotalPagedResults field value

func (*EsvSecretsListResponse) GetTotalPagedResultsOk

func (o *EsvSecretsListResponse) GetTotalPagedResultsOk() (*int64, bool)

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

func (*EsvSecretsListResponse) GetTotalPagedResultsPolicy

func (o *EsvSecretsListResponse) GetTotalPagedResultsPolicy() string

GetTotalPagedResultsPolicy returns the TotalPagedResultsPolicy field value

func (*EsvSecretsListResponse) GetTotalPagedResultsPolicyOk

func (o *EsvSecretsListResponse) GetTotalPagedResultsPolicyOk() (*string, bool)

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

func (EsvSecretsListResponse) MarshalJSON

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

func (*EsvSecretsListResponse) SetPagedResultsCookie

func (o *EsvSecretsListResponse) SetPagedResultsCookie(v string)

SetPagedResultsCookie sets field value

func (*EsvSecretsListResponse) SetRemainingPagedResults

func (o *EsvSecretsListResponse) SetRemainingPagedResults(v int64)

SetRemainingPagedResults sets field value

func (*EsvSecretsListResponse) SetResult

func (o *EsvSecretsListResponse) SetResult(v []EsvSecretResponse)

SetResult sets field value

func (*EsvSecretsListResponse) SetResultCount

func (o *EsvSecretsListResponse) SetResultCount(v int64)

SetResultCount sets field value

func (*EsvSecretsListResponse) SetTotalPagedResults

func (o *EsvSecretsListResponse) SetTotalPagedResults(v int64)

SetTotalPagedResults sets field value

func (*EsvSecretsListResponse) SetTotalPagedResultsPolicy

func (o *EsvSecretsListResponse) SetTotalPagedResultsPolicy(v string)

SetTotalPagedResultsPolicy sets field value

func (EsvSecretsListResponse) ToMap

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

type EsvSetDescriptionRequest

type EsvSetDescriptionRequest struct {
	Description string `json:"description"`
}

EsvSetDescriptionRequest struct for EsvSetDescriptionRequest

func NewEsvSetDescriptionRequest

func NewEsvSetDescriptionRequest(description string) *EsvSetDescriptionRequest

NewEsvSetDescriptionRequest instantiates a new EsvSetDescriptionRequest 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 NewEsvSetDescriptionRequestWithDefaults

func NewEsvSetDescriptionRequestWithDefaults() *EsvSetDescriptionRequest

NewEsvSetDescriptionRequestWithDefaults instantiates a new EsvSetDescriptionRequest 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 (*EsvSetDescriptionRequest) GetDescription

func (o *EsvSetDescriptionRequest) GetDescription() string

GetDescription returns the Description field value

func (*EsvSetDescriptionRequest) GetDescriptionOk

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

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

func (EsvSetDescriptionRequest) MarshalJSON

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

func (*EsvSetDescriptionRequest) SetDescription

func (o *EsvSetDescriptionRequest) SetDescription(v string)

SetDescription sets field value

func (EsvSetDescriptionRequest) ToMap

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

type EsvVariableCreateUpdateRequest

type EsvVariableCreateUpdateRequest struct {
	Description    *string `json:"description,omitempty"`
	ExpressionType *string `json:"expressionType,omitempty"`
	ValueBase64    string  `json:"valueBase64"`
}

EsvVariableCreateUpdateRequest struct for EsvVariableCreateUpdateRequest

func NewEsvVariableCreateUpdateRequest

func NewEsvVariableCreateUpdateRequest(valueBase64 string) *EsvVariableCreateUpdateRequest

NewEsvVariableCreateUpdateRequest instantiates a new EsvVariableCreateUpdateRequest 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 NewEsvVariableCreateUpdateRequestWithDefaults

func NewEsvVariableCreateUpdateRequestWithDefaults() *EsvVariableCreateUpdateRequest

NewEsvVariableCreateUpdateRequestWithDefaults instantiates a new EsvVariableCreateUpdateRequest 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 (*EsvVariableCreateUpdateRequest) GetDescription

func (o *EsvVariableCreateUpdateRequest) GetDescription() string

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

func (*EsvVariableCreateUpdateRequest) GetDescriptionOk

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

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

func (*EsvVariableCreateUpdateRequest) GetExpressionType

func (o *EsvVariableCreateUpdateRequest) GetExpressionType() string

GetExpressionType returns the ExpressionType field value if set, zero value otherwise.

func (*EsvVariableCreateUpdateRequest) GetExpressionTypeOk

func (o *EsvVariableCreateUpdateRequest) GetExpressionTypeOk() (*string, bool)

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

func (*EsvVariableCreateUpdateRequest) GetValueBase64

func (o *EsvVariableCreateUpdateRequest) GetValueBase64() string

GetValueBase64 returns the ValueBase64 field value

func (*EsvVariableCreateUpdateRequest) GetValueBase64Ok

func (o *EsvVariableCreateUpdateRequest) GetValueBase64Ok() (*string, bool)

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

func (*EsvVariableCreateUpdateRequest) HasDescription

func (o *EsvVariableCreateUpdateRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EsvVariableCreateUpdateRequest) HasExpressionType

func (o *EsvVariableCreateUpdateRequest) HasExpressionType() bool

HasExpressionType returns a boolean if a field has been set.

func (EsvVariableCreateUpdateRequest) MarshalJSON

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

func (*EsvVariableCreateUpdateRequest) SetDescription

func (o *EsvVariableCreateUpdateRequest) SetDescription(v string)

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

func (*EsvVariableCreateUpdateRequest) SetExpressionType

func (o *EsvVariableCreateUpdateRequest) SetExpressionType(v string)

SetExpressionType gets a reference to the given string and assigns it to the ExpressionType field.

func (*EsvVariableCreateUpdateRequest) SetValueBase64

func (o *EsvVariableCreateUpdateRequest) SetValueBase64(v string)

SetValueBase64 sets field value

func (EsvVariableCreateUpdateRequest) ToMap

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

type EsvVariableListV1

type EsvVariableListV1 struct {
	PagedResultsCookie      NullableString        `json:"pagedResultsCookie"`
	RemainingPagedResults   int64                 `json:"remainingPagedResults"`
	Result                  []EsvVariableResponse `json:"result"`
	ResultCount             int64                 `json:"resultCount"`
	TotalPagedResults       int64                 `json:"totalPagedResults"`
	TotalPagedResultsPolicy string                `json:"totalPagedResultsPolicy"`
}

EsvVariableListV1 Variable list response when requested with empty Accept-API-Version or Accept-API-Version: resource=1.0

func NewEsvVariableListV1

func NewEsvVariableListV1(pagedResultsCookie NullableString, remainingPagedResults int64, result []EsvVariableResponse, resultCount int64, totalPagedResults int64, totalPagedResultsPolicy string) *EsvVariableListV1

NewEsvVariableListV1 instantiates a new EsvVariableListV1 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 NewEsvVariableListV1WithDefaults

func NewEsvVariableListV1WithDefaults() *EsvVariableListV1

NewEsvVariableListV1WithDefaults instantiates a new EsvVariableListV1 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 (*EsvVariableListV1) GetPagedResultsCookie

func (o *EsvVariableListV1) GetPagedResultsCookie() string

GetPagedResultsCookie returns the PagedResultsCookie field value If the value is explicit nil, the zero value for string will be returned

func (*EsvVariableListV1) GetPagedResultsCookieOk

func (o *EsvVariableListV1) GetPagedResultsCookieOk() (*string, bool)

GetPagedResultsCookieOk returns a tuple with the PagedResultsCookie field value 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 (*EsvVariableListV1) GetRemainingPagedResults

func (o *EsvVariableListV1) GetRemainingPagedResults() int64

GetRemainingPagedResults returns the RemainingPagedResults field value

func (*EsvVariableListV1) GetRemainingPagedResultsOk

func (o *EsvVariableListV1) GetRemainingPagedResultsOk() (*int64, bool)

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

func (*EsvVariableListV1) GetResult

func (o *EsvVariableListV1) GetResult() []EsvVariableResponse

GetResult returns the Result field value

func (*EsvVariableListV1) GetResultCount

func (o *EsvVariableListV1) GetResultCount() int64

GetResultCount returns the ResultCount field value

func (*EsvVariableListV1) GetResultCountOk

func (o *EsvVariableListV1) GetResultCountOk() (*int64, bool)

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

func (*EsvVariableListV1) GetResultOk

func (o *EsvVariableListV1) GetResultOk() ([]EsvVariableResponse, bool)

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

func (*EsvVariableListV1) GetTotalPagedResults

func (o *EsvVariableListV1) GetTotalPagedResults() int64

GetTotalPagedResults returns the TotalPagedResults field value

func (*EsvVariableListV1) GetTotalPagedResultsOk

func (o *EsvVariableListV1) GetTotalPagedResultsOk() (*int64, bool)

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

func (*EsvVariableListV1) GetTotalPagedResultsPolicy

func (o *EsvVariableListV1) GetTotalPagedResultsPolicy() string

GetTotalPagedResultsPolicy returns the TotalPagedResultsPolicy field value

func (*EsvVariableListV1) GetTotalPagedResultsPolicyOk

func (o *EsvVariableListV1) GetTotalPagedResultsPolicyOk() (*string, bool)

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

func (EsvVariableListV1) MarshalJSON

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

func (*EsvVariableListV1) SetPagedResultsCookie

func (o *EsvVariableListV1) SetPagedResultsCookie(v string)

SetPagedResultsCookie sets field value

func (*EsvVariableListV1) SetRemainingPagedResults

func (o *EsvVariableListV1) SetRemainingPagedResults(v int64)

SetRemainingPagedResults sets field value

func (*EsvVariableListV1) SetResult

func (o *EsvVariableListV1) SetResult(v []EsvVariableResponse)

SetResult sets field value

func (*EsvVariableListV1) SetResultCount

func (o *EsvVariableListV1) SetResultCount(v int64)

SetResultCount sets field value

func (*EsvVariableListV1) SetTotalPagedResults

func (o *EsvVariableListV1) SetTotalPagedResults(v int64)

SetTotalPagedResults sets field value

func (*EsvVariableListV1) SetTotalPagedResultsPolicy

func (o *EsvVariableListV1) SetTotalPagedResultsPolicy(v string)

SetTotalPagedResultsPolicy sets field value

func (EsvVariableListV1) ToMap

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

type EsvVariableListV2

type EsvVariableListV2 struct {
	PagedResultsCookie      NullableString          `json:"pagedResultsCookie"`
	RemainingPagedResults   int64                   `json:"remainingPagedResults"`
	Result                  []EsvVariableResponseV2 `json:"result"`
	ResultCount             int64                   `json:"resultCount"`
	TotalPagedResults       int64                   `json:"totalPagedResults"`
	TotalPagedResultsPolicy string                  `json:"totalPagedResultsPolicy"`
}

EsvVariableListV2 Variable list response when requested with Accept-API-Version: resource=2.0

func NewEsvVariableListV2

func NewEsvVariableListV2(pagedResultsCookie NullableString, remainingPagedResults int64, result []EsvVariableResponseV2, resultCount int64, totalPagedResults int64, totalPagedResultsPolicy string) *EsvVariableListV2

NewEsvVariableListV2 instantiates a new EsvVariableListV2 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 NewEsvVariableListV2WithDefaults

func NewEsvVariableListV2WithDefaults() *EsvVariableListV2

NewEsvVariableListV2WithDefaults instantiates a new EsvVariableListV2 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 (*EsvVariableListV2) GetPagedResultsCookie

func (o *EsvVariableListV2) GetPagedResultsCookie() string

GetPagedResultsCookie returns the PagedResultsCookie field value If the value is explicit nil, the zero value for string will be returned

func (*EsvVariableListV2) GetPagedResultsCookieOk

func (o *EsvVariableListV2) GetPagedResultsCookieOk() (*string, bool)

GetPagedResultsCookieOk returns a tuple with the PagedResultsCookie field value 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 (*EsvVariableListV2) GetRemainingPagedResults

func (o *EsvVariableListV2) GetRemainingPagedResults() int64

GetRemainingPagedResults returns the RemainingPagedResults field value

func (*EsvVariableListV2) GetRemainingPagedResultsOk

func (o *EsvVariableListV2) GetRemainingPagedResultsOk() (*int64, bool)

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

func (*EsvVariableListV2) GetResult

func (o *EsvVariableListV2) GetResult() []EsvVariableResponseV2

GetResult returns the Result field value

func (*EsvVariableListV2) GetResultCount

func (o *EsvVariableListV2) GetResultCount() int64

GetResultCount returns the ResultCount field value

func (*EsvVariableListV2) GetResultCountOk

func (o *EsvVariableListV2) GetResultCountOk() (*int64, bool)

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

func (*EsvVariableListV2) GetResultOk

func (o *EsvVariableListV2) GetResultOk() ([]EsvVariableResponseV2, bool)

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

func (*EsvVariableListV2) GetTotalPagedResults

func (o *EsvVariableListV2) GetTotalPagedResults() int64

GetTotalPagedResults returns the TotalPagedResults field value

func (*EsvVariableListV2) GetTotalPagedResultsOk

func (o *EsvVariableListV2) GetTotalPagedResultsOk() (*int64, bool)

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

func (*EsvVariableListV2) GetTotalPagedResultsPolicy

func (o *EsvVariableListV2) GetTotalPagedResultsPolicy() string

GetTotalPagedResultsPolicy returns the TotalPagedResultsPolicy field value

func (*EsvVariableListV2) GetTotalPagedResultsPolicyOk

func (o *EsvVariableListV2) GetTotalPagedResultsPolicyOk() (*string, bool)

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

func (EsvVariableListV2) MarshalJSON

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

func (*EsvVariableListV2) SetPagedResultsCookie

func (o *EsvVariableListV2) SetPagedResultsCookie(v string)

SetPagedResultsCookie sets field value

func (*EsvVariableListV2) SetRemainingPagedResults

func (o *EsvVariableListV2) SetRemainingPagedResults(v int64)

SetRemainingPagedResults sets field value

func (*EsvVariableListV2) SetResult

func (o *EsvVariableListV2) SetResult(v []EsvVariableResponseV2)

SetResult sets field value

func (*EsvVariableListV2) SetResultCount

func (o *EsvVariableListV2) SetResultCount(v int64)

SetResultCount sets field value

func (*EsvVariableListV2) SetTotalPagedResults

func (o *EsvVariableListV2) SetTotalPagedResults(v int64)

SetTotalPagedResults sets field value

func (*EsvVariableListV2) SetTotalPagedResultsPolicy

func (o *EsvVariableListV2) SetTotalPagedResultsPolicy(v string)

SetTotalPagedResultsPolicy sets field value

func (EsvVariableListV2) ToMap

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

type EsvVariableResponse

type EsvVariableResponse struct {
	Id             string    `json:"_id"`
	Description    string    `json:"description"`
	ExpressionType string    `json:"expressionType"`
	LastChangeDate time.Time `json:"lastChangeDate"`
	LastChangedBy  string    `json:"lastChangedBy"`
	Loaded         bool      `json:"loaded"`
	ValueBase64    string    `json:"valueBase64"`
}

EsvVariableResponse struct for EsvVariableResponse

func NewEsvVariableResponse

func NewEsvVariableResponse(id string, description string, expressionType string, lastChangeDate time.Time, lastChangedBy string, loaded bool, valueBase64 string) *EsvVariableResponse

NewEsvVariableResponse instantiates a new EsvVariableResponse 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 NewEsvVariableResponseWithDefaults

func NewEsvVariableResponseWithDefaults() *EsvVariableResponse

NewEsvVariableResponseWithDefaults instantiates a new EsvVariableResponse 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 (*EsvVariableResponse) GetDescription

func (o *EsvVariableResponse) GetDescription() string

GetDescription returns the Description field value

func (*EsvVariableResponse) GetDescriptionOk

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

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

func (*EsvVariableResponse) GetExpressionType

func (o *EsvVariableResponse) GetExpressionType() string

GetExpressionType returns the ExpressionType field value

func (*EsvVariableResponse) GetExpressionTypeOk

func (o *EsvVariableResponse) GetExpressionTypeOk() (*string, bool)

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

func (*EsvVariableResponse) GetId

func (o *EsvVariableResponse) GetId() string

GetId returns the Id field value

func (*EsvVariableResponse) GetIdOk

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

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

func (*EsvVariableResponse) GetLastChangeDate

func (o *EsvVariableResponse) GetLastChangeDate() time.Time

GetLastChangeDate returns the LastChangeDate field value

func (*EsvVariableResponse) GetLastChangeDateOk

func (o *EsvVariableResponse) GetLastChangeDateOk() (*time.Time, bool)

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

func (*EsvVariableResponse) GetLastChangedBy

func (o *EsvVariableResponse) GetLastChangedBy() string

GetLastChangedBy returns the LastChangedBy field value

func (*EsvVariableResponse) GetLastChangedByOk

func (o *EsvVariableResponse) GetLastChangedByOk() (*string, bool)

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

func (*EsvVariableResponse) GetLoaded

func (o *EsvVariableResponse) GetLoaded() bool

GetLoaded returns the Loaded field value

func (*EsvVariableResponse) GetLoadedOk

func (o *EsvVariableResponse) GetLoadedOk() (*bool, bool)

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

func (*EsvVariableResponse) GetValueBase64

func (o *EsvVariableResponse) GetValueBase64() string

GetValueBase64 returns the ValueBase64 field value

func (*EsvVariableResponse) GetValueBase64Ok

func (o *EsvVariableResponse) GetValueBase64Ok() (*string, bool)

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

func (EsvVariableResponse) MarshalJSON

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

func (*EsvVariableResponse) SetDescription

func (o *EsvVariableResponse) SetDescription(v string)

SetDescription sets field value

func (*EsvVariableResponse) SetExpressionType

func (o *EsvVariableResponse) SetExpressionType(v string)

SetExpressionType sets field value

func (*EsvVariableResponse) SetId

func (o *EsvVariableResponse) SetId(v string)

SetId sets field value

func (*EsvVariableResponse) SetLastChangeDate

func (o *EsvVariableResponse) SetLastChangeDate(v time.Time)

SetLastChangeDate sets field value

func (*EsvVariableResponse) SetLastChangedBy

func (o *EsvVariableResponse) SetLastChangedBy(v string)

SetLastChangedBy sets field value

func (*EsvVariableResponse) SetLoaded

func (o *EsvVariableResponse) SetLoaded(v bool)

SetLoaded sets field value

func (*EsvVariableResponse) SetValueBase64

func (o *EsvVariableResponse) SetValueBase64(v string)

SetValueBase64 sets field value

func (EsvVariableResponse) ToMap

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

type EsvVariableResponseV2

type EsvVariableResponseV2 struct {
	Id             string    `json:"_id"`
	Description    string    `json:"description"`
	ExpressionType string    `json:"expressionType"`
	LastChangeDate time.Time `json:"lastChangeDate"`
	LastChangedBy  string    `json:"lastChangedBy"`
	Loaded         bool      `json:"loaded"`
}

EsvVariableResponseV2 struct for EsvVariableResponseV2

func NewEsvVariableResponseV2

func NewEsvVariableResponseV2(id string, description string, expressionType string, lastChangeDate time.Time, lastChangedBy string, loaded bool) *EsvVariableResponseV2

NewEsvVariableResponseV2 instantiates a new EsvVariableResponseV2 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 NewEsvVariableResponseV2WithDefaults

func NewEsvVariableResponseV2WithDefaults() *EsvVariableResponseV2

NewEsvVariableResponseV2WithDefaults instantiates a new EsvVariableResponseV2 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 (*EsvVariableResponseV2) GetDescription

func (o *EsvVariableResponseV2) GetDescription() string

GetDescription returns the Description field value

func (*EsvVariableResponseV2) GetDescriptionOk

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

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

func (*EsvVariableResponseV2) GetExpressionType

func (o *EsvVariableResponseV2) GetExpressionType() string

GetExpressionType returns the ExpressionType field value

func (*EsvVariableResponseV2) GetExpressionTypeOk

func (o *EsvVariableResponseV2) GetExpressionTypeOk() (*string, bool)

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

func (*EsvVariableResponseV2) GetId

func (o *EsvVariableResponseV2) GetId() string

GetId returns the Id field value

func (*EsvVariableResponseV2) GetIdOk

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

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

func (*EsvVariableResponseV2) GetLastChangeDate

func (o *EsvVariableResponseV2) GetLastChangeDate() time.Time

GetLastChangeDate returns the LastChangeDate field value

func (*EsvVariableResponseV2) GetLastChangeDateOk

func (o *EsvVariableResponseV2) GetLastChangeDateOk() (*time.Time, bool)

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

func (*EsvVariableResponseV2) GetLastChangedBy

func (o *EsvVariableResponseV2) GetLastChangedBy() string

GetLastChangedBy returns the LastChangedBy field value

func (*EsvVariableResponseV2) GetLastChangedByOk

func (o *EsvVariableResponseV2) GetLastChangedByOk() (*string, bool)

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

func (*EsvVariableResponseV2) GetLoaded

func (o *EsvVariableResponseV2) GetLoaded() bool

GetLoaded returns the Loaded field value

func (*EsvVariableResponseV2) GetLoadedOk

func (o *EsvVariableResponseV2) GetLoadedOk() (*bool, bool)

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

func (EsvVariableResponseV2) MarshalJSON

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

func (*EsvVariableResponseV2) SetDescription

func (o *EsvVariableResponseV2) SetDescription(v string)

SetDescription sets field value

func (*EsvVariableResponseV2) SetExpressionType

func (o *EsvVariableResponseV2) SetExpressionType(v string)

SetExpressionType sets field value

func (*EsvVariableResponseV2) SetId

func (o *EsvVariableResponseV2) SetId(v string)

SetId sets field value

func (*EsvVariableResponseV2) SetLastChangeDate

func (o *EsvVariableResponseV2) SetLastChangeDate(v time.Time)

SetLastChangeDate sets field value

func (*EsvVariableResponseV2) SetLastChangedBy

func (o *EsvVariableResponseV2) SetLastChangedBy(v string)

SetLastChangedBy sets field value

func (*EsvVariableResponseV2) SetLoaded

func (o *EsvVariableResponseV2) SetLoaded(v bool)

SetLoaded sets field value

func (EsvVariableResponseV2) ToMap

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

type FederationEnforcement

type FederationEnforcement struct {
	Groups string `json:"groups"`
}

FederationEnforcement struct for FederationEnforcement

func NewFederationEnforcement

func NewFederationEnforcement(groups string) *FederationEnforcement

NewFederationEnforcement instantiates a new FederationEnforcement 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 NewFederationEnforcementWithDefaults

func NewFederationEnforcementWithDefaults() *FederationEnforcement

NewFederationEnforcementWithDefaults instantiates a new FederationEnforcement 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 (*FederationEnforcement) GetGroups

func (o *FederationEnforcement) GetGroups() string

GetGroups returns the Groups field value

func (*FederationEnforcement) GetGroupsOk

func (o *FederationEnforcement) GetGroupsOk() (*string, bool)

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

func (FederationEnforcement) MarshalJSON

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

func (*FederationEnforcement) SetGroups

func (o *FederationEnforcement) SetGroups(v string)

SetGroups sets field value

func (FederationEnforcement) ToMap

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

type FederationEnforcementAPIService

type FederationEnforcementAPIService service

FederationEnforcementAPIService FederationEnforcementAPI service

func (*FederationEnforcementAPIService) GetEnforcement

GetEnforcement Get enforcement of federation

Returns current federation enforcement settings

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

func (*FederationEnforcementAPIService) GetEnforcementExecute

Execute executes the request

@return FederationEnforcement

func (*FederationEnforcementAPIService) SetEnforcement

SetEnforcement Set enforcement of federation

Specify which admin groups are required to use federation

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

func (*FederationEnforcementAPIService) SetEnforcementExecute

Execute executes the request

@return FederationEnforcement

type Forbidden

type Forbidden struct {
	Code    *int64  `json:"code,omitempty"`
	Message *string `json:"message,omitempty"`
}

Forbidden struct for Forbidden

func NewForbidden

func NewForbidden() *Forbidden

NewForbidden instantiates a new Forbidden 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 NewForbiddenWithDefaults

func NewForbiddenWithDefaults() *Forbidden

NewForbiddenWithDefaults instantiates a new Forbidden 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 (*Forbidden) GetCode

func (o *Forbidden) GetCode() int64

GetCode returns the Code field value if set, zero value otherwise.

func (*Forbidden) GetCodeOk

func (o *Forbidden) GetCodeOk() (*int64, bool)

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

func (*Forbidden) GetMessage

func (o *Forbidden) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*Forbidden) GetMessageOk

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

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

func (*Forbidden) HasCode

func (o *Forbidden) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Forbidden) HasMessage

func (o *Forbidden) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (Forbidden) MarshalJSON

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

func (*Forbidden) SetCode

func (o *Forbidden) SetCode(v int64)

SetCode gets a reference to the given int64 and assigns it to the Code field.

func (*Forbidden) SetMessage

func (o *Forbidden) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (Forbidden) ToMap

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

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 GetAllVariables200Response

type GetAllVariables200Response struct {
	EsvVariableListV1 *EsvVariableListV1
	EsvVariableListV2 *EsvVariableListV2
}

GetAllVariables200Response - struct for GetAllVariables200Response

func EsvVariableListV1AsGetAllVariables200Response

func EsvVariableListV1AsGetAllVariables200Response(v *EsvVariableListV1) GetAllVariables200Response

EsvVariableListV1AsGetAllVariables200Response is a convenience function that returns EsvVariableListV1 wrapped in GetAllVariables200Response

func EsvVariableListV2AsGetAllVariables200Response

func EsvVariableListV2AsGetAllVariables200Response(v *EsvVariableListV2) GetAllVariables200Response

EsvVariableListV2AsGetAllVariables200Response is a convenience function that returns EsvVariableListV2 wrapped in GetAllVariables200Response

func (*GetAllVariables200Response) GetActualInstance

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

Get the actual instance

func (GetAllVariables200Response) MarshalJSON

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

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

func (*GetAllVariables200Response) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type InternalServerError

type InternalServerError struct {
	Code    *int64  `json:"code,omitempty"`
	Message *string `json:"message,omitempty"`
	Status  *string `json:"status,omitempty"`
}

InternalServerError struct for InternalServerError

func NewInternalServerError

func NewInternalServerError() *InternalServerError

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

func NewInternalServerErrorWithDefaults

func NewInternalServerErrorWithDefaults() *InternalServerError

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

func (*InternalServerError) GetCode

func (o *InternalServerError) GetCode() int64

GetCode returns the Code field value if set, zero value otherwise.

func (*InternalServerError) GetCodeOk

func (o *InternalServerError) GetCodeOk() (*int64, bool)

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

func (*InternalServerError) GetMessage

func (o *InternalServerError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*InternalServerError) GetMessageOk

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

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

func (*InternalServerError) GetStatus

func (o *InternalServerError) GetStatus() string

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

func (*InternalServerError) GetStatusOk

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

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

func (*InternalServerError) HasCode

func (o *InternalServerError) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*InternalServerError) HasMessage

func (o *InternalServerError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*InternalServerError) HasStatus

func (o *InternalServerError) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (InternalServerError) MarshalJSON

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

func (*InternalServerError) SetCode

func (o *InternalServerError) SetCode(v int64)

SetCode gets a reference to the given int64 and assigns it to the Code field.

func (*InternalServerError) SetMessage

func (o *InternalServerError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*InternalServerError) SetStatus

func (o *InternalServerError) SetStatus(v string)

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

func (InternalServerError) ToMap

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

type MappedNullable

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

type ModelDefault

type ModelDefault struct {
	Message *string `json:"message,omitempty"`
}

ModelDefault struct for ModelDefault

func NewModelDefault

func NewModelDefault() *ModelDefault

NewModelDefault instantiates a new ModelDefault 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 NewModelDefaultWithDefaults

func NewModelDefaultWithDefaults() *ModelDefault

NewModelDefaultWithDefaults instantiates a new ModelDefault 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 (*ModelDefault) GetMessage

func (o *ModelDefault) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ModelDefault) GetMessageOk

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

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

func (*ModelDefault) HasMessage

func (o *ModelDefault) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (ModelDefault) MarshalJSON

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

func (*ModelDefault) SetMessage

func (o *ModelDefault) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (ModelDefault) ToMap

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

type NotFound

type NotFound struct {
	Code    *int64  `json:"code,omitempty"`
	Message *string `json:"message,omitempty"`
}

NotFound struct for NotFound

func NewNotFound

func NewNotFound() *NotFound

NewNotFound instantiates a new NotFound 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 NewNotFoundWithDefaults

func NewNotFoundWithDefaults() *NotFound

NewNotFoundWithDefaults instantiates a new NotFound 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 (*NotFound) GetCode

func (o *NotFound) GetCode() int64

GetCode returns the Code field value if set, zero value otherwise.

func (*NotFound) GetCodeOk

func (o *NotFound) GetCodeOk() (*int64, bool)

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

func (*NotFound) GetMessage

func (o *NotFound) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*NotFound) GetMessageOk

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

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

func (*NotFound) HasCode

func (o *NotFound) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*NotFound) HasMessage

func (o *NotFound) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (NotFound) MarshalJSON

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

func (*NotFound) SetCode

func (o *NotFound) SetCode(v int64)

SetCode gets a reference to the given int64 and assigns it to the Code field.

func (*NotFound) SetMessage

func (o *NotFound) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (NotFound) ToMap

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

type NullableBadRequest

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

func NewNullableBadRequest

func NewNullableBadRequest(val *BadRequest) *NullableBadRequest

func (NullableBadRequest) Get

func (v NullableBadRequest) Get() *BadRequest

func (NullableBadRequest) IsSet

func (v NullableBadRequest) IsSet() bool

func (NullableBadRequest) MarshalJSON

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

func (*NullableBadRequest) Set

func (v *NullableBadRequest) Set(val *BadRequest)

func (*NullableBadRequest) UnmarshalJSON

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

func (*NullableBadRequest) Unset

func (v *NullableBadRequest) Unset()

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

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

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCName

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

func NewNullableCName

func NewNullableCName(val *CName) *NullableCName

func (NullableCName) Get

func (v NullableCName) Get() *CName

func (NullableCName) IsSet

func (v NullableCName) IsSet() bool

func (NullableCName) MarshalJSON

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

func (*NullableCName) Set

func (v *NullableCName) Set(val *CName)

func (*NullableCName) UnmarshalJSON

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

func (*NullableCName) Unset

func (v *NullableCName) Unset()

type NullableCertificate

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

func NewNullableCertificate

func NewNullableCertificate(val *Certificate) *NullableCertificate

func (NullableCertificate) Get

func (NullableCertificate) IsSet

func (v NullableCertificate) IsSet() bool

func (NullableCertificate) MarshalJSON

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

func (*NullableCertificate) Set

func (v *NullableCertificate) Set(val *Certificate)

func (*NullableCertificate) UnmarshalJSON

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

func (*NullableCertificate) Unset

func (v *NullableCertificate) Unset()

type NullableCertificateSigningRequest

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

func (NullableCertificateSigningRequest) Get

func (NullableCertificateSigningRequest) IsSet

func (NullableCertificateSigningRequest) MarshalJSON

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

func (*NullableCertificateSigningRequest) Set

func (*NullableCertificateSigningRequest) UnmarshalJSON

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

func (*NullableCertificateSigningRequest) Unset

type NullableConflict

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

func NewNullableConflict

func NewNullableConflict(val *Conflict) *NullableConflict

func (NullableConflict) Get

func (v NullableConflict) Get() *Conflict

func (NullableConflict) IsSet

func (v NullableConflict) IsSet() bool

func (NullableConflict) MarshalJSON

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

func (*NullableConflict) Set

func (v *NullableConflict) Set(val *Conflict)

func (*NullableConflict) UnmarshalJSON

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

func (*NullableConflict) Unset

func (v *NullableConflict) Unset()

type NullableContentSecurityPolicy

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

func (NullableContentSecurityPolicy) Get

func (NullableContentSecurityPolicy) IsSet

func (NullableContentSecurityPolicy) MarshalJSON

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

func (*NullableContentSecurityPolicy) Set

func (*NullableContentSecurityPolicy) UnmarshalJSON

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

func (*NullableContentSecurityPolicy) Unset

func (v *NullableContentSecurityPolicy) Unset()

type NullableCookieDomains

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

func NewNullableCookieDomains

func NewNullableCookieDomains(val *CookieDomains) *NullableCookieDomains

func (NullableCookieDomains) Get

func (NullableCookieDomains) IsSet

func (v NullableCookieDomains) IsSet() bool

func (NullableCookieDomains) MarshalJSON

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

func (*NullableCookieDomains) Set

func (v *NullableCookieDomains) Set(val *CookieDomains)

func (*NullableCookieDomains) UnmarshalJSON

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

func (*NullableCookieDomains) Unset

func (v *NullableCookieDomains) Unset()

type NullableCreateCertificateRequest

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

func (NullableCreateCertificateRequest) Get

func (NullableCreateCertificateRequest) IsSet

func (NullableCreateCertificateRequest) MarshalJSON

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

func (*NullableCreateCertificateRequest) Set

func (*NullableCreateCertificateRequest) UnmarshalJSON

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

func (*NullableCreateCertificateRequest) Unset

type NullableCreateCertificateSigningRequestRequest

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

func (NullableCreateCertificateSigningRequestRequest) Get

func (NullableCreateCertificateSigningRequestRequest) IsSet

func (NullableCreateCertificateSigningRequestRequest) MarshalJSON

func (*NullableCreateCertificateSigningRequestRequest) Set

func (*NullableCreateCertificateSigningRequestRequest) UnmarshalJSON

func (*NullableCreateCertificateSigningRequestRequest) Unset

type NullableCustomDomains

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

func NewNullableCustomDomains

func NewNullableCustomDomains(val *CustomDomains) *NullableCustomDomains

func (NullableCustomDomains) Get

func (NullableCustomDomains) IsSet

func (v NullableCustomDomains) IsSet() bool

func (NullableCustomDomains) MarshalJSON

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

func (*NullableCustomDomains) Set

func (v *NullableCustomDomains) Set(val *CustomDomains)

func (*NullableCustomDomains) UnmarshalJSON

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

func (*NullableCustomDomains) Unset

func (v *NullableCustomDomains) Unset()

type NullableError

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

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

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

func (*NullableError) Set

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

func (*NullableError) UnmarshalJSON

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

func (*NullableError) Unset

func (v *NullableError) Unset()

type NullableEsvCount

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

func NewNullableEsvCount

func NewNullableEsvCount(val *EsvCount) *NullableEsvCount

func (NullableEsvCount) Get

func (v NullableEsvCount) Get() *EsvCount

func (NullableEsvCount) IsSet

func (v NullableEsvCount) IsSet() bool

func (NullableEsvCount) MarshalJSON

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

func (*NullableEsvCount) Set

func (v *NullableEsvCount) Set(val *EsvCount)

func (*NullableEsvCount) UnmarshalJSON

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

func (*NullableEsvCount) Unset

func (v *NullableEsvCount) Unset()

type NullableEsvError

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

func NewNullableEsvError

func NewNullableEsvError(val *EsvError) *NullableEsvError

func (NullableEsvError) Get

func (v NullableEsvError) Get() *EsvError

func (NullableEsvError) IsSet

func (v NullableEsvError) IsSet() bool

func (NullableEsvError) MarshalJSON

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

func (*NullableEsvError) Set

func (v *NullableEsvError) Set(val *EsvError)

func (*NullableEsvError) UnmarshalJSON

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

func (*NullableEsvError) Unset

func (v *NullableEsvError) Unset()

type NullableEsvRestartStatus

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

func NewNullableEsvRestartStatus

func NewNullableEsvRestartStatus(val *EsvRestartStatus) *NullableEsvRestartStatus

func (NullableEsvRestartStatus) Get

func (NullableEsvRestartStatus) IsSet

func (v NullableEsvRestartStatus) IsSet() bool

func (NullableEsvRestartStatus) MarshalJSON

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

func (*NullableEsvRestartStatus) Set

func (*NullableEsvRestartStatus) UnmarshalJSON

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

func (*NullableEsvRestartStatus) Unset

func (v *NullableEsvRestartStatus) Unset()

type NullableEsvSecretCreateRequest

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

func (NullableEsvSecretCreateRequest) Get

func (NullableEsvSecretCreateRequest) IsSet

func (NullableEsvSecretCreateRequest) MarshalJSON

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

func (*NullableEsvSecretCreateRequest) Set

func (*NullableEsvSecretCreateRequest) UnmarshalJSON

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

func (*NullableEsvSecretCreateRequest) Unset

func (v *NullableEsvSecretCreateRequest) Unset()

type NullableEsvSecretResponse

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

func NewNullableEsvSecretResponse

func NewNullableEsvSecretResponse(val *EsvSecretResponse) *NullableEsvSecretResponse

func (NullableEsvSecretResponse) Get

func (NullableEsvSecretResponse) IsSet

func (v NullableEsvSecretResponse) IsSet() bool

func (NullableEsvSecretResponse) MarshalJSON

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

func (*NullableEsvSecretResponse) Set

func (*NullableEsvSecretResponse) UnmarshalJSON

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

func (*NullableEsvSecretResponse) Unset

func (v *NullableEsvSecretResponse) Unset()

type NullableEsvSecretVersionCreateRequest

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

func (NullableEsvSecretVersionCreateRequest) Get

func (NullableEsvSecretVersionCreateRequest) IsSet

func (NullableEsvSecretVersionCreateRequest) MarshalJSON

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

func (*NullableEsvSecretVersionCreateRequest) Set

func (*NullableEsvSecretVersionCreateRequest) UnmarshalJSON

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

func (*NullableEsvSecretVersionCreateRequest) Unset

type NullableEsvSecretVersionResponse

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

func (NullableEsvSecretVersionResponse) Get

func (NullableEsvSecretVersionResponse) IsSet

func (NullableEsvSecretVersionResponse) MarshalJSON

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

func (*NullableEsvSecretVersionResponse) Set

func (*NullableEsvSecretVersionResponse) UnmarshalJSON

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

func (*NullableEsvSecretVersionResponse) Unset

type NullableEsvSecretVersionStatusRequest

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

func (NullableEsvSecretVersionStatusRequest) Get

func (NullableEsvSecretVersionStatusRequest) IsSet

func (NullableEsvSecretVersionStatusRequest) MarshalJSON

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

func (*NullableEsvSecretVersionStatusRequest) Set

func (*NullableEsvSecretVersionStatusRequest) UnmarshalJSON

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

func (*NullableEsvSecretVersionStatusRequest) Unset

type NullableEsvSecretsListResponse

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

func (NullableEsvSecretsListResponse) Get

func (NullableEsvSecretsListResponse) IsSet

func (NullableEsvSecretsListResponse) MarshalJSON

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

func (*NullableEsvSecretsListResponse) Set

func (*NullableEsvSecretsListResponse) UnmarshalJSON

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

func (*NullableEsvSecretsListResponse) Unset

func (v *NullableEsvSecretsListResponse) Unset()

type NullableEsvSetDescriptionRequest

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

func (NullableEsvSetDescriptionRequest) Get

func (NullableEsvSetDescriptionRequest) IsSet

func (NullableEsvSetDescriptionRequest) MarshalJSON

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

func (*NullableEsvSetDescriptionRequest) Set

func (*NullableEsvSetDescriptionRequest) UnmarshalJSON

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

func (*NullableEsvSetDescriptionRequest) Unset

type NullableEsvVariableCreateUpdateRequest

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

func (NullableEsvVariableCreateUpdateRequest) Get

func (NullableEsvVariableCreateUpdateRequest) IsSet

func (NullableEsvVariableCreateUpdateRequest) MarshalJSON

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

func (*NullableEsvVariableCreateUpdateRequest) Set

func (*NullableEsvVariableCreateUpdateRequest) UnmarshalJSON

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

func (*NullableEsvVariableCreateUpdateRequest) Unset

type NullableEsvVariableListV1

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

func NewNullableEsvVariableListV1

func NewNullableEsvVariableListV1(val *EsvVariableListV1) *NullableEsvVariableListV1

func (NullableEsvVariableListV1) Get

func (NullableEsvVariableListV1) IsSet

func (v NullableEsvVariableListV1) IsSet() bool

func (NullableEsvVariableListV1) MarshalJSON

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

func (*NullableEsvVariableListV1) Set

func (*NullableEsvVariableListV1) UnmarshalJSON

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

func (*NullableEsvVariableListV1) Unset

func (v *NullableEsvVariableListV1) Unset()

type NullableEsvVariableListV2

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

func NewNullableEsvVariableListV2

func NewNullableEsvVariableListV2(val *EsvVariableListV2) *NullableEsvVariableListV2

func (NullableEsvVariableListV2) Get

func (NullableEsvVariableListV2) IsSet

func (v NullableEsvVariableListV2) IsSet() bool

func (NullableEsvVariableListV2) MarshalJSON

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

func (*NullableEsvVariableListV2) Set

func (*NullableEsvVariableListV2) UnmarshalJSON

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

func (*NullableEsvVariableListV2) Unset

func (v *NullableEsvVariableListV2) Unset()

type NullableEsvVariableResponse

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

func NewNullableEsvVariableResponse

func NewNullableEsvVariableResponse(val *EsvVariableResponse) *NullableEsvVariableResponse

func (NullableEsvVariableResponse) Get

func (NullableEsvVariableResponse) IsSet

func (NullableEsvVariableResponse) MarshalJSON

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

func (*NullableEsvVariableResponse) Set

func (*NullableEsvVariableResponse) UnmarshalJSON

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

func (*NullableEsvVariableResponse) Unset

func (v *NullableEsvVariableResponse) Unset()

type NullableEsvVariableResponseV2

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

func (NullableEsvVariableResponseV2) Get

func (NullableEsvVariableResponseV2) IsSet

func (NullableEsvVariableResponseV2) MarshalJSON

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

func (*NullableEsvVariableResponseV2) Set

func (*NullableEsvVariableResponseV2) UnmarshalJSON

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

func (*NullableEsvVariableResponseV2) Unset

func (v *NullableEsvVariableResponseV2) Unset()

type NullableFederationEnforcement

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

func (NullableFederationEnforcement) Get

func (NullableFederationEnforcement) IsSet

func (NullableFederationEnforcement) MarshalJSON

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

func (*NullableFederationEnforcement) Set

func (*NullableFederationEnforcement) UnmarshalJSON

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

func (*NullableFederationEnforcement) Unset

func (v *NullableFederationEnforcement) 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 NullableForbidden

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

func NewNullableForbidden

func NewNullableForbidden(val *Forbidden) *NullableForbidden

func (NullableForbidden) Get

func (v NullableForbidden) Get() *Forbidden

func (NullableForbidden) IsSet

func (v NullableForbidden) IsSet() bool

func (NullableForbidden) MarshalJSON

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

func (*NullableForbidden) Set

func (v *NullableForbidden) Set(val *Forbidden)

func (*NullableForbidden) UnmarshalJSON

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

func (*NullableForbidden) Unset

func (v *NullableForbidden) Unset()

type NullableGetAllVariables200Response

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

func (NullableGetAllVariables200Response) Get

func (NullableGetAllVariables200Response) IsSet

func (NullableGetAllVariables200Response) MarshalJSON

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

func (*NullableGetAllVariables200Response) Set

func (*NullableGetAllVariables200Response) UnmarshalJSON

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

func (*NullableGetAllVariables200Response) Unset

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

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

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

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

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

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

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableInternalServerError

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

func NewNullableInternalServerError

func NewNullableInternalServerError(val *InternalServerError) *NullableInternalServerError

func (NullableInternalServerError) Get

func (NullableInternalServerError) IsSet

func (NullableInternalServerError) MarshalJSON

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

func (*NullableInternalServerError) Set

func (*NullableInternalServerError) UnmarshalJSON

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

func (*NullableInternalServerError) Unset

func (v *NullableInternalServerError) Unset()

type NullableModelDefault

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

func NewNullableModelDefault

func NewNullableModelDefault(val *ModelDefault) *NullableModelDefault

func (NullableModelDefault) Get

func (NullableModelDefault) IsSet

func (v NullableModelDefault) IsSet() bool

func (NullableModelDefault) MarshalJSON

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

func (*NullableModelDefault) Set

func (v *NullableModelDefault) Set(val *ModelDefault)

func (*NullableModelDefault) UnmarshalJSON

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

func (*NullableModelDefault) Unset

func (v *NullableModelDefault) Unset()

type NullableNotFound

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

func NewNullableNotFound

func NewNullableNotFound(val *NotFound) *NullableNotFound

func (NullableNotFound) Get

func (v NullableNotFound) Get() *NotFound

func (NullableNotFound) IsSet

func (v NullableNotFound) IsSet() bool

func (NullableNotFound) MarshalJSON

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

func (*NullableNotFound) Set

func (v *NullableNotFound) Set(val *NotFound)

func (*NullableNotFound) UnmarshalJSON

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

func (*NullableNotFound) Unset

func (v *NullableNotFound) Unset()

type NullableP1Connect

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

func NewNullableP1Connect

func NewNullableP1Connect(val *P1Connect) *NullableP1Connect

func (NullableP1Connect) Get

func (v NullableP1Connect) Get() *P1Connect

func (NullableP1Connect) IsSet

func (v NullableP1Connect) IsSet() bool

func (NullableP1Connect) MarshalJSON

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

func (*NullableP1Connect) Set

func (v *NullableP1Connect) Set(val *P1Connect)

func (*NullableP1Connect) UnmarshalJSON

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

func (*NullableP1Connect) Unset

func (v *NullableP1Connect) Unset()

type NullableP1ConnectConfigureRequest

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

func (NullableP1ConnectConfigureRequest) Get

func (NullableP1ConnectConfigureRequest) IsSet

func (NullableP1ConnectConfigureRequest) MarshalJSON

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

func (*NullableP1ConnectConfigureRequest) Set

func (*NullableP1ConnectConfigureRequest) UnmarshalJSON

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

func (*NullableP1ConnectConfigureRequest) Unset

type NullableP1ConnectConfigureResponse

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

func (NullableP1ConnectConfigureResponse) Get

func (NullableP1ConnectConfigureResponse) IsSet

func (NullableP1ConnectConfigureResponse) MarshalJSON

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

func (*NullableP1ConnectConfigureResponse) Set

func (*NullableP1ConnectConfigureResponse) UnmarshalJSON

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

func (*NullableP1ConnectConfigureResponse) Unset

type NullablePromotionCIMeta

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

func NewNullablePromotionCIMeta

func NewNullablePromotionCIMeta(val *PromotionCIMeta) *NullablePromotionCIMeta

func (NullablePromotionCIMeta) Get

func (NullablePromotionCIMeta) IsSet

func (v NullablePromotionCIMeta) IsSet() bool

func (NullablePromotionCIMeta) MarshalJSON

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

func (*NullablePromotionCIMeta) Set

func (*NullablePromotionCIMeta) UnmarshalJSON

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

func (*NullablePromotionCIMeta) Unset

func (v *NullablePromotionCIMeta) Unset()

type NullablePromotionConflictingLockState

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

func (NullablePromotionConflictingLockState) Get

func (NullablePromotionConflictingLockState) IsSet

func (NullablePromotionConflictingLockState) MarshalJSON

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

func (*NullablePromotionConflictingLockState) Set

func (*NullablePromotionConflictingLockState) UnmarshalJSON

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

func (*NullablePromotionConflictingLockState) Unset

type NullablePromotionLockState

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

func NewNullablePromotionLockState

func NewNullablePromotionLockState(val *PromotionLockState) *NullablePromotionLockState

func (NullablePromotionLockState) Get

func (NullablePromotionLockState) IsSet

func (v NullablePromotionLockState) IsSet() bool

func (NullablePromotionLockState) MarshalJSON

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

func (*NullablePromotionLockState) Set

func (*NullablePromotionLockState) UnmarshalJSON

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

func (*NullablePromotionLockState) Unset

func (v *NullablePromotionLockState) Unset()

type NullablePromotionLockStateLowerEnv

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

func (NullablePromotionLockStateLowerEnv) Get

func (NullablePromotionLockStateLowerEnv) IsSet

func (NullablePromotionLockStateLowerEnv) MarshalJSON

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

func (*NullablePromotionLockStateLowerEnv) Set

func (*NullablePromotionLockStateLowerEnv) UnmarshalJSON

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

func (*NullablePromotionLockStateLowerEnv) Unset

type NullablePromotionProgress

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

func NewNullablePromotionProgress

func NewNullablePromotionProgress(val *PromotionProgress) *NullablePromotionProgress

func (NullablePromotionProgress) Get

func (NullablePromotionProgress) IsSet

func (v NullablePromotionProgress) IsSet() bool

func (NullablePromotionProgress) MarshalJSON

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

func (*NullablePromotionProgress) Set

func (*NullablePromotionProgress) UnmarshalJSON

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

func (*NullablePromotionProgress) Unset

func (v *NullablePromotionProgress) Unset()

type NullablePromotionReport

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

func NewNullablePromotionReport

func NewNullablePromotionReport(val *PromotionReport) *NullablePromotionReport

func (NullablePromotionReport) Get

func (NullablePromotionReport) IsSet

func (v NullablePromotionReport) IsSet() bool

func (NullablePromotionReport) MarshalJSON

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

func (*NullablePromotionReport) Set

func (*NullablePromotionReport) UnmarshalJSON

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

func (*NullablePromotionReport) Unset

func (v *NullablePromotionReport) Unset()

type NullablePromotionReportContent

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

func (NullablePromotionReportContent) Get

func (NullablePromotionReportContent) IsSet

func (NullablePromotionReportContent) MarshalJSON

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

func (*NullablePromotionReportContent) Set

func (*NullablePromotionReportContent) UnmarshalJSON

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

func (*NullablePromotionReportContent) Unset

func (v *NullablePromotionReportContent) Unset()

type NullablePromotionReportContentConfigChange

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

func (NullablePromotionReportContentConfigChange) Get

func (NullablePromotionReportContentConfigChange) IsSet

func (NullablePromotionReportContentConfigChange) MarshalJSON

func (*NullablePromotionReportContentConfigChange) Set

func (*NullablePromotionReportContentConfigChange) UnmarshalJSON

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

func (*NullablePromotionReportContentConfigChange) Unset

type NullablePromotionReportMeta

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

func NewNullablePromotionReportMeta

func NewNullablePromotionReportMeta(val *PromotionReportMeta) *NullablePromotionReportMeta

func (NullablePromotionReportMeta) Get

func (NullablePromotionReportMeta) IsSet

func (NullablePromotionReportMeta) MarshalJSON

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

func (*NullablePromotionReportMeta) Set

func (*NullablePromotionReportMeta) UnmarshalJSON

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

func (*NullablePromotionReportMeta) Unset

func (v *NullablePromotionReportMeta) Unset()

type NullablePromotionReportReport

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

func (NullablePromotionReportReport) Get

func (NullablePromotionReportReport) IsSet

func (NullablePromotionReportReport) MarshalJSON

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

func (*NullablePromotionReportReport) Set

func (*NullablePromotionReportReport) UnmarshalJSON

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

func (*NullablePromotionReportReport) Unset

func (v *NullablePromotionReportReport) Unset()

type NullablePromotionRequest

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

func NewNullablePromotionRequest

func NewNullablePromotionRequest(val *PromotionRequest) *NullablePromotionRequest

func (NullablePromotionRequest) Get

func (NullablePromotionRequest) IsSet

func (v NullablePromotionRequest) IsSet() bool

func (NullablePromotionRequest) MarshalJSON

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

func (*NullablePromotionRequest) Set

func (*NullablePromotionRequest) UnmarshalJSON

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

func (*NullablePromotionRequest) Unset

func (v *NullablePromotionRequest) Unset()

type NullablePromotionStart

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

func NewNullablePromotionStart

func NewNullablePromotionStart(val *PromotionStart) *NullablePromotionStart

func (NullablePromotionStart) Get

func (NullablePromotionStart) IsSet

func (v NullablePromotionStart) IsSet() bool

func (NullablePromotionStart) MarshalJSON

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

func (*NullablePromotionStart) Set

func (*NullablePromotionStart) UnmarshalJSON

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

func (*NullablePromotionStart) Unset

func (v *NullablePromotionStart) Unset()

type NullablePromotionStartLocking

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

func (NullablePromotionStartLocking) Get

func (NullablePromotionStartLocking) IsSet

func (NullablePromotionStartLocking) MarshalJSON

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

func (*NullablePromotionStartLocking) Set

func (*NullablePromotionStartLocking) UnmarshalJSON

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

func (*NullablePromotionStartLocking) Unset

func (v *NullablePromotionStartLocking) Unset()

type NullablePromotionStartUnlocking

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

func (NullablePromotionStartUnlocking) Get

func (NullablePromotionStartUnlocking) IsSet

func (NullablePromotionStartUnlocking) MarshalJSON

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

func (*NullablePromotionStartUnlocking) Set

func (*NullablePromotionStartUnlocking) UnmarshalJSON

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

func (*NullablePromotionStartUnlocking) Unset

type NullablePromotionUnlocked

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

func NewNullablePromotionUnlocked

func NewNullablePromotionUnlocked(val *PromotionUnlocked) *NullablePromotionUnlocked

func (NullablePromotionUnlocked) Get

func (NullablePromotionUnlocked) IsSet

func (v NullablePromotionUnlocked) IsSet() bool

func (NullablePromotionUnlocked) MarshalJSON

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

func (*NullablePromotionUnlocked) Set

func (*NullablePromotionUnlocked) UnmarshalJSON

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

func (*NullablePromotionUnlocked) Unset

func (v *NullablePromotionUnlocked) Unset()

type NullableRelease

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

func NewNullableRelease

func NewNullableRelease(val *Release) *NullableRelease

func (NullableRelease) Get

func (v NullableRelease) Get() *Release

func (NullableRelease) IsSet

func (v NullableRelease) IsSet() bool

func (NullableRelease) MarshalJSON

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

func (*NullableRelease) Set

func (v *NullableRelease) Set(val *Release)

func (*NullableRelease) UnmarshalJSON

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

func (*NullableRelease) Unset

func (v *NullableRelease) Unset()

type NullableRollbackRequest

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

func NewNullableRollbackRequest

func NewNullableRollbackRequest(val *RollbackRequest) *NullableRollbackRequest

func (NullableRollbackRequest) Get

func (NullableRollbackRequest) IsSet

func (v NullableRollbackRequest) IsSet() bool

func (NullableRollbackRequest) MarshalJSON

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

func (*NullableRollbackRequest) Set

func (*NullableRollbackRequest) UnmarshalJSON

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

func (*NullableRollbackRequest) Unset

func (v *NullableRollbackRequest) Unset()

type NullableRollbackStart

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

func NewNullableRollbackStart

func NewNullableRollbackStart(val *RollbackStart) *NullableRollbackStart

func (NullableRollbackStart) Get

func (NullableRollbackStart) IsSet

func (v NullableRollbackStart) IsSet() bool

func (NullableRollbackStart) MarshalJSON

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

func (*NullableRollbackStart) Set

func (v *NullableRollbackStart) Set(val *RollbackStart)

func (*NullableRollbackStart) UnmarshalJSON

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

func (*NullableRollbackStart) Unset

func (v *NullableRollbackStart) Unset()

type NullableSSOCookie

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

func NewNullableSSOCookie

func NewNullableSSOCookie(val *SSOCookie) *NullableSSOCookie

func (NullableSSOCookie) Get

func (v NullableSSOCookie) Get() *SSOCookie

func (NullableSSOCookie) IsSet

func (v NullableSSOCookie) IsSet() bool

func (NullableSSOCookie) MarshalJSON

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

func (*NullableSSOCookie) Set

func (v *NullableSSOCookie) Set(val *SSOCookie)

func (*NullableSSOCookie) UnmarshalJSON

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

func (*NullableSSOCookie) Unset

func (v *NullableSSOCookie) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

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

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

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

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUnauthorized

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

func NewNullableUnauthorized

func NewNullableUnauthorized(val *Unauthorized) *NullableUnauthorized

func (NullableUnauthorized) Get

func (NullableUnauthorized) IsSet

func (v NullableUnauthorized) IsSet() bool

func (NullableUnauthorized) MarshalJSON

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

func (*NullableUnauthorized) Set

func (v *NullableUnauthorized) Set(val *Unauthorized)

func (*NullableUnauthorized) UnmarshalJSON

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

func (*NullableUnauthorized) Unset

func (v *NullableUnauthorized) Unset()

type NullableUpdateCertificateRequest

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

func (NullableUpdateCertificateRequest) Get

func (NullableUpdateCertificateRequest) IsSet

func (NullableUpdateCertificateRequest) MarshalJSON

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

func (*NullableUpdateCertificateRequest) Set

func (*NullableUpdateCertificateRequest) UnmarshalJSON

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

func (*NullableUpdateCertificateRequest) Unset

type NullableUpdateCertificateSigningRequestRequest

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

func (NullableUpdateCertificateSigningRequestRequest) Get

func (NullableUpdateCertificateSigningRequestRequest) IsSet

func (NullableUpdateCertificateSigningRequestRequest) MarshalJSON

func (*NullableUpdateCertificateSigningRequestRequest) Set

func (*NullableUpdateCertificateSigningRequestRequest) UnmarshalJSON

func (*NullableUpdateCertificateSigningRequestRequest) Unset

type P1Connect

type P1Connect struct {
	Active               *bool   `json:"active,omitempty"`
	AdminClientId        *string `json:"adminClientId,omitempty"`
	DefaultIssuer        *string `json:"defaultIssuer,omitempty"`
	IdpAuthEndpoint      *string `json:"idpAuthEndpoint,omitempty"`
	IdpClientId          *string `json:"idpClientId,omitempty"`
	IdpEnabled           *bool   `json:"idpEnabled,omitempty"`
	IdpIssuer            *string `json:"idpIssuer,omitempty"`
	IdpTokenEndpoint     *string `json:"idpTokenEndpoint,omitempty"`
	IdpWellKnownEndpoint *string `json:"idpWellKnownEndpoint,omitempty"`
}

P1Connect struct for P1Connect

func NewP1Connect

func NewP1Connect() *P1Connect

NewP1Connect instantiates a new P1Connect 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 NewP1ConnectWithDefaults

func NewP1ConnectWithDefaults() *P1Connect

NewP1ConnectWithDefaults instantiates a new P1Connect 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 (*P1Connect) GetActive

func (o *P1Connect) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*P1Connect) GetActiveOk

func (o *P1Connect) GetActiveOk() (*bool, bool)

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

func (*P1Connect) GetAdminClientId

func (o *P1Connect) GetAdminClientId() string

GetAdminClientId returns the AdminClientId field value if set, zero value otherwise.

func (*P1Connect) GetAdminClientIdOk

func (o *P1Connect) GetAdminClientIdOk() (*string, bool)

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

func (*P1Connect) GetDefaultIssuer

func (o *P1Connect) GetDefaultIssuer() string

GetDefaultIssuer returns the DefaultIssuer field value if set, zero value otherwise.

func (*P1Connect) GetDefaultIssuerOk

func (o *P1Connect) GetDefaultIssuerOk() (*string, bool)

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

func (*P1Connect) GetIdpAuthEndpoint

func (o *P1Connect) GetIdpAuthEndpoint() string

GetIdpAuthEndpoint returns the IdpAuthEndpoint field value if set, zero value otherwise.

func (*P1Connect) GetIdpAuthEndpointOk

func (o *P1Connect) GetIdpAuthEndpointOk() (*string, bool)

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

func (*P1Connect) GetIdpClientId

func (o *P1Connect) GetIdpClientId() string

GetIdpClientId returns the IdpClientId field value if set, zero value otherwise.

func (*P1Connect) GetIdpClientIdOk

func (o *P1Connect) GetIdpClientIdOk() (*string, bool)

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

func (*P1Connect) GetIdpEnabled

func (o *P1Connect) GetIdpEnabled() bool

GetIdpEnabled returns the IdpEnabled field value if set, zero value otherwise.

func (*P1Connect) GetIdpEnabledOk

func (o *P1Connect) GetIdpEnabledOk() (*bool, bool)

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

func (*P1Connect) GetIdpIssuer

func (o *P1Connect) GetIdpIssuer() string

GetIdpIssuer returns the IdpIssuer field value if set, zero value otherwise.

func (*P1Connect) GetIdpIssuerOk

func (o *P1Connect) GetIdpIssuerOk() (*string, bool)

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

func (*P1Connect) GetIdpTokenEndpoint

func (o *P1Connect) GetIdpTokenEndpoint() string

GetIdpTokenEndpoint returns the IdpTokenEndpoint field value if set, zero value otherwise.

func (*P1Connect) GetIdpTokenEndpointOk

func (o *P1Connect) GetIdpTokenEndpointOk() (*string, bool)

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

func (*P1Connect) GetIdpWellKnownEndpoint

func (o *P1Connect) GetIdpWellKnownEndpoint() string

GetIdpWellKnownEndpoint returns the IdpWellKnownEndpoint field value if set, zero value otherwise.

func (*P1Connect) GetIdpWellKnownEndpointOk

func (o *P1Connect) GetIdpWellKnownEndpointOk() (*string, bool)

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

func (*P1Connect) HasActive

func (o *P1Connect) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*P1Connect) HasAdminClientId

func (o *P1Connect) HasAdminClientId() bool

HasAdminClientId returns a boolean if a field has been set.

func (*P1Connect) HasDefaultIssuer

func (o *P1Connect) HasDefaultIssuer() bool

HasDefaultIssuer returns a boolean if a field has been set.

func (*P1Connect) HasIdpAuthEndpoint

func (o *P1Connect) HasIdpAuthEndpoint() bool

HasIdpAuthEndpoint returns a boolean if a field has been set.

func (*P1Connect) HasIdpClientId

func (o *P1Connect) HasIdpClientId() bool

HasIdpClientId returns a boolean if a field has been set.

func (*P1Connect) HasIdpEnabled

func (o *P1Connect) HasIdpEnabled() bool

HasIdpEnabled returns a boolean if a field has been set.

func (*P1Connect) HasIdpIssuer

func (o *P1Connect) HasIdpIssuer() bool

HasIdpIssuer returns a boolean if a field has been set.

func (*P1Connect) HasIdpTokenEndpoint

func (o *P1Connect) HasIdpTokenEndpoint() bool

HasIdpTokenEndpoint returns a boolean if a field has been set.

func (*P1Connect) HasIdpWellKnownEndpoint

func (o *P1Connect) HasIdpWellKnownEndpoint() bool

HasIdpWellKnownEndpoint returns a boolean if a field has been set.

func (P1Connect) MarshalJSON

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

func (*P1Connect) SetActive

func (o *P1Connect) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*P1Connect) SetAdminClientId

func (o *P1Connect) SetAdminClientId(v string)

SetAdminClientId gets a reference to the given string and assigns it to the AdminClientId field.

func (*P1Connect) SetDefaultIssuer

func (o *P1Connect) SetDefaultIssuer(v string)

SetDefaultIssuer gets a reference to the given string and assigns it to the DefaultIssuer field.

func (*P1Connect) SetIdpAuthEndpoint

func (o *P1Connect) SetIdpAuthEndpoint(v string)

SetIdpAuthEndpoint gets a reference to the given string and assigns it to the IdpAuthEndpoint field.

func (*P1Connect) SetIdpClientId

func (o *P1Connect) SetIdpClientId(v string)

SetIdpClientId gets a reference to the given string and assigns it to the IdpClientId field.

func (*P1Connect) SetIdpEnabled

func (o *P1Connect) SetIdpEnabled(v bool)

SetIdpEnabled gets a reference to the given bool and assigns it to the IdpEnabled field.

func (*P1Connect) SetIdpIssuer

func (o *P1Connect) SetIdpIssuer(v string)

SetIdpIssuer gets a reference to the given string and assigns it to the IdpIssuer field.

func (*P1Connect) SetIdpTokenEndpoint

func (o *P1Connect) SetIdpTokenEndpoint(v string)

SetIdpTokenEndpoint gets a reference to the given string and assigns it to the IdpTokenEndpoint field.

func (*P1Connect) SetIdpWellKnownEndpoint

func (o *P1Connect) SetIdpWellKnownEndpoint(v string)

SetIdpWellKnownEndpoint gets a reference to the given string and assigns it to the IdpWellKnownEndpoint field.

func (P1Connect) ToMap

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

type P1ConnectConfigureRequest

type P1ConnectConfigureRequest struct {
	// The OIDC well-known endpoint for the PingOne environment where admin identities exist
	AdminDiscoveryEndpoint string `json:"adminDiscoveryEndpoint"`
	// The OIDC well-known endpoint for the PingOne consumer environment being linked
	ConsumerDiscoveryEndpoint string `json:"consumerDiscoveryEndpoint"`
	// The JWKS endpoint for the dynamically-registered admin client
	PingOneAdminJwksEndpoint string `json:"pingOneAdminJwksEndpoint"`
	// The client ID to use in the PingOne IDP definition for SSO
	SsoAppId string `json:"ssoAppId"`
}

P1ConnectConfigureRequest struct for P1ConnectConfigureRequest

func NewP1ConnectConfigureRequest

func NewP1ConnectConfigureRequest(adminDiscoveryEndpoint string, consumerDiscoveryEndpoint string, pingOneAdminJwksEndpoint string, ssoAppId string) *P1ConnectConfigureRequest

NewP1ConnectConfigureRequest instantiates a new P1ConnectConfigureRequest 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 NewP1ConnectConfigureRequestWithDefaults

func NewP1ConnectConfigureRequestWithDefaults() *P1ConnectConfigureRequest

NewP1ConnectConfigureRequestWithDefaults instantiates a new P1ConnectConfigureRequest 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 (*P1ConnectConfigureRequest) GetAdminDiscoveryEndpoint

func (o *P1ConnectConfigureRequest) GetAdminDiscoveryEndpoint() string

GetAdminDiscoveryEndpoint returns the AdminDiscoveryEndpoint field value

func (*P1ConnectConfigureRequest) GetAdminDiscoveryEndpointOk

func (o *P1ConnectConfigureRequest) GetAdminDiscoveryEndpointOk() (*string, bool)

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

func (*P1ConnectConfigureRequest) GetConsumerDiscoveryEndpoint

func (o *P1ConnectConfigureRequest) GetConsumerDiscoveryEndpoint() string

GetConsumerDiscoveryEndpoint returns the ConsumerDiscoveryEndpoint field value

func (*P1ConnectConfigureRequest) GetConsumerDiscoveryEndpointOk

func (o *P1ConnectConfigureRequest) GetConsumerDiscoveryEndpointOk() (*string, bool)

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

func (*P1ConnectConfigureRequest) GetPingOneAdminJwksEndpoint

func (o *P1ConnectConfigureRequest) GetPingOneAdminJwksEndpoint() string

GetPingOneAdminJwksEndpoint returns the PingOneAdminJwksEndpoint field value

func (*P1ConnectConfigureRequest) GetPingOneAdminJwksEndpointOk

func (o *P1ConnectConfigureRequest) GetPingOneAdminJwksEndpointOk() (*string, bool)

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

func (*P1ConnectConfigureRequest) GetSsoAppId

func (o *P1ConnectConfigureRequest) GetSsoAppId() string

GetSsoAppId returns the SsoAppId field value

func (*P1ConnectConfigureRequest) GetSsoAppIdOk

func (o *P1ConnectConfigureRequest) GetSsoAppIdOk() (*string, bool)

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

func (P1ConnectConfigureRequest) MarshalJSON

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

func (*P1ConnectConfigureRequest) SetAdminDiscoveryEndpoint

func (o *P1ConnectConfigureRequest) SetAdminDiscoveryEndpoint(v string)

SetAdminDiscoveryEndpoint sets field value

func (*P1ConnectConfigureRequest) SetConsumerDiscoveryEndpoint

func (o *P1ConnectConfigureRequest) SetConsumerDiscoveryEndpoint(v string)

SetConsumerDiscoveryEndpoint sets field value

func (*P1ConnectConfigureRequest) SetPingOneAdminJwksEndpoint

func (o *P1ConnectConfigureRequest) SetPingOneAdminJwksEndpoint(v string)

SetPingOneAdminJwksEndpoint sets field value

func (*P1ConnectConfigureRequest) SetSsoAppId

func (o *P1ConnectConfigureRequest) SetSsoAppId(v string)

SetSsoAppId sets field value

func (P1ConnectConfigureRequest) ToMap

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

type P1ConnectConfigureResponse

type P1ConnectConfigureResponse struct {
	AdminClientId *string `json:"adminClientId,omitempty"`
}

P1ConnectConfigureResponse struct for P1ConnectConfigureResponse

func NewP1ConnectConfigureResponse

func NewP1ConnectConfigureResponse() *P1ConnectConfigureResponse

NewP1ConnectConfigureResponse instantiates a new P1ConnectConfigureResponse 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 NewP1ConnectConfigureResponseWithDefaults

func NewP1ConnectConfigureResponseWithDefaults() *P1ConnectConfigureResponse

NewP1ConnectConfigureResponseWithDefaults instantiates a new P1ConnectConfigureResponse 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 (*P1ConnectConfigureResponse) GetAdminClientId

func (o *P1ConnectConfigureResponse) GetAdminClientId() string

GetAdminClientId returns the AdminClientId field value if set, zero value otherwise.

func (*P1ConnectConfigureResponse) GetAdminClientIdOk

func (o *P1ConnectConfigureResponse) GetAdminClientIdOk() (*string, bool)

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

func (*P1ConnectConfigureResponse) HasAdminClientId

func (o *P1ConnectConfigureResponse) HasAdminClientId() bool

HasAdminClientId returns a boolean if a field has been set.

func (P1ConnectConfigureResponse) MarshalJSON

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

func (*P1ConnectConfigureResponse) SetAdminClientId

func (o *P1ConnectConfigureResponse) SetAdminClientId(v string)

SetAdminClientId gets a reference to the given string and assigns it to the AdminClientId field.

func (P1ConnectConfigureResponse) ToMap

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

type PromotionAPIService

type PromotionAPIService service

PromotionAPIService PromotionAPI service

func (*PromotionAPIService) CheckLock

CheckLock Get lock status

Get the lock status of the lower and upper environments.

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

func (*PromotionAPIService) CheckLockExecute

Execute executes the request

@return PromotionLockState

func (*PromotionAPIService) GetLastReport

GetLastReport Get last promotion report

This will return the contents of the last run config promotion report

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

func (*PromotionAPIService) GetLastReportExecute

Execute executes the request

@return PromotionReport

func (*PromotionAPIService) GetProvisionalReport

GetProvisionalReport Get a provisional promotion report

Get a provisional report of changes since the last time the lower environment was promoted to the upper environment. The report generated is for informational purposes only and may not reflect all the changes in a full promotion. A dry-run promotion is always recommended prior to a full promotion between environments.

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

func (*PromotionAPIService) GetProvisionalReportExecute

func (a *PromotionAPIService) GetProvisionalReportExecute(r ApiGetProvisionalReportRequest) (*PromotionReport, *http.Response, error)

Execute executes the request

@return PromotionReport

func (*PromotionAPIService) GetProvisionalRollbackReport

func (a *PromotionAPIService) GetProvisionalRollbackReport(ctx context.Context) ApiGetProvisionalRollbackReportRequest

GetProvisionalRollbackReport Get a provisional rollback report

Get a provisional rollback report of changes when we rollback the configuration to the previous promotion.

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

func (*PromotionAPIService) GetProvisionalRollbackReportExecute

func (a *PromotionAPIService) GetProvisionalRollbackReportExecute(r ApiGetProvisionalRollbackReportRequest) (*PromotionReport, *http.Response, error)

Execute executes the request

@return PromotionReport

func (*PromotionAPIService) GetReport

func (a *PromotionAPIService) GetReport(ctx context.Context, reportId string) ApiGetReportRequest

GetReport Get a promotion report

Get a specific promotion report.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param reportId Promotion report unique identifier
@return ApiGetReportRequest

func (*PromotionAPIService) GetReportExecute

Execute executes the request

@return PromotionReport

func (*PromotionAPIService) GetReportList

GetReportList Get promotion reports

Get a list of previous promotion reports in date order.

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

func (*PromotionAPIService) GetReportListExecute

Execute executes the request

@return []PromotionReportMeta

func (*PromotionAPIService) Lock

Lock Lock environments

Starts the lock process on the lower and upper environments

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

func (*PromotionAPIService) LockExecute

Execute executes the request

@return PromotionStartLocking

func (*PromotionAPIService) Progress

Progress Get promotion status

Get the status of a promotion, if one is in progress.

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

func (*PromotionAPIService) ProgressExecute

Execute executes the request

@return PromotionProgress

func (*PromotionAPIService) Rollback

Rollback Rollback a promotion

Rollback the most recent configuration promotion.

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

func (*PromotionAPIService) RollbackExecute

Execute executes the request

@return RollbackStart

func (*PromotionAPIService) Start

Start Run a promotion

Promote configuration from the lower environment to the upper environment.

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

func (*PromotionAPIService) StartExecute

Execute executes the request

@return PromotionStart

func (*PromotionAPIService) Unlock

func (a *PromotionAPIService) Unlock(ctx context.Context, promotionId string) ApiUnlockRequest

Unlock Unlock environments

Start the unlock process on the lower and upper environments.

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

func (*PromotionAPIService) UnlockExecute

Execute executes the request

@return PromotionUnlocked

type PromotionCIMeta

type PromotionCIMeta struct {
	Name  *string `json:"name,omitempty"`
	Realm *string `json:"realm,omitempty"`
	Uid   *string `json:"uid,omitempty"`
}

PromotionCIMeta struct for PromotionCIMeta

func NewPromotionCIMeta

func NewPromotionCIMeta() *PromotionCIMeta

NewPromotionCIMeta instantiates a new PromotionCIMeta 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 NewPromotionCIMetaWithDefaults

func NewPromotionCIMetaWithDefaults() *PromotionCIMeta

NewPromotionCIMetaWithDefaults instantiates a new PromotionCIMeta 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 (*PromotionCIMeta) GetName

func (o *PromotionCIMeta) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PromotionCIMeta) GetNameOk

func (o *PromotionCIMeta) 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.

func (*PromotionCIMeta) GetRealm

func (o *PromotionCIMeta) GetRealm() string

GetRealm returns the Realm field value if set, zero value otherwise.

func (*PromotionCIMeta) GetRealmOk

func (o *PromotionCIMeta) GetRealmOk() (*string, bool)

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

func (*PromotionCIMeta) GetUid

func (o *PromotionCIMeta) GetUid() string

GetUid returns the Uid field value if set, zero value otherwise.

func (*PromotionCIMeta) GetUidOk

func (o *PromotionCIMeta) GetUidOk() (*string, bool)

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

func (*PromotionCIMeta) HasName

func (o *PromotionCIMeta) HasName() bool

HasName returns a boolean if a field has been set.

func (*PromotionCIMeta) HasRealm

func (o *PromotionCIMeta) HasRealm() bool

HasRealm returns a boolean if a field has been set.

func (*PromotionCIMeta) HasUid

func (o *PromotionCIMeta) HasUid() bool

HasUid returns a boolean if a field has been set.

func (PromotionCIMeta) MarshalJSON

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

func (*PromotionCIMeta) SetName

func (o *PromotionCIMeta) SetName(v string)

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

func (*PromotionCIMeta) SetRealm

func (o *PromotionCIMeta) SetRealm(v string)

SetRealm gets a reference to the given string and assigns it to the Realm field.

func (*PromotionCIMeta) SetUid

func (o *PromotionCIMeta) SetUid(v string)

SetUid gets a reference to the given string and assigns it to the Uid field.

func (PromotionCIMeta) ToMap

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

type PromotionConflictingLockState

type PromotionConflictingLockState struct {
	Message *string `json:"message,omitempty"`
}

PromotionConflictingLockState struct for PromotionConflictingLockState

func NewPromotionConflictingLockState

func NewPromotionConflictingLockState() *PromotionConflictingLockState

NewPromotionConflictingLockState instantiates a new PromotionConflictingLockState 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 NewPromotionConflictingLockStateWithDefaults

func NewPromotionConflictingLockStateWithDefaults() *PromotionConflictingLockState

NewPromotionConflictingLockStateWithDefaults instantiates a new PromotionConflictingLockState 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 (*PromotionConflictingLockState) GetMessage

func (o *PromotionConflictingLockState) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*PromotionConflictingLockState) GetMessageOk

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

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

func (*PromotionConflictingLockState) HasMessage

func (o *PromotionConflictingLockState) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (PromotionConflictingLockState) MarshalJSON

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

func (*PromotionConflictingLockState) SetMessage

func (o *PromotionConflictingLockState) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (PromotionConflictingLockState) ToMap

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

type PromotionLockState

type PromotionLockState struct {
	Description *string                     `json:"description,omitempty"`
	LowerEnv    *PromotionLockStateLowerEnv `json:"lowerEnv,omitempty"`
	PromotionId *string                     `json:"promotionId,omitempty"`
	Result      *string                     `json:"result,omitempty"`
	UpperEnv    *PromotionLockStateLowerEnv `json:"upperEnv,omitempty"`
}

PromotionLockState struct for PromotionLockState

func NewPromotionLockState

func NewPromotionLockState() *PromotionLockState

NewPromotionLockState instantiates a new PromotionLockState 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 NewPromotionLockStateWithDefaults

func NewPromotionLockStateWithDefaults() *PromotionLockState

NewPromotionLockStateWithDefaults instantiates a new PromotionLockState 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 (*PromotionLockState) GetDescription

func (o *PromotionLockState) GetDescription() string

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

func (*PromotionLockState) GetDescriptionOk

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

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

func (*PromotionLockState) GetLowerEnv

GetLowerEnv returns the LowerEnv field value if set, zero value otherwise.

func (*PromotionLockState) GetLowerEnvOk

func (o *PromotionLockState) GetLowerEnvOk() (*PromotionLockStateLowerEnv, bool)

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

func (*PromotionLockState) GetPromotionId

func (o *PromotionLockState) GetPromotionId() string

GetPromotionId returns the PromotionId field value if set, zero value otherwise.

func (*PromotionLockState) GetPromotionIdOk

func (o *PromotionLockState) GetPromotionIdOk() (*string, bool)

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

func (*PromotionLockState) GetResult

func (o *PromotionLockState) GetResult() string

GetResult returns the Result field value if set, zero value otherwise.

func (*PromotionLockState) GetResultOk

func (o *PromotionLockState) GetResultOk() (*string, bool)

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

func (*PromotionLockState) GetUpperEnv

GetUpperEnv returns the UpperEnv field value if set, zero value otherwise.

func (*PromotionLockState) GetUpperEnvOk

func (o *PromotionLockState) GetUpperEnvOk() (*PromotionLockStateLowerEnv, bool)

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

func (*PromotionLockState) HasDescription

func (o *PromotionLockState) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*PromotionLockState) HasLowerEnv

func (o *PromotionLockState) HasLowerEnv() bool

HasLowerEnv returns a boolean if a field has been set.

func (*PromotionLockState) HasPromotionId

func (o *PromotionLockState) HasPromotionId() bool

HasPromotionId returns a boolean if a field has been set.

func (*PromotionLockState) HasResult

func (o *PromotionLockState) HasResult() bool

HasResult returns a boolean if a field has been set.

func (*PromotionLockState) HasUpperEnv

func (o *PromotionLockState) HasUpperEnv() bool

HasUpperEnv returns a boolean if a field has been set.

func (PromotionLockState) MarshalJSON

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

func (*PromotionLockState) SetDescription

func (o *PromotionLockState) SetDescription(v string)

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

func (*PromotionLockState) SetLowerEnv

SetLowerEnv gets a reference to the given PromotionLockStateLowerEnv and assigns it to the LowerEnv field.

func (*PromotionLockState) SetPromotionId

func (o *PromotionLockState) SetPromotionId(v string)

SetPromotionId gets a reference to the given string and assigns it to the PromotionId field.

func (*PromotionLockState) SetResult

func (o *PromotionLockState) SetResult(v string)

SetResult gets a reference to the given string and assigns it to the Result field.

func (*PromotionLockState) SetUpperEnv

SetUpperEnv gets a reference to the given PromotionLockStateLowerEnv and assigns it to the UpperEnv field.

func (PromotionLockState) ToMap

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

type PromotionLockStateLowerEnv

type PromotionLockStateLowerEnv struct {
	PromotionId *string `json:"promotionId,omitempty"`
	ProxyState  *string `json:"proxyState,omitempty"`
	State       *string `json:"state,omitempty"`
}

PromotionLockStateLowerEnv struct for PromotionLockStateLowerEnv

func NewPromotionLockStateLowerEnv

func NewPromotionLockStateLowerEnv() *PromotionLockStateLowerEnv

NewPromotionLockStateLowerEnv instantiates a new PromotionLockStateLowerEnv 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 NewPromotionLockStateLowerEnvWithDefaults

func NewPromotionLockStateLowerEnvWithDefaults() *PromotionLockStateLowerEnv

NewPromotionLockStateLowerEnvWithDefaults instantiates a new PromotionLockStateLowerEnv 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 (*PromotionLockStateLowerEnv) GetPromotionId

func (o *PromotionLockStateLowerEnv) GetPromotionId() string

GetPromotionId returns the PromotionId field value if set, zero value otherwise.

func (*PromotionLockStateLowerEnv) GetPromotionIdOk

func (o *PromotionLockStateLowerEnv) GetPromotionIdOk() (*string, bool)

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

func (*PromotionLockStateLowerEnv) GetProxyState

func (o *PromotionLockStateLowerEnv) GetProxyState() string

GetProxyState returns the ProxyState field value if set, zero value otherwise.

func (*PromotionLockStateLowerEnv) GetProxyStateOk

func (o *PromotionLockStateLowerEnv) GetProxyStateOk() (*string, bool)

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

func (*PromotionLockStateLowerEnv) GetState

func (o *PromotionLockStateLowerEnv) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*PromotionLockStateLowerEnv) GetStateOk

func (o *PromotionLockStateLowerEnv) GetStateOk() (*string, bool)

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

func (*PromotionLockStateLowerEnv) HasPromotionId

func (o *PromotionLockStateLowerEnv) HasPromotionId() bool

HasPromotionId returns a boolean if a field has been set.

func (*PromotionLockStateLowerEnv) HasProxyState

func (o *PromotionLockStateLowerEnv) HasProxyState() bool

HasProxyState returns a boolean if a field has been set.

func (*PromotionLockStateLowerEnv) HasState

func (o *PromotionLockStateLowerEnv) HasState() bool

HasState returns a boolean if a field has been set.

func (PromotionLockStateLowerEnv) MarshalJSON

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

func (*PromotionLockStateLowerEnv) SetPromotionId

func (o *PromotionLockStateLowerEnv) SetPromotionId(v string)

SetPromotionId gets a reference to the given string and assigns it to the PromotionId field.

func (*PromotionLockStateLowerEnv) SetProxyState

func (o *PromotionLockStateLowerEnv) SetProxyState(v string)

SetProxyState gets a reference to the given string and assigns it to the ProxyState field.

func (*PromotionLockStateLowerEnv) SetState

func (o *PromotionLockStateLowerEnv) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (PromotionLockStateLowerEnv) ToMap

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

type PromotionProgress

type PromotionProgress struct {
	BlockingError    *bool    `json:"blockingError,omitempty"`
	EncryptedSecrets []string `json:"encryptedSecrets,omitempty"`
	GlobalLock       *string  `json:"globalLock,omitempty"`
	Message          *string  `json:"message,omitempty"`
	MissingESVs      []string `json:"missingESVs,omitempty"`
	PromotionId      *string  `json:"promotionId,omitempty"`
	Status           *string  `json:"status,omitempty"`
	TimeStamp        *string  `json:"timeStamp,omitempty"`
	// Either promotion or rollback depending on whether the report was for a config promotion or a config rollback
	Type *string `json:"type,omitempty"`
}

PromotionProgress struct for PromotionProgress

func NewPromotionProgress

func NewPromotionProgress() *PromotionProgress

NewPromotionProgress instantiates a new PromotionProgress 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 NewPromotionProgressWithDefaults

func NewPromotionProgressWithDefaults() *PromotionProgress

NewPromotionProgressWithDefaults instantiates a new PromotionProgress 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 (*PromotionProgress) GetBlockingError

func (o *PromotionProgress) GetBlockingError() bool

GetBlockingError returns the BlockingError field value if set, zero value otherwise.

func (*PromotionProgress) GetBlockingErrorOk

func (o *PromotionProgress) GetBlockingErrorOk() (*bool, bool)

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

func (*PromotionProgress) GetEncryptedSecrets

func (o *PromotionProgress) GetEncryptedSecrets() []string

GetEncryptedSecrets returns the EncryptedSecrets field value if set, zero value otherwise.

func (*PromotionProgress) GetEncryptedSecretsOk

func (o *PromotionProgress) GetEncryptedSecretsOk() ([]string, bool)

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

func (*PromotionProgress) GetGlobalLock

func (o *PromotionProgress) GetGlobalLock() string

GetGlobalLock returns the GlobalLock field value if set, zero value otherwise.

func (*PromotionProgress) GetGlobalLockOk

func (o *PromotionProgress) GetGlobalLockOk() (*string, bool)

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

func (*PromotionProgress) GetMessage

func (o *PromotionProgress) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*PromotionProgress) GetMessageOk

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

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

func (*PromotionProgress) GetMissingESVs

func (o *PromotionProgress) GetMissingESVs() []string

GetMissingESVs returns the MissingESVs field value if set, zero value otherwise.

func (*PromotionProgress) GetMissingESVsOk

func (o *PromotionProgress) GetMissingESVsOk() ([]string, bool)

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

func (*PromotionProgress) GetPromotionId

func (o *PromotionProgress) GetPromotionId() string

GetPromotionId returns the PromotionId field value if set, zero value otherwise.

func (*PromotionProgress) GetPromotionIdOk

func (o *PromotionProgress) GetPromotionIdOk() (*string, bool)

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

func (*PromotionProgress) GetStatus

func (o *PromotionProgress) GetStatus() string

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

func (*PromotionProgress) GetStatusOk

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

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

func (*PromotionProgress) GetTimeStamp

func (o *PromotionProgress) GetTimeStamp() string

GetTimeStamp returns the TimeStamp field value if set, zero value otherwise.

func (*PromotionProgress) GetTimeStampOk

func (o *PromotionProgress) GetTimeStampOk() (*string, 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 (*PromotionProgress) GetType

func (o *PromotionProgress) GetType() string

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

func (*PromotionProgress) GetTypeOk

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

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

func (*PromotionProgress) HasBlockingError

func (o *PromotionProgress) HasBlockingError() bool

HasBlockingError returns a boolean if a field has been set.

func (*PromotionProgress) HasEncryptedSecrets

func (o *PromotionProgress) HasEncryptedSecrets() bool

HasEncryptedSecrets returns a boolean if a field has been set.

func (*PromotionProgress) HasGlobalLock

func (o *PromotionProgress) HasGlobalLock() bool

HasGlobalLock returns a boolean if a field has been set.

func (*PromotionProgress) HasMessage

func (o *PromotionProgress) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*PromotionProgress) HasMissingESVs

func (o *PromotionProgress) HasMissingESVs() bool

HasMissingESVs returns a boolean if a field has been set.

func (*PromotionProgress) HasPromotionId

func (o *PromotionProgress) HasPromotionId() bool

HasPromotionId returns a boolean if a field has been set.

func (*PromotionProgress) HasStatus

func (o *PromotionProgress) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*PromotionProgress) HasTimeStamp

func (o *PromotionProgress) HasTimeStamp() bool

HasTimeStamp returns a boolean if a field has been set.

func (*PromotionProgress) HasType

func (o *PromotionProgress) HasType() bool

HasType returns a boolean if a field has been set.

func (PromotionProgress) MarshalJSON

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

func (*PromotionProgress) SetBlockingError

func (o *PromotionProgress) SetBlockingError(v bool)

SetBlockingError gets a reference to the given bool and assigns it to the BlockingError field.

func (*PromotionProgress) SetEncryptedSecrets

func (o *PromotionProgress) SetEncryptedSecrets(v []string)

SetEncryptedSecrets gets a reference to the given []string and assigns it to the EncryptedSecrets field.

func (*PromotionProgress) SetGlobalLock

func (o *PromotionProgress) SetGlobalLock(v string)

SetGlobalLock gets a reference to the given string and assigns it to the GlobalLock field.

func (*PromotionProgress) SetMessage

func (o *PromotionProgress) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*PromotionProgress) SetMissingESVs

func (o *PromotionProgress) SetMissingESVs(v []string)

SetMissingESVs gets a reference to the given []string and assigns it to the MissingESVs field.

func (*PromotionProgress) SetPromotionId

func (o *PromotionProgress) SetPromotionId(v string)

SetPromotionId gets a reference to the given string and assigns it to the PromotionId field.

func (*PromotionProgress) SetStatus

func (o *PromotionProgress) SetStatus(v string)

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

func (*PromotionProgress) SetTimeStamp

func (o *PromotionProgress) SetTimeStamp(v string)

SetTimeStamp gets a reference to the given string and assigns it to the TimeStamp field.

func (*PromotionProgress) SetType

func (o *PromotionProgress) SetType(v string)

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

func (PromotionProgress) ToMap

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

type PromotionReport

type PromotionReport struct {
	CreatedDate                       *string  `json:"createdDate,omitempty"`
	DryRun                            *bool    `json:"dryRun,omitempty"`
	MissingESVs                       []string `json:"missingESVs,omitempty"`
	PreviouslyIgnoredEncryptedSecrets []string `json:"previouslyIgnoredEncryptedSecrets,omitempty"`
	// The name of the admin user who requested the promotion
	Promoter *string `json:"promoter,omitempty"`
	// Promoter specified note to make it easier for them to identify what was promoted
	PromotionDescription *string                `json:"promotionDescription,omitempty"`
	PromotionId          *string                `json:"promotionId,omitempty"`
	Report               *PromotionReportReport `json:"report,omitempty"`
	ReportId             *string                `json:"reportId,omitempty"`
	ReportName           *string                `json:"reportName,omitempty"`
	// Either promotion or rollback depending on whether the report was for a config promotion or a config rollback
	Type *string `json:"type,omitempty"`
}

PromotionReport struct for PromotionReport

func NewPromotionReport

func NewPromotionReport() *PromotionReport

NewPromotionReport instantiates a new PromotionReport 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 NewPromotionReportWithDefaults

func NewPromotionReportWithDefaults() *PromotionReport

NewPromotionReportWithDefaults instantiates a new PromotionReport 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 (*PromotionReport) GetCreatedDate

func (o *PromotionReport) GetCreatedDate() string

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*PromotionReport) GetCreatedDateOk

func (o *PromotionReport) GetCreatedDateOk() (*string, bool)

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

func (*PromotionReport) GetDryRun

func (o *PromotionReport) GetDryRun() bool

GetDryRun returns the DryRun field value if set, zero value otherwise.

func (*PromotionReport) GetDryRunOk

func (o *PromotionReport) GetDryRunOk() (*bool, bool)

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

func (*PromotionReport) GetMissingESVs

func (o *PromotionReport) GetMissingESVs() []string

GetMissingESVs returns the MissingESVs field value if set, zero value otherwise.

func (*PromotionReport) GetMissingESVsOk

func (o *PromotionReport) GetMissingESVsOk() ([]string, bool)

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

func (*PromotionReport) GetPreviouslyIgnoredEncryptedSecrets

func (o *PromotionReport) GetPreviouslyIgnoredEncryptedSecrets() []string

GetPreviouslyIgnoredEncryptedSecrets returns the PreviouslyIgnoredEncryptedSecrets field value if set, zero value otherwise.

func (*PromotionReport) GetPreviouslyIgnoredEncryptedSecretsOk

func (o *PromotionReport) GetPreviouslyIgnoredEncryptedSecretsOk() ([]string, bool)

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

func (*PromotionReport) GetPromoter

func (o *PromotionReport) GetPromoter() string

GetPromoter returns the Promoter field value if set, zero value otherwise.

func (*PromotionReport) GetPromoterOk

func (o *PromotionReport) GetPromoterOk() (*string, bool)

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

func (*PromotionReport) GetPromotionDescription

func (o *PromotionReport) GetPromotionDescription() string

GetPromotionDescription returns the PromotionDescription field value if set, zero value otherwise.

func (*PromotionReport) GetPromotionDescriptionOk

func (o *PromotionReport) GetPromotionDescriptionOk() (*string, bool)

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

func (*PromotionReport) GetPromotionId

func (o *PromotionReport) GetPromotionId() string

GetPromotionId returns the PromotionId field value if set, zero value otherwise.

func (*PromotionReport) GetPromotionIdOk

func (o *PromotionReport) GetPromotionIdOk() (*string, bool)

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

func (*PromotionReport) GetReport

func (o *PromotionReport) GetReport() PromotionReportReport

GetReport returns the Report field value if set, zero value otherwise.

func (*PromotionReport) GetReportId

func (o *PromotionReport) GetReportId() string

GetReportId returns the ReportId field value if set, zero value otherwise.

func (*PromotionReport) GetReportIdOk

func (o *PromotionReport) GetReportIdOk() (*string, bool)

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

func (*PromotionReport) GetReportName

func (o *PromotionReport) GetReportName() string

GetReportName returns the ReportName field value if set, zero value otherwise.

func (*PromotionReport) GetReportNameOk

func (o *PromotionReport) GetReportNameOk() (*string, bool)

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

func (*PromotionReport) GetReportOk

func (o *PromotionReport) GetReportOk() (*PromotionReportReport, bool)

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

func (*PromotionReport) GetType

func (o *PromotionReport) GetType() string

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

func (*PromotionReport) GetTypeOk

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

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

func (*PromotionReport) HasCreatedDate

func (o *PromotionReport) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*PromotionReport) HasDryRun

func (o *PromotionReport) HasDryRun() bool

HasDryRun returns a boolean if a field has been set.

func (*PromotionReport) HasMissingESVs

func (o *PromotionReport) HasMissingESVs() bool

HasMissingESVs returns a boolean if a field has been set.

func (*PromotionReport) HasPreviouslyIgnoredEncryptedSecrets

func (o *PromotionReport) HasPreviouslyIgnoredEncryptedSecrets() bool

HasPreviouslyIgnoredEncryptedSecrets returns a boolean if a field has been set.

func (*PromotionReport) HasPromoter

func (o *PromotionReport) HasPromoter() bool

HasPromoter returns a boolean if a field has been set.

func (*PromotionReport) HasPromotionDescription

func (o *PromotionReport) HasPromotionDescription() bool

HasPromotionDescription returns a boolean if a field has been set.

func (*PromotionReport) HasPromotionId

func (o *PromotionReport) HasPromotionId() bool

HasPromotionId returns a boolean if a field has been set.

func (*PromotionReport) HasReport

func (o *PromotionReport) HasReport() bool

HasReport returns a boolean if a field has been set.

func (*PromotionReport) HasReportId

func (o *PromotionReport) HasReportId() bool

HasReportId returns a boolean if a field has been set.

func (*PromotionReport) HasReportName

func (o *PromotionReport) HasReportName() bool

HasReportName returns a boolean if a field has been set.

func (*PromotionReport) HasType

func (o *PromotionReport) HasType() bool

HasType returns a boolean if a field has been set.

func (PromotionReport) MarshalJSON

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

func (*PromotionReport) SetCreatedDate

func (o *PromotionReport) SetCreatedDate(v string)

SetCreatedDate gets a reference to the given string and assigns it to the CreatedDate field.

func (*PromotionReport) SetDryRun

func (o *PromotionReport) SetDryRun(v bool)

SetDryRun gets a reference to the given bool and assigns it to the DryRun field.

func (*PromotionReport) SetMissingESVs

func (o *PromotionReport) SetMissingESVs(v []string)

SetMissingESVs gets a reference to the given []string and assigns it to the MissingESVs field.

func (*PromotionReport) SetPreviouslyIgnoredEncryptedSecrets

func (o *PromotionReport) SetPreviouslyIgnoredEncryptedSecrets(v []string)

SetPreviouslyIgnoredEncryptedSecrets gets a reference to the given []string and assigns it to the PreviouslyIgnoredEncryptedSecrets field.

func (*PromotionReport) SetPromoter

func (o *PromotionReport) SetPromoter(v string)

SetPromoter gets a reference to the given string and assigns it to the Promoter field.

func (*PromotionReport) SetPromotionDescription

func (o *PromotionReport) SetPromotionDescription(v string)

SetPromotionDescription gets a reference to the given string and assigns it to the PromotionDescription field.

func (*PromotionReport) SetPromotionId

func (o *PromotionReport) SetPromotionId(v string)

SetPromotionId gets a reference to the given string and assigns it to the PromotionId field.

func (*PromotionReport) SetReport

func (o *PromotionReport) SetReport(v PromotionReportReport)

SetReport gets a reference to the given PromotionReportReport and assigns it to the Report field.

func (*PromotionReport) SetReportId

func (o *PromotionReport) SetReportId(v string)

SetReportId gets a reference to the given string and assigns it to the ReportId field.

func (*PromotionReport) SetReportName

func (o *PromotionReport) SetReportName(v string)

SetReportName gets a reference to the given string and assigns it to the ReportName field.

func (*PromotionReport) SetType

func (o *PromotionReport) SetType(v string)

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

func (PromotionReport) ToMap

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

type PromotionReportContent

type PromotionReportContent struct {
	ConfigChange *PromotionReportContentConfigChange `json:"configChange,omitempty"`
	ConfigItem   *string                             `json:"configItem,omitempty"`
}

PromotionReportContent struct for PromotionReportContent

func NewPromotionReportContent

func NewPromotionReportContent() *PromotionReportContent

NewPromotionReportContent instantiates a new PromotionReportContent 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 NewPromotionReportContentWithDefaults

func NewPromotionReportContentWithDefaults() *PromotionReportContent

NewPromotionReportContentWithDefaults instantiates a new PromotionReportContent 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 (*PromotionReportContent) GetConfigChange

GetConfigChange returns the ConfigChange field value if set, zero value otherwise.

func (*PromotionReportContent) GetConfigChangeOk

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

func (*PromotionReportContent) GetConfigItem

func (o *PromotionReportContent) GetConfigItem() string

GetConfigItem returns the ConfigItem field value if set, zero value otherwise.

func (*PromotionReportContent) GetConfigItemOk

func (o *PromotionReportContent) GetConfigItemOk() (*string, bool)

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

func (*PromotionReportContent) HasConfigChange

func (o *PromotionReportContent) HasConfigChange() bool

HasConfigChange returns a boolean if a field has been set.

func (*PromotionReportContent) HasConfigItem

func (o *PromotionReportContent) HasConfigItem() bool

HasConfigItem returns a boolean if a field has been set.

func (PromotionReportContent) MarshalJSON

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

func (*PromotionReportContent) SetConfigChange

SetConfigChange gets a reference to the given PromotionReportContentConfigChange and assigns it to the ConfigChange field.

func (*PromotionReportContent) SetConfigItem

func (o *PromotionReportContent) SetConfigItem(v string)

SetConfigItem gets a reference to the given string and assigns it to the ConfigItem field.

func (PromotionReportContent) ToMap

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

type PromotionReportContentConfigChange

type PromotionReportContentConfigChange struct {
	Added    []PromotionCIMeta `json:"added,omitempty"`
	Deleted  []PromotionCIMeta `json:"deleted,omitempty"`
	Modified []PromotionCIMeta `json:"modified,omitempty"`
}

PromotionReportContentConfigChange struct for PromotionReportContentConfigChange

func NewPromotionReportContentConfigChange

func NewPromotionReportContentConfigChange() *PromotionReportContentConfigChange

NewPromotionReportContentConfigChange instantiates a new PromotionReportContentConfigChange 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 NewPromotionReportContentConfigChangeWithDefaults

func NewPromotionReportContentConfigChangeWithDefaults() *PromotionReportContentConfigChange

NewPromotionReportContentConfigChangeWithDefaults instantiates a new PromotionReportContentConfigChange 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 (*PromotionReportContentConfigChange) GetAdded

GetAdded returns the Added field value if set, zero value otherwise.

func (*PromotionReportContentConfigChange) GetAddedOk

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

func (*PromotionReportContentConfigChange) GetDeleted

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*PromotionReportContentConfigChange) GetDeletedOk

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

func (*PromotionReportContentConfigChange) GetModified

GetModified returns the Modified field value if set, zero value otherwise.

func (*PromotionReportContentConfigChange) GetModifiedOk

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

func (*PromotionReportContentConfigChange) HasAdded

HasAdded returns a boolean if a field has been set.

func (*PromotionReportContentConfigChange) HasDeleted

func (o *PromotionReportContentConfigChange) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*PromotionReportContentConfigChange) HasModified

func (o *PromotionReportContentConfigChange) HasModified() bool

HasModified returns a boolean if a field has been set.

func (PromotionReportContentConfigChange) MarshalJSON

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

func (*PromotionReportContentConfigChange) SetAdded

SetAdded gets a reference to the given []PromotionCIMeta and assigns it to the Added field.

func (*PromotionReportContentConfigChange) SetDeleted

SetDeleted gets a reference to the given []PromotionCIMeta and assigns it to the Deleted field.

func (*PromotionReportContentConfigChange) SetModified

SetModified gets a reference to the given []PromotionCIMeta and assigns it to the Modified field.

func (PromotionReportContentConfigChange) ToMap

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

type PromotionReportMeta

type PromotionReportMeta struct {
	CreatedDate *string `json:"createdDate,omitempty"`
	DryRun      *bool   `json:"dryRun,omitempty"`
	Promoter    *string `json:"promoter,omitempty"`
	PromotionId *string `json:"promotionId,omitempty"`
	ReportId    *string `json:"reportId,omitempty"`
	// Either promotion or rollback depending on whether the report was for a config promotion or a config rollback
	Type *string `json:"type,omitempty"`
}

PromotionReportMeta struct for PromotionReportMeta

func NewPromotionReportMeta

func NewPromotionReportMeta() *PromotionReportMeta

NewPromotionReportMeta instantiates a new PromotionReportMeta 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 NewPromotionReportMetaWithDefaults

func NewPromotionReportMetaWithDefaults() *PromotionReportMeta

NewPromotionReportMetaWithDefaults instantiates a new PromotionReportMeta 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 (*PromotionReportMeta) GetCreatedDate

func (o *PromotionReportMeta) GetCreatedDate() string

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*PromotionReportMeta) GetCreatedDateOk

func (o *PromotionReportMeta) GetCreatedDateOk() (*string, bool)

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

func (*PromotionReportMeta) GetDryRun

func (o *PromotionReportMeta) GetDryRun() bool

GetDryRun returns the DryRun field value if set, zero value otherwise.

func (*PromotionReportMeta) GetDryRunOk

func (o *PromotionReportMeta) GetDryRunOk() (*bool, bool)

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

func (*PromotionReportMeta) GetPromoter

func (o *PromotionReportMeta) GetPromoter() string

GetPromoter returns the Promoter field value if set, zero value otherwise.

func (*PromotionReportMeta) GetPromoterOk

func (o *PromotionReportMeta) GetPromoterOk() (*string, bool)

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

func (*PromotionReportMeta) GetPromotionId

func (o *PromotionReportMeta) GetPromotionId() string

GetPromotionId returns the PromotionId field value if set, zero value otherwise.

func (*PromotionReportMeta) GetPromotionIdOk

func (o *PromotionReportMeta) GetPromotionIdOk() (*string, bool)

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

func (*PromotionReportMeta) GetReportId

func (o *PromotionReportMeta) GetReportId() string

GetReportId returns the ReportId field value if set, zero value otherwise.

func (*PromotionReportMeta) GetReportIdOk

func (o *PromotionReportMeta) GetReportIdOk() (*string, bool)

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

func (*PromotionReportMeta) GetType

func (o *PromotionReportMeta) GetType() string

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

func (*PromotionReportMeta) GetTypeOk

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

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

func (*PromotionReportMeta) HasCreatedDate

func (o *PromotionReportMeta) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*PromotionReportMeta) HasDryRun

func (o *PromotionReportMeta) HasDryRun() bool

HasDryRun returns a boolean if a field has been set.

func (*PromotionReportMeta) HasPromoter

func (o *PromotionReportMeta) HasPromoter() bool

HasPromoter returns a boolean if a field has been set.

func (*PromotionReportMeta) HasPromotionId

func (o *PromotionReportMeta) HasPromotionId() bool

HasPromotionId returns a boolean if a field has been set.

func (*PromotionReportMeta) HasReportId

func (o *PromotionReportMeta) HasReportId() bool

HasReportId returns a boolean if a field has been set.

func (*PromotionReportMeta) HasType

func (o *PromotionReportMeta) HasType() bool

HasType returns a boolean if a field has been set.

func (PromotionReportMeta) MarshalJSON

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

func (*PromotionReportMeta) SetCreatedDate

func (o *PromotionReportMeta) SetCreatedDate(v string)

SetCreatedDate gets a reference to the given string and assigns it to the CreatedDate field.

func (*PromotionReportMeta) SetDryRun

func (o *PromotionReportMeta) SetDryRun(v bool)

SetDryRun gets a reference to the given bool and assigns it to the DryRun field.

func (*PromotionReportMeta) SetPromoter

func (o *PromotionReportMeta) SetPromoter(v string)

SetPromoter gets a reference to the given string and assigns it to the Promoter field.

func (*PromotionReportMeta) SetPromotionId

func (o *PromotionReportMeta) SetPromotionId(v string)

SetPromotionId gets a reference to the given string and assigns it to the PromotionId field.

func (*PromotionReportMeta) SetReportId

func (o *PromotionReportMeta) SetReportId(v string)

SetReportId gets a reference to the given string and assigns it to the ReportId field.

func (*PromotionReportMeta) SetType

func (o *PromotionReportMeta) SetType(v string)

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

func (PromotionReportMeta) ToMap

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

type PromotionReportReport

type PromotionReportReport struct {
	AMConfig  []PromotionReportContent `json:"AMConfig,omitempty"`
	IDMConfig []PromotionReportContent `json:"IDMConfig,omitempty"`
}

PromotionReportReport struct for PromotionReportReport

func NewPromotionReportReport

func NewPromotionReportReport() *PromotionReportReport

NewPromotionReportReport instantiates a new PromotionReportReport 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 NewPromotionReportReportWithDefaults

func NewPromotionReportReportWithDefaults() *PromotionReportReport

NewPromotionReportReportWithDefaults instantiates a new PromotionReportReport 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 (*PromotionReportReport) GetAMConfig

func (o *PromotionReportReport) GetAMConfig() []PromotionReportContent

GetAMConfig returns the AMConfig field value if set, zero value otherwise.

func (*PromotionReportReport) GetAMConfigOk

func (o *PromotionReportReport) GetAMConfigOk() ([]PromotionReportContent, bool)

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

func (*PromotionReportReport) GetIDMConfig

func (o *PromotionReportReport) GetIDMConfig() []PromotionReportContent

GetIDMConfig returns the IDMConfig field value if set, zero value otherwise.

func (*PromotionReportReport) GetIDMConfigOk

func (o *PromotionReportReport) GetIDMConfigOk() ([]PromotionReportContent, bool)

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

func (*PromotionReportReport) HasAMConfig

func (o *PromotionReportReport) HasAMConfig() bool

HasAMConfig returns a boolean if a field has been set.

func (*PromotionReportReport) HasIDMConfig

func (o *PromotionReportReport) HasIDMConfig() bool

HasIDMConfig returns a boolean if a field has been set.

func (PromotionReportReport) MarshalJSON

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

func (*PromotionReportReport) SetAMConfig

func (o *PromotionReportReport) SetAMConfig(v []PromotionReportContent)

SetAMConfig gets a reference to the given []PromotionReportContent and assigns it to the AMConfig field.

func (*PromotionReportReport) SetIDMConfig

func (o *PromotionReportReport) SetIDMConfig(v []PromotionReportContent)

SetIDMConfig gets a reference to the given []PromotionReportContent and assigns it to the IDMConfig field.

func (PromotionReportReport) ToMap

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

type PromotionRequest

type PromotionRequest struct {
	// A boolean denoting whether this a dry run
	DryRun bool `json:"dryRun"`
	// A boolean denoting whether or not to ignore encrypted secrets detected in config during the promotion
	IgnoreEncryptedSecrets *bool `json:"ignoreEncryptedSecrets,omitempty"`
	// The name of the admin user who initiated the promotion
	Promoter *string `json:"promoter,omitempty"`
	// Promoter specified note to make it easier for them to identify what was promoted
	PromotionDescription *string `json:"promotionDescription,omitempty"`
	// A boolean denoting whether or not to automatically unlock the environments after a successful promotion
	UnlockEnvironmentsAfterPromotion *bool `json:"unlockEnvironmentsAfterPromotion,omitempty"`
	// A string denoting the Zendesk ticket reference to be added to the promotion commit message
	ZendeskTicketReference *string `json:"zendeskTicketReference,omitempty"`
}

PromotionRequest struct for PromotionRequest

func NewPromotionRequest

func NewPromotionRequest(dryRun bool) *PromotionRequest

NewPromotionRequest instantiates a new PromotionRequest 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 NewPromotionRequestWithDefaults

func NewPromotionRequestWithDefaults() *PromotionRequest

NewPromotionRequestWithDefaults instantiates a new PromotionRequest 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 (*PromotionRequest) GetDryRun

func (o *PromotionRequest) GetDryRun() bool

GetDryRun returns the DryRun field value

func (*PromotionRequest) GetDryRunOk

func (o *PromotionRequest) GetDryRunOk() (*bool, bool)

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

func (*PromotionRequest) GetIgnoreEncryptedSecrets

func (o *PromotionRequest) GetIgnoreEncryptedSecrets() bool

GetIgnoreEncryptedSecrets returns the IgnoreEncryptedSecrets field value if set, zero value otherwise.

func (*PromotionRequest) GetIgnoreEncryptedSecretsOk

func (o *PromotionRequest) GetIgnoreEncryptedSecretsOk() (*bool, bool)

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

func (*PromotionRequest) GetPromoter

func (o *PromotionRequest) GetPromoter() string

GetPromoter returns the Promoter field value if set, zero value otherwise.

func (*PromotionRequest) GetPromoterOk

func (o *PromotionRequest) GetPromoterOk() (*string, bool)

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

func (*PromotionRequest) GetPromotionDescription

func (o *PromotionRequest) GetPromotionDescription() string

GetPromotionDescription returns the PromotionDescription field value if set, zero value otherwise.

func (*PromotionRequest) GetPromotionDescriptionOk

func (o *PromotionRequest) GetPromotionDescriptionOk() (*string, bool)

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

func (*PromotionRequest) GetUnlockEnvironmentsAfterPromotion

func (o *PromotionRequest) GetUnlockEnvironmentsAfterPromotion() bool

GetUnlockEnvironmentsAfterPromotion returns the UnlockEnvironmentsAfterPromotion field value if set, zero value otherwise.

func (*PromotionRequest) GetUnlockEnvironmentsAfterPromotionOk

func (o *PromotionRequest) GetUnlockEnvironmentsAfterPromotionOk() (*bool, bool)

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

func (*PromotionRequest) GetZendeskTicketReference

func (o *PromotionRequest) GetZendeskTicketReference() string

GetZendeskTicketReference returns the ZendeskTicketReference field value if set, zero value otherwise.

func (*PromotionRequest) GetZendeskTicketReferenceOk

func (o *PromotionRequest) GetZendeskTicketReferenceOk() (*string, bool)

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

func (*PromotionRequest) HasIgnoreEncryptedSecrets

func (o *PromotionRequest) HasIgnoreEncryptedSecrets() bool

HasIgnoreEncryptedSecrets returns a boolean if a field has been set.

func (*PromotionRequest) HasPromoter

func (o *PromotionRequest) HasPromoter() bool

HasPromoter returns a boolean if a field has been set.

func (*PromotionRequest) HasPromotionDescription

func (o *PromotionRequest) HasPromotionDescription() bool

HasPromotionDescription returns a boolean if a field has been set.

func (*PromotionRequest) HasUnlockEnvironmentsAfterPromotion

func (o *PromotionRequest) HasUnlockEnvironmentsAfterPromotion() bool

HasUnlockEnvironmentsAfterPromotion returns a boolean if a field has been set.

func (*PromotionRequest) HasZendeskTicketReference

func (o *PromotionRequest) HasZendeskTicketReference() bool

HasZendeskTicketReference returns a boolean if a field has been set.

func (PromotionRequest) MarshalJSON

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

func (*PromotionRequest) SetDryRun

func (o *PromotionRequest) SetDryRun(v bool)

SetDryRun sets field value

func (*PromotionRequest) SetIgnoreEncryptedSecrets

func (o *PromotionRequest) SetIgnoreEncryptedSecrets(v bool)

SetIgnoreEncryptedSecrets gets a reference to the given bool and assigns it to the IgnoreEncryptedSecrets field.

func (*PromotionRequest) SetPromoter

func (o *PromotionRequest) SetPromoter(v string)

SetPromoter gets a reference to the given string and assigns it to the Promoter field.

func (*PromotionRequest) SetPromotionDescription

func (o *PromotionRequest) SetPromotionDescription(v string)

SetPromotionDescription gets a reference to the given string and assigns it to the PromotionDescription field.

func (*PromotionRequest) SetUnlockEnvironmentsAfterPromotion

func (o *PromotionRequest) SetUnlockEnvironmentsAfterPromotion(v bool)

SetUnlockEnvironmentsAfterPromotion gets a reference to the given bool and assigns it to the UnlockEnvironmentsAfterPromotion field.

func (*PromotionRequest) SetZendeskTicketReference

func (o *PromotionRequest) SetZendeskTicketReference(v string)

SetZendeskTicketReference gets a reference to the given string and assigns it to the ZendeskTicketReference field.

func (PromotionRequest) ToMap

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

type PromotionStart

type PromotionStart struct {
	Result *string `json:"result,omitempty"`
}

PromotionStart struct for PromotionStart

func NewPromotionStart

func NewPromotionStart() *PromotionStart

NewPromotionStart instantiates a new PromotionStart 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 NewPromotionStartWithDefaults

func NewPromotionStartWithDefaults() *PromotionStart

NewPromotionStartWithDefaults instantiates a new PromotionStart 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 (*PromotionStart) GetResult

func (o *PromotionStart) GetResult() string

GetResult returns the Result field value if set, zero value otherwise.

func (*PromotionStart) GetResultOk

func (o *PromotionStart) GetResultOk() (*string, bool)

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

func (*PromotionStart) HasResult

func (o *PromotionStart) HasResult() bool

HasResult returns a boolean if a field has been set.

func (PromotionStart) MarshalJSON

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

func (*PromotionStart) SetResult

func (o *PromotionStart) SetResult(v string)

SetResult gets a reference to the given string and assigns it to the Result field.

func (PromotionStart) ToMap

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

type PromotionStartLocking

type PromotionStartLocking struct {
	Description *string `json:"description,omitempty"`
	PromotionId *string `json:"promotionId,omitempty"`
	Result      *string `json:"result,omitempty"`
}

PromotionStartLocking struct for PromotionStartLocking

func NewPromotionStartLocking

func NewPromotionStartLocking() *PromotionStartLocking

NewPromotionStartLocking instantiates a new PromotionStartLocking 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 NewPromotionStartLockingWithDefaults

func NewPromotionStartLockingWithDefaults() *PromotionStartLocking

NewPromotionStartLockingWithDefaults instantiates a new PromotionStartLocking 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 (*PromotionStartLocking) GetDescription

func (o *PromotionStartLocking) GetDescription() string

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

func (*PromotionStartLocking) GetDescriptionOk

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

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

func (*PromotionStartLocking) GetPromotionId

func (o *PromotionStartLocking) GetPromotionId() string

GetPromotionId returns the PromotionId field value if set, zero value otherwise.

func (*PromotionStartLocking) GetPromotionIdOk

func (o *PromotionStartLocking) GetPromotionIdOk() (*string, bool)

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

func (*PromotionStartLocking) GetResult

func (o *PromotionStartLocking) GetResult() string

GetResult returns the Result field value if set, zero value otherwise.

func (*PromotionStartLocking) GetResultOk

func (o *PromotionStartLocking) GetResultOk() (*string, bool)

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

func (*PromotionStartLocking) HasDescription

func (o *PromotionStartLocking) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*PromotionStartLocking) HasPromotionId

func (o *PromotionStartLocking) HasPromotionId() bool

HasPromotionId returns a boolean if a field has been set.

func (*PromotionStartLocking) HasResult

func (o *PromotionStartLocking) HasResult() bool

HasResult returns a boolean if a field has been set.

func (PromotionStartLocking) MarshalJSON

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

func (*PromotionStartLocking) SetDescription

func (o *PromotionStartLocking) SetDescription(v string)

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

func (*PromotionStartLocking) SetPromotionId

func (o *PromotionStartLocking) SetPromotionId(v string)

SetPromotionId gets a reference to the given string and assigns it to the PromotionId field.

func (*PromotionStartLocking) SetResult

func (o *PromotionStartLocking) SetResult(v string)

SetResult gets a reference to the given string and assigns it to the Result field.

func (PromotionStartLocking) ToMap

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

type PromotionStartUnlocking

type PromotionStartUnlocking struct {
	Description *string `json:"description,omitempty"`
	PromotionId *string `json:"promotionId,omitempty"`
	Result      *string `json:"result,omitempty"`
}

PromotionStartUnlocking struct for PromotionStartUnlocking

func NewPromotionStartUnlocking

func NewPromotionStartUnlocking() *PromotionStartUnlocking

NewPromotionStartUnlocking instantiates a new PromotionStartUnlocking 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 NewPromotionStartUnlockingWithDefaults

func NewPromotionStartUnlockingWithDefaults() *PromotionStartUnlocking

NewPromotionStartUnlockingWithDefaults instantiates a new PromotionStartUnlocking 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 (*PromotionStartUnlocking) GetDescription

func (o *PromotionStartUnlocking) GetDescription() string

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

func (*PromotionStartUnlocking) GetDescriptionOk

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

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

func (*PromotionStartUnlocking) GetPromotionId

func (o *PromotionStartUnlocking) GetPromotionId() string

GetPromotionId returns the PromotionId field value if set, zero value otherwise.

func (*PromotionStartUnlocking) GetPromotionIdOk

func (o *PromotionStartUnlocking) GetPromotionIdOk() (*string, bool)

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

func (*PromotionStartUnlocking) GetResult

func (o *PromotionStartUnlocking) GetResult() string

GetResult returns the Result field value if set, zero value otherwise.

func (*PromotionStartUnlocking) GetResultOk

func (o *PromotionStartUnlocking) GetResultOk() (*string, bool)

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

func (*PromotionStartUnlocking) HasDescription

func (o *PromotionStartUnlocking) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*PromotionStartUnlocking) HasPromotionId

func (o *PromotionStartUnlocking) HasPromotionId() bool

HasPromotionId returns a boolean if a field has been set.

func (*PromotionStartUnlocking) HasResult

func (o *PromotionStartUnlocking) HasResult() bool

HasResult returns a boolean if a field has been set.

func (PromotionStartUnlocking) MarshalJSON

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

func (*PromotionStartUnlocking) SetDescription

func (o *PromotionStartUnlocking) SetDescription(v string)

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

func (*PromotionStartUnlocking) SetPromotionId

func (o *PromotionStartUnlocking) SetPromotionId(v string)

SetPromotionId gets a reference to the given string and assigns it to the PromotionId field.

func (*PromotionStartUnlocking) SetResult

func (o *PromotionStartUnlocking) SetResult(v string)

SetResult gets a reference to the given string and assigns it to the Result field.

func (PromotionStartUnlocking) ToMap

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

type PromotionUnlocked

type PromotionUnlocked struct {
	Description *string `json:"description,omitempty"`
	PromotionId *string `json:"promotionId,omitempty"`
	Result      *string `json:"result,omitempty"`
}

PromotionUnlocked struct for PromotionUnlocked

func NewPromotionUnlocked

func NewPromotionUnlocked() *PromotionUnlocked

NewPromotionUnlocked instantiates a new PromotionUnlocked 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 NewPromotionUnlockedWithDefaults

func NewPromotionUnlockedWithDefaults() *PromotionUnlocked

NewPromotionUnlockedWithDefaults instantiates a new PromotionUnlocked 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 (*PromotionUnlocked) GetDescription

func (o *PromotionUnlocked) GetDescription() string

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

func (*PromotionUnlocked) GetDescriptionOk

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

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

func (*PromotionUnlocked) GetPromotionId

func (o *PromotionUnlocked) GetPromotionId() string

GetPromotionId returns the PromotionId field value if set, zero value otherwise.

func (*PromotionUnlocked) GetPromotionIdOk

func (o *PromotionUnlocked) GetPromotionIdOk() (*string, bool)

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

func (*PromotionUnlocked) GetResult

func (o *PromotionUnlocked) GetResult() string

GetResult returns the Result field value if set, zero value otherwise.

func (*PromotionUnlocked) GetResultOk

func (o *PromotionUnlocked) GetResultOk() (*string, bool)

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

func (*PromotionUnlocked) HasDescription

func (o *PromotionUnlocked) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*PromotionUnlocked) HasPromotionId

func (o *PromotionUnlocked) HasPromotionId() bool

HasPromotionId returns a boolean if a field has been set.

func (*PromotionUnlocked) HasResult

func (o *PromotionUnlocked) HasResult() bool

HasResult returns a boolean if a field has been set.

func (PromotionUnlocked) MarshalJSON

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

func (*PromotionUnlocked) SetDescription

func (o *PromotionUnlocked) SetDescription(v string)

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

func (*PromotionUnlocked) SetPromotionId

func (o *PromotionUnlocked) SetPromotionId(v string)

SetPromotionId gets a reference to the given string and assigns it to the PromotionId field.

func (*PromotionUnlocked) SetResult

func (o *PromotionUnlocked) SetResult(v string)

SetResult gets a reference to the given string and assigns it to the Result field.

func (PromotionUnlocked) ToMap

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

type Release

type Release struct {
	CurrentVersion *string      `json:"currentVersion,omitempty"`
	NextUpgrade    NullableTime `json:"nextUpgrade,omitempty"`
}

Release struct for Release

func NewRelease

func NewRelease() *Release

NewRelease instantiates a new Release 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 NewReleaseWithDefaults

func NewReleaseWithDefaults() *Release

NewReleaseWithDefaults instantiates a new Release 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 (*Release) GetCurrentVersion

func (o *Release) GetCurrentVersion() string

GetCurrentVersion returns the CurrentVersion field value if set, zero value otherwise.

func (*Release) GetCurrentVersionOk

func (o *Release) GetCurrentVersionOk() (*string, bool)

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

func (*Release) GetNextUpgrade

func (o *Release) GetNextUpgrade() time.Time

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

func (*Release) GetNextUpgradeOk

func (o *Release) GetNextUpgradeOk() (*time.Time, bool)

GetNextUpgradeOk returns a tuple with the NextUpgrade 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 (*Release) HasCurrentVersion

func (o *Release) HasCurrentVersion() bool

HasCurrentVersion returns a boolean if a field has been set.

func (*Release) HasNextUpgrade

func (o *Release) HasNextUpgrade() bool

HasNextUpgrade returns a boolean if a field has been set.

func (Release) MarshalJSON

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

func (*Release) SetCurrentVersion

func (o *Release) SetCurrentVersion(v string)

SetCurrentVersion gets a reference to the given string and assigns it to the CurrentVersion field.

func (*Release) SetNextUpgrade

func (o *Release) SetNextUpgrade(v time.Time)

SetNextUpgrade gets a reference to the given NullableTime and assigns it to the NextUpgrade field.

func (*Release) SetNextUpgradeNil

func (o *Release) SetNextUpgradeNil()

SetNextUpgradeNil sets the value for NextUpgrade to be an explicit nil

func (Release) ToMap

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

func (*Release) UnsetNextUpgrade

func (o *Release) UnsetNextUpgrade()

UnsetNextUpgrade ensures that no value is present for NextUpgrade, not even an explicit nil

type ReleaseAPIService

type ReleaseAPIService service

ReleaseAPIService ReleaseAPI service

func (*ReleaseAPIService) GetReleaseInfo

GetReleaseInfo Get release information

Get release information

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

func (*ReleaseAPIService) GetReleaseInfoExecute

func (a *ReleaseAPIService) GetReleaseInfoExecute(r ApiGetReleaseInfoRequest) (*Release, *http.Response, error)

Execute executes the request

@return Release

type RestartAPIService

type RestartAPIService service

RestartAPIService RestartAPI service

func (*RestartAPIService) GetRestartStatus

GetRestartStatus Get restart status

Get restart status indicating whether any upgrade or rollout restart is taking place on Advanced Identity Cloud services.

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

func (*RestartAPIService) GetRestartStatusExecute

Execute executes the request

@return EsvRestartStatus

func (*RestartAPIService) Restart

Restart Initiate restart

Initiate restart of Advanced Identity Cloud services. This will inject any new variables or secrets into Advanced Identity Cloud configuration.

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

func (*RestartAPIService) RestartExecute

Execute executes the request

@return EsvRestartStatus

type RollbackRequest

type RollbackRequest struct {
	// The name of the admin user who initiated the promotion
	Promoter *string `json:"promoter,omitempty"`
	// Promoter specified note to make it easier for them to identify what was promoted
	PromotionDescription *string `json:"promotionDescription,omitempty"`
	// A boolean denoting whether or not to automatically unlock the environments after a successful promotion
	UnlockEnvironmentsAfterPromotion *bool `json:"unlockEnvironmentsAfterPromotion,omitempty"`
	// A string denoting the Zendesk ticket reference to be added to the promotion commit message
	ZendeskTicketReference *string `json:"zendeskTicketReference,omitempty"`
}

RollbackRequest struct for RollbackRequest

func NewRollbackRequest

func NewRollbackRequest() *RollbackRequest

NewRollbackRequest instantiates a new RollbackRequest 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 NewRollbackRequestWithDefaults

func NewRollbackRequestWithDefaults() *RollbackRequest

NewRollbackRequestWithDefaults instantiates a new RollbackRequest 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 (*RollbackRequest) GetPromoter

func (o *RollbackRequest) GetPromoter() string

GetPromoter returns the Promoter field value if set, zero value otherwise.

func (*RollbackRequest) GetPromoterOk

func (o *RollbackRequest) GetPromoterOk() (*string, bool)

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

func (*RollbackRequest) GetPromotionDescription

func (o *RollbackRequest) GetPromotionDescription() string

GetPromotionDescription returns the PromotionDescription field value if set, zero value otherwise.

func (*RollbackRequest) GetPromotionDescriptionOk

func (o *RollbackRequest) GetPromotionDescriptionOk() (*string, bool)

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

func (*RollbackRequest) GetUnlockEnvironmentsAfterPromotion

func (o *RollbackRequest) GetUnlockEnvironmentsAfterPromotion() bool

GetUnlockEnvironmentsAfterPromotion returns the UnlockEnvironmentsAfterPromotion field value if set, zero value otherwise.

func (*RollbackRequest) GetUnlockEnvironmentsAfterPromotionOk

func (o *RollbackRequest) GetUnlockEnvironmentsAfterPromotionOk() (*bool, bool)

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

func (*RollbackRequest) GetZendeskTicketReference

func (o *RollbackRequest) GetZendeskTicketReference() string

GetZendeskTicketReference returns the ZendeskTicketReference field value if set, zero value otherwise.

func (*RollbackRequest) GetZendeskTicketReferenceOk

func (o *RollbackRequest) GetZendeskTicketReferenceOk() (*string, bool)

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

func (*RollbackRequest) HasPromoter

func (o *RollbackRequest) HasPromoter() bool

HasPromoter returns a boolean if a field has been set.

func (*RollbackRequest) HasPromotionDescription

func (o *RollbackRequest) HasPromotionDescription() bool

HasPromotionDescription returns a boolean if a field has been set.

func (*RollbackRequest) HasUnlockEnvironmentsAfterPromotion

func (o *RollbackRequest) HasUnlockEnvironmentsAfterPromotion() bool

HasUnlockEnvironmentsAfterPromotion returns a boolean if a field has been set.

func (*RollbackRequest) HasZendeskTicketReference

func (o *RollbackRequest) HasZendeskTicketReference() bool

HasZendeskTicketReference returns a boolean if a field has been set.

func (RollbackRequest) MarshalJSON

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

func (*RollbackRequest) SetPromoter

func (o *RollbackRequest) SetPromoter(v string)

SetPromoter gets a reference to the given string and assigns it to the Promoter field.

func (*RollbackRequest) SetPromotionDescription

func (o *RollbackRequest) SetPromotionDescription(v string)

SetPromotionDescription gets a reference to the given string and assigns it to the PromotionDescription field.

func (*RollbackRequest) SetUnlockEnvironmentsAfterPromotion

func (o *RollbackRequest) SetUnlockEnvironmentsAfterPromotion(v bool)

SetUnlockEnvironmentsAfterPromotion gets a reference to the given bool and assigns it to the UnlockEnvironmentsAfterPromotion field.

func (*RollbackRequest) SetZendeskTicketReference

func (o *RollbackRequest) SetZendeskTicketReference(v string)

SetZendeskTicketReference gets a reference to the given string and assigns it to the ZendeskTicketReference field.

func (RollbackRequest) ToMap

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

type RollbackStart

type RollbackStart struct {
	Result *string `json:"result,omitempty"`
}

RollbackStart struct for RollbackStart

func NewRollbackStart

func NewRollbackStart() *RollbackStart

NewRollbackStart instantiates a new RollbackStart 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 NewRollbackStartWithDefaults

func NewRollbackStartWithDefaults() *RollbackStart

NewRollbackStartWithDefaults instantiates a new RollbackStart 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 (*RollbackStart) GetResult

func (o *RollbackStart) GetResult() string

GetResult returns the Result field value if set, zero value otherwise.

func (*RollbackStart) GetResultOk

func (o *RollbackStart) GetResultOk() (*string, bool)

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

func (*RollbackStart) HasResult

func (o *RollbackStart) HasResult() bool

HasResult returns a boolean if a field has been set.

func (RollbackStart) MarshalJSON

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

func (*RollbackStart) SetResult

func (o *RollbackStart) SetResult(v string)

SetResult gets a reference to the given string and assigns it to the Result field.

func (RollbackStart) ToMap

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

type SDKInterfaceFunc

type SDKInterfaceFunc func() (any, *http.Response, error)

type SSOCookie

type SSOCookie struct {
	Name string `json:"name"`
}

SSOCookie struct for SSOCookie

func NewSSOCookie

func NewSSOCookie(name string) *SSOCookie

NewSSOCookie instantiates a new SSOCookie 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 NewSSOCookieWithDefaults

func NewSSOCookieWithDefaults() *SSOCookie

NewSSOCookieWithDefaults instantiates a new SSOCookie 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 (*SSOCookie) GetName

func (o *SSOCookie) GetName() string

GetName returns the Name field value

func (*SSOCookie) GetNameOk

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

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

func (SSOCookie) MarshalJSON

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

func (*SSOCookie) SetName

func (o *SSOCookie) SetName(v string)

SetName sets field value

func (SSOCookie) ToMap

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

type SSOCookieAPIService

type SSOCookieAPIService service

SSOCookieAPIService SSOCookieAPI service

func (*SSOCookieAPIService) GetSSOCookie

GetSSOCookie Get SSO cookie configuration

Returns current SSO cookie configuration

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

func (*SSOCookieAPIService) GetSSOCookieExecute

func (a *SSOCookieAPIService) GetSSOCookieExecute(r ApiGetSSOCookieRequest) (*SSOCookie, *http.Response, error)

Execute executes the request

@return SSOCookie

func (*SSOCookieAPIService) ResetSSOCookie

ResetSSOCookie Reset SSO cookie configuration

Reset SSO cookie configuration to default

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

func (*SSOCookieAPIService) ResetSSOCookieExecute

func (a *SSOCookieAPIService) ResetSSOCookieExecute(r ApiResetSSOCookieRequest) (*SSOCookie, *http.Response, error)

Execute executes the request

@return SSOCookie

func (*SSOCookieAPIService) SetSSOCookie

SetSSOCookie Set SSO cookie configuration

Specify SSO cookie configuration

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

func (*SSOCookieAPIService) SetSSOCookieExecute

func (a *SSOCookieAPIService) SetSSOCookieExecute(r ApiSetSSOCookieRequest) (*SSOCookie, *http.Response, error)

Execute executes the request

@return SSOCookie

type SecretsAPIService

type SecretsAPIService service

SecretsAPIService SecretsAPI service

func (*SecretsAPIService) ActionSecret

func (a *SecretsAPIService) ActionSecret(ctx context.Context, secretId string) ApiActionSecretRequest

ActionSecret Set a secret description

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param secretId ID of the secret
@return ApiActionSecretRequest

func (*SecretsAPIService) ActionSecretExecute

func (a *SecretsAPIService) ActionSecretExecute(r ApiActionSecretRequest) (*http.Response, error)

Execute executes the request

func (*SecretsAPIService) ChangeSecretVersion

func (a *SecretsAPIService) ChangeSecretVersion(ctx context.Context, secretId string, versionId string) ApiChangeSecretVersionRequest

ChangeSecretVersion Update the status of a version of a secret

Update the status of a version of a secret to either ENABLED or DISABLED. The latest version of a secret cannot be updated to a status of DISABLED.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param secretId ID of the secret
@param versionId ID of the secret version
@return ApiChangeSecretVersionRequest

func (*SecretsAPIService) ChangeSecretVersionExecute

Execute executes the request

@return EsvSecretVersionResponse

func (*SecretsAPIService) CreateSecret

func (a *SecretsAPIService) CreateSecret(ctx context.Context, secretId string) ApiCreateSecretRequest

CreateSecret Create a secret

Create a secret and its first secret version.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param secretId ID of the secret
@return ApiCreateSecretRequest

func (*SecretsAPIService) CreateSecretExecute

Execute executes the request

@return EsvSecretResponse

func (*SecretsAPIService) CreateSecretVersion

func (a *SecretsAPIService) CreateSecretVersion(ctx context.Context, secretId string) ApiCreateSecretVersionRequest

CreateSecretVersion Create a new version of a secret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param secretId ID of the secret
@return ApiCreateSecretVersionRequest

func (*SecretsAPIService) CreateSecretVersionExecute

Execute executes the request

@return EsvSecretVersionResponse

func (*SecretsAPIService) DeleteSecret

func (a *SecretsAPIService) DeleteSecret(ctx context.Context, secretId string) ApiDeleteSecretRequest

DeleteSecret Delete a secret

Delete a secret and all its secret versions and secret version values.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param secretId ID of the secret
@return ApiDeleteSecretRequest

func (*SecretsAPIService) DeleteSecretExecute

Execute executes the request

@return EsvSecretResponse

func (*SecretsAPIService) DeleteSecretVersion

func (a *SecretsAPIService) DeleteSecretVersion(ctx context.Context, secretId string, versionId string) ApiDeleteSecretVersionRequest

DeleteSecretVersion Delete a version of a secret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param secretId ID of the secret
@param versionId ID of the secret version
@return ApiDeleteSecretVersionRequest

func (*SecretsAPIService) DeleteSecretVersionExecute

Execute executes the request

@return EsvSecretVersionResponse

func (*SecretsAPIService) GetAllSecrets

GetAllSecrets Get all secrets

Get all secrets, but not their secret versions or secret version values.

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

func (*SecretsAPIService) GetAllSecretsExecute

Execute executes the request

@return EsvSecretsListResponse

func (*SecretsAPIService) GetSecret

func (a *SecretsAPIService) GetSecret(ctx context.Context, secretId string) ApiGetSecretRequest

GetSecret Get a secret

Get a secret, but not its secret versions or secret version values.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param secretId ID of the secret
@return ApiGetSecretRequest

func (*SecretsAPIService) GetSecretExecute

Execute executes the request

@return EsvSecretResponse

func (*SecretsAPIService) GetSecretVersion

func (a *SecretsAPIService) GetSecretVersion(ctx context.Context, secretId string, versionId string) ApiGetSecretVersionRequest

GetSecretVersion Get a version of a secret

Get a version and version metadata of a secret. It is not possible to view the secret value.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param secretId ID of the secret
@param versionId ID of the secret version
@return ApiGetSecretVersionRequest

func (*SecretsAPIService) GetSecretVersionExecute

Execute executes the request

@return EsvSecretVersionResponse

func (*SecretsAPIService) GetSecretVersions

func (a *SecretsAPIService) GetSecretVersions(ctx context.Context, secretId string) ApiGetSecretVersionsRequest

GetSecretVersions Get all versions of a secret

Get all versions and version metadata of a secret. It is not possible to view the secret values.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param secretId ID of the secret
@return ApiGetSecretVersionsRequest

func (*SecretsAPIService) GetSecretVersionsExecute

Execute executes the request

@return []EsvSecretVersionResponse

type ServerConfiguration

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

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

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

URL formats template on a index using given variables

type ServerVariable

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

ServerVariable stores the information about a server variable

type ServiceAccountTokenSource added in v0.3.0

type ServiceAccountTokenSource struct {
	TenantFqdn               string
	ServiceAccountId         string
	ServiceAccountPrivateKey string
	Scopes                   []string
}

func (ServiceAccountTokenSource) Token added in v0.3.0

type Unauthorized

type Unauthorized struct {
	Code    *int64  `json:"code,omitempty"`
	Message *string `json:"message,omitempty"`
}

Unauthorized struct for Unauthorized

func NewUnauthorized

func NewUnauthorized() *Unauthorized

NewUnauthorized instantiates a new Unauthorized 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 NewUnauthorizedWithDefaults

func NewUnauthorizedWithDefaults() *Unauthorized

NewUnauthorizedWithDefaults instantiates a new Unauthorized 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 (*Unauthorized) GetCode

func (o *Unauthorized) GetCode() int64

GetCode returns the Code field value if set, zero value otherwise.

func (*Unauthorized) GetCodeOk

func (o *Unauthorized) GetCodeOk() (*int64, bool)

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

func (*Unauthorized) GetMessage

func (o *Unauthorized) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*Unauthorized) GetMessageOk

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

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

func (*Unauthorized) HasCode

func (o *Unauthorized) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Unauthorized) HasMessage

func (o *Unauthorized) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (Unauthorized) MarshalJSON

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

func (*Unauthorized) SetCode

func (o *Unauthorized) SetCode(v int64)

SetCode gets a reference to the given int64 and assigns it to the Code field.

func (*Unauthorized) SetMessage

func (o *Unauthorized) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (Unauthorized) ToMap

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

type UpdateCertificateRequest

type UpdateCertificateRequest struct {
	// The active status of the certificate. Set this to true for the certificate to actively be served.
	Active *bool `json:"active,omitempty"`
}

UpdateCertificateRequest struct for UpdateCertificateRequest

func NewUpdateCertificateRequest

func NewUpdateCertificateRequest() *UpdateCertificateRequest

NewUpdateCertificateRequest instantiates a new UpdateCertificateRequest 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 NewUpdateCertificateRequestWithDefaults

func NewUpdateCertificateRequestWithDefaults() *UpdateCertificateRequest

NewUpdateCertificateRequestWithDefaults instantiates a new UpdateCertificateRequest 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 (*UpdateCertificateRequest) GetActive

func (o *UpdateCertificateRequest) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*UpdateCertificateRequest) GetActiveOk

func (o *UpdateCertificateRequest) GetActiveOk() (*bool, bool)

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

func (*UpdateCertificateRequest) HasActive

func (o *UpdateCertificateRequest) HasActive() bool

HasActive returns a boolean if a field has been set.

func (UpdateCertificateRequest) MarshalJSON

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

func (*UpdateCertificateRequest) SetActive

func (o *UpdateCertificateRequest) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (UpdateCertificateRequest) ToMap

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

type UpdateCertificateSigningRequestRequest

type UpdateCertificateSigningRequestRequest struct {
	// The matching signed certificate for the request. This should only be set on update requests to upload the certificate.
	Certificate string `json:"certificate"`
}

UpdateCertificateSigningRequestRequest struct for UpdateCertificateSigningRequestRequest

func NewUpdateCertificateSigningRequestRequest

func NewUpdateCertificateSigningRequestRequest(certificate string) *UpdateCertificateSigningRequestRequest

NewUpdateCertificateSigningRequestRequest instantiates a new UpdateCertificateSigningRequestRequest 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 NewUpdateCertificateSigningRequestRequestWithDefaults

func NewUpdateCertificateSigningRequestRequestWithDefaults() *UpdateCertificateSigningRequestRequest

NewUpdateCertificateSigningRequestRequestWithDefaults instantiates a new UpdateCertificateSigningRequestRequest 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 (*UpdateCertificateSigningRequestRequest) GetCertificate

func (o *UpdateCertificateSigningRequestRequest) GetCertificate() string

GetCertificate returns the Certificate field value

func (*UpdateCertificateSigningRequestRequest) GetCertificateOk

func (o *UpdateCertificateSigningRequestRequest) GetCertificateOk() (*string, bool)

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

func (UpdateCertificateSigningRequestRequest) MarshalJSON

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

func (*UpdateCertificateSigningRequestRequest) SetCertificate

func (o *UpdateCertificateSigningRequestRequest) SetCertificate(v string)

SetCertificate sets field value

func (UpdateCertificateSigningRequestRequest) ToMap

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

type VariablesAPIService

type VariablesAPIService service

VariablesAPIService VariablesAPI service

func (*VariablesAPIService) ActionVariable

func (a *VariablesAPIService) ActionVariable(ctx context.Context, variableId string) ApiActionVariableRequest

ActionVariable Set a variable description

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param variableId ID of the variable
@return ApiActionVariableRequest

func (*VariablesAPIService) ActionVariableExecute

func (a *VariablesAPIService) ActionVariableExecute(r ApiActionVariableRequest) (*http.Response, error)

Execute executes the request

func (*VariablesAPIService) CreateVariables

func (a *VariablesAPIService) CreateVariables(ctx context.Context, variableId string) ApiCreateVariablesRequest

CreateVariables Create or update a variable

Create or update a variable using a predefined name. Once created, a variable name cannot be changed.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param variableId ID of the variable
@return ApiCreateVariablesRequest

func (*VariablesAPIService) CreateVariablesExecute

Execute executes the request

@return EsvVariableResponse

func (*VariablesAPIService) DeleteVariable

func (a *VariablesAPIService) DeleteVariable(ctx context.Context, variableId string) ApiDeleteVariableRequest

DeleteVariable Delete a variable

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param variableId ID of the variable
@return ApiDeleteVariableRequest

func (*VariablesAPIService) DeleteVariableExecute

Execute executes the request

@return EsvVariableResponse

func (*VariablesAPIService) GetAllVariables

GetAllVariables Get all variables

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

func (*VariablesAPIService) GetAllVariablesExecute

Execute executes the request

@return GetAllVariables200Response

func (*VariablesAPIService) GetVariable

func (a *VariablesAPIService) GetVariable(ctx context.Context, variableId string) ApiGetVariableRequest

GetVariable Get a variable

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param variableId ID of the variable
@return ApiGetVariableRequest

func (*VariablesAPIService) GetVariableExecute

Execute executes the request

@return EsvVariableResponse

Source Files

Jump to

Keyboard shortcuts

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