autonomousdatabaseversions

package
v0.20240731.1212841 Latest Latest
Warning

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

Go to latest
Published: Jul 31, 2024 License: MPL-2.0 Imports: 12 Imported by: 0

README

github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2024-06-01/autonomousdatabaseversions Documentation

The autonomousdatabaseversions SDK allows for interaction with the Azure Resource Manager Service oracledatabase (API Version 2024-06-01).

This readme covers example usages, but further information on using this SDK can be found in the project root.

Import Path

import "github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2024-06-01/autonomousdatabaseversions"

Client Initialization

client := autonomousdatabaseversions.NewAutonomousDatabaseVersionsClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: AutonomousDatabaseVersionsClient.Get

ctx := context.TODO()
id := autonomousdatabaseversions.NewAutonomousDbVersionID("12345678-1234-9876-4563-123456789012", "locationValue", "autonomousDbVersionValue")

read, err := client.Get(ctx, id)
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: AutonomousDatabaseVersionsClient.ListByLocation

ctx := context.TODO()
id := autonomousdatabaseversions.NewLocationID("12345678-1234-9876-4563-123456789012", "locationValue")

// alternatively `client.ListByLocation(ctx, id)` can be used to do batched pagination
items, err := client.ListByLocationComplete(ctx, id)
if err != nil {
	// handle the error
}
for _, item := range items {
	// do something
}

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func PossibleValuesForWorkloadType

func PossibleValuesForWorkloadType() []string

func ValidateAutonomousDbVersionID

func ValidateAutonomousDbVersionID(input interface{}, key string) (warnings []string, errors []error)

ValidateAutonomousDbVersionID checks that 'input' can be parsed as a Autonomous Db Version ID

func ValidateLocationID

func ValidateLocationID(input interface{}, key string) (warnings []string, errors []error)

ValidateLocationID checks that 'input' can be parsed as a Location ID

Types

type AutonomousDatabaseVersionsClient

type AutonomousDatabaseVersionsClient struct {
	Client *resourcemanager.Client
}

func NewAutonomousDatabaseVersionsClientWithBaseURI

func NewAutonomousDatabaseVersionsClientWithBaseURI(sdkApi sdkEnv.Api) (*AutonomousDatabaseVersionsClient, error)

func (AutonomousDatabaseVersionsClient) Get

Get ...

func (AutonomousDatabaseVersionsClient) ListByLocation

ListByLocation ...

func (AutonomousDatabaseVersionsClient) ListByLocationComplete

ListByLocationComplete retrieves all the results into a single object

func (AutonomousDatabaseVersionsClient) ListByLocationCompleteMatchingPredicate

func (c AutonomousDatabaseVersionsClient) ListByLocationCompleteMatchingPredicate(ctx context.Context, id LocationId, predicate AutonomousDbVersionOperationPredicate) (result ListByLocationCompleteResult, err error)

ListByLocationCompleteMatchingPredicate retrieves all the results and then applies the predicate

type AutonomousDbVersion

type AutonomousDbVersion struct {
	Id         *string                        `json:"id,omitempty"`
	Name       *string                        `json:"name,omitempty"`
	Properties *AutonomousDbVersionProperties `json:"properties,omitempty"`
	SystemData *systemdata.SystemData         `json:"systemData,omitempty"`
	Type       *string                        `json:"type,omitempty"`
}

type AutonomousDbVersionId

type AutonomousDbVersionId struct {
	SubscriptionId          string
	LocationName            string
	AutonomousDbVersionName string
}

AutonomousDbVersionId is a struct representing the Resource ID for a Autonomous Db Version

func NewAutonomousDbVersionID

func NewAutonomousDbVersionID(subscriptionId string, locationName string, autonomousDbVersionName string) AutonomousDbVersionId

NewAutonomousDbVersionID returns a new AutonomousDbVersionId struct

func ParseAutonomousDbVersionID

func ParseAutonomousDbVersionID(input string) (*AutonomousDbVersionId, error)

ParseAutonomousDbVersionID parses 'input' into a AutonomousDbVersionId

func ParseAutonomousDbVersionIDInsensitively

func ParseAutonomousDbVersionIDInsensitively(input string) (*AutonomousDbVersionId, error)

ParseAutonomousDbVersionIDInsensitively parses 'input' case-insensitively into a AutonomousDbVersionId note: this method should only be used for API response data and not user input

func (*AutonomousDbVersionId) FromParseResult

func (id *AutonomousDbVersionId) FromParseResult(input resourceids.ParseResult) error

func (AutonomousDbVersionId) ID

func (id AutonomousDbVersionId) ID() string

ID returns the formatted Autonomous Db Version ID

func (AutonomousDbVersionId) Segments

func (id AutonomousDbVersionId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Autonomous Db Version ID

func (AutonomousDbVersionId) String

func (id AutonomousDbVersionId) String() string

String returns a human-readable description of this Autonomous Db Version ID

type AutonomousDbVersionOperationPredicate

type AutonomousDbVersionOperationPredicate struct {
	Id   *string
	Name *string
	Type *string
}

func (AutonomousDbVersionOperationPredicate) Matches

type AutonomousDbVersionProperties

type AutonomousDbVersionProperties struct {
	DbWorkload        *WorkloadType `json:"dbWorkload,omitempty"`
	IsDefaultForFree  *bool         `json:"isDefaultForFree,omitempty"`
	IsDefaultForPaid  *bool         `json:"isDefaultForPaid,omitempty"`
	IsFreeTierEnabled *bool         `json:"isFreeTierEnabled,omitempty"`
	IsPaidEnabled     *bool         `json:"isPaidEnabled,omitempty"`
	Version           *string       `json:"version,omitempty"`
}

type GetOperationResponse

type GetOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *AutonomousDbVersion
}

type ListByLocationCompleteResult

type ListByLocationCompleteResult struct {
	LatestHttpResponse *http.Response
	Items              []AutonomousDbVersion
}

type ListByLocationCustomPager

type ListByLocationCustomPager struct {
	NextLink *odata.Link `json:"nextLink"`
}
func (p *ListByLocationCustomPager) NextPageLink() *odata.Link

type ListByLocationOperationResponse

type ListByLocationOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *[]AutonomousDbVersion
}

type LocationId

type LocationId struct {
	SubscriptionId string
	LocationName   string
}

LocationId is a struct representing the Resource ID for a Location

func NewLocationID

func NewLocationID(subscriptionId string, locationName string) LocationId

NewLocationID returns a new LocationId struct

func ParseLocationID

func ParseLocationID(input string) (*LocationId, error)

ParseLocationID parses 'input' into a LocationId

func ParseLocationIDInsensitively

func ParseLocationIDInsensitively(input string) (*LocationId, error)

ParseLocationIDInsensitively parses 'input' case-insensitively into a LocationId note: this method should only be used for API response data and not user input

func (*LocationId) FromParseResult

func (id *LocationId) FromParseResult(input resourceids.ParseResult) error

func (LocationId) ID

func (id LocationId) ID() string

ID returns the formatted Location ID

func (LocationId) Segments

func (id LocationId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Location ID

func (LocationId) String

func (id LocationId) String() string

String returns a human-readable description of this Location ID

type WorkloadType

type WorkloadType string
const (
	WorkloadTypeAJD  WorkloadType = "AJD"
	WorkloadTypeAPEX WorkloadType = "APEX"
	WorkloadTypeDW   WorkloadType = "DW"
	WorkloadTypeOLTP WorkloadType = "OLTP"
)

func (*WorkloadType) UnmarshalJSON

func (s *WorkloadType) UnmarshalJSON(bytes []byte) error

Jump to

Keyboard shortcuts

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