ssl

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Aug 25, 2022 License: Apache-2.0 Imports: 22 Imported by: 0

README

Go API client for ssl

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

Overview

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

  • API version: 1.0.0
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientExperimentalCodegen For more information, please visit https://support.stackpath.com/

Installation

Install the following dependencies:

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

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

import sw "./ssl"

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(), sw.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(), sw.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 identifield 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(), sw.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), sw.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://gateway.stackpath.com

Class Method HTTP request Description
CertificatesApi DeleteCertificate Delete /ssl/v1/stacks/{stack_id}/certificates/{certificate_id} Delete a certificate
CertificatesApi GetCertificate Get /ssl/v1/stacks/{stack_id}/certificates/{certificate_id} Get a certificate
CertificatesApi GetCertificates Get /ssl/v1/stacks/{stack_id}/certificates Get all certificates
CertificatesApi GetLatestCertificate Get /ssl/v1/stacks/{stack_id}/certificates/{certificate_id}/latest Get a certificate's latest version
CertificatesApi RenewCertificate Post /ssl/v1/stacks/{stack_id}/certificates/{certificate_id}/renew Renew a certificate
CertificatesApi RevokeCertificate Post /ssl/v1/stacks/{stack_id}/certificates/{certificate_id}/revoke Revoke a certificate
CertificatesApi UpdateCertificate Patch /ssl/v1/stacks/{stack_id}/certificates/{certificate_id} Update a certificate

Documentation For Models

Documentation For Authorization

oauth2
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes: N/A

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)

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

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

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

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

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

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

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

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

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

Functions

func CacheExpires

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

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

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given integer 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 {
	CertificatesApi *CertificatesApiService
	// contains filtered or unexported fields
}

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

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResonse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type ApiStatus

type ApiStatus struct {
	Code    *int32             `json:"code,omitempty"`
	Details *[]ApiStatusDetail `json:"details,omitempty"`
	Message *string            `json:"message,omitempty"`
}

ApiStatus struct for ApiStatus

func NewApiStatus

func NewApiStatus() *ApiStatus

NewApiStatus instantiates a new ApiStatus 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 NewApiStatusWithDefaults

func NewApiStatusWithDefaults() *ApiStatus

NewApiStatusWithDefaults instantiates a new ApiStatus 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 (*ApiStatus) GetCode

func (o *ApiStatus) GetCode() int32

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

func (*ApiStatus) GetCodeOk

func (o *ApiStatus) GetCodeOk() (*int32, 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 (*ApiStatus) GetDetails

func (o *ApiStatus) GetDetails() []ApiStatusDetail

GetDetails returns the Details field value if set, zero value otherwise.

func (*ApiStatus) GetDetailsOk

func (o *ApiStatus) GetDetailsOk() (*[]ApiStatusDetail, bool)

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

func (*ApiStatus) GetMessage

func (o *ApiStatus) GetMessage() string

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

func (*ApiStatus) GetMessageOk

func (o *ApiStatus) 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 (*ApiStatus) HasCode

func (o *ApiStatus) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ApiStatus) HasDetails

func (o *ApiStatus) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*ApiStatus) HasMessage

func (o *ApiStatus) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (ApiStatus) MarshalJSON

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

func (*ApiStatus) SetCode

func (o *ApiStatus) SetCode(v int32)

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

func (*ApiStatus) SetDetails

func (o *ApiStatus) SetDetails(v []ApiStatusDetail)

SetDetails gets a reference to the given []ApiStatusDetail and assigns it to the Details field.

func (*ApiStatus) SetMessage

func (o *ApiStatus) SetMessage(v string)

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

type ApiStatusDetail

type ApiStatusDetail struct {
	Type string `json:"@type"`
}

ApiStatusDetail struct for ApiStatusDetail

func NewApiStatusDetail

func NewApiStatusDetail(type_ string) *ApiStatusDetail

NewApiStatusDetail instantiates a new ApiStatusDetail 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 NewApiStatusDetailWithDefaults

func NewApiStatusDetailWithDefaults() *ApiStatusDetail

NewApiStatusDetailWithDefaults instantiates a new ApiStatusDetail 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 (*ApiStatusDetail) GetType

func (o *ApiStatusDetail) GetType() string

GetType returns the Type field value

func (*ApiStatusDetail) GetTypeOk

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

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

func (ApiStatusDetail) MarshalJSON

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

func (*ApiStatusDetail) SetType

func (o *ApiStatusDetail) SetType(v string)

SetType sets field value

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 CertificateCertificate

type CertificateCertificate struct {
	StackId     *string                       `json:"stackId,omitempty"`
	Id          *string                       `json:"id,omitempty"`
	Hosts       *[]string                     `json:"hosts,omitempty"`
	Issuer      *string                       `json:"issuer,omitempty"`
	Certificate *string                       `json:"certificate,omitempty"`
	CaBundle    *string                       `json:"caBundle,omitempty"`
	Status      *CertificateCertificateStatus `json:"status,omitempty"`
	ExpiresAt   *time.Time                    `json:"expiresAt,omitempty"`
	CreatedAt   *time.Time                    `json:"createdAt,omitempty"`
	UpdatedAt   *time.Time                    `json:"updatedAt,omitempty"`
}

CertificateCertificate struct for CertificateCertificate

func NewCertificateCertificate

func NewCertificateCertificate() *CertificateCertificate

NewCertificateCertificate instantiates a new CertificateCertificate 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 NewCertificateCertificateWithDefaults

func NewCertificateCertificateWithDefaults() *CertificateCertificate

NewCertificateCertificateWithDefaults instantiates a new CertificateCertificate 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 (*CertificateCertificate) GetCaBundle

func (o *CertificateCertificate) GetCaBundle() string

GetCaBundle returns the CaBundle field value if set, zero value otherwise.

func (*CertificateCertificate) GetCaBundleOk

func (o *CertificateCertificate) GetCaBundleOk() (*string, bool)

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

func (*CertificateCertificate) GetCertificate

func (o *CertificateCertificate) GetCertificate() string

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

func (*CertificateCertificate) GetCertificateOk

func (o *CertificateCertificate) 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 (*CertificateCertificate) GetCreatedAt

func (o *CertificateCertificate) GetCreatedAt() time.Time

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

func (*CertificateCertificate) GetCreatedAtOk

func (o *CertificateCertificate) GetCreatedAtOk() (*time.Time, bool)

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

func (*CertificateCertificate) GetExpiresAt

func (o *CertificateCertificate) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*CertificateCertificate) GetExpiresAtOk

func (o *CertificateCertificate) GetExpiresAtOk() (*time.Time, bool)

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

func (*CertificateCertificate) GetHosts

func (o *CertificateCertificate) GetHosts() []string

GetHosts returns the Hosts field value if set, zero value otherwise.

func (*CertificateCertificate) GetHostsOk

func (o *CertificateCertificate) GetHostsOk() (*[]string, bool)

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

func (*CertificateCertificate) GetId

func (o *CertificateCertificate) GetId() string

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

func (*CertificateCertificate) GetIdOk

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

func (o *CertificateCertificate) GetIssuer() string

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

func (*CertificateCertificate) GetIssuerOk

func (o *CertificateCertificate) 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 (*CertificateCertificate) GetStackId

func (o *CertificateCertificate) GetStackId() string

GetStackId returns the StackId field value if set, zero value otherwise.

func (*CertificateCertificate) GetStackIdOk

func (o *CertificateCertificate) GetStackIdOk() (*string, bool)

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

func (*CertificateCertificate) GetStatus

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

func (*CertificateCertificate) GetStatusOk

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 (*CertificateCertificate) GetUpdatedAt

func (o *CertificateCertificate) GetUpdatedAt() time.Time

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

func (*CertificateCertificate) GetUpdatedAtOk

func (o *CertificateCertificate) GetUpdatedAtOk() (*time.Time, bool)

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

func (*CertificateCertificate) HasCaBundle

func (o *CertificateCertificate) HasCaBundle() bool

HasCaBundle returns a boolean if a field has been set.

func (*CertificateCertificate) HasCertificate

func (o *CertificateCertificate) HasCertificate() bool

HasCertificate returns a boolean if a field has been set.

func (*CertificateCertificate) HasCreatedAt

func (o *CertificateCertificate) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*CertificateCertificate) HasExpiresAt

func (o *CertificateCertificate) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*CertificateCertificate) HasHosts

func (o *CertificateCertificate) HasHosts() bool

HasHosts returns a boolean if a field has been set.

func (*CertificateCertificate) HasId

func (o *CertificateCertificate) HasId() bool

HasId returns a boolean if a field has been set.

func (*CertificateCertificate) HasIssuer

func (o *CertificateCertificate) HasIssuer() bool

HasIssuer returns a boolean if a field has been set.

func (*CertificateCertificate) HasStackId

func (o *CertificateCertificate) HasStackId() bool

HasStackId returns a boolean if a field has been set.

func (*CertificateCertificate) HasStatus

func (o *CertificateCertificate) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*CertificateCertificate) HasUpdatedAt

func (o *CertificateCertificate) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (CertificateCertificate) MarshalJSON

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

func (*CertificateCertificate) SetCaBundle

func (o *CertificateCertificate) SetCaBundle(v string)

SetCaBundle gets a reference to the given string and assigns it to the CaBundle field.

func (*CertificateCertificate) SetCertificate

func (o *CertificateCertificate) SetCertificate(v string)

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

func (*CertificateCertificate) SetCreatedAt

func (o *CertificateCertificate) SetCreatedAt(v time.Time)

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

func (*CertificateCertificate) SetExpiresAt

func (o *CertificateCertificate) SetExpiresAt(v time.Time)

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

func (*CertificateCertificate) SetHosts

func (o *CertificateCertificate) SetHosts(v []string)

SetHosts gets a reference to the given []string and assigns it to the Hosts field.

func (*CertificateCertificate) SetId

func (o *CertificateCertificate) SetId(v string)

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

func (*CertificateCertificate) SetIssuer

func (o *CertificateCertificate) SetIssuer(v string)

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

func (*CertificateCertificate) SetStackId

func (o *CertificateCertificate) SetStackId(v string)

SetStackId gets a reference to the given string and assigns it to the StackId field.

func (*CertificateCertificate) SetStatus

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

func (*CertificateCertificate) SetUpdatedAt

func (o *CertificateCertificate) SetUpdatedAt(v time.Time)

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

type CertificateCertificateStatus

type CertificateCertificateStatus string

CertificateCertificateStatus the model 'CertificateCertificateStatus'

const (
	CERTIFICATECERTIFICATESTATUS_UNKNOWN              CertificateCertificateStatus = "UNKNOWN"
	CERTIFICATECERTIFICATESTATUS_PENDING              CertificateCertificateStatus = "PENDING"
	CERTIFICATECERTIFICATESTATUS_COMPLETE             CertificateCertificateStatus = "COMPLETE"
	CERTIFICATECERTIFICATESTATUS_EXPIRED              CertificateCertificateStatus = "EXPIRED"
	CERTIFICATECERTIFICATESTATUS_FAILED               CertificateCertificateStatus = "FAILED"
	CERTIFICATECERTIFICATESTATUS_PENDING_VERIFICATION CertificateCertificateStatus = "PENDING_VERIFICATION"
	CERTIFICATECERTIFICATESTATUS_REVOKED              CertificateCertificateStatus = "REVOKED"
)

List of certificateCertificateStatus

func (CertificateCertificateStatus) Ptr

Ptr returns reference to certificateCertificateStatus value

type CertificateCertificateVerificationMethod

type CertificateCertificateVerificationMethod string

CertificateCertificateVerificationMethod the model 'CertificateCertificateVerificationMethod'

const (
	CERTIFICATECERTIFICATEVERIFICATIONMETHOD_DNS  CertificateCertificateVerificationMethod = "DNS"
	CERTIFICATECERTIFICATEVERIFICATIONMETHOD_HTTP CertificateCertificateVerificationMethod = "HTTP"
)

List of certificateCertificateVerificationMethod

func (CertificateCertificateVerificationMethod) Ptr

Ptr returns reference to certificateCertificateVerificationMethod value

type CertificateDnsRecord

type CertificateDnsRecord struct {
	// The name of the network node to which a zone resource record pertains  Use the value \"@\" to denote current root domain name.
	Name *string `json:"name,omitempty"`
	// A zone record's type  Zone record types describe the zone record's behavior. For instance, a zone record's type can say that the record is a name to IP address value, a name alias, or which mail exchanger is responsible for the domain. See https://support.stackpath.com/hc/en-us/articles/360001085563-What-DNS-record-types-does-StackPath-support for more information.
	Type *string `json:"type,omitempty"`
	// A zone record's class code  This is typically \"IN\" for Internet related resource records.
	Class *string `json:"class,omitempty"`
	// A zone record's time to live  A record's TTL is the number of seconds that the record should be cached by DNS resolvers. Use lower TTL values if you expect zone records to change often. Use higher TTL values for records that won't change to prevent extra DNS lookups by clients.
	Ttl *int32 `json:"ttl,omitempty"`
	// A zone record's value  Expected data formats can vary depending on the zone record's type.
	Data *string `json:"data,omitempty"`
}

CertificateDnsRecord A DNS record A dns record describes an individual piece of DNS functionality in a DNS zone.

func NewCertificateDnsRecord

func NewCertificateDnsRecord() *CertificateDnsRecord

NewCertificateDnsRecord instantiates a new CertificateDnsRecord 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 NewCertificateDnsRecordWithDefaults

func NewCertificateDnsRecordWithDefaults() *CertificateDnsRecord

NewCertificateDnsRecordWithDefaults instantiates a new CertificateDnsRecord 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 (*CertificateDnsRecord) GetClass

func (o *CertificateDnsRecord) GetClass() string

GetClass returns the Class field value if set, zero value otherwise.

func (*CertificateDnsRecord) GetClassOk

func (o *CertificateDnsRecord) GetClassOk() (*string, bool)

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

func (*CertificateDnsRecord) GetData

func (o *CertificateDnsRecord) GetData() string

GetData returns the Data field value if set, zero value otherwise.

func (*CertificateDnsRecord) GetDataOk

func (o *CertificateDnsRecord) GetDataOk() (*string, bool)

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

func (*CertificateDnsRecord) GetName

func (o *CertificateDnsRecord) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*CertificateDnsRecord) GetNameOk

func (o *CertificateDnsRecord) 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 (*CertificateDnsRecord) GetTtl

func (o *CertificateDnsRecord) GetTtl() int32

GetTtl returns the Ttl field value if set, zero value otherwise.

func (*CertificateDnsRecord) GetTtlOk

func (o *CertificateDnsRecord) GetTtlOk() (*int32, bool)

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

func (*CertificateDnsRecord) GetType

func (o *CertificateDnsRecord) GetType() string

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

func (*CertificateDnsRecord) GetTypeOk

func (o *CertificateDnsRecord) 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 (*CertificateDnsRecord) HasClass

func (o *CertificateDnsRecord) HasClass() bool

HasClass returns a boolean if a field has been set.

func (*CertificateDnsRecord) HasData

func (o *CertificateDnsRecord) HasData() bool

HasData returns a boolean if a field has been set.

func (*CertificateDnsRecord) HasName

func (o *CertificateDnsRecord) HasName() bool

HasName returns a boolean if a field has been set.

func (*CertificateDnsRecord) HasTtl

func (o *CertificateDnsRecord) HasTtl() bool

HasTtl returns a boolean if a field has been set.

func (*CertificateDnsRecord) HasType

func (o *CertificateDnsRecord) HasType() bool

HasType returns a boolean if a field has been set.

func (CertificateDnsRecord) MarshalJSON

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

func (*CertificateDnsRecord) SetClass

func (o *CertificateDnsRecord) SetClass(v string)

SetClass gets a reference to the given string and assigns it to the Class field.

func (*CertificateDnsRecord) SetData

func (o *CertificateDnsRecord) SetData(v string)

SetData gets a reference to the given string and assigns it to the Data field.

func (*CertificateDnsRecord) SetName

func (o *CertificateDnsRecord) SetName(v string)

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

func (*CertificateDnsRecord) SetTtl

func (o *CertificateDnsRecord) SetTtl(v int32)

SetTtl gets a reference to the given int32 and assigns it to the Ttl field.

func (*CertificateDnsRecord) SetType

func (o *CertificateDnsRecord) SetType(v string)

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

type CertificateDnsVerificationDetails

type CertificateDnsVerificationDetails struct {
	// A list of bind formatted dns records required for SSL verification
	DnsRecords *[]string `json:"dnsRecords,omitempty"`
	// A list of parsed dns records required for SSL verification
	Records *[]CertificateDnsRecord `json:"records,omitempty"`
}

CertificateDnsVerificationDetails struct for CertificateDnsVerificationDetails

func NewCertificateDnsVerificationDetails

func NewCertificateDnsVerificationDetails() *CertificateDnsVerificationDetails

NewCertificateDnsVerificationDetails instantiates a new CertificateDnsVerificationDetails 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 NewCertificateDnsVerificationDetailsWithDefaults

func NewCertificateDnsVerificationDetailsWithDefaults() *CertificateDnsVerificationDetails

NewCertificateDnsVerificationDetailsWithDefaults instantiates a new CertificateDnsVerificationDetails 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 (*CertificateDnsVerificationDetails) GetDnsRecords

func (o *CertificateDnsVerificationDetails) GetDnsRecords() []string

GetDnsRecords returns the DnsRecords field value if set, zero value otherwise.

func (*CertificateDnsVerificationDetails) GetDnsRecordsOk

func (o *CertificateDnsVerificationDetails) GetDnsRecordsOk() (*[]string, bool)

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

func (*CertificateDnsVerificationDetails) GetRecords

GetRecords returns the Records field value if set, zero value otherwise.

func (*CertificateDnsVerificationDetails) GetRecordsOk

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

func (*CertificateDnsVerificationDetails) HasDnsRecords

func (o *CertificateDnsVerificationDetails) HasDnsRecords() bool

HasDnsRecords returns a boolean if a field has been set.

func (*CertificateDnsVerificationDetails) HasRecords

func (o *CertificateDnsVerificationDetails) HasRecords() bool

HasRecords returns a boolean if a field has been set.

func (CertificateDnsVerificationDetails) MarshalJSON

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

func (*CertificateDnsVerificationDetails) SetDnsRecords

func (o *CertificateDnsVerificationDetails) SetDnsRecords(v []string)

SetDnsRecords gets a reference to the given []string and assigns it to the DnsRecords field.

func (*CertificateDnsVerificationDetails) SetRecords

SetRecords gets a reference to the given []CertificateDnsRecord and assigns it to the Records field.

type CertificateGetCertificateResponse

type CertificateGetCertificateResponse struct {
	Certificate *CertificateCertificate `json:"certificate,omitempty"`
}

CertificateGetCertificateResponse struct for CertificateGetCertificateResponse

func NewCertificateGetCertificateResponse

func NewCertificateGetCertificateResponse() *CertificateGetCertificateResponse

NewCertificateGetCertificateResponse instantiates a new CertificateGetCertificateResponse 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 NewCertificateGetCertificateResponseWithDefaults

func NewCertificateGetCertificateResponseWithDefaults() *CertificateGetCertificateResponse

NewCertificateGetCertificateResponseWithDefaults instantiates a new CertificateGetCertificateResponse 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 (*CertificateGetCertificateResponse) GetCertificate

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

func (*CertificateGetCertificateResponse) GetCertificateOk

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 (*CertificateGetCertificateResponse) HasCertificate

func (o *CertificateGetCertificateResponse) HasCertificate() bool

HasCertificate returns a boolean if a field has been set.

func (CertificateGetCertificateResponse) MarshalJSON

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

func (*CertificateGetCertificateResponse) SetCertificate

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

type CertificateGetCertificatesResponse

type CertificateGetCertificatesResponse struct {
	PageInfo *PaginationPageInfo       `json:"pageInfo,omitempty"`
	Results  *[]CertificateCertificate `json:"results,omitempty"`
}

CertificateGetCertificatesResponse struct for CertificateGetCertificatesResponse

func NewCertificateGetCertificatesResponse

func NewCertificateGetCertificatesResponse() *CertificateGetCertificatesResponse

NewCertificateGetCertificatesResponse instantiates a new CertificateGetCertificatesResponse 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 NewCertificateGetCertificatesResponseWithDefaults

func NewCertificateGetCertificatesResponseWithDefaults() *CertificateGetCertificatesResponse

NewCertificateGetCertificatesResponseWithDefaults instantiates a new CertificateGetCertificatesResponse 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 (*CertificateGetCertificatesResponse) GetPageInfo

GetPageInfo returns the PageInfo field value if set, zero value otherwise.

func (*CertificateGetCertificatesResponse) GetPageInfoOk

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

func (*CertificateGetCertificatesResponse) GetResults

GetResults returns the Results field value if set, zero value otherwise.

func (*CertificateGetCertificatesResponse) GetResultsOk

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

func (*CertificateGetCertificatesResponse) HasPageInfo

func (o *CertificateGetCertificatesResponse) HasPageInfo() bool

HasPageInfo returns a boolean if a field has been set.

func (*CertificateGetCertificatesResponse) HasResults

func (o *CertificateGetCertificatesResponse) HasResults() bool

HasResults returns a boolean if a field has been set.

func (CertificateGetCertificatesResponse) MarshalJSON

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

func (*CertificateGetCertificatesResponse) SetPageInfo

SetPageInfo gets a reference to the given PaginationPageInfo and assigns it to the PageInfo field.

func (*CertificateGetCertificatesResponse) SetResults

SetResults gets a reference to the given []CertificateCertificate and assigns it to the Results field.

type CertificateGetLatestCertificateResponse

type CertificateGetLatestCertificateResponse struct {
	Certificate *CertificateCertificate `json:"certificate,omitempty"`
}

CertificateGetLatestCertificateResponse struct for CertificateGetLatestCertificateResponse

func NewCertificateGetLatestCertificateResponse

func NewCertificateGetLatestCertificateResponse() *CertificateGetLatestCertificateResponse

NewCertificateGetLatestCertificateResponse instantiates a new CertificateGetLatestCertificateResponse 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 NewCertificateGetLatestCertificateResponseWithDefaults

func NewCertificateGetLatestCertificateResponseWithDefaults() *CertificateGetLatestCertificateResponse

NewCertificateGetLatestCertificateResponseWithDefaults instantiates a new CertificateGetLatestCertificateResponse 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 (*CertificateGetLatestCertificateResponse) GetCertificate

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

func (*CertificateGetLatestCertificateResponse) GetCertificateOk

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 (*CertificateGetLatestCertificateResponse) HasCertificate

func (o *CertificateGetLatestCertificateResponse) HasCertificate() bool

HasCertificate returns a boolean if a field has been set.

func (CertificateGetLatestCertificateResponse) MarshalJSON

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

func (*CertificateGetLatestCertificateResponse) SetCertificate

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

type CertificateHttpVerificationDetails

type CertificateHttpVerificationDetails struct {
	Path        *string `json:"path,omitempty"`
	ContentType *string `json:"contentType,omitempty"`
	Body        *string `json:"body,omitempty"`
}

CertificateHttpVerificationDetails struct for CertificateHttpVerificationDetails

func NewCertificateHttpVerificationDetails

func NewCertificateHttpVerificationDetails() *CertificateHttpVerificationDetails

NewCertificateHttpVerificationDetails instantiates a new CertificateHttpVerificationDetails 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 NewCertificateHttpVerificationDetailsWithDefaults

func NewCertificateHttpVerificationDetailsWithDefaults() *CertificateHttpVerificationDetails

NewCertificateHttpVerificationDetailsWithDefaults instantiates a new CertificateHttpVerificationDetails 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 (*CertificateHttpVerificationDetails) GetBody

GetBody returns the Body field value if set, zero value otherwise.

func (*CertificateHttpVerificationDetails) GetBodyOk

func (o *CertificateHttpVerificationDetails) GetBodyOk() (*string, bool)

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

func (*CertificateHttpVerificationDetails) GetContentType

func (o *CertificateHttpVerificationDetails) GetContentType() string

GetContentType returns the ContentType field value if set, zero value otherwise.

func (*CertificateHttpVerificationDetails) GetContentTypeOk

func (o *CertificateHttpVerificationDetails) GetContentTypeOk() (*string, bool)

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

func (*CertificateHttpVerificationDetails) GetPath

GetPath returns the Path field value if set, zero value otherwise.

func (*CertificateHttpVerificationDetails) GetPathOk

func (o *CertificateHttpVerificationDetails) GetPathOk() (*string, bool)

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

func (*CertificateHttpVerificationDetails) HasBody

HasBody returns a boolean if a field has been set.

func (*CertificateHttpVerificationDetails) HasContentType

func (o *CertificateHttpVerificationDetails) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*CertificateHttpVerificationDetails) HasPath

HasPath returns a boolean if a field has been set.

func (CertificateHttpVerificationDetails) MarshalJSON

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

func (*CertificateHttpVerificationDetails) SetBody

SetBody gets a reference to the given string and assigns it to the Body field.

func (*CertificateHttpVerificationDetails) SetContentType

func (o *CertificateHttpVerificationDetails) SetContentType(v string)

SetContentType gets a reference to the given string and assigns it to the ContentType field.

func (*CertificateHttpVerificationDetails) SetPath

SetPath gets a reference to the given string and assigns it to the Path field.

type CertificateRenewCertificateResponse

type CertificateRenewCertificateResponse struct {
	CertificateId            *string                                `json:"certificateId,omitempty"`
	Status                   *CertificateCertificateStatus          `json:"status,omitempty"`
	VerificationRequirements *[]CertificateVerificationRequirements `json:"verificationRequirements,omitempty"`
}

CertificateRenewCertificateResponse struct for CertificateRenewCertificateResponse

func NewCertificateRenewCertificateResponse

func NewCertificateRenewCertificateResponse() *CertificateRenewCertificateResponse

NewCertificateRenewCertificateResponse instantiates a new CertificateRenewCertificateResponse 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 NewCertificateRenewCertificateResponseWithDefaults

func NewCertificateRenewCertificateResponseWithDefaults() *CertificateRenewCertificateResponse

NewCertificateRenewCertificateResponseWithDefaults instantiates a new CertificateRenewCertificateResponse 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 (*CertificateRenewCertificateResponse) GetCertificateId

func (o *CertificateRenewCertificateResponse) GetCertificateId() string

GetCertificateId returns the CertificateId field value if set, zero value otherwise.

func (*CertificateRenewCertificateResponse) GetCertificateIdOk

func (o *CertificateRenewCertificateResponse) 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 (*CertificateRenewCertificateResponse) GetStatus

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

func (*CertificateRenewCertificateResponse) GetStatusOk

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 (*CertificateRenewCertificateResponse) GetVerificationRequirements

GetVerificationRequirements returns the VerificationRequirements field value if set, zero value otherwise.

func (*CertificateRenewCertificateResponse) GetVerificationRequirementsOk

func (o *CertificateRenewCertificateResponse) GetVerificationRequirementsOk() (*[]CertificateVerificationRequirements, bool)

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

func (*CertificateRenewCertificateResponse) HasCertificateId

func (o *CertificateRenewCertificateResponse) HasCertificateId() bool

HasCertificateId returns a boolean if a field has been set.

func (*CertificateRenewCertificateResponse) HasStatus

HasStatus returns a boolean if a field has been set.

func (*CertificateRenewCertificateResponse) HasVerificationRequirements

func (o *CertificateRenewCertificateResponse) HasVerificationRequirements() bool

HasVerificationRequirements returns a boolean if a field has been set.

func (CertificateRenewCertificateResponse) MarshalJSON

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

func (*CertificateRenewCertificateResponse) SetCertificateId

func (o *CertificateRenewCertificateResponse) SetCertificateId(v string)

SetCertificateId gets a reference to the given string and assigns it to the CertificateId field.

func (*CertificateRenewCertificateResponse) SetStatus

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

func (*CertificateRenewCertificateResponse) SetVerificationRequirements

SetVerificationRequirements gets a reference to the given []CertificateVerificationRequirements and assigns it to the VerificationRequirements field.

type CertificateUpdateCertificateRequest

type CertificateUpdateCertificateRequest struct {
	CommonName         *string   `json:"commonName,omitempty"`
	Hosts              *[]string `json:"hosts,omitempty"`
	Organization       *string   `json:"organization,omitempty"`
	OrganizationalUnit *string   `json:"organizationalUnit,omitempty"`
	Locality           *string   `json:"locality,omitempty"`
	Province           *string   `json:"province,omitempty"`
	Country            *string   `json:"country,omitempty"`
}

CertificateUpdateCertificateRequest struct for CertificateUpdateCertificateRequest

func NewCertificateUpdateCertificateRequest

func NewCertificateUpdateCertificateRequest() *CertificateUpdateCertificateRequest

NewCertificateUpdateCertificateRequest instantiates a new CertificateUpdateCertificateRequest 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 NewCertificateUpdateCertificateRequestWithDefaults

func NewCertificateUpdateCertificateRequestWithDefaults() *CertificateUpdateCertificateRequest

NewCertificateUpdateCertificateRequestWithDefaults instantiates a new CertificateUpdateCertificateRequest 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 (*CertificateUpdateCertificateRequest) GetCommonName

func (o *CertificateUpdateCertificateRequest) GetCommonName() string

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

func (*CertificateUpdateCertificateRequest) GetCommonNameOk

func (o *CertificateUpdateCertificateRequest) 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 (*CertificateUpdateCertificateRequest) GetCountry

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

func (*CertificateUpdateCertificateRequest) GetCountryOk

func (o *CertificateUpdateCertificateRequest) 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 (*CertificateUpdateCertificateRequest) GetHosts

GetHosts returns the Hosts field value if set, zero value otherwise.

func (*CertificateUpdateCertificateRequest) GetHostsOk

func (o *CertificateUpdateCertificateRequest) GetHostsOk() (*[]string, bool)

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

func (*CertificateUpdateCertificateRequest) GetLocality

GetLocality returns the Locality field value if set, zero value otherwise.

func (*CertificateUpdateCertificateRequest) GetLocalityOk

func (o *CertificateUpdateCertificateRequest) GetLocalityOk() (*string, bool)

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

func (*CertificateUpdateCertificateRequest) GetOrganization

func (o *CertificateUpdateCertificateRequest) GetOrganization() string

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

func (*CertificateUpdateCertificateRequest) GetOrganizationOk

func (o *CertificateUpdateCertificateRequest) 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 (*CertificateUpdateCertificateRequest) GetOrganizationalUnit

func (o *CertificateUpdateCertificateRequest) GetOrganizationalUnit() string

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

func (*CertificateUpdateCertificateRequest) GetOrganizationalUnitOk

func (o *CertificateUpdateCertificateRequest) 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 (*CertificateUpdateCertificateRequest) GetProvince

GetProvince returns the Province field value if set, zero value otherwise.

func (*CertificateUpdateCertificateRequest) GetProvinceOk

func (o *CertificateUpdateCertificateRequest) GetProvinceOk() (*string, bool)

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

func (*CertificateUpdateCertificateRequest) HasCommonName

func (o *CertificateUpdateCertificateRequest) HasCommonName() bool

HasCommonName returns a boolean if a field has been set.

func (*CertificateUpdateCertificateRequest) HasCountry

func (o *CertificateUpdateCertificateRequest) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*CertificateUpdateCertificateRequest) HasHosts

HasHosts returns a boolean if a field has been set.

func (*CertificateUpdateCertificateRequest) HasLocality

func (o *CertificateUpdateCertificateRequest) HasLocality() bool

HasLocality returns a boolean if a field has been set.

func (*CertificateUpdateCertificateRequest) HasOrganization

func (o *CertificateUpdateCertificateRequest) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (*CertificateUpdateCertificateRequest) HasOrganizationalUnit

func (o *CertificateUpdateCertificateRequest) HasOrganizationalUnit() bool

HasOrganizationalUnit returns a boolean if a field has been set.

func (*CertificateUpdateCertificateRequest) HasProvince

func (o *CertificateUpdateCertificateRequest) HasProvince() bool

HasProvince returns a boolean if a field has been set.

func (CertificateUpdateCertificateRequest) MarshalJSON

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

func (*CertificateUpdateCertificateRequest) SetCommonName

func (o *CertificateUpdateCertificateRequest) SetCommonName(v string)

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

func (*CertificateUpdateCertificateRequest) SetCountry

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

func (*CertificateUpdateCertificateRequest) SetHosts

SetHosts gets a reference to the given []string and assigns it to the Hosts field.

func (*CertificateUpdateCertificateRequest) SetLocality

func (o *CertificateUpdateCertificateRequest) SetLocality(v string)

SetLocality gets a reference to the given string and assigns it to the Locality field.

func (*CertificateUpdateCertificateRequest) SetOrganization

func (o *CertificateUpdateCertificateRequest) SetOrganization(v string)

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

func (*CertificateUpdateCertificateRequest) SetOrganizationalUnit

func (o *CertificateUpdateCertificateRequest) SetOrganizationalUnit(v string)

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

func (*CertificateUpdateCertificateRequest) SetProvince

func (o *CertificateUpdateCertificateRequest) SetProvince(v string)

SetProvince gets a reference to the given string and assigns it to the Province field.

type CertificateUpdateCertificateResponse

type CertificateUpdateCertificateResponse struct {
	CertificateId            *string                                `json:"certificateId,omitempty"`
	Status                   *CertificateCertificateStatus          `json:"status,omitempty"`
	VerificationRequirements *[]CertificateVerificationRequirements `json:"verificationRequirements,omitempty"`
}

CertificateUpdateCertificateResponse struct for CertificateUpdateCertificateResponse

func NewCertificateUpdateCertificateResponse

func NewCertificateUpdateCertificateResponse() *CertificateUpdateCertificateResponse

NewCertificateUpdateCertificateResponse instantiates a new CertificateUpdateCertificateResponse 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 NewCertificateUpdateCertificateResponseWithDefaults

func NewCertificateUpdateCertificateResponseWithDefaults() *CertificateUpdateCertificateResponse

NewCertificateUpdateCertificateResponseWithDefaults instantiates a new CertificateUpdateCertificateResponse 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 (*CertificateUpdateCertificateResponse) GetCertificateId

func (o *CertificateUpdateCertificateResponse) GetCertificateId() string

GetCertificateId returns the CertificateId field value if set, zero value otherwise.

func (*CertificateUpdateCertificateResponse) GetCertificateIdOk

func (o *CertificateUpdateCertificateResponse) 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 (*CertificateUpdateCertificateResponse) GetStatus

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

func (*CertificateUpdateCertificateResponse) GetStatusOk

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 (*CertificateUpdateCertificateResponse) GetVerificationRequirements

GetVerificationRequirements returns the VerificationRequirements field value if set, zero value otherwise.

func (*CertificateUpdateCertificateResponse) GetVerificationRequirementsOk

func (o *CertificateUpdateCertificateResponse) GetVerificationRequirementsOk() (*[]CertificateVerificationRequirements, bool)

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

func (*CertificateUpdateCertificateResponse) HasCertificateId

func (o *CertificateUpdateCertificateResponse) HasCertificateId() bool

HasCertificateId returns a boolean if a field has been set.

func (*CertificateUpdateCertificateResponse) HasStatus

HasStatus returns a boolean if a field has been set.

func (*CertificateUpdateCertificateResponse) HasVerificationRequirements

func (o *CertificateUpdateCertificateResponse) HasVerificationRequirements() bool

HasVerificationRequirements returns a boolean if a field has been set.

func (CertificateUpdateCertificateResponse) MarshalJSON

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

func (*CertificateUpdateCertificateResponse) SetCertificateId

func (o *CertificateUpdateCertificateResponse) SetCertificateId(v string)

SetCertificateId gets a reference to the given string and assigns it to the CertificateId field.

func (*CertificateUpdateCertificateResponse) SetStatus

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

func (*CertificateUpdateCertificateResponse) SetVerificationRequirements

SetVerificationRequirements gets a reference to the given []CertificateVerificationRequirements and assigns it to the VerificationRequirements field.

type CertificateVerificationRequirements

type CertificateVerificationRequirements struct {
	DnsVerificationDetails  *CertificateDnsVerificationDetails        `json:"dnsVerificationDetails,omitempty"`
	HttpVerificationDetails *CertificateHttpVerificationDetails       `json:"httpVerificationDetails,omitempty"`
	VerificationMethod      *CertificateCertificateVerificationMethod `json:"verificationMethod,omitempty"`
}

CertificateVerificationRequirements struct for CertificateVerificationRequirements

func NewCertificateVerificationRequirements

func NewCertificateVerificationRequirements() *CertificateVerificationRequirements

NewCertificateVerificationRequirements instantiates a new CertificateVerificationRequirements 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 NewCertificateVerificationRequirementsWithDefaults

func NewCertificateVerificationRequirementsWithDefaults() *CertificateVerificationRequirements

NewCertificateVerificationRequirementsWithDefaults instantiates a new CertificateVerificationRequirements 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 (*CertificateVerificationRequirements) GetDnsVerificationDetails

GetDnsVerificationDetails returns the DnsVerificationDetails field value if set, zero value otherwise.

func (*CertificateVerificationRequirements) GetDnsVerificationDetailsOk

func (o *CertificateVerificationRequirements) GetDnsVerificationDetailsOk() (*CertificateDnsVerificationDetails, bool)

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

func (*CertificateVerificationRequirements) GetHttpVerificationDetails

GetHttpVerificationDetails returns the HttpVerificationDetails field value if set, zero value otherwise.

func (*CertificateVerificationRequirements) GetHttpVerificationDetailsOk

func (o *CertificateVerificationRequirements) GetHttpVerificationDetailsOk() (*CertificateHttpVerificationDetails, bool)

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

func (*CertificateVerificationRequirements) GetVerificationMethod

GetVerificationMethod returns the VerificationMethod field value if set, zero value otherwise.

func (*CertificateVerificationRequirements) GetVerificationMethodOk

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

func (*CertificateVerificationRequirements) HasDnsVerificationDetails

func (o *CertificateVerificationRequirements) HasDnsVerificationDetails() bool

HasDnsVerificationDetails returns a boolean if a field has been set.

func (*CertificateVerificationRequirements) HasHttpVerificationDetails

func (o *CertificateVerificationRequirements) HasHttpVerificationDetails() bool

HasHttpVerificationDetails returns a boolean if a field has been set.

func (*CertificateVerificationRequirements) HasVerificationMethod

func (o *CertificateVerificationRequirements) HasVerificationMethod() bool

HasVerificationMethod returns a boolean if a field has been set.

func (CertificateVerificationRequirements) MarshalJSON

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

func (*CertificateVerificationRequirements) SetDnsVerificationDetails

SetDnsVerificationDetails gets a reference to the given CertificateDnsVerificationDetails and assigns it to the DnsVerificationDetails field.

func (*CertificateVerificationRequirements) SetHttpVerificationDetails

SetHttpVerificationDetails gets a reference to the given CertificateHttpVerificationDetails and assigns it to the HttpVerificationDetails field.

func (*CertificateVerificationRequirements) SetVerificationMethod

SetVerificationMethod gets a reference to the given CertificateCertificateVerificationMethod and assigns it to the VerificationMethod field.

type CertificatesApiService

type CertificatesApiService service

CertificatesApiService CertificatesApi service

func (*CertificatesApiService) DeleteCertificate

func (a *CertificatesApiService) DeleteCertificate(ctx _context.Context, stackId string, certificateId string) apiDeleteCertificateRequest

DeleteCertificate Delete a certificate

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param stackId A stack ID or slug
  • @param certificateId A certificate ID

@return apiDeleteCertificateRequest

func (*CertificatesApiService) GetCertificate

func (a *CertificatesApiService) GetCertificate(ctx _context.Context, stackId string, certificateId string) apiGetCertificateRequest

GetCertificate Get a certificate

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param stackId A stack ID or slug
  • @param certificateId A certificate ID

@return apiGetCertificateRequest

func (*CertificatesApiService) GetCertificates

func (a *CertificatesApiService) GetCertificates(ctx _context.Context, stackId string) apiGetCertificatesRequest

GetCertificates Get all certificates

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param stackId A stack ID or slug

@return apiGetCertificatesRequest

func (*CertificatesApiService) GetLatestCertificate

func (a *CertificatesApiService) GetLatestCertificate(ctx _context.Context, stackId string, certificateId string) apiGetLatestCertificateRequest

GetLatestCertificate Get a certificate's latest version

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param stackId A stack ID or slug
  • @param certificateId A certificate ID

@return apiGetLatestCertificateRequest

func (*CertificatesApiService) RenewCertificate

func (a *CertificatesApiService) RenewCertificate(ctx _context.Context, stackId string, certificateId string) apiRenewCertificateRequest

RenewCertificate Renew a certificate

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param stackId A stack ID or slug
  • @param certificateId A certificate ID

@return apiRenewCertificateRequest

func (*CertificatesApiService) RevokeCertificate

func (a *CertificatesApiService) RevokeCertificate(ctx _context.Context, stackId string, certificateId string) apiRevokeCertificateRequest

RevokeCertificate Revoke a certificate

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param stackId A stack ID or slug
  • @param certificateId A certificate ID

@return apiRevokeCertificateRequest

func (*CertificatesApiService) UpdateCertificate

func (a *CertificatesApiService) UpdateCertificate(ctx _context.Context, stackId string, certificateId string) apiUpdateCertificateRequest

UpdateCertificate Update a certificate Updating a certificate creates a new CSR and issues a new certificate.

  • @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
  • @param stackId A stack ID or slug
  • @param certificateId A certificate ID

@return apiUpdateCertificateRequest

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type 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 NullableApiStatus

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

func NewNullableApiStatus

func NewNullableApiStatus(val *ApiStatus) *NullableApiStatus

func (NullableApiStatus) Get

func (v NullableApiStatus) Get() *ApiStatus

func (NullableApiStatus) IsSet

func (v NullableApiStatus) IsSet() bool

func (NullableApiStatus) MarshalJSON

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

func (*NullableApiStatus) Set

func (v *NullableApiStatus) Set(val *ApiStatus)

func (*NullableApiStatus) UnmarshalJSON

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

func (*NullableApiStatus) Unset

func (v *NullableApiStatus) Unset()

type NullableApiStatusDetail

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

func NewNullableApiStatusDetail

func NewNullableApiStatusDetail(val *ApiStatusDetail) *NullableApiStatusDetail

func (NullableApiStatusDetail) Get

func (NullableApiStatusDetail) IsSet

func (v NullableApiStatusDetail) IsSet() bool

func (NullableApiStatusDetail) MarshalJSON

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

func (*NullableApiStatusDetail) Set

func (*NullableApiStatusDetail) UnmarshalJSON

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

func (*NullableApiStatusDetail) Unset

func (v *NullableApiStatusDetail) 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 NullableCertificateCertificate

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

func (NullableCertificateCertificate) Get

func (NullableCertificateCertificate) IsSet

func (NullableCertificateCertificate) MarshalJSON

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

func (*NullableCertificateCertificate) Set

func (*NullableCertificateCertificate) UnmarshalJSON

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

func (*NullableCertificateCertificate) Unset

func (v *NullableCertificateCertificate) Unset()

type NullableCertificateCertificateStatus

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

func (NullableCertificateCertificateStatus) Get

func (NullableCertificateCertificateStatus) IsSet

func (NullableCertificateCertificateStatus) MarshalJSON

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

func (*NullableCertificateCertificateStatus) Set

func (*NullableCertificateCertificateStatus) UnmarshalJSON

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

func (*NullableCertificateCertificateStatus) Unset

type NullableCertificateCertificateVerificationMethod

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

func (NullableCertificateCertificateVerificationMethod) Get

func (NullableCertificateCertificateVerificationMethod) IsSet

func (NullableCertificateCertificateVerificationMethod) MarshalJSON

func (*NullableCertificateCertificateVerificationMethod) Set

func (*NullableCertificateCertificateVerificationMethod) UnmarshalJSON

func (*NullableCertificateCertificateVerificationMethod) Unset

type NullableCertificateDnsRecord

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

func NewNullableCertificateDnsRecord

func NewNullableCertificateDnsRecord(val *CertificateDnsRecord) *NullableCertificateDnsRecord

func (NullableCertificateDnsRecord) Get

func (NullableCertificateDnsRecord) IsSet

func (NullableCertificateDnsRecord) MarshalJSON

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

func (*NullableCertificateDnsRecord) Set

func (*NullableCertificateDnsRecord) UnmarshalJSON

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

func (*NullableCertificateDnsRecord) Unset

func (v *NullableCertificateDnsRecord) Unset()

type NullableCertificateDnsVerificationDetails

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

func (NullableCertificateDnsVerificationDetails) Get

func (NullableCertificateDnsVerificationDetails) IsSet

func (NullableCertificateDnsVerificationDetails) MarshalJSON

func (*NullableCertificateDnsVerificationDetails) Set

func (*NullableCertificateDnsVerificationDetails) UnmarshalJSON

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

func (*NullableCertificateDnsVerificationDetails) Unset

type NullableCertificateGetCertificateResponse

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

func (NullableCertificateGetCertificateResponse) Get

func (NullableCertificateGetCertificateResponse) IsSet

func (NullableCertificateGetCertificateResponse) MarshalJSON

func (*NullableCertificateGetCertificateResponse) Set

func (*NullableCertificateGetCertificateResponse) UnmarshalJSON

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

func (*NullableCertificateGetCertificateResponse) Unset

type NullableCertificateGetCertificatesResponse

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

func (NullableCertificateGetCertificatesResponse) Get

func (NullableCertificateGetCertificatesResponse) IsSet

func (NullableCertificateGetCertificatesResponse) MarshalJSON

func (*NullableCertificateGetCertificatesResponse) Set

func (*NullableCertificateGetCertificatesResponse) UnmarshalJSON

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

func (*NullableCertificateGetCertificatesResponse) Unset

type NullableCertificateGetLatestCertificateResponse

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

func (NullableCertificateGetLatestCertificateResponse) Get

func (NullableCertificateGetLatestCertificateResponse) IsSet

func (NullableCertificateGetLatestCertificateResponse) MarshalJSON

func (*NullableCertificateGetLatestCertificateResponse) Set

func (*NullableCertificateGetLatestCertificateResponse) UnmarshalJSON

func (*NullableCertificateGetLatestCertificateResponse) Unset

type NullableCertificateHttpVerificationDetails

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

func (NullableCertificateHttpVerificationDetails) Get

func (NullableCertificateHttpVerificationDetails) IsSet

func (NullableCertificateHttpVerificationDetails) MarshalJSON

func (*NullableCertificateHttpVerificationDetails) Set

func (*NullableCertificateHttpVerificationDetails) UnmarshalJSON

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

func (*NullableCertificateHttpVerificationDetails) Unset

type NullableCertificateRenewCertificateResponse

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

func (NullableCertificateRenewCertificateResponse) Get

func (NullableCertificateRenewCertificateResponse) IsSet

func (NullableCertificateRenewCertificateResponse) MarshalJSON

func (*NullableCertificateRenewCertificateResponse) Set

func (*NullableCertificateRenewCertificateResponse) UnmarshalJSON

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

func (*NullableCertificateRenewCertificateResponse) Unset

type NullableCertificateUpdateCertificateRequest

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

func (NullableCertificateUpdateCertificateRequest) Get

func (NullableCertificateUpdateCertificateRequest) IsSet

func (NullableCertificateUpdateCertificateRequest) MarshalJSON

func (*NullableCertificateUpdateCertificateRequest) Set

func (*NullableCertificateUpdateCertificateRequest) UnmarshalJSON

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

func (*NullableCertificateUpdateCertificateRequest) Unset

type NullableCertificateUpdateCertificateResponse

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

func (NullableCertificateUpdateCertificateResponse) Get

func (NullableCertificateUpdateCertificateResponse) IsSet

func (NullableCertificateUpdateCertificateResponse) MarshalJSON

func (*NullableCertificateUpdateCertificateResponse) Set

func (*NullableCertificateUpdateCertificateResponse) UnmarshalJSON

func (*NullableCertificateUpdateCertificateResponse) Unset

type NullableCertificateVerificationRequirements

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

func (NullableCertificateVerificationRequirements) Get

func (NullableCertificateVerificationRequirements) IsSet

func (NullableCertificateVerificationRequirements) MarshalJSON

func (*NullableCertificateVerificationRequirements) Set

func (*NullableCertificateVerificationRequirements) UnmarshalJSON

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

func (*NullableCertificateVerificationRequirements) Unset

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

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

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

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

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

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

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

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

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

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

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullablePaginationPageInfo

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

func NewNullablePaginationPageInfo

func NewNullablePaginationPageInfo(val *PaginationPageInfo) *NullablePaginationPageInfo

func (NullablePaginationPageInfo) Get

func (NullablePaginationPageInfo) IsSet

func (v NullablePaginationPageInfo) IsSet() bool

func (NullablePaginationPageInfo) MarshalJSON

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

func (*NullablePaginationPageInfo) Set

func (*NullablePaginationPageInfo) UnmarshalJSON

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

func (*NullablePaginationPageInfo) Unset

func (v *NullablePaginationPageInfo) Unset()

type NullableStackpathRpcBadRequest

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

func (NullableStackpathRpcBadRequest) Get

func (NullableStackpathRpcBadRequest) IsSet

func (NullableStackpathRpcBadRequest) MarshalJSON

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

func (*NullableStackpathRpcBadRequest) Set

func (*NullableStackpathRpcBadRequest) UnmarshalJSON

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

func (*NullableStackpathRpcBadRequest) Unset

func (v *NullableStackpathRpcBadRequest) Unset()

type NullableStackpathRpcBadRequestAllOf

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

func (NullableStackpathRpcBadRequestAllOf) Get

func (NullableStackpathRpcBadRequestAllOf) IsSet

func (NullableStackpathRpcBadRequestAllOf) MarshalJSON

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

func (*NullableStackpathRpcBadRequestAllOf) Set

func (*NullableStackpathRpcBadRequestAllOf) UnmarshalJSON

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

func (*NullableStackpathRpcBadRequestAllOf) Unset

type NullableStackpathRpcBadRequestFieldViolation

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

func (NullableStackpathRpcBadRequestFieldViolation) Get

func (NullableStackpathRpcBadRequestFieldViolation) IsSet

func (NullableStackpathRpcBadRequestFieldViolation) MarshalJSON

func (*NullableStackpathRpcBadRequestFieldViolation) Set

func (*NullableStackpathRpcBadRequestFieldViolation) UnmarshalJSON

func (*NullableStackpathRpcBadRequestFieldViolation) Unset

type NullableStackpathRpcHelp

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

func NewNullableStackpathRpcHelp

func NewNullableStackpathRpcHelp(val *StackpathRpcHelp) *NullableStackpathRpcHelp

func (NullableStackpathRpcHelp) Get

func (NullableStackpathRpcHelp) IsSet

func (v NullableStackpathRpcHelp) IsSet() bool

func (NullableStackpathRpcHelp) MarshalJSON

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

func (*NullableStackpathRpcHelp) Set

func (*NullableStackpathRpcHelp) UnmarshalJSON

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

func (*NullableStackpathRpcHelp) Unset

func (v *NullableStackpathRpcHelp) Unset()

type NullableStackpathRpcHelpAllOf

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

func (NullableStackpathRpcHelpAllOf) Get

func (NullableStackpathRpcHelpAllOf) IsSet

func (NullableStackpathRpcHelpAllOf) MarshalJSON

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

func (*NullableStackpathRpcHelpAllOf) Set

func (*NullableStackpathRpcHelpAllOf) UnmarshalJSON

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

func (*NullableStackpathRpcHelpAllOf) Unset

func (v *NullableStackpathRpcHelpAllOf) Unset()
type NullableStackpathRpcHelpLink struct {
	// contains filtered or unexported fields
}
func NewNullableStackpathRpcHelpLink(val *StackpathRpcHelpLink) *NullableStackpathRpcHelpLink

func (NullableStackpathRpcHelpLink) Get

func (NullableStackpathRpcHelpLink) IsSet

func (NullableStackpathRpcHelpLink) MarshalJSON

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

func (*NullableStackpathRpcHelpLink) Set

func (*NullableStackpathRpcHelpLink) UnmarshalJSON

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

func (*NullableStackpathRpcHelpLink) Unset

func (v *NullableStackpathRpcHelpLink) Unset()

type NullableStackpathRpcLocalizedMessage

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

func (NullableStackpathRpcLocalizedMessage) Get

func (NullableStackpathRpcLocalizedMessage) IsSet

func (NullableStackpathRpcLocalizedMessage) MarshalJSON

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

func (*NullableStackpathRpcLocalizedMessage) Set

func (*NullableStackpathRpcLocalizedMessage) UnmarshalJSON

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

func (*NullableStackpathRpcLocalizedMessage) Unset

type NullableStackpathRpcLocalizedMessageAllOf

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

func (NullableStackpathRpcLocalizedMessageAllOf) Get

func (NullableStackpathRpcLocalizedMessageAllOf) IsSet

func (NullableStackpathRpcLocalizedMessageAllOf) MarshalJSON

func (*NullableStackpathRpcLocalizedMessageAllOf) Set

func (*NullableStackpathRpcLocalizedMessageAllOf) UnmarshalJSON

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

func (*NullableStackpathRpcLocalizedMessageAllOf) Unset

type NullableStackpathRpcPreconditionFailure

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

func (NullableStackpathRpcPreconditionFailure) Get

func (NullableStackpathRpcPreconditionFailure) IsSet

func (NullableStackpathRpcPreconditionFailure) MarshalJSON

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

func (*NullableStackpathRpcPreconditionFailure) Set

func (*NullableStackpathRpcPreconditionFailure) UnmarshalJSON

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

func (*NullableStackpathRpcPreconditionFailure) Unset

type NullableStackpathRpcPreconditionFailureAllOf

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

func (NullableStackpathRpcPreconditionFailureAllOf) Get

func (NullableStackpathRpcPreconditionFailureAllOf) IsSet

func (NullableStackpathRpcPreconditionFailureAllOf) MarshalJSON

func (*NullableStackpathRpcPreconditionFailureAllOf) Set

func (*NullableStackpathRpcPreconditionFailureAllOf) UnmarshalJSON

func (*NullableStackpathRpcPreconditionFailureAllOf) Unset

type NullableStackpathRpcPreconditionFailureViolation

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

func (NullableStackpathRpcPreconditionFailureViolation) Get

func (NullableStackpathRpcPreconditionFailureViolation) IsSet

func (NullableStackpathRpcPreconditionFailureViolation) MarshalJSON

func (*NullableStackpathRpcPreconditionFailureViolation) Set

func (*NullableStackpathRpcPreconditionFailureViolation) UnmarshalJSON

func (*NullableStackpathRpcPreconditionFailureViolation) Unset

type NullableStackpathRpcQuotaFailure

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

func (NullableStackpathRpcQuotaFailure) Get

func (NullableStackpathRpcQuotaFailure) IsSet

func (NullableStackpathRpcQuotaFailure) MarshalJSON

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

func (*NullableStackpathRpcQuotaFailure) Set

func (*NullableStackpathRpcQuotaFailure) UnmarshalJSON

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

func (*NullableStackpathRpcQuotaFailure) Unset

type NullableStackpathRpcQuotaFailureAllOf

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

func (NullableStackpathRpcQuotaFailureAllOf) Get

func (NullableStackpathRpcQuotaFailureAllOf) IsSet

func (NullableStackpathRpcQuotaFailureAllOf) MarshalJSON

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

func (*NullableStackpathRpcQuotaFailureAllOf) Set

func (*NullableStackpathRpcQuotaFailureAllOf) UnmarshalJSON

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

func (*NullableStackpathRpcQuotaFailureAllOf) Unset

type NullableStackpathRpcQuotaFailureViolation

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

func (NullableStackpathRpcQuotaFailureViolation) Get

func (NullableStackpathRpcQuotaFailureViolation) IsSet

func (NullableStackpathRpcQuotaFailureViolation) MarshalJSON

func (*NullableStackpathRpcQuotaFailureViolation) Set

func (*NullableStackpathRpcQuotaFailureViolation) UnmarshalJSON

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

func (*NullableStackpathRpcQuotaFailureViolation) Unset

type NullableStackpathRpcRequestInfo

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

func (NullableStackpathRpcRequestInfo) Get

func (NullableStackpathRpcRequestInfo) IsSet

func (NullableStackpathRpcRequestInfo) MarshalJSON

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

func (*NullableStackpathRpcRequestInfo) Set

func (*NullableStackpathRpcRequestInfo) UnmarshalJSON

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

func (*NullableStackpathRpcRequestInfo) Unset

type NullableStackpathRpcRequestInfoAllOf

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

func (NullableStackpathRpcRequestInfoAllOf) Get

func (NullableStackpathRpcRequestInfoAllOf) IsSet

func (NullableStackpathRpcRequestInfoAllOf) MarshalJSON

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

func (*NullableStackpathRpcRequestInfoAllOf) Set

func (*NullableStackpathRpcRequestInfoAllOf) UnmarshalJSON

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

func (*NullableStackpathRpcRequestInfoAllOf) Unset

type NullableStackpathRpcResourceInfo

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

func (NullableStackpathRpcResourceInfo) Get

func (NullableStackpathRpcResourceInfo) IsSet

func (NullableStackpathRpcResourceInfo) MarshalJSON

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

func (*NullableStackpathRpcResourceInfo) Set

func (*NullableStackpathRpcResourceInfo) UnmarshalJSON

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

func (*NullableStackpathRpcResourceInfo) Unset

type NullableStackpathRpcResourceInfoAllOf

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

func (NullableStackpathRpcResourceInfoAllOf) Get

func (NullableStackpathRpcResourceInfoAllOf) IsSet

func (NullableStackpathRpcResourceInfoAllOf) MarshalJSON

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

func (*NullableStackpathRpcResourceInfoAllOf) Set

func (*NullableStackpathRpcResourceInfoAllOf) UnmarshalJSON

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

func (*NullableStackpathRpcResourceInfoAllOf) Unset

type NullableStackpathRpcRetryInfo

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

func (NullableStackpathRpcRetryInfo) Get

func (NullableStackpathRpcRetryInfo) IsSet

func (NullableStackpathRpcRetryInfo) MarshalJSON

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

func (*NullableStackpathRpcRetryInfo) Set

func (*NullableStackpathRpcRetryInfo) UnmarshalJSON

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

func (*NullableStackpathRpcRetryInfo) Unset

func (v *NullableStackpathRpcRetryInfo) Unset()

type NullableStackpathRpcRetryInfoAllOf

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

func (NullableStackpathRpcRetryInfoAllOf) Get

func (NullableStackpathRpcRetryInfoAllOf) IsSet

func (NullableStackpathRpcRetryInfoAllOf) MarshalJSON

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

func (*NullableStackpathRpcRetryInfoAllOf) Set

func (*NullableStackpathRpcRetryInfoAllOf) UnmarshalJSON

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

func (*NullableStackpathRpcRetryInfoAllOf) 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 PaginationPageInfo

type PaginationPageInfo struct {
	// The total number of items in the dataset
	TotalCount *string `json:"totalCount,omitempty"`
	// Whether or not a previous page of data exists
	HasPreviousPage *bool `json:"hasPreviousPage,omitempty"`
	// Whether or not another page of data is available
	HasNextPage *bool `json:"hasNextPage,omitempty"`
	// The cursor for the first item in the set of data returned
	StartCursor *string `json:"startCursor,omitempty"`
	// The cursor for the last item in the set of data returned
	EndCursor *string `json:"endCursor,omitempty"`
}

PaginationPageInfo Information about a paginated response This is modeled after the GraphQL Relay spec to support both cursor based pagination and traditional offset based pagination.

func NewPaginationPageInfo

func NewPaginationPageInfo() *PaginationPageInfo

NewPaginationPageInfo instantiates a new PaginationPageInfo 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 NewPaginationPageInfoWithDefaults

func NewPaginationPageInfoWithDefaults() *PaginationPageInfo

NewPaginationPageInfoWithDefaults instantiates a new PaginationPageInfo 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 (*PaginationPageInfo) GetEndCursor

func (o *PaginationPageInfo) GetEndCursor() string

GetEndCursor returns the EndCursor field value if set, zero value otherwise.

func (*PaginationPageInfo) GetEndCursorOk

func (o *PaginationPageInfo) GetEndCursorOk() (*string, bool)

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

func (*PaginationPageInfo) GetHasNextPage

func (o *PaginationPageInfo) GetHasNextPage() bool

GetHasNextPage returns the HasNextPage field value if set, zero value otherwise.

func (*PaginationPageInfo) GetHasNextPageOk

func (o *PaginationPageInfo) GetHasNextPageOk() (*bool, bool)

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

func (*PaginationPageInfo) GetHasPreviousPage

func (o *PaginationPageInfo) GetHasPreviousPage() bool

GetHasPreviousPage returns the HasPreviousPage field value if set, zero value otherwise.

func (*PaginationPageInfo) GetHasPreviousPageOk

func (o *PaginationPageInfo) GetHasPreviousPageOk() (*bool, bool)

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

func (*PaginationPageInfo) GetStartCursor

func (o *PaginationPageInfo) GetStartCursor() string

GetStartCursor returns the StartCursor field value if set, zero value otherwise.

func (*PaginationPageInfo) GetStartCursorOk

func (o *PaginationPageInfo) GetStartCursorOk() (*string, bool)

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

func (*PaginationPageInfo) GetTotalCount

func (o *PaginationPageInfo) GetTotalCount() string

GetTotalCount returns the TotalCount field value if set, zero value otherwise.

func (*PaginationPageInfo) GetTotalCountOk

func (o *PaginationPageInfo) GetTotalCountOk() (*string, bool)

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

func (*PaginationPageInfo) HasEndCursor

func (o *PaginationPageInfo) HasEndCursor() bool

HasEndCursor returns a boolean if a field has been set.

func (*PaginationPageInfo) HasHasNextPage

func (o *PaginationPageInfo) HasHasNextPage() bool

HasHasNextPage returns a boolean if a field has been set.

func (*PaginationPageInfo) HasHasPreviousPage

func (o *PaginationPageInfo) HasHasPreviousPage() bool

HasHasPreviousPage returns a boolean if a field has been set.

func (*PaginationPageInfo) HasStartCursor

func (o *PaginationPageInfo) HasStartCursor() bool

HasStartCursor returns a boolean if a field has been set.

func (*PaginationPageInfo) HasTotalCount

func (o *PaginationPageInfo) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (PaginationPageInfo) MarshalJSON

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

func (*PaginationPageInfo) SetEndCursor

func (o *PaginationPageInfo) SetEndCursor(v string)

SetEndCursor gets a reference to the given string and assigns it to the EndCursor field.

func (*PaginationPageInfo) SetHasNextPage

func (o *PaginationPageInfo) SetHasNextPage(v bool)

SetHasNextPage gets a reference to the given bool and assigns it to the HasNextPage field.

func (*PaginationPageInfo) SetHasPreviousPage

func (o *PaginationPageInfo) SetHasPreviousPage(v bool)

SetHasPreviousPage gets a reference to the given bool and assigns it to the HasPreviousPage field.

func (*PaginationPageInfo) SetStartCursor

func (o *PaginationPageInfo) SetStartCursor(v string)

SetStartCursor gets a reference to the given string and assigns it to the StartCursor field.

func (*PaginationPageInfo) SetTotalCount

func (o *PaginationPageInfo) SetTotalCount(v string)

SetTotalCount gets a reference to the given string and assigns it to the TotalCount field.

type ServerConfiguration

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

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

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

URL formats template on a index using given variables

type ServerVariable

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

ServerVariable stores the information about a server variable

type StackpathRpcBadRequest

type StackpathRpcBadRequest struct {
	ApiStatusDetail
	FieldViolations *[]StackpathRpcBadRequestFieldViolation `json:"fieldViolations,omitempty"`
}

StackpathRpcBadRequest struct for StackpathRpcBadRequest

func NewStackpathRpcBadRequest

func NewStackpathRpcBadRequest() *StackpathRpcBadRequest

NewStackpathRpcBadRequest instantiates a new StackpathRpcBadRequest 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 NewStackpathRpcBadRequestWithDefaults

func NewStackpathRpcBadRequestWithDefaults() *StackpathRpcBadRequest

NewStackpathRpcBadRequestWithDefaults instantiates a new StackpathRpcBadRequest 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 (*StackpathRpcBadRequest) GetFieldViolations

GetFieldViolations returns the FieldViolations field value if set, zero value otherwise.

func (*StackpathRpcBadRequest) GetFieldViolationsOk

func (o *StackpathRpcBadRequest) GetFieldViolationsOk() (*[]StackpathRpcBadRequestFieldViolation, bool)

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

func (*StackpathRpcBadRequest) HasFieldViolations

func (o *StackpathRpcBadRequest) HasFieldViolations() bool

HasFieldViolations returns a boolean if a field has been set.

func (StackpathRpcBadRequest) MarshalJSON

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

func (*StackpathRpcBadRequest) SetFieldViolations

SetFieldViolations gets a reference to the given []StackpathRpcBadRequestFieldViolation and assigns it to the FieldViolations field.

type StackpathRpcBadRequestAllOf

type StackpathRpcBadRequestAllOf struct {
	FieldViolations *[]StackpathRpcBadRequestFieldViolation `json:"fieldViolations,omitempty"`
}

StackpathRpcBadRequestAllOf struct for StackpathRpcBadRequestAllOf

func NewStackpathRpcBadRequestAllOf

func NewStackpathRpcBadRequestAllOf() *StackpathRpcBadRequestAllOf

NewStackpathRpcBadRequestAllOf instantiates a new StackpathRpcBadRequestAllOf 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 NewStackpathRpcBadRequestAllOfWithDefaults

func NewStackpathRpcBadRequestAllOfWithDefaults() *StackpathRpcBadRequestAllOf

NewStackpathRpcBadRequestAllOfWithDefaults instantiates a new StackpathRpcBadRequestAllOf 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 (*StackpathRpcBadRequestAllOf) GetFieldViolations

GetFieldViolations returns the FieldViolations field value if set, zero value otherwise.

func (*StackpathRpcBadRequestAllOf) GetFieldViolationsOk

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

func (*StackpathRpcBadRequestAllOf) HasFieldViolations

func (o *StackpathRpcBadRequestAllOf) HasFieldViolations() bool

HasFieldViolations returns a boolean if a field has been set.

func (StackpathRpcBadRequestAllOf) MarshalJSON

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

func (*StackpathRpcBadRequestAllOf) SetFieldViolations

SetFieldViolations gets a reference to the given []StackpathRpcBadRequestFieldViolation and assigns it to the FieldViolations field.

type StackpathRpcBadRequestFieldViolation

type StackpathRpcBadRequestFieldViolation struct {
	Field       *string `json:"field,omitempty"`
	Description *string `json:"description,omitempty"`
}

StackpathRpcBadRequestFieldViolation struct for StackpathRpcBadRequestFieldViolation

func NewStackpathRpcBadRequestFieldViolation

func NewStackpathRpcBadRequestFieldViolation() *StackpathRpcBadRequestFieldViolation

NewStackpathRpcBadRequestFieldViolation instantiates a new StackpathRpcBadRequestFieldViolation 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 NewStackpathRpcBadRequestFieldViolationWithDefaults

func NewStackpathRpcBadRequestFieldViolationWithDefaults() *StackpathRpcBadRequestFieldViolation

NewStackpathRpcBadRequestFieldViolationWithDefaults instantiates a new StackpathRpcBadRequestFieldViolation 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 (*StackpathRpcBadRequestFieldViolation) GetDescription

func (o *StackpathRpcBadRequestFieldViolation) GetDescription() string

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

func (*StackpathRpcBadRequestFieldViolation) GetDescriptionOk

func (o *StackpathRpcBadRequestFieldViolation) 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 (*StackpathRpcBadRequestFieldViolation) GetField

GetField returns the Field field value if set, zero value otherwise.

func (*StackpathRpcBadRequestFieldViolation) GetFieldOk

func (o *StackpathRpcBadRequestFieldViolation) GetFieldOk() (*string, bool)

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

func (*StackpathRpcBadRequestFieldViolation) HasDescription

func (o *StackpathRpcBadRequestFieldViolation) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*StackpathRpcBadRequestFieldViolation) HasField

HasField returns a boolean if a field has been set.

func (StackpathRpcBadRequestFieldViolation) MarshalJSON

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

func (*StackpathRpcBadRequestFieldViolation) SetDescription

func (o *StackpathRpcBadRequestFieldViolation) SetDescription(v string)

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

func (*StackpathRpcBadRequestFieldViolation) SetField

SetField gets a reference to the given string and assigns it to the Field field.

type StackpathRpcHelp

type StackpathRpcHelp struct {
	ApiStatusDetail
	Links *[]StackpathRpcHelpLink `json:"links,omitempty"`
}

StackpathRpcHelp struct for StackpathRpcHelp

func NewStackpathRpcHelp

func NewStackpathRpcHelp() *StackpathRpcHelp

NewStackpathRpcHelp instantiates a new StackpathRpcHelp 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 NewStackpathRpcHelpWithDefaults

func NewStackpathRpcHelpWithDefaults() *StackpathRpcHelp

NewStackpathRpcHelpWithDefaults instantiates a new StackpathRpcHelp 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 (o *StackpathRpcHelp) GetLinks() []StackpathRpcHelpLink

GetLinks returns the Links field value if set, zero value otherwise.

func (*StackpathRpcHelp) GetLinksOk

func (o *StackpathRpcHelp) GetLinksOk() (*[]StackpathRpcHelpLink, bool)

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

func (o *StackpathRpcHelp) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (StackpathRpcHelp) MarshalJSON

func (o StackpathRpcHelp) MarshalJSON() ([]byte, error)
func (o *StackpathRpcHelp) SetLinks(v []StackpathRpcHelpLink)

SetLinks gets a reference to the given []StackpathRpcHelpLink and assigns it to the Links field.

type StackpathRpcHelpAllOf

type StackpathRpcHelpAllOf struct {
	Links *[]StackpathRpcHelpLink `json:"links,omitempty"`
}

StackpathRpcHelpAllOf struct for StackpathRpcHelpAllOf

func NewStackpathRpcHelpAllOf

func NewStackpathRpcHelpAllOf() *StackpathRpcHelpAllOf

NewStackpathRpcHelpAllOf instantiates a new StackpathRpcHelpAllOf 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 NewStackpathRpcHelpAllOfWithDefaults

func NewStackpathRpcHelpAllOfWithDefaults() *StackpathRpcHelpAllOf

NewStackpathRpcHelpAllOfWithDefaults instantiates a new StackpathRpcHelpAllOf 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

GetLinks returns the Links field value if set, zero value otherwise.

func (*StackpathRpcHelpAllOf) GetLinksOk

func (o *StackpathRpcHelpAllOf) GetLinksOk() (*[]StackpathRpcHelpLink, bool)

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

func (o *StackpathRpcHelpAllOf) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (StackpathRpcHelpAllOf) MarshalJSON

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

SetLinks gets a reference to the given []StackpathRpcHelpLink and assigns it to the Links field.

type StackpathRpcHelpLink struct {
	Description *string `json:"description,omitempty"`
	Url         *string `json:"url,omitempty"`
}

StackpathRpcHelpLink struct for StackpathRpcHelpLink

func NewStackpathRpcHelpLink() *StackpathRpcHelpLink

NewStackpathRpcHelpLink instantiates a new StackpathRpcHelpLink 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 NewStackpathRpcHelpLinkWithDefaults

func NewStackpathRpcHelpLinkWithDefaults() *StackpathRpcHelpLink

NewStackpathRpcHelpLinkWithDefaults instantiates a new StackpathRpcHelpLink 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 (*StackpathRpcHelpLink) GetDescription

func (o *StackpathRpcHelpLink) GetDescription() string

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

func (*StackpathRpcHelpLink) GetDescriptionOk

func (o *StackpathRpcHelpLink) 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 (*StackpathRpcHelpLink) GetUrl

func (o *StackpathRpcHelpLink) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*StackpathRpcHelpLink) GetUrlOk

func (o *StackpathRpcHelpLink) GetUrlOk() (*string, bool)

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

func (*StackpathRpcHelpLink) HasDescription

func (o *StackpathRpcHelpLink) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*StackpathRpcHelpLink) HasUrl

func (o *StackpathRpcHelpLink) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (StackpathRpcHelpLink) MarshalJSON

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

func (*StackpathRpcHelpLink) SetDescription

func (o *StackpathRpcHelpLink) SetDescription(v string)

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

func (*StackpathRpcHelpLink) SetUrl

func (o *StackpathRpcHelpLink) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

type StackpathRpcLocalizedMessage

type StackpathRpcLocalizedMessage struct {
	ApiStatusDetail
	Locale  *string `json:"locale,omitempty"`
	Message *string `json:"message,omitempty"`
}

StackpathRpcLocalizedMessage struct for StackpathRpcLocalizedMessage

func NewStackpathRpcLocalizedMessage

func NewStackpathRpcLocalizedMessage() *StackpathRpcLocalizedMessage

NewStackpathRpcLocalizedMessage instantiates a new StackpathRpcLocalizedMessage 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 NewStackpathRpcLocalizedMessageWithDefaults

func NewStackpathRpcLocalizedMessageWithDefaults() *StackpathRpcLocalizedMessage

NewStackpathRpcLocalizedMessageWithDefaults instantiates a new StackpathRpcLocalizedMessage 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 (*StackpathRpcLocalizedMessage) GetLocale

func (o *StackpathRpcLocalizedMessage) GetLocale() string

GetLocale returns the Locale field value if set, zero value otherwise.

func (*StackpathRpcLocalizedMessage) GetLocaleOk

func (o *StackpathRpcLocalizedMessage) GetLocaleOk() (*string, bool)

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

func (*StackpathRpcLocalizedMessage) GetMessage

func (o *StackpathRpcLocalizedMessage) GetMessage() string

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

func (*StackpathRpcLocalizedMessage) GetMessageOk

func (o *StackpathRpcLocalizedMessage) 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 (*StackpathRpcLocalizedMessage) HasLocale

func (o *StackpathRpcLocalizedMessage) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (*StackpathRpcLocalizedMessage) HasMessage

func (o *StackpathRpcLocalizedMessage) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (StackpathRpcLocalizedMessage) MarshalJSON

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

func (*StackpathRpcLocalizedMessage) SetLocale

func (o *StackpathRpcLocalizedMessage) SetLocale(v string)

SetLocale gets a reference to the given string and assigns it to the Locale field.

func (*StackpathRpcLocalizedMessage) SetMessage

func (o *StackpathRpcLocalizedMessage) SetMessage(v string)

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

type StackpathRpcLocalizedMessageAllOf

type StackpathRpcLocalizedMessageAllOf struct {
	Locale  *string `json:"locale,omitempty"`
	Message *string `json:"message,omitempty"`
}

StackpathRpcLocalizedMessageAllOf struct for StackpathRpcLocalizedMessageAllOf

func NewStackpathRpcLocalizedMessageAllOf

func NewStackpathRpcLocalizedMessageAllOf() *StackpathRpcLocalizedMessageAllOf

NewStackpathRpcLocalizedMessageAllOf instantiates a new StackpathRpcLocalizedMessageAllOf 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 NewStackpathRpcLocalizedMessageAllOfWithDefaults

func NewStackpathRpcLocalizedMessageAllOfWithDefaults() *StackpathRpcLocalizedMessageAllOf

NewStackpathRpcLocalizedMessageAllOfWithDefaults instantiates a new StackpathRpcLocalizedMessageAllOf 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 (*StackpathRpcLocalizedMessageAllOf) GetLocale

GetLocale returns the Locale field value if set, zero value otherwise.

func (*StackpathRpcLocalizedMessageAllOf) GetLocaleOk

func (o *StackpathRpcLocalizedMessageAllOf) GetLocaleOk() (*string, bool)

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

func (*StackpathRpcLocalizedMessageAllOf) GetMessage

func (o *StackpathRpcLocalizedMessageAllOf) GetMessage() string

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

func (*StackpathRpcLocalizedMessageAllOf) GetMessageOk

func (o *StackpathRpcLocalizedMessageAllOf) 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 (*StackpathRpcLocalizedMessageAllOf) HasLocale

func (o *StackpathRpcLocalizedMessageAllOf) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (*StackpathRpcLocalizedMessageAllOf) HasMessage

func (o *StackpathRpcLocalizedMessageAllOf) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (StackpathRpcLocalizedMessageAllOf) MarshalJSON

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

func (*StackpathRpcLocalizedMessageAllOf) SetLocale

func (o *StackpathRpcLocalizedMessageAllOf) SetLocale(v string)

SetLocale gets a reference to the given string and assigns it to the Locale field.

func (*StackpathRpcLocalizedMessageAllOf) SetMessage

func (o *StackpathRpcLocalizedMessageAllOf) SetMessage(v string)

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

type StackpathRpcPreconditionFailure

type StackpathRpcPreconditionFailure struct {
	ApiStatusDetail
	Violations *[]StackpathRpcPreconditionFailureViolation `json:"violations,omitempty"`
}

StackpathRpcPreconditionFailure struct for StackpathRpcPreconditionFailure

func NewStackpathRpcPreconditionFailure

func NewStackpathRpcPreconditionFailure() *StackpathRpcPreconditionFailure

NewStackpathRpcPreconditionFailure instantiates a new StackpathRpcPreconditionFailure 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 NewStackpathRpcPreconditionFailureWithDefaults

func NewStackpathRpcPreconditionFailureWithDefaults() *StackpathRpcPreconditionFailure

NewStackpathRpcPreconditionFailureWithDefaults instantiates a new StackpathRpcPreconditionFailure 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 (*StackpathRpcPreconditionFailure) GetViolations

GetViolations returns the Violations field value if set, zero value otherwise.

func (*StackpathRpcPreconditionFailure) GetViolationsOk

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

func (*StackpathRpcPreconditionFailure) HasViolations

func (o *StackpathRpcPreconditionFailure) HasViolations() bool

HasViolations returns a boolean if a field has been set.

func (StackpathRpcPreconditionFailure) MarshalJSON

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

func (*StackpathRpcPreconditionFailure) SetViolations

SetViolations gets a reference to the given []StackpathRpcPreconditionFailureViolation and assigns it to the Violations field.

type StackpathRpcPreconditionFailureAllOf

type StackpathRpcPreconditionFailureAllOf struct {
	Violations *[]StackpathRpcPreconditionFailureViolation `json:"violations,omitempty"`
}

StackpathRpcPreconditionFailureAllOf struct for StackpathRpcPreconditionFailureAllOf

func NewStackpathRpcPreconditionFailureAllOf

func NewStackpathRpcPreconditionFailureAllOf() *StackpathRpcPreconditionFailureAllOf

NewStackpathRpcPreconditionFailureAllOf instantiates a new StackpathRpcPreconditionFailureAllOf 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 NewStackpathRpcPreconditionFailureAllOfWithDefaults

func NewStackpathRpcPreconditionFailureAllOfWithDefaults() *StackpathRpcPreconditionFailureAllOf

NewStackpathRpcPreconditionFailureAllOfWithDefaults instantiates a new StackpathRpcPreconditionFailureAllOf 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 (*StackpathRpcPreconditionFailureAllOf) GetViolations

GetViolations returns the Violations field value if set, zero value otherwise.

func (*StackpathRpcPreconditionFailureAllOf) GetViolationsOk

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

func (*StackpathRpcPreconditionFailureAllOf) HasViolations

func (o *StackpathRpcPreconditionFailureAllOf) HasViolations() bool

HasViolations returns a boolean if a field has been set.

func (StackpathRpcPreconditionFailureAllOf) MarshalJSON

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

func (*StackpathRpcPreconditionFailureAllOf) SetViolations

SetViolations gets a reference to the given []StackpathRpcPreconditionFailureViolation and assigns it to the Violations field.

type StackpathRpcPreconditionFailureViolation

type StackpathRpcPreconditionFailureViolation struct {
	Type        *string `json:"type,omitempty"`
	Subject     *string `json:"subject,omitempty"`
	Description *string `json:"description,omitempty"`
}

StackpathRpcPreconditionFailureViolation struct for StackpathRpcPreconditionFailureViolation

func NewStackpathRpcPreconditionFailureViolation

func NewStackpathRpcPreconditionFailureViolation() *StackpathRpcPreconditionFailureViolation

NewStackpathRpcPreconditionFailureViolation instantiates a new StackpathRpcPreconditionFailureViolation 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 NewStackpathRpcPreconditionFailureViolationWithDefaults

func NewStackpathRpcPreconditionFailureViolationWithDefaults() *StackpathRpcPreconditionFailureViolation

NewStackpathRpcPreconditionFailureViolationWithDefaults instantiates a new StackpathRpcPreconditionFailureViolation 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 (*StackpathRpcPreconditionFailureViolation) GetDescription

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

func (*StackpathRpcPreconditionFailureViolation) GetDescriptionOk

func (o *StackpathRpcPreconditionFailureViolation) 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 (*StackpathRpcPreconditionFailureViolation) GetSubject

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

func (*StackpathRpcPreconditionFailureViolation) GetSubjectOk

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

func (*StackpathRpcPreconditionFailureViolation) GetType

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

func (*StackpathRpcPreconditionFailureViolation) GetTypeOk

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 (*StackpathRpcPreconditionFailureViolation) HasDescription

func (o *StackpathRpcPreconditionFailureViolation) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*StackpathRpcPreconditionFailureViolation) HasSubject

HasSubject returns a boolean if a field has been set.

func (*StackpathRpcPreconditionFailureViolation) HasType

HasType returns a boolean if a field has been set.

func (StackpathRpcPreconditionFailureViolation) MarshalJSON

func (*StackpathRpcPreconditionFailureViolation) SetDescription

func (o *StackpathRpcPreconditionFailureViolation) SetDescription(v string)

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

func (*StackpathRpcPreconditionFailureViolation) SetSubject

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

func (*StackpathRpcPreconditionFailureViolation) SetType

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

type StackpathRpcQuotaFailure

type StackpathRpcQuotaFailure struct {
	ApiStatusDetail
	Violations *[]StackpathRpcQuotaFailureViolation `json:"violations,omitempty"`
}

StackpathRpcQuotaFailure struct for StackpathRpcQuotaFailure

func NewStackpathRpcQuotaFailure

func NewStackpathRpcQuotaFailure() *StackpathRpcQuotaFailure

NewStackpathRpcQuotaFailure instantiates a new StackpathRpcQuotaFailure 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 NewStackpathRpcQuotaFailureWithDefaults

func NewStackpathRpcQuotaFailureWithDefaults() *StackpathRpcQuotaFailure

NewStackpathRpcQuotaFailureWithDefaults instantiates a new StackpathRpcQuotaFailure 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 (*StackpathRpcQuotaFailure) GetViolations

GetViolations returns the Violations field value if set, zero value otherwise.

func (*StackpathRpcQuotaFailure) GetViolationsOk

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

func (*StackpathRpcQuotaFailure) HasViolations

func (o *StackpathRpcQuotaFailure) HasViolations() bool

HasViolations returns a boolean if a field has been set.

func (StackpathRpcQuotaFailure) MarshalJSON

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

func (*StackpathRpcQuotaFailure) SetViolations

SetViolations gets a reference to the given []StackpathRpcQuotaFailureViolation and assigns it to the Violations field.

type StackpathRpcQuotaFailureAllOf

type StackpathRpcQuotaFailureAllOf struct {
	Violations *[]StackpathRpcQuotaFailureViolation `json:"violations,omitempty"`
}

StackpathRpcQuotaFailureAllOf struct for StackpathRpcQuotaFailureAllOf

func NewStackpathRpcQuotaFailureAllOf

func NewStackpathRpcQuotaFailureAllOf() *StackpathRpcQuotaFailureAllOf

NewStackpathRpcQuotaFailureAllOf instantiates a new StackpathRpcQuotaFailureAllOf 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 NewStackpathRpcQuotaFailureAllOfWithDefaults

func NewStackpathRpcQuotaFailureAllOfWithDefaults() *StackpathRpcQuotaFailureAllOf

NewStackpathRpcQuotaFailureAllOfWithDefaults instantiates a new StackpathRpcQuotaFailureAllOf 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 (*StackpathRpcQuotaFailureAllOf) GetViolations

GetViolations returns the Violations field value if set, zero value otherwise.

func (*StackpathRpcQuotaFailureAllOf) GetViolationsOk

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

func (*StackpathRpcQuotaFailureAllOf) HasViolations

func (o *StackpathRpcQuotaFailureAllOf) HasViolations() bool

HasViolations returns a boolean if a field has been set.

func (StackpathRpcQuotaFailureAllOf) MarshalJSON

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

func (*StackpathRpcQuotaFailureAllOf) SetViolations

SetViolations gets a reference to the given []StackpathRpcQuotaFailureViolation and assigns it to the Violations field.

type StackpathRpcQuotaFailureViolation

type StackpathRpcQuotaFailureViolation struct {
	Subject     *string `json:"subject,omitempty"`
	Description *string `json:"description,omitempty"`
}

StackpathRpcQuotaFailureViolation struct for StackpathRpcQuotaFailureViolation

func NewStackpathRpcQuotaFailureViolation

func NewStackpathRpcQuotaFailureViolation() *StackpathRpcQuotaFailureViolation

NewStackpathRpcQuotaFailureViolation instantiates a new StackpathRpcQuotaFailureViolation 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 NewStackpathRpcQuotaFailureViolationWithDefaults

func NewStackpathRpcQuotaFailureViolationWithDefaults() *StackpathRpcQuotaFailureViolation

NewStackpathRpcQuotaFailureViolationWithDefaults instantiates a new StackpathRpcQuotaFailureViolation 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 (*StackpathRpcQuotaFailureViolation) GetDescription

func (o *StackpathRpcQuotaFailureViolation) GetDescription() string

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

func (*StackpathRpcQuotaFailureViolation) GetDescriptionOk

func (o *StackpathRpcQuotaFailureViolation) 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 (*StackpathRpcQuotaFailureViolation) GetSubject

func (o *StackpathRpcQuotaFailureViolation) GetSubject() string

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

func (*StackpathRpcQuotaFailureViolation) GetSubjectOk

func (o *StackpathRpcQuotaFailureViolation) 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 (*StackpathRpcQuotaFailureViolation) HasDescription

func (o *StackpathRpcQuotaFailureViolation) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*StackpathRpcQuotaFailureViolation) HasSubject

func (o *StackpathRpcQuotaFailureViolation) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (StackpathRpcQuotaFailureViolation) MarshalJSON

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

func (*StackpathRpcQuotaFailureViolation) SetDescription

func (o *StackpathRpcQuotaFailureViolation) SetDescription(v string)

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

func (*StackpathRpcQuotaFailureViolation) SetSubject

func (o *StackpathRpcQuotaFailureViolation) SetSubject(v string)

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

type StackpathRpcRequestInfo

type StackpathRpcRequestInfo struct {
	ApiStatusDetail
	RequestId   *string `json:"requestId,omitempty"`
	ServingData *string `json:"servingData,omitempty"`
}

StackpathRpcRequestInfo struct for StackpathRpcRequestInfo

func NewStackpathRpcRequestInfo

func NewStackpathRpcRequestInfo() *StackpathRpcRequestInfo

NewStackpathRpcRequestInfo instantiates a new StackpathRpcRequestInfo 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 NewStackpathRpcRequestInfoWithDefaults

func NewStackpathRpcRequestInfoWithDefaults() *StackpathRpcRequestInfo

NewStackpathRpcRequestInfoWithDefaults instantiates a new StackpathRpcRequestInfo 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 (*StackpathRpcRequestInfo) GetRequestId

func (o *StackpathRpcRequestInfo) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise.

func (*StackpathRpcRequestInfo) GetRequestIdOk

func (o *StackpathRpcRequestInfo) GetRequestIdOk() (*string, bool)

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

func (*StackpathRpcRequestInfo) GetServingData

func (o *StackpathRpcRequestInfo) GetServingData() string

GetServingData returns the ServingData field value if set, zero value otherwise.

func (*StackpathRpcRequestInfo) GetServingDataOk

func (o *StackpathRpcRequestInfo) GetServingDataOk() (*string, bool)

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

func (*StackpathRpcRequestInfo) HasRequestId

func (o *StackpathRpcRequestInfo) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (*StackpathRpcRequestInfo) HasServingData

func (o *StackpathRpcRequestInfo) HasServingData() bool

HasServingData returns a boolean if a field has been set.

func (StackpathRpcRequestInfo) MarshalJSON

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

func (*StackpathRpcRequestInfo) SetRequestId

func (o *StackpathRpcRequestInfo) SetRequestId(v string)

SetRequestId gets a reference to the given string and assigns it to the RequestId field.

func (*StackpathRpcRequestInfo) SetServingData

func (o *StackpathRpcRequestInfo) SetServingData(v string)

SetServingData gets a reference to the given string and assigns it to the ServingData field.

type StackpathRpcRequestInfoAllOf

type StackpathRpcRequestInfoAllOf struct {
	RequestId   *string `json:"requestId,omitempty"`
	ServingData *string `json:"servingData,omitempty"`
}

StackpathRpcRequestInfoAllOf struct for StackpathRpcRequestInfoAllOf

func NewStackpathRpcRequestInfoAllOf

func NewStackpathRpcRequestInfoAllOf() *StackpathRpcRequestInfoAllOf

NewStackpathRpcRequestInfoAllOf instantiates a new StackpathRpcRequestInfoAllOf 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 NewStackpathRpcRequestInfoAllOfWithDefaults

func NewStackpathRpcRequestInfoAllOfWithDefaults() *StackpathRpcRequestInfoAllOf

NewStackpathRpcRequestInfoAllOfWithDefaults instantiates a new StackpathRpcRequestInfoAllOf 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 (*StackpathRpcRequestInfoAllOf) GetRequestId

func (o *StackpathRpcRequestInfoAllOf) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise.

func (*StackpathRpcRequestInfoAllOf) GetRequestIdOk

func (o *StackpathRpcRequestInfoAllOf) GetRequestIdOk() (*string, bool)

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

func (*StackpathRpcRequestInfoAllOf) GetServingData

func (o *StackpathRpcRequestInfoAllOf) GetServingData() string

GetServingData returns the ServingData field value if set, zero value otherwise.

func (*StackpathRpcRequestInfoAllOf) GetServingDataOk

func (o *StackpathRpcRequestInfoAllOf) GetServingDataOk() (*string, bool)

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

func (*StackpathRpcRequestInfoAllOf) HasRequestId

func (o *StackpathRpcRequestInfoAllOf) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (*StackpathRpcRequestInfoAllOf) HasServingData

func (o *StackpathRpcRequestInfoAllOf) HasServingData() bool

HasServingData returns a boolean if a field has been set.

func (StackpathRpcRequestInfoAllOf) MarshalJSON

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

func (*StackpathRpcRequestInfoAllOf) SetRequestId

func (o *StackpathRpcRequestInfoAllOf) SetRequestId(v string)

SetRequestId gets a reference to the given string and assigns it to the RequestId field.

func (*StackpathRpcRequestInfoAllOf) SetServingData

func (o *StackpathRpcRequestInfoAllOf) SetServingData(v string)

SetServingData gets a reference to the given string and assigns it to the ServingData field.

type StackpathRpcResourceInfo

type StackpathRpcResourceInfo struct {
	ApiStatusDetail
	ResourceType *string `json:"resourceType,omitempty"`
	ResourceName *string `json:"resourceName,omitempty"`
	Owner        *string `json:"owner,omitempty"`
	Description  *string `json:"description,omitempty"`
}

StackpathRpcResourceInfo struct for StackpathRpcResourceInfo

func NewStackpathRpcResourceInfo

func NewStackpathRpcResourceInfo() *StackpathRpcResourceInfo

NewStackpathRpcResourceInfo instantiates a new StackpathRpcResourceInfo 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 NewStackpathRpcResourceInfoWithDefaults

func NewStackpathRpcResourceInfoWithDefaults() *StackpathRpcResourceInfo

NewStackpathRpcResourceInfoWithDefaults instantiates a new StackpathRpcResourceInfo 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 (*StackpathRpcResourceInfo) GetDescription

func (o *StackpathRpcResourceInfo) GetDescription() string

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

func (*StackpathRpcResourceInfo) GetDescriptionOk

func (o *StackpathRpcResourceInfo) 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 (*StackpathRpcResourceInfo) GetOwner

func (o *StackpathRpcResourceInfo) GetOwner() string

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

func (*StackpathRpcResourceInfo) GetOwnerOk

func (o *StackpathRpcResourceInfo) GetOwnerOk() (*string, bool)

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

func (*StackpathRpcResourceInfo) GetResourceName

func (o *StackpathRpcResourceInfo) GetResourceName() string

GetResourceName returns the ResourceName field value if set, zero value otherwise.

func (*StackpathRpcResourceInfo) GetResourceNameOk

func (o *StackpathRpcResourceInfo) GetResourceNameOk() (*string, bool)

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

func (*StackpathRpcResourceInfo) GetResourceType

func (o *StackpathRpcResourceInfo) GetResourceType() string

GetResourceType returns the ResourceType field value if set, zero value otherwise.

func (*StackpathRpcResourceInfo) GetResourceTypeOk

func (o *StackpathRpcResourceInfo) GetResourceTypeOk() (*string, bool)

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

func (*StackpathRpcResourceInfo) HasDescription

func (o *StackpathRpcResourceInfo) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*StackpathRpcResourceInfo) HasOwner

func (o *StackpathRpcResourceInfo) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*StackpathRpcResourceInfo) HasResourceName

func (o *StackpathRpcResourceInfo) HasResourceName() bool

HasResourceName returns a boolean if a field has been set.

func (*StackpathRpcResourceInfo) HasResourceType

func (o *StackpathRpcResourceInfo) HasResourceType() bool

HasResourceType returns a boolean if a field has been set.

func (StackpathRpcResourceInfo) MarshalJSON

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

func (*StackpathRpcResourceInfo) SetDescription

func (o *StackpathRpcResourceInfo) SetDescription(v string)

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

func (*StackpathRpcResourceInfo) SetOwner

func (o *StackpathRpcResourceInfo) SetOwner(v string)

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

func (*StackpathRpcResourceInfo) SetResourceName

func (o *StackpathRpcResourceInfo) SetResourceName(v string)

SetResourceName gets a reference to the given string and assigns it to the ResourceName field.

func (*StackpathRpcResourceInfo) SetResourceType

func (o *StackpathRpcResourceInfo) SetResourceType(v string)

SetResourceType gets a reference to the given string and assigns it to the ResourceType field.

type StackpathRpcResourceInfoAllOf

type StackpathRpcResourceInfoAllOf struct {
	ResourceType *string `json:"resourceType,omitempty"`
	ResourceName *string `json:"resourceName,omitempty"`
	Owner        *string `json:"owner,omitempty"`
	Description  *string `json:"description,omitempty"`
}

StackpathRpcResourceInfoAllOf struct for StackpathRpcResourceInfoAllOf

func NewStackpathRpcResourceInfoAllOf

func NewStackpathRpcResourceInfoAllOf() *StackpathRpcResourceInfoAllOf

NewStackpathRpcResourceInfoAllOf instantiates a new StackpathRpcResourceInfoAllOf 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 NewStackpathRpcResourceInfoAllOfWithDefaults

func NewStackpathRpcResourceInfoAllOfWithDefaults() *StackpathRpcResourceInfoAllOf

NewStackpathRpcResourceInfoAllOfWithDefaults instantiates a new StackpathRpcResourceInfoAllOf 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 (*StackpathRpcResourceInfoAllOf) GetDescription

func (o *StackpathRpcResourceInfoAllOf) GetDescription() string

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

func (*StackpathRpcResourceInfoAllOf) GetDescriptionOk

func (o *StackpathRpcResourceInfoAllOf) 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 (*StackpathRpcResourceInfoAllOf) GetOwner

func (o *StackpathRpcResourceInfoAllOf) GetOwner() string

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

func (*StackpathRpcResourceInfoAllOf) GetOwnerOk

func (o *StackpathRpcResourceInfoAllOf) GetOwnerOk() (*string, bool)

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

func (*StackpathRpcResourceInfoAllOf) GetResourceName

func (o *StackpathRpcResourceInfoAllOf) GetResourceName() string

GetResourceName returns the ResourceName field value if set, zero value otherwise.

func (*StackpathRpcResourceInfoAllOf) GetResourceNameOk

func (o *StackpathRpcResourceInfoAllOf) GetResourceNameOk() (*string, bool)

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

func (*StackpathRpcResourceInfoAllOf) GetResourceType

func (o *StackpathRpcResourceInfoAllOf) GetResourceType() string

GetResourceType returns the ResourceType field value if set, zero value otherwise.

func (*StackpathRpcResourceInfoAllOf) GetResourceTypeOk

func (o *StackpathRpcResourceInfoAllOf) GetResourceTypeOk() (*string, bool)

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

func (*StackpathRpcResourceInfoAllOf) HasDescription

func (o *StackpathRpcResourceInfoAllOf) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*StackpathRpcResourceInfoAllOf) HasOwner

func (o *StackpathRpcResourceInfoAllOf) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*StackpathRpcResourceInfoAllOf) HasResourceName

func (o *StackpathRpcResourceInfoAllOf) HasResourceName() bool

HasResourceName returns a boolean if a field has been set.

func (*StackpathRpcResourceInfoAllOf) HasResourceType

func (o *StackpathRpcResourceInfoAllOf) HasResourceType() bool

HasResourceType returns a boolean if a field has been set.

func (StackpathRpcResourceInfoAllOf) MarshalJSON

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

func (*StackpathRpcResourceInfoAllOf) SetDescription

func (o *StackpathRpcResourceInfoAllOf) SetDescription(v string)

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

func (*StackpathRpcResourceInfoAllOf) SetOwner

func (o *StackpathRpcResourceInfoAllOf) SetOwner(v string)

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

func (*StackpathRpcResourceInfoAllOf) SetResourceName

func (o *StackpathRpcResourceInfoAllOf) SetResourceName(v string)

SetResourceName gets a reference to the given string and assigns it to the ResourceName field.

func (*StackpathRpcResourceInfoAllOf) SetResourceType

func (o *StackpathRpcResourceInfoAllOf) SetResourceType(v string)

SetResourceType gets a reference to the given string and assigns it to the ResourceType field.

type StackpathRpcRetryInfo

type StackpathRpcRetryInfo struct {
	ApiStatusDetail
	RetryDelay *string `json:"retryDelay,omitempty"`
}

StackpathRpcRetryInfo struct for StackpathRpcRetryInfo

func NewStackpathRpcRetryInfo

func NewStackpathRpcRetryInfo() *StackpathRpcRetryInfo

NewStackpathRpcRetryInfo instantiates a new StackpathRpcRetryInfo 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 NewStackpathRpcRetryInfoWithDefaults

func NewStackpathRpcRetryInfoWithDefaults() *StackpathRpcRetryInfo

NewStackpathRpcRetryInfoWithDefaults instantiates a new StackpathRpcRetryInfo 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 (*StackpathRpcRetryInfo) GetRetryDelay

func (o *StackpathRpcRetryInfo) GetRetryDelay() string

GetRetryDelay returns the RetryDelay field value if set, zero value otherwise.

func (*StackpathRpcRetryInfo) GetRetryDelayOk

func (o *StackpathRpcRetryInfo) GetRetryDelayOk() (*string, bool)

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

func (*StackpathRpcRetryInfo) HasRetryDelay

func (o *StackpathRpcRetryInfo) HasRetryDelay() bool

HasRetryDelay returns a boolean if a field has been set.

func (StackpathRpcRetryInfo) MarshalJSON

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

func (*StackpathRpcRetryInfo) SetRetryDelay

func (o *StackpathRpcRetryInfo) SetRetryDelay(v string)

SetRetryDelay gets a reference to the given string and assigns it to the RetryDelay field.

type StackpathRpcRetryInfoAllOf

type StackpathRpcRetryInfoAllOf struct {
	RetryDelay *string `json:"retryDelay,omitempty"`
}

StackpathRpcRetryInfoAllOf struct for StackpathRpcRetryInfoAllOf

func NewStackpathRpcRetryInfoAllOf

func NewStackpathRpcRetryInfoAllOf() *StackpathRpcRetryInfoAllOf

NewStackpathRpcRetryInfoAllOf instantiates a new StackpathRpcRetryInfoAllOf 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 NewStackpathRpcRetryInfoAllOfWithDefaults

func NewStackpathRpcRetryInfoAllOfWithDefaults() *StackpathRpcRetryInfoAllOf

NewStackpathRpcRetryInfoAllOfWithDefaults instantiates a new StackpathRpcRetryInfoAllOf 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 (*StackpathRpcRetryInfoAllOf) GetRetryDelay

func (o *StackpathRpcRetryInfoAllOf) GetRetryDelay() string

GetRetryDelay returns the RetryDelay field value if set, zero value otherwise.

func (*StackpathRpcRetryInfoAllOf) GetRetryDelayOk

func (o *StackpathRpcRetryInfoAllOf) GetRetryDelayOk() (*string, bool)

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

func (*StackpathRpcRetryInfoAllOf) HasRetryDelay

func (o *StackpathRpcRetryInfoAllOf) HasRetryDelay() bool

HasRetryDelay returns a boolean if a field has been set.

func (StackpathRpcRetryInfoAllOf) MarshalJSON

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

func (*StackpathRpcRetryInfoAllOf) SetRetryDelay

func (o *StackpathRpcRetryInfoAllOf) SetRetryDelay(v string)

SetRetryDelay gets a reference to the given string and assigns it to the RetryDelay field.

Source Files

Jump to

Keyboard shortcuts

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