package
0.1.0
Repository: https://github.com/kubeslice/stackpath.git
Documentation: pkg.go.dev

# README

Go API client for sites

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 "./sites"

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

ClassMethodHTTP requestDescription
DeliveryDomainsApiCreateSiteDeliveryDomainPost /delivery/v1/stacks/{stack_id}/sites/{site_id}/delivery_domainsAdd a delivery domain to a site
DeliveryDomainsApiDeleteSiteDeliveryDomainDelete /delivery/v1/stacks/{stack_id}/sites/{site_id}/delivery_domains/{domain}Remove a delivery domain from a site
DeliveryDomainsApiGetSiteDeliveryDomains2Get /delivery/v1/stacks/{stack_id}/sites/{site_id}/delivery_domainsRetrieve the delivery domains configured on a site
MetricsApiGetMetricsGet /delivery/v1/stacks/{stack_id}/metricsGet metrics
OriginsApiConnectScopeToOriginPost /delivery/v1/stacks/{stack_id}/sites/{site_id}/scopes/{scope_id}/originsConnect an origin to a scope
OriginsApiGetOriginGet /delivery/v1/stacks/{stack_id}/origins/{origin_id}Get an origin
OriginsApiGetOriginsGet /delivery/v1/stacks/{stack_id}/originsGet all origins
OriginsApiGetScopeOriginsGet /delivery/v1/stacks/{stack_id}/sites/{site_id}/scopes/{scope_id}/originsGet a scope's origins
OriginsApiUpdateOriginPatch /delivery/v1/stacks/{stack_id}/origins/{origin_id}Update an origin
SSLApiRecheckCertificateVerificationPost /delivery/v1/stacks/{stack_id}/certificates/{certificate_id}/recheckRe-check certificate verification
SiteFeaturesApiDisableSiteCDNDelete /delivery/v1/stacks/{stack_id}/sites/{site_id}/cdnDisable CDN
SiteFeaturesApiDisableSiteEdgeEngine2Delete /delivery/v1/stacks/{stack_id}/sites/{site_id}/scriptingDisable serverless scripting
SiteFeaturesApiDisableSiteWAFDelete /delivery/v1/stacks/{stack_id}/sites/{site_id}/wafDisable WAF
SiteFeaturesApiEnableSiteCDNPost /delivery/v1/stacks/{stack_id}/sites/{site_id}/cdnEnable CDN
SiteFeaturesApiEnableSiteEdgeEngine2Post /delivery/v1/stacks/{stack_id}/sites/{site_id}/scriptingEnable serverless scripting
SiteFeaturesApiEnableSiteWAFPost /delivery/v1/stacks/{stack_id}/sites/{site_id}/wafEnable WAF
SitesApiCreateSitePost /delivery/v1/stacks/{stack_id}/sitesCreate a site
SitesApiDeleteSiteDelete /delivery/v1/stacks/{stack_id}/sites/{site_id}Delete a site
SitesApiGetSiteGet /delivery/v1/stacks/{stack_id}/sites/{site_id}Get a site
SitesApiGetSitesGet /delivery/v1/stacks/{stack_id}/sitesGet all sites

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

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResonse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
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.
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.
NewCdncustconfOrigin instantiates a new CdncustconfOrigin 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.
NewCdncustconfOriginWithDefaults instantiates a new CdncustconfOrigin 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.
NewConfiguration returns a new Configuration object.
NewCustconfAccessLogs instantiates a new CustconfAccessLogs 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.
NewCustconfAccessLogsConfig instantiates a new CustconfAccessLogsConfig 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.
NewCustconfAccessLogsConfigWithDefaults instantiates a new CustconfAccessLogsConfig 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.
NewCustconfAccessLogsWithDefaults instantiates a new CustconfAccessLogs 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.
NewCustconfAuthACL instantiates a new CustconfAuthACL 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.
NewCustconfAuthACLWithDefaults instantiates a new CustconfAuthACL 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.
NewCustconfAuthGeo instantiates a new CustconfAuthGeo 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.
NewCustconfAuthGeoWithDefaults instantiates a new CustconfAuthGeo 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.
NewCustconfAuthHttpBasic instantiates a new CustconfAuthHttpBasic 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.
NewCustconfAuthHttpBasicWithDefaults instantiates a new CustconfAuthHttpBasic 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.
NewCustconfAuthReferer instantiates a new CustconfAuthReferer 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.
NewCustconfAuthRefererWithDefaults instantiates a new CustconfAuthReferer 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.
NewCustconfAuthUrlAsymmetricSignTlu instantiates a new CustconfAuthUrlAsymmetricSignTlu 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.
NewCustconfAuthUrlAsymmetricSignTluWithDefaults instantiates a new CustconfAuthUrlAsymmetricSignTlu 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.
NewCustconfAuthUrlSign instantiates a new CustconfAuthUrlSign 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.
NewCustconfAuthUrlSignAliCloudA instantiates a new CustconfAuthUrlSignAliCloudA 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.
NewCustconfAuthUrlSignAliCloudAWithDefaults instantiates a new CustconfAuthUrlSignAliCloudA 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.
NewCustconfAuthUrlSignAliCloudB instantiates a new CustconfAuthUrlSignAliCloudB 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.
NewCustconfAuthUrlSignAliCloudBWithDefaults instantiates a new CustconfAuthUrlSignAliCloudB 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.
NewCustconfAuthUrlSignAliCloudC instantiates a new CustconfAuthUrlSignAliCloudC 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.
NewCustconfAuthUrlSignAliCloudCWithDefaults instantiates a new CustconfAuthUrlSignAliCloudC 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.
NewCustconfAuthUrlSignHmacTlu instantiates a new CustconfAuthUrlSignHmacTlu 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.
NewCustconfAuthUrlSignHmacTluWithDefaults instantiates a new CustconfAuthUrlSignHmacTlu 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.
NewCustconfAuthUrlSignIq instantiates a new CustconfAuthUrlSignIq 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.
NewCustconfAuthUrlSignIqWithDefaults instantiates a new CustconfAuthUrlSignIq 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.
NewCustconfAuthUrlSignWithDefaults instantiates a new CustconfAuthUrlSign 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.
NewCustconfAwsSignedOriginPullV4 instantiates a new CustconfAwsSignedOriginPullV4 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.
NewCustconfAwsSignedOriginPullV4WithDefaults instantiates a new CustconfAwsSignedOriginPullV4 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.
NewCustconfAwsSignedS3PostV4 instantiates a new CustconfAwsSignedS3PostV4 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.
NewCustconfAwsSignedS3PostV4WithDefaults instantiates a new CustconfAwsSignedS3PostV4 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.
NewCustconfBandWidthLimit instantiates a new CustconfBandWidthLimit 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.
NewCustconfBandWidthLimitWithDefaults instantiates a new CustconfBandWidthLimit 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.
NewCustconfBandwidthRateLimit instantiates a new CustconfBandwidthRateLimit 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.
NewCustconfBandwidthRateLimitWithDefaults instantiates a new CustconfBandwidthRateLimit 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.
NewCustconfBypassCache instantiates a new CustconfBypassCache 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.
NewCustconfBypassCacheWithDefaults instantiates a new CustconfBypassCache 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.
NewCustconfCacheControl instantiates a new CustconfCacheControl 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.
NewCustconfCacheControlWithDefaults instantiates a new CustconfCacheControl 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.
NewCustconfCacheKeyModification instantiates a new CustconfCacheKeyModification 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.
NewCustconfCacheKeyModificationWithDefaults instantiates a new CustconfCacheKeyModification 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.
NewCustconfClientRequestModification instantiates a new CustconfClientRequestModification 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.
NewCustconfClientRequestModificationWithDefaults instantiates a new CustconfClientRequestModification 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.
NewCustconfClientResponseModification instantiates a new CustconfClientResponseModification 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.
NewCustconfClientResponseModificationWithDefaults instantiates a new CustconfClientResponseModification 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.
NewCustconfCompression instantiates a new CustconfCompression 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.
NewCustconfCompressionWithDefaults instantiates a new CustconfCompression 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.
NewCustconfConfiguration instantiates a new CustconfConfiguration 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.
NewCustconfConfigurationWithDefaults instantiates a new CustconfConfiguration 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.
NewCustconfContentDispositionByHeader instantiates a new CustconfContentDispositionByHeader 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.
NewCustconfContentDispositionByHeaderWithDefaults instantiates a new CustconfContentDispositionByHeader 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.
NewCustconfContentDispositionByURL instantiates a new CustconfContentDispositionByURL 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.
NewCustconfContentDispositionByURLWithDefaults instantiates a new CustconfContentDispositionByURL 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.
NewCustconfCustomer instantiates a new CustconfCustomer 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.
NewCustconfCustomerWithDefaults instantiates a new CustconfCustomer 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.
NewCustconfCustomHeader instantiates a new CustconfCustomHeader 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.
NewCustconfCustomHeaderWithDefaults instantiates a new CustconfCustomHeader 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.
NewCustconfCustomMimeType instantiates a new CustconfCustomMimeType 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.
NewCustconfCustomMimeTypeWithDefaults instantiates a new CustconfCustomMimeType 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.
NewCustconfDynamicCacheRule instantiates a new CustconfDynamicCacheRule 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.
NewCustconfDynamicCacheRuleWithDefaults instantiates a new CustconfDynamicCacheRule 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.
NewCustconfDynamicContent instantiates a new CustconfDynamicContent 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.
NewCustconfDynamicContentWithDefaults instantiates a new CustconfDynamicContent 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.
NewCustconfFailSafeOriginPull instantiates a new CustconfFailSafeOriginPull 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.
NewCustconfFailSafeOriginPullWithDefaults instantiates a new CustconfFailSafeOriginPull 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.
NewCustconfFarAheadRangeProxy instantiates a new CustconfFarAheadRangeProxy 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.
NewCustconfFarAheadRangeProxyWithDefaults instantiates a new CustconfFarAheadRangeProxy 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.
NewCustconfFileSegmentation instantiates a new CustconfFileSegmentation 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.
NewCustconfFileSegmentationWithDefaults instantiates a new CustconfFileSegmentation 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.
NewCustconfFlvPseudoStreaming instantiates a new CustconfFlvPseudoStreaming 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.
NewCustconfFlvPseudoStreamingWithDefaults instantiates a new CustconfFlvPseudoStreaming 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.
NewCustconfGzipOriginPull instantiates a new CustconfGzipOriginPull 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.
NewCustconfGzipOriginPullWithDefaults instantiates a new CustconfGzipOriginPull 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.
NewCustconfHttp2Support instantiates a new CustconfHttp2Support 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.
NewCustconfHttp2SupportWithDefaults instantiates a new CustconfHttp2Support 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.
NewCustconfHttpMethods instantiates a new CustconfHttpMethods 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.
NewCustconfHttpMethodsWithDefaults instantiates a new CustconfHttpMethods 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.
NewCustconfOriginPersistentConnections instantiates a new CustconfOriginPersistentConnections 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.
NewCustconfOriginPersistentConnectionsWithDefaults instantiates a new CustconfOriginPersistentConnections 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.
NewCustconfOriginPull instantiates a new CustconfOriginPull 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.
NewCustconfOriginPullCacheExtension instantiates a new CustconfOriginPullCacheExtension 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.
NewCustconfOriginPullCacheExtensionWithDefaults instantiates a new CustconfOriginPullCacheExtension 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.
NewCustconfOriginPullHost instantiates a new CustconfOriginPullHost 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.
NewCustconfOriginPullHostWithDefaults instantiates a new CustconfOriginPullHost 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.
NewCustconfOriginPullLogs instantiates a new CustconfOriginPullLogs 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.
NewCustconfOriginPullLogsConfig instantiates a new CustconfOriginPullLogsConfig 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.
NewCustconfOriginPullLogsConfigWithDefaults instantiates a new CustconfOriginPullLogsConfig 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.
NewCustconfOriginPullLogsWithDefaults instantiates a new CustconfOriginPullLogs 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.
NewCustconfOriginPullPolicy instantiates a new CustconfOriginPullPolicy 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.
NewCustconfOriginPullPolicyWithDefaults instantiates a new CustconfOriginPullPolicy 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.
NewCustconfOriginPullProtocol instantiates a new CustconfOriginPullProtocol 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.
NewCustconfOriginPullProtocolWithDefaults instantiates a new CustconfOriginPullProtocol 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.
NewCustconfOriginPullResumeDownload instantiates a new CustconfOriginPullResumeDownload 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.
NewCustconfOriginPullResumeDownloadWithDefaults instantiates a new CustconfOriginPullResumeDownload 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.
NewCustconfOriginPullWithDefaults instantiates a new CustconfOriginPull 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.
NewCustconfOriginRequestModification instantiates a new CustconfOriginRequestModification 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.
NewCustconfOriginRequestModificationWithDefaults instantiates a new CustconfOriginRequestModification 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.
NewCustconfOriginResponseModification instantiates a new CustconfOriginResponseModification 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.
NewCustconfOriginResponseModificationWithDefaults instantiates a new CustconfOriginResponseModification 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.
NewCustconfQueryStrParam instantiates a new CustconfQueryStrParam 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.
NewCustconfQueryStrParamWithDefaults instantiates a new CustconfQueryStrParam 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.
NewCustconfReceiptLogsConfig instantiates a new CustconfReceiptLogsConfig 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.
NewCustconfReceiptLogsConfigWithDefaults instantiates a new CustconfReceiptLogsConfig 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.
NewCustconfRedirectExceptions instantiates a new CustconfRedirectExceptions 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.
NewCustconfRedirectExceptionsWithDefaults instantiates a new CustconfRedirectExceptions 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.
NewCustconfRedirectMappings instantiates a new CustconfRedirectMappings 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.
NewCustconfRedirectMappingsWithDefaults instantiates a new CustconfRedirectMappings 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.
NewCustconfResponseHeader instantiates a new CustconfResponseHeader 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.
NewCustconfResponseHeaderWithDefaults instantiates a new CustconfResponseHeader 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.
NewCustconfRobotsTxt instantiates a new CustconfRobotsTxt 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.
NewCustconfRobotsTxtWithDefaults instantiates a new CustconfRobotsTxt 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.
NewCustconfStaticHeader instantiates a new CustconfStaticHeader 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.
NewCustconfStaticHeaderWithDefaults instantiates a new CustconfStaticHeader 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.
NewCustconfTimePseudoStreaming instantiates a new CustconfTimePseudoStreaming 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.
NewCustconfTimePseudoStreamingWithDefaults instantiates a new CustconfTimePseudoStreaming 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.
NewCustconfVHost instantiates a new CustconfVHost 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.
NewCustconfVHostWithDefaults instantiates a new CustconfVHost 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.
NewDataMatrix instantiates a new DataMatrix 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.
NewDataMatrixResult instantiates a new DataMatrixResult 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.
NewDataMatrixResultWithDefaults instantiates a new DataMatrixResult 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.
NewDataMatrixWithDefaults instantiates a new DataMatrix 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.
NewDataVector instantiates a new DataVector 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.
NewDataVectorResult instantiates a new DataVectorResult 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.
NewDataVectorResultWithDefaults instantiates a new DataVectorResult 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.
NewDataVectorWithDefaults instantiates a new DataVector 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.
NewDeliveryAWSS3Origin instantiates a new DeliveryAWSS3Origin 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.
NewDeliveryAWSS3OriginWithDefaults instantiates a new DeliveryAWSS3Origin 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.
NewDeliveryBasicAuthentication instantiates a new DeliveryBasicAuthentication 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.
NewDeliveryBasicAuthenticationWithDefaults instantiates a new DeliveryBasicAuthentication 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.
NewDeliveryConnectScopeToOriginRequest instantiates a new DeliveryConnectScopeToOriginRequest 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.
NewDeliveryConnectScopeToOriginRequestOrigin instantiates a new DeliveryConnectScopeToOriginRequestOrigin 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.
NewDeliveryConnectScopeToOriginRequestOriginWithDefaults instantiates a new DeliveryConnectScopeToOriginRequestOrigin 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.
NewDeliveryConnectScopeToOriginRequestWithDefaults instantiates a new DeliveryConnectScopeToOriginRequest 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.
NewDeliveryConnectScopeToOriginResponse instantiates a new DeliveryConnectScopeToOriginResponse 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.
NewDeliveryConnectScopeToOriginResponseWithDefaults instantiates a new DeliveryConnectScopeToOriginResponse 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.
NewDeliveryCreateSiteDeliveryDomainRequest instantiates a new DeliveryCreateSiteDeliveryDomainRequest 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.
NewDeliveryCreateSiteDeliveryDomainRequestWithDefaults instantiates a new DeliveryCreateSiteDeliveryDomainRequest 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.
NewDeliveryCreateSiteDeliveryDomainResponse instantiates a new DeliveryCreateSiteDeliveryDomainResponse 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.
NewDeliveryCreateSiteDeliveryDomainResponseWithDefaults instantiates a new DeliveryCreateSiteDeliveryDomainResponse 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.
NewDeliveryCreateSiteRequest instantiates a new DeliveryCreateSiteRequest 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.
NewDeliveryCreateSiteRequestOrigin instantiates a new DeliveryCreateSiteRequestOrigin 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.
NewDeliveryCreateSiteRequestOriginWithDefaults instantiates a new DeliveryCreateSiteRequestOrigin 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.
NewDeliveryCreateSiteRequestWithDefaults instantiates a new DeliveryCreateSiteRequest 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.
NewDeliveryCreateSiteResponse instantiates a new DeliveryCreateSiteResponse 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.
NewDeliveryCreateSiteResponseWithDefaults instantiates a new DeliveryCreateSiteResponse 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.
NewDeliveryEnableSiteWAFRequest instantiates a new DeliveryEnableSiteWAFRequest 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.
NewDeliveryEnableSiteWAFRequestWithDefaults instantiates a new DeliveryEnableSiteWAFRequest 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.
NewDeliveryGetOriginResponse instantiates a new DeliveryGetOriginResponse 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.
NewDeliveryGetOriginResponseWithDefaults instantiates a new DeliveryGetOriginResponse 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.
NewDeliveryGetOriginsResponse instantiates a new DeliveryGetOriginsResponse 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.
NewDeliveryGetOriginsResponseWithDefaults instantiates a new DeliveryGetOriginsResponse 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.
NewDeliveryGetScopeOriginsResponse instantiates a new DeliveryGetScopeOriginsResponse 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.
NewDeliveryGetScopeOriginsResponseWithDefaults instantiates a new DeliveryGetScopeOriginsResponse 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.
NewDeliveryGetSiteDeliveryDomainsResponse instantiates a new DeliveryGetSiteDeliveryDomainsResponse 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.
NewDeliveryGetSiteDeliveryDomainsResponseWithDefaults instantiates a new DeliveryGetSiteDeliveryDomainsResponse 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.
NewDeliveryGetSiteResponse instantiates a new DeliveryGetSiteResponse 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.
NewDeliveryGetSiteResponseWithDefaults instantiates a new DeliveryGetSiteResponse 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.
NewDeliveryGetSitesResponse instantiates a new DeliveryGetSitesResponse 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.
NewDeliveryGetSitesResponseWithDefaults instantiates a new DeliveryGetSitesResponse 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.
NewDeliveryGoogleStorageOrigin instantiates a new DeliveryGoogleStorageOrigin 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.
NewDeliveryGoogleStorageOriginWithDefaults instantiates a new DeliveryGoogleStorageOrigin 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.
NewDeliveryHTTPOrigin instantiates a new DeliveryHTTPOrigin 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.
NewDeliveryHTTPOriginWithDefaults instantiates a new DeliveryHTTPOrigin 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.
NewDeliveryOriginAuthentication instantiates a new DeliveryOriginAuthentication 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.
NewDeliveryOriginAuthenticationWithDefaults instantiates a new DeliveryOriginAuthentication 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.
NewDeliveryS3Authentication instantiates a new DeliveryS3Authentication 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.
NewDeliveryS3AuthenticationWithDefaults instantiates a new DeliveryS3Authentication 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.
NewDeliveryScopeOrigin instantiates a new DeliveryScopeOrigin 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.
NewDeliveryScopeOriginWithDefaults instantiates a new DeliveryScopeOrigin 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.
NewDeliverySite instantiates a new DeliverySite 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.
NewDeliverySiteWithDefaults instantiates a new DeliverySite 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.
NewDeliveryStackPathStorageOrigin instantiates a new DeliveryStackPathStorageOrigin 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.
NewDeliveryStackPathStorageOriginWithDefaults instantiates a new DeliveryStackPathStorageOrigin 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.
NewDeliveryUpdateOriginRequest instantiates a new DeliveryUpdateOriginRequest 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.
NewDeliveryUpdateOriginRequestWithDefaults instantiates a new DeliveryUpdateOriginRequest 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.
NewDeliveryUpdateOriginResponse instantiates a new DeliveryUpdateOriginResponse 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.
NewDeliveryUpdateOriginResponseWithDefaults instantiates a new DeliveryUpdateOriginResponse 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.
NewMetricsData instantiates a new MetricsData 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.
NewMetricsDataValue instantiates a new MetricsDataValue 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.
NewMetricsDataValueWithDefaults instantiates a new MetricsDataValue 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.
NewMetricsDataWithDefaults instantiates a new MetricsData 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.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
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.
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.
NewPrometheusMetrics instantiates a new PrometheusMetrics 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.
NewPrometheusMetricsWithDefaults instantiates a new PrometheusMetrics 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.
NewSchemadeliveryDeliveryDomain instantiates a new SchemadeliveryDeliveryDomain 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.
NewSchemadeliveryDeliveryDomainWithDefaults instantiates a new SchemadeliveryDeliveryDomain 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.
NewSchemadeliveryOrigin instantiates a new SchemadeliveryOrigin 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.
NewSchemadeliveryOriginWithDefaults instantiates a new SchemadeliveryOrigin 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.
NewStackpathapiStatus instantiates a new StackpathapiStatus 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.
NewStackpathapiStatusWithDefaults instantiates a new StackpathapiStatus 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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
PtrBool is a helper routine that returns a pointer to given integer value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.

# Constants

List of AuthACLAccessCodeEnumWrapperValue.
List of AuthACLAccessCodeEnumWrapperValue.
List of AuthACLAccessCodeEnumWrapperValue.
List of AuthACLClientIPSrcEnumWrapperValue.
List of AuthACLClientIPSrcEnumWrapperValue.
List of AuthACLClientIPSrcEnumWrapperValue.
List of AuthGeoCodeEnumWrapperValue.
List of AuthGeoCodeEnumWrapperValue.
List of AuthGeoCodeEnumWrapperValue.
List of AuthGeoCodeEnumWrapperValue.
List of AuthGeoCodeEnumWrapperValue.
List of AuthGeoCodeEnumWrapperValue.
List of AuthGeoCodeEnumWrapperValue.
List of AuthGeoCodeEnumWrapperValue.
List of AuthGeoCodeEnumWrapperValue.
List of AuthGeoCodeEnumWrapperValue.
List of BandwidthRateLimitInitialBurstUnitsEnumWrapperValue.
List of BandwidthRateLimitInitialBurstUnitsEnumWrapperValue.
List of BandwidthRateLimitInitialBurstUnitsEnumWrapperValue.
List of BandwidthRateLimitSustainedRateUnitsEnumWrapperValue.
List of BandwidthRateLimitSustainedRateUnitsEnumWrapperValue.
List of BandwidthRateLimitSustainedRateUnitsEnumWrapperValue.
List of ContentDispositionByHeaderDefaultTypeEnumWrapperValue.
List of ContentDispositionByHeaderDefaultTypeEnumWrapperValue.
List of ContentDispositionByHeaderDefaultTypeEnumWrapperValue.
List of custconfAuthACLProtocolEnumWrapperValue.
List of custconfAuthACLProtocolEnumWrapperValue.
List of custconfAuthACLProtocolEnumWrapperValue.
List of custconfAuthACLProtocolEnumWrapperValue.
List of custconfAuthUrlAsymmetricSignTluAlgorithmIdMapEnumWrapperValue.
List of custconfAuthUrlAsymmetricSignTluAlgorithmIdMapEnumWrapperValue.
List of custconfAuthUrlAsymmetricSignTluAlgorithmIdMapEnumWrapperValue.
List of custconfAuthUrlSignHmacTluAlgorithmIdMapEnumWrapperValue.
List of custconfAuthUrlSignHmacTluAlgorithmIdMapEnumWrapperValue.
List of custconfAuthUrlSignHmacTluAlgorithmIdMapEnumWrapperValue.
List of custconfAwsSignedOriginPullV4AuthenticationTypeEnumWrapperValue.
List of custconfAwsSignedOriginPullV4AuthenticationTypeEnumWrapperValue.
List of custconfAwsSignedOriginPullV4AuthenticationTypeEnumWrapperValue.
List of custconfAwsSignedS3PostV4AuthenticationTypeEnumWrapperValue.
List of custconfAwsSignedS3PostV4AuthenticationTypeEnumWrapperValue.
List of custconfAwsSignedS3PostV4AuthenticationTypeEnumWrapperValue.
List of custconfClientRequestModificationFlowControlEnumWrapperValue.
List of custconfClientRequestModificationFlowControlEnumWrapperValue.
List of custconfClientRequestModificationFlowControlEnumWrapperValue.
List of custconfClientResponseModificationFlowControlEnumWrapperValue.
List of custconfClientResponseModificationFlowControlEnumWrapperValue.
List of custconfClientResponseModificationFlowControlEnumWrapperValue.
List of custconfOriginPullProtocolProtocolEnumWrapperValue.
List of custconfOriginPullProtocolProtocolEnumWrapperValue.
List of custconfOriginPullProtocolProtocolEnumWrapperValue.
List of custconfOriginPullProtocolProtocolEnumWrapperValue.
List of custconfOriginResponseModificationFlowControlEnumWrapperValue.
List of custconfOriginResponseModificationFlowControlEnumWrapperValue.
List of custconfOriginResponseModificationFlowControlEnumWrapperValue.
List of deliveryCreateSiteRequestFeature.
List of deliveryCreateSiteRequestFeature.
List of deliveryCreateSiteRequestFeature.
List of deliverySiteFeature.
List of deliverySiteFeature.
List of deliverySiteFeature.
List of deliverySiteFeature.
List of OriginPullPolicyDefaultCacheBehaviorEnumWrapperValue.
List of OriginPullPolicyDefaultCacheBehaviorEnumWrapperValue.
List of OriginPullPolicyDefaultCacheBehaviorEnumWrapperValue.
List of OriginPullPolicyExpirePolicyEnumWrapperValue.
List of OriginPullPolicyExpirePolicyEnumWrapperValue.
List of OriginPullPolicyExpirePolicyEnumWrapperValue.
List of OriginPullPolicyExpirePolicyEnumWrapperValue.
List of OriginPullPolicyExpirePolicyEnumWrapperValue.
List of OriginPullPolicyExpirePolicyEnumWrapperValue.
List of OriginPullPolicyNoCacheBehaviorEnumWrapperValue.
List of OriginPullPolicyNoCacheBehaviorEnumWrapperValue.
List of OriginPullPolicyNoCacheBehaviorEnumWrapperValue.
List of OriginPullRedirectActionEnumWrapperValue.
List of OriginPullRedirectActionEnumWrapperValue.
List of OriginPullRedirectActionEnumWrapperValue.
List of OriginPullResumeDownloadEtagValidationEnumWrapperValue.
List of OriginPullResumeDownloadEtagValidationEnumWrapperValue.
List of OriginPullResumeDownloadEtagValidationEnumWrapperValue.
List of OriginPullResumeDownloadEtagValidationEnumWrapperValue.
List of prometheusMetricsStatus.
List of prometheusMetricsStatus.

# Variables

ContextAccessToken takes a string oauth2 access token as authentication for the request.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

APIClient manages communication with the Sites API v1.0.0 In most cases there should be only one, shared, APIClient.
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
APIResponse stores the API response returned by the server.
ApiStatusDetail struct for ApiStatusDetail.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
CdncustconfOrigin struct for CdncustconfOrigin.
Configuration stores the configuration of the API client.
CustconfAccessLogs Enable/Disable access logs.
CustconfAccessLogsConfig Access log settings.
CustconfAuthACL IP address restrictions allow you to configure your CDN container to grant or deny a specific IP addresses or range of IP addresses from accessing content cached in a directory in your CDN container.
CustconfAuthGeo Geographic restrictions allow you to restrict content to end users in specific locations.
CustconfAuthHttpBasic HTTP basic authentication policies allow you to control access to your content by requiring the end user to enter a valid username and password before gaining access to content.
CustconfAuthReferer HTTP Referrer restriction policies allow you to limit access to your published CDN URLs based on the HTTP Referrer header submitted by the browser.
CustconfAuthUrlAsymmetricSignTlu struct for CustconfAuthUrlAsymmetricSignTlu.
CustconfAuthUrlSign URL Signing policies allow you to restrict access to your content by configuring a \"shared secret\" with StackPath.
CustconfAuthUrlSignAliCloudA struct for CustconfAuthUrlSignAliCloudA.
CustconfAuthUrlSignAliCloudB struct for CustconfAuthUrlSignAliCloudB.
CustconfAuthUrlSignAliCloudC struct for CustconfAuthUrlSignAliCloudC.
CustconfAuthUrlSignHmacTlu struct for CustconfAuthUrlSignHmacTlu.
CustconfAuthUrlSignIq struct for CustconfAuthUrlSignIq.
CustconfAwsSignedOriginPullV4 struct for CustconfAwsSignedOriginPullV4.
CustconfAwsSignedS3PostV4 struct for CustconfAwsSignedS3PostV4.
CustconfBandWidthLimit The pattern based bandwidth throttling policy allows you to limit the transfer rate of assets to end users based on a set of rules matching the request's HTTP User-Agent and/or the path.
CustconfBandwidthRateLimit struct for CustconfBandwidthRateLimit.
CustconfBypassCache Bypass content caching on filter match.
CustconfCacheControl The browser caching policy allows you to control the browser caching behavior of your assets independently from the CDN cache.
CustconfCacheKeyModification The Cache Key Modification policy allows for manipulation of the way the cache uniquely stores assets.
CustconfClientRequestModification struct for CustconfClientRequestModification.
CustconfClientResponseModification struct for CustconfClientResponseModification.
CustconfCompression The compression policy allows you to provide a list of file extensions you want the CDN caching servers to automatically compress before delivering content to end users.
CustconfConfiguration Advanced configuration options.
CustconfContentDispositionByHeader The content disposition by HTTP header match policy allows you to control the Content-Disposition delivered by the CDN using a pattern match against the value of any HTTP header present in the request.
CustconfContentDispositionByURL The content disposition by URL policy allows you to control Content-Disposition HTTP header delivered by the CDN caching servers.
CustconfCustomer struct for CustconfCustomer.
CustconfCustomHeader The X-Forwarded-For header policy allows you to override the name of the X-Forwarded-For header the CDN sends to your origin.
CustconfCustomMimeType The custom mime type policy allows you to map file extensions to specific mime types for the CDN caching servers to use when delivering assets.
CustconfDynamicCacheRule Client response based on Rules.
CustconfDynamicContent The dynamic content caching policy allows you to specify a set of query string and/or HTTP header key/value pairs that should create a unique cache entry for a given URL.
CustconfFailSafeOriginPull struct for CustconfFailSafeOriginPull.
CustconfFarAheadRangeProxy struct for CustconfFarAheadRangeProxy.
CustconfFileSegmentation Policy for configuring the feature for downloading and storing files in segments rather than a whole entity.
CustconfFlvPseudoStreaming struct for CustconfFlvPseudoStreaming.
CustconfGzipOriginPull The compressed origin pull policy allows you to enable the CDN caching servers to request compressed assets from your origin.
CustconfHttp2Support Enable support of HTTP2.
CustconfHttpMethods The HTTP methods policy allows you to selectively enable additional HTTP methods you want your CDN container to process.
CustconfOriginPersistentConnections The origin persistent connection settings are used to enable persistent connections to origins.
CustconfOriginPull The origin pull settings policy contains a list of settings that control the behavior of origin pull requests.
CustconfOriginPullCacheExtension The cache extension policy allows you to define cache revalidation exceptions on expired content.
CustconfOriginPullHost struct for CustconfOriginPullHost.
CustconfOriginPullLogs Enable/Disable Origin Pull Logs.
CustconfOriginPullLogsConfig Origin Pull Log Settings.
CustconfOriginPullPolicy The CDN caching policy allows you to control how your origin's content is cached on the CDN.
CustconfOriginPullProtocol The Origin Pull Protocol allows you to configure the CDN caching servers to use secured or non-secured connection to Origin.
CustconfOriginPullResumeDownload The CDN attempts to resume downloading Origin Pulls once it successfully reads all the headers of a positive response under certain conditions by sending subsequent origin range requests for the remaining body.
CustconfOriginRequestModification struct for CustconfOriginRequestModification.
CustconfOriginResponseModification struct for CustconfOriginResponseModification.
CustconfQueryStrParam The reserved query string parameters policy describes all the query string parameters the StackPath CDN caching server reserves for special processing of your requests.
CustconfReceiptLogsConfig Delivery receipt log settings.
CustconfRedirectExceptions The redirect response codes policy allows you to specify the HTTP redirect status code the CDN caching server should use when the CDN issues a redirect.
CustconfRedirectMappings The response code redirection policy allows you to map cache response codes to an HTTP redirect response.
CustconfResponseHeader The custom HTTP response headers policy allows you to specify a list of HTTP headers you want the CDN caching servers to include in the response to clients.
CustconfRobotsTxt struct for CustconfRobotsTxt.
CustconfStaticHeader The static header injection policy allows you to insert headers into the CDN request and response processor.
CustconfTimePseudoStreaming The HTTP pseudo-streaming policy enables Flash based video players to support seeking to random locations within a MP4 or FLV file without having to download the entire video.
CustconfVHost A hostname policy allows you to specify an alternate domain name that you want to use to access content from your CDN container.
DataMatrix A set of time series containing a range of data points over time for each time series.
DataMatrixResult Time series containing a range of data points over time for each time series.
DataVector A set of time series containing a single sample for each time series, all sharing the same timestamp.
DataVectorResult Time series containing a single sample for each time series, all sharing the same timestamp.
DeliveryAWSS3Origin An AWS S3 bucket origin.
DeliveryBasicAuthentication Basic HTTP authentication.
DeliveryConnectScopeToOriginRequest struct for DeliveryConnectScopeToOriginRequest.
DeliveryConnectScopeToOriginRequestOrigin A new origin.
DeliveryConnectScopeToOriginResponse The response from a request to associate an origin with a CDN site scope.
DeliveryCreateSiteDeliveryDomainRequest struct for DeliveryCreateSiteDeliveryDomainRequest.
DeliveryCreateSiteDeliveryDomainResponse The response from a request to add a hostname to a CDN site scope.
DeliveryCreateSiteRequest struct for DeliveryCreateSiteRequest.
DeliveryCreateSiteRequestOrigin The site's origin.
DeliveryCreateSiteResponse The response from a request to create a new site.
DeliveryEnableSiteWAFRequest struct for DeliveryEnableSiteWAFRequest.
DeliveryGetOriginResponse The response with the requested origin.
DeliveryGetOriginsResponse The response from a request to retrieve all origins on a stack.
DeliveryGetScopeOriginsResponse The response from a request to retrieve a site scope's origins.
DeliveryGetSiteDeliveryDomainsResponse The response from a request to retrieve a site's associated delivery domains.
DeliveryGetSiteResponse The response from a request to retrieve a single site.
DeliveryGetSitesResponse The response from a request to retrieve a stack's sites.
DeliveryGoogleStorageOrigin A Google storage bucket origin.
DeliveryHTTPOrigin An HTTP origin.
DeliveryOriginAuthentication An origin's authentication method.
DeliveryS3Authentication Secret key authentication.
DeliveryScopeOrigin A relationship between a site's configuration scope and an origin.
DeliverySite struct for DeliverySite.
DeliveryStackPathStorageOrigin A StackPath storage bucket origin.
DeliveryUpdateOriginRequest struct for DeliveryUpdateOriginRequest.
DeliveryUpdateOriginResponse The response from a request to update an origin.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
MetricsData The data points in a metrics collection.
MetricsDataValue An individual metric data point.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
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.
PrometheusMetrics A collection of metrics.
SchemadeliveryDeliveryDomain An individual delivery domain.
SchemadeliveryOrigin A CDN site's origin Origins are the original sources of the data that is cached by the CDN on request.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
StackpathapiStatus struct for StackpathapiStatus.
StackpathRpcBadRequest struct for StackpathRpcBadRequest.
StackpathRpcBadRequestAllOf struct for StackpathRpcBadRequestAllOf.
StackpathRpcBadRequestFieldViolation struct for StackpathRpcBadRequestFieldViolation.
StackpathRpcHelp struct for StackpathRpcHelp.
StackpathRpcHelpAllOf struct for StackpathRpcHelpAllOf.
StackpathRpcHelpLink struct for StackpathRpcHelpLink.
StackpathRpcLocalizedMessage struct for StackpathRpcLocalizedMessage.
StackpathRpcLocalizedMessageAllOf struct for StackpathRpcLocalizedMessageAllOf.
StackpathRpcPreconditionFailure struct for StackpathRpcPreconditionFailure.
StackpathRpcPreconditionFailureAllOf struct for StackpathRpcPreconditionFailureAllOf.
StackpathRpcPreconditionFailureViolation struct for StackpathRpcPreconditionFailureViolation.
StackpathRpcQuotaFailure struct for StackpathRpcQuotaFailure.
StackpathRpcQuotaFailureAllOf struct for StackpathRpcQuotaFailureAllOf.
StackpathRpcQuotaFailureViolation struct for StackpathRpcQuotaFailureViolation.
StackpathRpcRequestInfo struct for StackpathRpcRequestInfo.
StackpathRpcRequestInfoAllOf struct for StackpathRpcRequestInfoAllOf.
StackpathRpcResourceInfo struct for StackpathRpcResourceInfo.
StackpathRpcResourceInfoAllOf struct for StackpathRpcResourceInfoAllOf.
StackpathRpcRetryInfo struct for StackpathRpcRetryInfo.
StackpathRpcRetryInfoAllOf struct for StackpathRpcRetryInfoAllOf.

# Type aliases

AuthACLAccessCodeEnumWrapperValue the model 'AuthACLAccessCodeEnumWrapperValue'.
AuthACLClientIPSrcEnumWrapperValue the model 'AuthACLClientIPSrcEnumWrapperValue'.
AuthGeoCodeEnumWrapperValue the model 'AuthGeoCodeEnumWrapperValue'.
BandwidthRateLimitInitialBurstUnitsEnumWrapperValue the model 'BandwidthRateLimitInitialBurstUnitsEnumWrapperValue'.
BandwidthRateLimitSustainedRateUnitsEnumWrapperValue the model 'BandwidthRateLimitSustainedRateUnitsEnumWrapperValue'.
ContentDispositionByHeaderDefaultTypeEnumWrapperValue the model 'ContentDispositionByHeaderDefaultTypeEnumWrapperValue'.
CustconfAuthACLProtocolEnumWrapperValue the model 'CustconfAuthACLProtocolEnumWrapperValue'.
CustconfAuthUrlAsymmetricSignTluAlgorithmIdMapEnumWrapperValue the model 'CustconfAuthUrlAsymmetricSignTluAlgorithmIdMapEnumWrapperValue'.
CustconfAuthUrlSignHmacTluAlgorithmIdMapEnumWrapperValue the model 'CustconfAuthUrlSignHmacTluAlgorithmIdMapEnumWrapperValue'.
CustconfAwsSignedOriginPullV4AuthenticationTypeEnumWrapperValue the model 'CustconfAwsSignedOriginPullV4AuthenticationTypeEnumWrapperValue'.
CustconfAwsSignedS3PostV4AuthenticationTypeEnumWrapperValue the model 'CustconfAwsSignedS3PostV4AuthenticationTypeEnumWrapperValue'.
CustconfClientRequestModificationFlowControlEnumWrapperValue the model 'CustconfClientRequestModificationFlowControlEnumWrapperValue'.
CustconfClientResponseModificationFlowControlEnumWrapperValue the model 'CustconfClientResponseModificationFlowControlEnumWrapperValue'.
CustconfOriginPullProtocolProtocolEnumWrapperValue the model 'CustconfOriginPullProtocolProtocolEnumWrapperValue'.
CustconfOriginResponseModificationFlowControlEnumWrapperValue the model 'CustconfOriginResponseModificationFlowControlEnumWrapperValue'.
DeliveryCreateSiteRequestFeature the model 'DeliveryCreateSiteRequestFeature'.
DeliveryDomainsApiService DeliveryDomainsApi service.
DeliverySiteFeature A site feature A site's feature determines how StackPath delivers content to incoming HTTP(S) requests - UNKNOWN: StackPath is unable to determine a site's feature - CDN: A site has CDN caching - WAF: A site has WAF protection - API: A site has API-specific protections - SERVERLESS_EDGE_ENGINE: A site can serve EdgeEngine serverless scripts.
MetricsApiService MetricsApi service.
OriginPullPolicyDefaultCacheBehaviorEnumWrapperValue the model 'OriginPullPolicyDefaultCacheBehaviorEnumWrapperValue'.
OriginPullPolicyExpirePolicyEnumWrapperValue the model 'OriginPullPolicyExpirePolicyEnumWrapperValue'.
OriginPullPolicyNoCacheBehaviorEnumWrapperValue the model 'OriginPullPolicyNoCacheBehaviorEnumWrapperValue'.
OriginPullRedirectActionEnumWrapperValue the model 'OriginPullRedirectActionEnumWrapperValue'.
OriginPullResumeDownloadEtagValidationEnumWrapperValue the model 'OriginPullResumeDownloadEtagValidationEnumWrapperValue'.
OriginsApiService OriginsApi service.
PrometheusMetricsStatus A metrics query's resulting status.
ServerConfigurations stores multiple ServerConfiguration items.
SiteFeaturesApiService SiteFeaturesApi service.
SitesApiService SitesApi service.
SSLApiService SSLApi service.