Categorygithub.com/hyperonecom/h1-client-go
modulepackage
0.0.0-20220420155144-3e4817892e7c
Repository: https://github.com/hyperonecom/h1-client-go.git
Documentation: pkg.go.dev

# README

h1-client-go

h1-client-go is an automatically generated library used to interact with HyperOne API.

Usage

Example library usage:

package somepackage

import (
    "context"

    "github.com/hyperonecom/h1-client-go"
)

func main() {
    cfg := h1.NewConfiguration() // create new Configuration struct
    c := h1.NewAPIClient(cfg) // create new client

    p, err := h1.GetPassportContextProvider("", context.Background()) // get authentication helper
    if err != nil {
        // handle error with getting passport provider
    }
    projects, response, err := c.IamProjectApi.IamProjectList(p.Ctx()).Execute() // getting IamProjectList using IamProjectApi struct

    if err != nil {
        // handle error with request
    }

    for _, project := range projects {
        // do something with projects
    }
}

To use this library import github.com/hyperonecom/h1-client-go in your code. Important: the package is named h1, so it's not the same as last part of import path.

Then you are able to create it's client.

cfg := h1.NewConfiguration()
c := h1.NewAPIClient(cfg)

If you want to pass custom options into configuration object instead of using NewConfiguration function you have to create Configuration struct yourself. Code responsible for its definition can be found in configuration.go.

Auth

There is a built-in auth helper in this library. It utilizes HyperOne passport files using h1-credentials-helper-go library. To use it in code to create authorization context get passport context provider:

// empty string means that passport file is located under ~/.h1
// nil as second value is replaced with context.Background() if not given
p, err := h1.GetPassportContextProvider("", context.Background())
if err != nil {
    log.Panic(err)
}

Then use Ctx, or CtxWithError method.

Ctx method usage:

projects, response, err := c.IamProjectApi.IamProjectList(p.Ctx()).Execute()
// [...]

CtxWithError method usage:

ctx, err := p.CtxWithError()
if err != nil {
    log.panic(err)
}

projects, response, err := c.IamProjectApi.IamProjectList(p.Ctx()).Execute()

The difference between Ctx method and CtxWithError is that Ctx does not return error, neither checks it. It creates a little risk, however generating token is already tested when getting passport context provider, so you should be able to catch misbehaviors on this stage. Also checking HTTP errors returned as third value with each request may be helpful for debugging this kind of issues.

Important: remember to call context providing function every request- token generated as result is valid only for 5 minutes.

Invalid usage

func main() {
    // [...]
    ctx := provider.Ctx()

    for {
        time.Sleep(5 * time.Minute)
        // this will not work, since token will be invalid after 5 minutes
        projects, _, err := client.IamProjectApi.IamProjectList(ctx).Execute()
        // [...]
    }
}

Valid usage

// [...]
projects, _, err := client.IamProjectApi.IamProjectList(provider.Ctx()).Execute()

"Prefer" header

Some operations on API may be time-consuming. In this case server may return HTTP Status 202 with x-event-id header containing request ID, and handle the operation asynchronously. If you want to avoid this behavior, you can send prefer header RFC7240 with your request, which will cause returning the operation result as response to this request.

To use this header from sdk simply use AddDefaultHeader method on Configuration object.

Example:

cfg := h1.NewConfiguration()
cfg.AddDefaultHeader("prefer", "respond-async,wait=86400")
c := h1.NewAPIClient(cfg)

You can get more information about prefer usage in HyperOne API in its documentation.

Documentation

For full documentation of this library check docs directory.

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
NewAgent instantiates a new Agent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAgentCredential instantiates a new AgentCredential object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAgentCredentialWithDefaults instantiates a new AgentCredential object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAgentWithDefaults instantiates a new Agent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewApplication instantiates a new Application object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationCredential instantiates a new ApplicationCredential object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationCredentialWithDefaults instantiates a new ApplicationCredential object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewApplicationWithDefaults instantiates a new Application object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAttempt instantiates a new Attempt object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAttemptWithDefaults instantiates a new Attempt object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuthToken instantiates a new AuthToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuthTokenAccess instantiates a new AuthTokenAccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuthTokenAccessWithDefaults instantiates a new AuthTokenAccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuthTokenWithDefaults instantiates a new AuthToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBilling instantiates a new Billing object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingAddress instantiates a new BillingAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingAddress1 instantiates a new BillingAddress1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingAddress1WithDefaults instantiates a new BillingAddress1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingAddressWithDefaults instantiates a new BillingAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingCharges instantiates a new BillingCharges object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingChargesWithDefaults instantiates a new BillingCharges object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingResource instantiates a new BillingResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingResourceWithDefaults instantiates a new BillingResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingService instantiates a new BillingService object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBillingServiceWithDefaults instantiates a new BillingService object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBillingWithDefaults instantiates a new Billing object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBucket instantiates a new Bucket object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBucketWithDefaults instantiates a new Bucket object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputeProjectReplicaCreate instantiates a new ComputeProjectReplicaCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputeProjectReplicaCreateWithDefaults instantiates a new ComputeProjectReplicaCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputeProjectVmConnectOpen instantiates a new ComputeProjectVmConnectOpen object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputeProjectVmConnectOpenWithDefaults instantiates a new ComputeProjectVmConnectOpen object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputeProjectVmCreate instantiates a new ComputeProjectVmCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputeProjectVmCreateCredential instantiates a new ComputeProjectVmCreateCredential object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputeProjectVmCreateCredentialWithDefaults instantiates a new ComputeProjectVmCreateCredential object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputeProjectVmCreateDisk instantiates a new ComputeProjectVmCreateDisk object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputeProjectVmCreateDiskWithDefaults instantiates a new ComputeProjectVmCreateDisk object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputeProjectVmCreateNetadp instantiates a new ComputeProjectVmCreateNetadp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputeProjectVmCreateNetadpWithDefaults instantiates a new ComputeProjectVmCreateNetadp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputeProjectVmCreateWithDefaults instantiates a new ComputeProjectVmCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputeProjectVmDiskCreate instantiates a new ComputeProjectVmDiskCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputeProjectVmDiskCreateWithDefaults instantiates a new ComputeProjectVmDiskCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputeProjectVmFlavour instantiates a new ComputeProjectVmFlavour object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputeProjectVmFlavourWithDefaults instantiates a new ComputeProjectVmFlavour object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputeProjectVmIsoCreate instantiates a new ComputeProjectVmIsoCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputeProjectVmIsoCreateWithDefaults instantiates a new ComputeProjectVmIsoCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputeProjectVmPasswordReset instantiates a new ComputeProjectVmPasswordReset object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputeProjectVmPasswordResetWithDefaults instantiates a new ComputeProjectVmPasswordReset object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputeProjectVmSerialport instantiates a new ComputeProjectVmSerialport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputeProjectVmSerialportWithDefaults instantiates a new ComputeProjectVmSerialport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputeProjectVmUpdate instantiates a new ComputeProjectVmUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputeProjectVmUpdateWithDefaults instantiates a new ComputeProjectVmUpdate object This 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.
NewConnect instantiates a new Connect object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConnectWithDefaults instantiates a new Connect object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContainerImage instantiates a new ContainerImage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContainerImageWithDefaults instantiates a new ContainerImage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContainerProjectRegistryCreate instantiates a new ContainerProjectRegistryCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContainerProjectRegistryCreateWithDefaults instantiates a new ContainerProjectRegistryCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContainerProjectRegistryCredentialPatch instantiates a new ContainerProjectRegistryCredentialPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContainerProjectRegistryCredentialPatchWithDefaults instantiates a new ContainerProjectRegistryCredentialPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContainerProjectRegistryTransfer instantiates a new ContainerProjectRegistryTransfer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContainerProjectRegistryTransferWithDefaults instantiates a new ContainerProjectRegistryTransfer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContainerProjectRegistryUpdate instantiates a new ContainerProjectRegistryUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContainerProjectRegistryUpdateWithDefaults instantiates a new ContainerProjectRegistryUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContainerRepository instantiates a new ContainerRepository object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContainerRepositoryWithDefaults instantiates a new ContainerRepository object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDisk instantiates a new Disk object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDiskWithDefaults instantiates a new Disk object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnsProjectZoneCreate instantiates a new DnsProjectZoneCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnsProjectZoneCreateWithDefaults instantiates a new DnsProjectZoneCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnsProjectZoneRecordsetPatch instantiates a new DnsProjectZoneRecordsetPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnsProjectZoneRecordsetPatchWithDefaults instantiates a new DnsProjectZoneRecordsetPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnsProjectZoneUpdate instantiates a new DnsProjectZoneUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnsProjectZoneUpdateWithDefaults instantiates a new DnsProjectZoneUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnsRecord instantiates a new DnsRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnsRecordset instantiates a new DnsRecordset object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnsRecordsetWithDefaults instantiates a new DnsRecordset object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnsRecordWithDefaults instantiates a new DnsRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDomain instantiates a new Domain object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDomainWithDefaults instantiates a new Domain object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnabledService instantiates a new EnabledService object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnabledServiceWithDefaults instantiates a new EnabledService object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEvent instantiates a new Event object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventBase instantiates a new EventBase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventBaseWithDefaults instantiates a new EventBase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventWithDefaults instantiates a new Event object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFirewall instantiates a new Firewall object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFirewallWithDefaults instantiates a new Firewall object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroup instantiates a new Group object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupWithDefaults instantiates a new Group object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHdd instantiates a new Hdd object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHddWithDefaults instantiates a new Hdd object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamActor instantiates a new IamActor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamActorOrGroup instantiates a new IamActorOrGroup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamActorOrGroupWithDefaults instantiates a new IamActorOrGroup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamActorWithDefaults instantiates a new IamActor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamOrganisationCreate instantiates a new IamOrganisationCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamOrganisationCreateWithDefaults instantiates a new IamOrganisationCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamOrganisationInvitationAccept instantiates a new IamOrganisationInvitationAccept object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamOrganisationInvitationAcceptWithDefaults instantiates a new IamOrganisationInvitationAccept object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamOrganisationOwnershipCreate instantiates a new IamOrganisationOwnershipCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamOrganisationOwnershipCreateWithDefaults instantiates a new IamOrganisationOwnershipCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamOrganisationPaymentAllocate instantiates a new IamOrganisationPaymentAllocate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamOrganisationPaymentAllocateWithDefaults instantiates a new IamOrganisationPaymentAllocate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamOrganisationProformaCreate instantiates a new IamOrganisationProformaCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamOrganisationProformaCreateWithDefaults instantiates a new IamOrganisationProformaCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamOrganisationTransferAccept instantiates a new IamOrganisationTransferAccept object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamOrganisationTransferAcceptWithDefaults instantiates a new IamOrganisationTransferAccept object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamOrganisationUpdate instantiates a new IamOrganisationUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamOrganisationUpdateWithDefaults instantiates a new IamOrganisationUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamPermission instantiates a new IamPermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamPermissionWithDefaults instantiates a new IamPermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectApplicationCreate instantiates a new IamProjectApplicationCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectApplicationCreateWithDefaults instantiates a new IamProjectApplicationCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectApplicationCredentialPatch instantiates a new IamProjectApplicationCredentialPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectApplicationCredentialPatchWithDefaults instantiates a new IamProjectApplicationCredentialPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectApplicationRedirectPatch instantiates a new IamProjectApplicationRedirectPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectApplicationRedirectPatchWithDefaults instantiates a new IamProjectApplicationRedirectPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectApplicationUpdate instantiates a new IamProjectApplicationUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectApplicationUpdateWithDefaults instantiates a new IamProjectApplicationUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectCreate instantiates a new IamProjectCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectCreateWithDefaults instantiates a new IamProjectCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectCredentialStorePatch instantiates a new IamProjectCredentialStorePatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectCredentialStorePatchWithDefaults instantiates a new IamProjectCredentialStorePatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectGroupCreate instantiates a new IamProjectGroupCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectGroupCreateWithDefaults instantiates a new IamProjectGroupCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectGroupUpdate instantiates a new IamProjectGroupUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectGroupUpdateWithDefaults instantiates a new IamProjectGroupUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectInvitationAccept instantiates a new IamProjectInvitationAccept object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectInvitationAcceptWithDefaults instantiates a new IamProjectInvitationAccept object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectOwnershipCreate instantiates a new IamProjectOwnershipCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectOwnershipCreateWithDefaults instantiates a new IamProjectOwnershipCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectPolicyCreate instantiates a new IamProjectPolicyCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectPolicyCreateActor instantiates a new IamProjectPolicyCreateActor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectPolicyCreateActorWithDefaults instantiates a new IamProjectPolicyCreateActor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectPolicyCreateWithDefaults instantiates a new IamProjectPolicyCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectPolicyUpdate instantiates a new IamProjectPolicyUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectPolicyUpdateWithDefaults instantiates a new IamProjectPolicyUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectQuotaLimitPatch instantiates a new IamProjectQuotaLimitPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectQuotaLimitPatchWithDefaults instantiates a new IamProjectQuotaLimitPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectRoleCreate instantiates a new IamProjectRoleCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectRoleCreateWithDefaults instantiates a new IamProjectRoleCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectRoleUpdate instantiates a new IamProjectRoleUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectRoleUpdateWithDefaults instantiates a new IamProjectRoleUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectSaCreate instantiates a new IamProjectSaCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectSaCreateWithDefaults instantiates a new IamProjectSaCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectSaCredentialPatch instantiates a new IamProjectSaCredentialPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectSaCredentialPatchWithDefaults instantiates a new IamProjectSaCredentialPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectSaUpdate instantiates a new IamProjectSaUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectSaUpdateWithDefaults instantiates a new IamProjectSaUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectThresholdCreate instantiates a new IamProjectThresholdCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectThresholdCreateWithDefaults instantiates a new IamProjectThresholdCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectTransfer instantiates a new IamProjectTransfer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectTransferWithDefaults instantiates a new IamProjectTransfer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamProjectUpdate instantiates a new IamProjectUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamProjectUpdateWithDefaults instantiates a new IamProjectUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamRedirect instantiates a new IamRedirect object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamRedirectWithDefaults instantiates a new IamRedirect object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamUserAuthorization instantiates a new IamUserAuthorization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamUserAuthorizationCode instantiates a new IamUserAuthorizationCode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamUserAuthorizationCodeWithDefaults instantiates a new IamUserAuthorizationCode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamUserAuthorizationWithDefaults instantiates a new IamUserAuthorization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamUserCredentialPatch instantiates a new IamUserCredentialPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamUserCredentialPatchWithDefaults instantiates a new IamUserCredentialPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIamUserUpdate instantiates a new IamUserUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIamUserUpdateWithDefaults instantiates a new IamUserUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImage instantiates a new Image object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageWithDefaults instantiates a new Image object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInlineResponse200 instantiates a new InlineResponse200 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInlineResponse200WithDefaults instantiates a new InlineResponse200 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInlineResponseDefault instantiates a new InlineResponseDefault object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInlineResponseDefaultOperation instantiates a new InlineResponseDefaultOperation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInlineResponseDefaultOperationWithDefaults instantiates a new InlineResponseDefaultOperation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInlineResponseDefaultWithDefaults instantiates a new InlineResponseDefault object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInsightProjectJournalCreate instantiates a new InsightProjectJournalCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInsightProjectJournalCreateWithDefaults instantiates a new InsightProjectJournalCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInsightProjectJournalCredentialPatch instantiates a new InsightProjectJournalCredentialPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInsightProjectJournalCredentialPatchWithDefaults instantiates a new InsightProjectJournalCredentialPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInsightProjectJournalTransfer instantiates a new InsightProjectJournalTransfer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInsightProjectJournalTransferWithDefaults instantiates a new InsightProjectJournalTransfer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInsightProjectJournalUpdate instantiates a new InsightProjectJournalUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInsightProjectJournalUpdateWithDefaults instantiates a new InsightProjectJournalUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvitation instantiates a new Invitation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvitationWithDefaults instantiates a new Invitation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvoice instantiates a new Invoice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvoiceBuyer instantiates a new InvoiceBuyer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvoiceBuyerAddress instantiates a new InvoiceBuyerAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvoiceBuyerAddressWithDefaults instantiates a new InvoiceBuyerAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvoiceBuyerWithDefaults instantiates a new InvoiceBuyer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvoiceItems instantiates a new InvoiceItems object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvoiceItemsWithDefaults instantiates a new InvoiceItems object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvoiceSeller instantiates a new InvoiceSeller object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvoiceSellerAddress instantiates a new InvoiceSellerAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvoiceSellerAddressWithDefaults instantiates a new InvoiceSellerAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvoiceSellerWithDefaults instantiates a new InvoiceSeller object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvoiceWithDefaults instantiates a new Invoice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIp instantiates a new Ip object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIpAssociated instantiates a new IpAssociated object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIpAssociatedWithDefaults instantiates a new IpAssociated object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIpProperties instantiates a new IpProperties object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIpPropertiesWithDefaults instantiates a new IpProperties object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIpWithDefaults instantiates a new Ip object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIso instantiates a new Iso object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIsoMetadata instantiates a new IsoMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIsoMetadataSource instantiates a new IsoMetadataSource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIsoMetadataSourceWithDefaults instantiates a new IsoMetadataSource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIsoMetadataWithDefaults instantiates a new IsoMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIsoWithDefaults instantiates a new Iso object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewJournal instantiates a new Journal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewJournalCredential instantiates a new JournalCredential object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewJournalCredentialWithDefaults instantiates a new JournalCredential object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewJournalWithDefaults instantiates a new Journal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMessageData instantiates a new MessageData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMessageDataWithDefaults instantiates a new MessageData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetric instantiates a new Metric object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricProperties instantiates a new MetricProperties object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricPropertiesDimension instantiates a new MetricPropertiesDimension object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricPropertiesDimensionWithDefaults instantiates a new MetricPropertiesDimension object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricPropertiesWithDefaults instantiates a new MetricProperties object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricWithDefaults instantiates a new Metric object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetadp instantiates a new Netadp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetadpWithDefaults instantiates a new Netadp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetgw instantiates a new Netgw object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetgwPrivate instantiates a new NetgwPrivate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetgwPrivateWithDefaults instantiates a new NetgwPrivate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetgwPublic instantiates a new NetgwPublic object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetgwPublicWithDefaults instantiates a new NetgwPublic object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetgwWithDefaults instantiates a new Netgw object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetwork instantiates a new Network object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkDns instantiates a new NetworkDns object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkDnsWithDefaults instantiates a new NetworkDns object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkingProjectFirewallCreate instantiates a new NetworkingProjectFirewallCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkingProjectFirewallCreateWithDefaults instantiates a new NetworkingProjectFirewallCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkingProjectFirewallTransfer instantiates a new NetworkingProjectFirewallTransfer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkingProjectFirewallTransferWithDefaults instantiates a new NetworkingProjectFirewallTransfer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkingProjectFirewallUpdate instantiates a new NetworkingProjectFirewallUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkingProjectFirewallUpdateWithDefaults instantiates a new NetworkingProjectFirewallUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkingProjectIpAssociate instantiates a new NetworkingProjectIpAssociate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkingProjectIpAssociateWithDefaults instantiates a new NetworkingProjectIpAssociate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkingProjectIpCreate instantiates a new NetworkingProjectIpCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkingProjectIpCreateWithDefaults instantiates a new NetworkingProjectIpCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkingProjectIpTransfer instantiates a new NetworkingProjectIpTransfer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkingProjectIpTransferWithDefaults instantiates a new NetworkingProjectIpTransfer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkingProjectIpUpdate instantiates a new NetworkingProjectIpUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkingProjectIpUpdateWithDefaults instantiates a new NetworkingProjectIpUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkingProjectNetadpCreate instantiates a new NetworkingProjectNetadpCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkingProjectNetadpCreateWithDefaults instantiates a new NetworkingProjectNetadpCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkingProjectNetadpUpdate instantiates a new NetworkingProjectNetadpUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkingProjectNetadpUpdateWithDefaults instantiates a new NetworkingProjectNetadpUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkingProjectNetgwAttach instantiates a new NetworkingProjectNetgwAttach object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkingProjectNetgwAttachWithDefaults instantiates a new NetworkingProjectNetgwAttach object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkingProjectNetgwCreate instantiates a new NetworkingProjectNetgwCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkingProjectNetgwCreateWithDefaults instantiates a new NetworkingProjectNetgwCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkingProjectNetgwUpdate instantiates a new NetworkingProjectNetgwUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkingProjectNetgwUpdateWithDefaults instantiates a new NetworkingProjectNetgwUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkingProjectNetworkCreate instantiates a new NetworkingProjectNetworkCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkingProjectNetworkCreateWithDefaults instantiates a new NetworkingProjectNetworkCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkingProjectNetworkUpdate instantiates a new NetworkingProjectNetworkUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkingProjectNetworkUpdateWithDefaults instantiates a new NetworkingProjectNetworkUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkingRule instantiates a new NetworkingRule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkingRuleWithDefaults instantiates a new NetworkingRule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkWithDefaults instantiates a new Network object This 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
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewOrganisation instantiates a new Organisation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOrganisationBilling instantiates a new OrganisationBilling object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOrganisationBilling1 instantiates a new OrganisationBilling1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOrganisationBilling1WithDefaults instantiates a new OrganisationBilling1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOrganisationBillingWithDefaults instantiates a new OrganisationBilling object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOrganisationWithDefaults instantiates a new Organisation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOwnership instantiates a new Ownership object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOwnershipWithDefaults instantiates a new Ownership object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPayment instantiates a new Payment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaymentWithDefaults instantiates a new Payment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPoint instantiates a new Point object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPointValue instantiates a new PointValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPointValueWithDefaults instantiates a new PointValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPointWithDefaults instantiates a new Point object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPolicy instantiates a new Policy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPolicyWithDefaults instantiates a new Policy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProforma instantiates a new Proforma object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProformaArray instantiates a new ProformaArray object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProformaArrayWithDefaults instantiates a new ProformaArray object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProformaSeller instantiates a new ProformaSeller object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProformaSellerWithDefaults instantiates a new ProformaSeller object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProformaWithDefaults instantiates a new Proforma object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProject instantiates a new Project object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProjectBilling instantiates a new ProjectBilling object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProjectBillingWithDefaults instantiates a new ProjectBilling object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProjectCredential instantiates a new ProjectCredential object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProjectCredentialWithDefaults instantiates a new ProjectCredential object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProjectFeature instantiates a new ProjectFeature object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProjectFeatureWithDefaults instantiates a new ProjectFeature object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProjectThreshold instantiates a new ProjectThreshold object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProjectThresholdWithDefaults instantiates a new ProjectThreshold object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProjectWithDefaults instantiates a new Project object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProviderAgentResource instantiates a new ProviderAgentResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProviderAgentResourceEvent instantiates a new ProviderAgentResourceEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProviderAgentResourceEventWithDefaults instantiates a new ProviderAgentResourceEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProviderAgentResourceWithDefaults instantiates a new ProviderAgentResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProviderProjectAgentCreate instantiates a new ProviderProjectAgentCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProviderProjectAgentCreateWithDefaults instantiates a new ProviderProjectAgentCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProviderProjectAgentCredentialPatch instantiates a new ProviderProjectAgentCredentialPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProviderProjectAgentCredentialPatchWithDefaults instantiates a new ProviderProjectAgentCredentialPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProviderProjectAgentTransfer instantiates a new ProviderProjectAgentTransfer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProviderProjectAgentTransferWithDefaults instantiates a new ProviderProjectAgentTransfer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProviderProjectAgentUpdate instantiates a new ProviderProjectAgentUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProviderProjectAgentUpdateWithDefaults instantiates a new ProviderProjectAgentUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQuota instantiates a new Quota object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQuotaLimit instantiates a new QuotaLimit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQuotaLimitWithDefaults instantiates a new QuotaLimit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQuotaMetric instantiates a new QuotaMetric object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQuotaMetricWithDefaults instantiates a new QuotaMetric object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQuotaWithDefaults instantiates a new Quota object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReconciliation instantiates a new Reconciliation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReconciliationTarget instantiates a new ReconciliationTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReconciliationTargetPlan instantiates a new ReconciliationTargetPlan object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReconciliationTargetPlanWithDefaults instantiates a new ReconciliationTargetPlan object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReconciliationTargetResource instantiates a new ReconciliationTargetResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReconciliationTargetResourceWithDefaults instantiates a new ReconciliationTargetResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReconciliationTargetWithDefaults instantiates a new ReconciliationTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReconciliationWithDefaults instantiates a new Reconciliation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegistry instantiates a new Registry object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegistryCredential instantiates a new RegistryCredential object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegistryCredentialWithDefaults instantiates a new RegistryCredential object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegistryWithDefaults instantiates a new Registry object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReplica instantiates a new Replica object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReplicaWithDefaults instantiates a new Replica object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResource instantiates a new Resource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourceConnect instantiates a new ResourceConnect object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourceConnectWithDefaults instantiates a new ResourceConnect object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourceService instantiates a new ResourceService object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourceServiceWithDefaults instantiates a new ResourceService object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResourceWithDefaults instantiates a new Resource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRole instantiates a new Role object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleWithDefaults instantiates a new Role object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSa instantiates a new Sa object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSaCredential instantiates a new SaCredential object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSaCredentialWithDefaults instantiates a new SaCredential object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSaWithDefaults instantiates a new Sa object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewService instantiates a new Service object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceBilling instantiates a new ServiceBilling object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceBillingPrice instantiates a new ServiceBillingPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceBillingPriceWithDefaults instantiates a new ServiceBillingPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceBillingReservations instantiates a new ServiceBillingReservations object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceBillingReservationsWithDefaults instantiates a new ServiceBillingReservations object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceBillingWithDefaults instantiates a new ServiceBilling object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceDisplay instantiates a new ServiceDisplay object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceDisplayUnit instantiates a new ServiceDisplayUnit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceDisplayUnitWithDefaults instantiates a new ServiceDisplayUnit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceDisplayWithDefaults instantiates a new ServiceDisplay object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceWithDefaults instantiates a new Service object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageObject instantiates a new StorageObject object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageObjectWithDefaults instantiates a new StorageObject object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectBucketUpload instantiates a new StorageProjectBucketUpload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectBucketUploadWithDefaults instantiates a new StorageProjectBucketUpload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectDiskCreate instantiates a new StorageProjectDiskCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectDiskCreateWithDefaults instantiates a new StorageProjectDiskCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectDiskResize instantiates a new StorageProjectDiskResize object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectDiskResizeWithDefaults instantiates a new StorageProjectDiskResize object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectDiskTransfer instantiates a new StorageProjectDiskTransfer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectDiskTransferWithDefaults instantiates a new StorageProjectDiskTransfer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectDiskUpdate instantiates a new StorageProjectDiskUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectDiskUpdateWithDefaults instantiates a new StorageProjectDiskUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectImageCreate instantiates a new StorageProjectImageCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectImageCreateWithDefaults instantiates a new StorageProjectImageCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectImageTransfer instantiates a new StorageProjectImageTransfer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectImageTransferWithDefaults instantiates a new StorageProjectImageTransfer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectImageUpdate instantiates a new StorageProjectImageUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectImageUpdateWithDefaults instantiates a new StorageProjectImageUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectIsoCreate instantiates a new StorageProjectIsoCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectIsoCreateWithDefaults instantiates a new StorageProjectIsoCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectIsoDetach instantiates a new StorageProjectIsoDetach object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectIsoDetachWithDefaults instantiates a new StorageProjectIsoDetach object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectIsoTransfer instantiates a new StorageProjectIsoTransfer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectIsoTransferWithDefaults instantiates a new StorageProjectIsoTransfer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectIsoUpdate instantiates a new StorageProjectIsoUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectIsoUpdateWithDefaults instantiates a new StorageProjectIsoUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectVaultCreate instantiates a new StorageProjectVaultCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectVaultCreateWithDefaults instantiates a new StorageProjectVaultCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectVaultCredentialPatch instantiates a new StorageProjectVaultCredentialPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectVaultCredentialPatchWithDefaults instantiates a new StorageProjectVaultCredentialPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectVaultDelete instantiates a new StorageProjectVaultDelete object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectVaultDeleteWithDefaults instantiates a new StorageProjectVaultDelete object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectVaultResize instantiates a new StorageProjectVaultResize object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectVaultResizeWithDefaults instantiates a new StorageProjectVaultResize object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectVaultSnapshotCreate instantiates a new StorageProjectVaultSnapshotCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectVaultSnapshotCreateWithDefaults instantiates a new StorageProjectVaultSnapshotCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageProjectVaultUpdate instantiates a new StorageProjectVaultUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageProjectVaultUpdateWithDefaults instantiates a new StorageProjectVaultUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageS3credential instantiates a new StorageS3credential object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageS3credentialWithDefaults instantiates a new StorageS3credential object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStorageSnapshot instantiates a new StorageSnapshot object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStorageSnapshotWithDefaults instantiates a new StorageSnapshot object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSupportMessage instantiates a new SupportMessage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSupportMessageWithDefaults instantiates a new SupportMessage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSupportProjectTicketCreate instantiates a new SupportProjectTicketCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSupportProjectTicketCreateWithDefaults instantiates a new SupportProjectTicketCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTag instantiates a new Tag object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTagWithDefaults instantiates a new Tag object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTicket instantiates a new Ticket object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTicketWithDefaults instantiates a new Ticket object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransfer instantiates a new Transfer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransferWithDefaults instantiates a new Transfer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUser instantiates a new User object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserCredential instantiates a new UserCredential object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserCredentialWithDefaults instantiates a new UserCredential object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserLimit instantiates a new UserLimit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserLimitOrganisation instantiates a new UserLimitOrganisation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserLimitOrganisationWithDefaults instantiates a new UserLimitOrganisation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserLimitWithDefaults instantiates a new UserLimit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserWithDefaults instantiates a new User object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVault instantiates a new Vault object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVaultCredential instantiates a new VaultCredential object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVaultCredentialWithDefaults instantiates a new VaultCredential object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVaultWithDefaults instantiates a new Vault object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVm instantiates a new Vm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVmhost instantiates a new Vmhost object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVmhostWithDefaults instantiates a new Vmhost object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVmWithDefaults instantiates a new Vm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewZone instantiates a new Zone object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewZoneSource instantiates a new ZoneSource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewZoneSourceWithDefaults instantiates a new ZoneSource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewZoneWithDefaults instantiates a new Zone object This 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 boolean 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.

# 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

Agent struct for Agent.
AgentCredential struct for AgentCredential.
No description provided by the author
No description provided by the author
APIClient manages communication with the HyperOne API v0.1.0 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Application struct for Application.
ApplicationCredential struct for ApplicationCredential.
Attempt struct for Attempt.
AuthToken struct for AuthToken.
AuthTokenAccess struct for AuthTokenAccess.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
Billing struct for Billing.
BillingAddress struct for BillingAddress.
BillingAddress1 struct for BillingAddress1.
BillingCharges struct for BillingCharges.
BillingResource struct for BillingResource.
BillingService struct for BillingService.
Bucket struct for Bucket.
ComputeProjectReplicaCreate struct for ComputeProjectReplicaCreate.
ComputeProjectVmConnectOpen struct for ComputeProjectVmConnectOpen.
ComputeProjectVmCreate struct for ComputeProjectVmCreate.
ComputeProjectVmCreateCredential struct for ComputeProjectVmCreateCredential.
ComputeProjectVmCreateDisk struct for ComputeProjectVmCreateDisk.
ComputeProjectVmCreateNetadp struct for ComputeProjectVmCreateNetadp.
ComputeProjectVmDiskCreate struct for ComputeProjectVmDiskCreate.
ComputeProjectVmFlavour struct for ComputeProjectVmFlavour.
ComputeProjectVmIsoCreate struct for ComputeProjectVmIsoCreate.
ComputeProjectVmPasswordReset struct for ComputeProjectVmPasswordReset.
ComputeProjectVmSerialport struct for ComputeProjectVmSerialport.
ComputeProjectVmUpdate struct for ComputeProjectVmUpdate.
Configuration stores the configuration of the API client.
Connect struct for Connect.
ContainerImage struct for ContainerImage.
ContainerProjectRegistryCreate struct for ContainerProjectRegistryCreate.
ContainerProjectRegistryCredentialPatch struct for ContainerProjectRegistryCredentialPatch.
ContainerProjectRegistryTransfer struct for ContainerProjectRegistryTransfer.
ContainerProjectRegistryUpdate struct for ContainerProjectRegistryUpdate.
ContainerRepository struct for ContainerRepository.
Disk struct for Disk.
DnsProjectZoneCreate struct for DnsProjectZoneCreate.
DnsProjectZoneRecordsetPatch struct for DnsProjectZoneRecordsetPatch.
DnsProjectZoneUpdate struct for DnsProjectZoneUpdate.
DnsRecord struct for DnsRecord.
DnsRecordset struct for DnsRecordset.
Domain struct for Domain.
EnabledService struct for EnabledService.
Event struct for Event.
EventBase struct for EventBase.
Firewall struct for Firewall.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
Group struct for Group.
Hdd struct for Hdd.
IamActor struct for IamActor.
IamActorOrGroup struct for IamActorOrGroup.
IamOrganisationCreate struct for IamOrganisationCreate.
IamOrganisationInvitationAccept struct for IamOrganisationInvitationAccept.
IamOrganisationOwnershipCreate struct for IamOrganisationOwnershipCreate.
IamOrganisationPaymentAllocate struct for IamOrganisationPaymentAllocate.
IamOrganisationProformaCreate struct for IamOrganisationProformaCreate.
IamOrganisationTransferAccept struct for IamOrganisationTransferAccept.
IamOrganisationUpdate struct for IamOrganisationUpdate.
IamPermission struct for IamPermission.
IamProjectApplicationCreate struct for IamProjectApplicationCreate.
IamProjectApplicationCredentialPatch struct for IamProjectApplicationCredentialPatch.
IamProjectApplicationRedirectPatch struct for IamProjectApplicationRedirectPatch.
IamProjectApplicationUpdate struct for IamProjectApplicationUpdate.
IamProjectCreate struct for IamProjectCreate.
IamProjectCredentialStorePatch struct for IamProjectCredentialStorePatch.
IamProjectGroupCreate struct for IamProjectGroupCreate.
IamProjectGroupUpdate struct for IamProjectGroupUpdate.
IamProjectInvitationAccept struct for IamProjectInvitationAccept.
IamProjectOwnershipCreate struct for IamProjectOwnershipCreate.
IamProjectPolicyCreate struct for IamProjectPolicyCreate.
IamProjectPolicyCreateActor struct for IamProjectPolicyCreateActor.
IamProjectPolicyUpdate struct for IamProjectPolicyUpdate.
IamProjectQuotaLimitPatch struct for IamProjectQuotaLimitPatch.
IamProjectRoleCreate struct for IamProjectRoleCreate.
IamProjectRoleUpdate struct for IamProjectRoleUpdate.
IamProjectSaCreate struct for IamProjectSaCreate.
IamProjectSaCredentialPatch struct for IamProjectSaCredentialPatch.
IamProjectSaUpdate struct for IamProjectSaUpdate.
IamProjectThresholdCreate struct for IamProjectThresholdCreate.
IamProjectTransfer struct for IamProjectTransfer.
IamProjectUpdate struct for IamProjectUpdate.
IamRedirect struct for IamRedirect.
IamUserAuthorization struct for IamUserAuthorization.
IamUserAuthorizationCode struct for IamUserAuthorizationCode.
IamUserCredentialPatch struct for IamUserCredentialPatch.
IamUserUpdate struct for IamUserUpdate.
Image struct for Image.
InlineResponse200 struct for InlineResponse200.
InlineResponseDefault struct for InlineResponseDefault.
InlineResponseDefaultOperation struct for InlineResponseDefaultOperation.
InsightProjectJournalCreate struct for InsightProjectJournalCreate.
InsightProjectJournalCredentialPatch struct for InsightProjectJournalCredentialPatch.
InsightProjectJournalTransfer struct for InsightProjectJournalTransfer.
InsightProjectJournalUpdate struct for InsightProjectJournalUpdate.
Invitation struct for Invitation.
Invoice struct for Invoice.
InvoiceBuyer struct for InvoiceBuyer.
InvoiceBuyerAddress struct for InvoiceBuyerAddress.
InvoiceItems struct for InvoiceItems.
InvoiceSeller struct for InvoiceSeller.
InvoiceSellerAddress struct for InvoiceSellerAddress.
Ip struct for Ip.
IpAssociated struct for IpAssociated.
IpProperties struct for IpProperties.
Iso struct for Iso.
IsoMetadata struct for IsoMetadata.
IsoMetadataSource struct for IsoMetadataSource.
Journal struct for Journal.
JournalCredential struct for JournalCredential.
MessageData struct for MessageData.
Metric struct for Metric.
MetricProperties struct for MetricProperties.
MetricPropertiesDimension struct for MetricPropertiesDimension.
Netadp struct for Netadp.
Netgw struct for Netgw.
NetgwPrivate struct for NetgwPrivate.
NetgwPublic struct for NetgwPublic.
Network struct for Network.
NetworkDns struct for NetworkDns.
NetworkingProjectFirewallCreate struct for NetworkingProjectFirewallCreate.
NetworkingProjectFirewallTransfer struct for NetworkingProjectFirewallTransfer.
NetworkingProjectFirewallUpdate struct for NetworkingProjectFirewallUpdate.
NetworkingProjectIpAssociate struct for NetworkingProjectIpAssociate.
NetworkingProjectIpCreate struct for NetworkingProjectIpCreate.
NetworkingProjectIpTransfer struct for NetworkingProjectIpTransfer.
NetworkingProjectIpUpdate struct for NetworkingProjectIpUpdate.
NetworkingProjectNetadpCreate struct for NetworkingProjectNetadpCreate.
NetworkingProjectNetadpUpdate struct for NetworkingProjectNetadpUpdate.
NetworkingProjectNetgwAttach struct for NetworkingProjectNetgwAttach.
NetworkingProjectNetgwCreate struct for NetworkingProjectNetgwCreate.
NetworkingProjectNetgwUpdate struct for NetworkingProjectNetgwUpdate.
NetworkingProjectNetworkCreate struct for NetworkingProjectNetworkCreate.
NetworkingProjectNetworkUpdate struct for NetworkingProjectNetworkUpdate.
NetworkingRule struct for NetworkingRule.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Organisation struct for Organisation.
OrganisationBilling struct for OrganisationBilling.
OrganisationBilling1 struct for OrganisationBilling1.
Ownership struct for Ownership.
Payment struct for Payment.
Point struct for Point.
PointValue struct for PointValue.
Policy struct for Policy.
Proforma struct for Proforma.
ProformaArray struct for ProformaArray.
ProformaSeller struct for ProformaSeller.
Project struct for Project.
ProjectBilling struct for ProjectBilling.
ProjectCredential struct for ProjectCredential.
ProjectFeature struct for ProjectFeature.
ProjectThreshold struct for ProjectThreshold.
ProviderAgentResource struct for ProviderAgentResource.
ProviderAgentResourceEvent struct for ProviderAgentResourceEvent.
ProviderProjectAgentCreate struct for ProviderProjectAgentCreate.
ProviderProjectAgentCredentialPatch struct for ProviderProjectAgentCredentialPatch.
ProviderProjectAgentTransfer struct for ProviderProjectAgentTransfer.
ProviderProjectAgentUpdate struct for ProviderProjectAgentUpdate.
Quota struct for Quota.
QuotaLimit struct for QuotaLimit.
QuotaMetric struct for QuotaMetric.
Reconciliation struct for Reconciliation.
ReconciliationTarget struct for ReconciliationTarget.
ReconciliationTargetPlan struct for ReconciliationTargetPlan.
ReconciliationTargetResource struct for ReconciliationTargetResource.
Registry struct for Registry.
RegistryCredential struct for RegistryCredential.
Replica struct for Replica.
Resource struct for Resource.
ResourceConnect struct for ResourceConnect.
ResourceService struct for ResourceService.
Role struct for Role.
Sa struct for Sa.
SaCredential struct for SaCredential.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
Service struct for Service.
ServiceBilling struct for ServiceBilling.
ServiceBillingPrice struct for ServiceBillingPrice.
ServiceBillingReservations struct for ServiceBillingReservations.
ServiceDisplay struct for ServiceDisplay.
ServiceDisplayUnit struct for ServiceDisplayUnit.
StorageObject struct for StorageObject.
StorageProjectBucketUpload struct for StorageProjectBucketUpload.
StorageProjectDiskCreate struct for StorageProjectDiskCreate.
StorageProjectDiskResize struct for StorageProjectDiskResize.
StorageProjectDiskTransfer struct for StorageProjectDiskTransfer.
StorageProjectDiskUpdate struct for StorageProjectDiskUpdate.
StorageProjectImageCreate struct for StorageProjectImageCreate.
StorageProjectImageTransfer struct for StorageProjectImageTransfer.
StorageProjectImageUpdate struct for StorageProjectImageUpdate.
StorageProjectIsoCreate struct for StorageProjectIsoCreate.
StorageProjectIsoDetach struct for StorageProjectIsoDetach.
StorageProjectIsoTransfer struct for StorageProjectIsoTransfer.
StorageProjectIsoUpdate struct for StorageProjectIsoUpdate.
StorageProjectVaultCreate struct for StorageProjectVaultCreate.
StorageProjectVaultCredentialPatch struct for StorageProjectVaultCredentialPatch.
StorageProjectVaultDelete struct for StorageProjectVaultDelete.
StorageProjectVaultResize struct for StorageProjectVaultResize.
StorageProjectVaultSnapshotCreate struct for StorageProjectVaultSnapshotCreate.
StorageProjectVaultUpdate struct for StorageProjectVaultUpdate.
StorageS3credential struct for StorageS3credential.
StorageSnapshot struct for StorageSnapshot.
SupportMessage struct for SupportMessage.
SupportProjectTicketCreate struct for SupportProjectTicketCreate.
Tag struct for Tag.
Ticket struct for Ticket.
Transfer struct for Transfer.
User struct for User.
UserCredential struct for UserCredential.
UserLimit struct for UserLimit.
UserLimitOrganisation struct for UserLimitOrganisation.
Vault struct for Vault.
VaultCredential struct for VaultCredential.
Vm struct for Vm.
Vmhost struct for Vmhost.
Zone struct for Zone.
ZoneSource struct for ZoneSource.

# Type aliases

BillingProjectServiceApiService BillingProjectServiceApi service.
ComputeProjectReplicaApiService ComputeProjectReplicaApi service.
ComputeProjectVmApiService ComputeProjectVmApi service.
ContainerProjectRegistryApiService ContainerProjectRegistryApi service.
DnsProjectZoneApiService DnsProjectZoneApi service.
IamOrganisationApiService IamOrganisationApi service.
IamOrganisationPolicyApiService IamOrganisationPolicyApi service.
IamOrganisationRoleApiService IamOrganisationRoleApi service.
IamProjectApiService IamProjectApi service.
IamProjectApplicationApiService IamProjectApplicationApi service.
IamProjectGroupApiService IamProjectGroupApi service.
IamProjectPolicyApiService IamProjectPolicyApi service.
IamProjectRoleApiService IamProjectRoleApi service.
IamProjectSaApiService IamProjectSaApi service.
IamUserApiService IamUserApi service.
InsightProjectJournalApiService InsightProjectJournalApi service.
NetworkingProjectFirewallApiService NetworkingProjectFirewallApi service.
NetworkingProjectIpApiService NetworkingProjectIpApi service.
NetworkingProjectNetadpApiService NetworkingProjectNetadpApi service.
NetworkingProjectNetgwApiService NetworkingProjectNetgwApi service.
NetworkingProjectNetworkApiService NetworkingProjectNetworkApi service.
ProviderProjectAgentApiService ProviderProjectAgentApi service.
SearchResourceApiService SearchResourceApi service.
ServerConfigurations stores multiple ServerConfiguration items.
StorageProjectBucketApiService StorageProjectBucketApi service.
StorageProjectDiskApiService StorageProjectDiskApi service.
StorageProjectImageApiService StorageProjectImageApi service.
StorageProjectIsoApiService StorageProjectIsoApi service.
StorageProjectVaultApiService StorageProjectVaultApi service.
SupportProjectTicketApiService SupportProjectTicketApi service.
VmhostProjectInstanceApiService VmhostProjectInstanceApi service.