autonomousdatabasecharactersets

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: 11 Imported by: 0

README

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

The autonomousdatabasecharactersets 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/autonomousdatabasecharactersets"

Client Initialization

client := autonomousdatabasecharactersets.NewAutonomousDatabaseCharacterSetsClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: AutonomousDatabaseCharacterSetsClient.Get

ctx := context.TODO()
id := autonomousdatabasecharactersets.NewAutonomousDatabaseCharacterSetID("12345678-1234-9876-4563-123456789012", "locationValue", "autonomousDatabaseCharacterSetValue")

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: AutonomousDatabaseCharacterSetsClient.ListByLocation

ctx := context.TODO()
id := autonomousdatabasecharactersets.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 ValidateAutonomousDatabaseCharacterSetID

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

ValidateAutonomousDatabaseCharacterSetID checks that 'input' can be parsed as a Autonomous Database Character Set 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 AutonomousDatabaseCharacterSet

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

type AutonomousDatabaseCharacterSetId

type AutonomousDatabaseCharacterSetId struct {
	SubscriptionId                     string
	LocationName                       string
	AutonomousDatabaseCharacterSetName string
}

AutonomousDatabaseCharacterSetId is a struct representing the Resource ID for a Autonomous Database Character Set

func NewAutonomousDatabaseCharacterSetID

func NewAutonomousDatabaseCharacterSetID(subscriptionId string, locationName string, autonomousDatabaseCharacterSetName string) AutonomousDatabaseCharacterSetId

NewAutonomousDatabaseCharacterSetID returns a new AutonomousDatabaseCharacterSetId struct

func ParseAutonomousDatabaseCharacterSetID

func ParseAutonomousDatabaseCharacterSetID(input string) (*AutonomousDatabaseCharacterSetId, error)

ParseAutonomousDatabaseCharacterSetID parses 'input' into a AutonomousDatabaseCharacterSetId

func ParseAutonomousDatabaseCharacterSetIDInsensitively

func ParseAutonomousDatabaseCharacterSetIDInsensitively(input string) (*AutonomousDatabaseCharacterSetId, error)

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

func (*AutonomousDatabaseCharacterSetId) FromParseResult

func (AutonomousDatabaseCharacterSetId) ID

ID returns the formatted Autonomous Database Character Set ID

func (AutonomousDatabaseCharacterSetId) Segments

Segments returns a slice of Resource ID Segments which comprise this Autonomous Database Character Set ID

func (AutonomousDatabaseCharacterSetId) String

String returns a human-readable description of this Autonomous Database Character Set ID

type AutonomousDatabaseCharacterSetOperationPredicate

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

func (AutonomousDatabaseCharacterSetOperationPredicate) Matches

type AutonomousDatabaseCharacterSetProperties

type AutonomousDatabaseCharacterSetProperties struct {
	CharacterSet *string `json:"characterSet,omitempty"`
}

type AutonomousDatabaseCharacterSetsClient

type AutonomousDatabaseCharacterSetsClient struct {
	Client *resourcemanager.Client
}

func NewAutonomousDatabaseCharacterSetsClientWithBaseURI

func NewAutonomousDatabaseCharacterSetsClientWithBaseURI(sdkApi sdkEnv.Api) (*AutonomousDatabaseCharacterSetsClient, error)

func (AutonomousDatabaseCharacterSetsClient) Get

Get ...

func (AutonomousDatabaseCharacterSetsClient) ListByLocation

ListByLocation ...

func (AutonomousDatabaseCharacterSetsClient) ListByLocationComplete

ListByLocationComplete retrieves all the results into a single object

func (AutonomousDatabaseCharacterSetsClient) ListByLocationCompleteMatchingPredicate

ListByLocationCompleteMatchingPredicate retrieves all the results and then applies the predicate

type GetOperationResponse

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

type ListByLocationCompleteResult

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

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        *[]AutonomousDatabaseCharacterSet
}

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

Jump to

Keyboard shortcuts

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