README ¶
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/gatewaygeneratetoken
Documentation
The gatewaygeneratetoken
SDK allows for interaction with the Azure Resource Manager Service apimanagement
(API Version 2022-08-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/apimanagement/2022-08-01/gatewaygeneratetoken"
Client Initialization
client := gatewaygeneratetoken.NewGatewayGenerateTokenClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer
Example Usage: GatewayGenerateTokenClient.GatewayGenerateToken
ctx := context.TODO()
id := gatewaygeneratetoken.NewGatewayID("12345678-1234-9876-4563-123456789012", "example-resource-group", "serviceValue", "gatewayIdValue")
payload := gatewaygeneratetoken.GatewayTokenRequestContract{
// ...
}
read, err := client.GatewayGenerateToken(ctx, id, payload)
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForKeyType ¶
func PossibleValuesForKeyType() []string
func ValidateGatewayID ¶
ValidateGatewayID checks that 'input' can be parsed as a Gateway ID
Types ¶
type GatewayGenerateTokenClient ¶
type GatewayGenerateTokenClient struct {
Client *resourcemanager.Client
}
func NewGatewayGenerateTokenClientWithBaseURI ¶
func NewGatewayGenerateTokenClientWithBaseURI(sdkApi sdkEnv.Api) (*GatewayGenerateTokenClient, error)
func (GatewayGenerateTokenClient) GatewayGenerateToken ¶
func (c GatewayGenerateTokenClient) GatewayGenerateToken(ctx context.Context, id GatewayId, input GatewayTokenRequestContract) (result GatewayGenerateTokenOperationResponse, err error)
GatewayGenerateToken ...
type GatewayGenerateTokenOperationResponse ¶
type GatewayGenerateTokenOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *GatewayTokenContract }
type GatewayId ¶
type GatewayId struct { SubscriptionId string ResourceGroupName string ServiceName string GatewayId string }
GatewayId is a struct representing the Resource ID for a Gateway
func NewGatewayID ¶
func NewGatewayID(subscriptionId string, resourceGroupName string, serviceName string, gatewayId string) GatewayId
NewGatewayID returns a new GatewayId struct
func ParseGatewayID ¶
ParseGatewayID parses 'input' into a GatewayId
func ParseGatewayIDInsensitively ¶
ParseGatewayIDInsensitively parses 'input' case-insensitively into a GatewayId note: this method should only be used for API response data and not user input
func (GatewayId) Segments ¶
func (id GatewayId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Gateway ID
type GatewayTokenContract ¶
type GatewayTokenContract struct {
Value *string `json:"value,omitempty"`
}
type GatewayTokenRequestContract ¶
type GatewayTokenRequestContract struct { Expiry string `json:"expiry"` KeyType KeyType `json:"keyType"` }
func (*GatewayTokenRequestContract) GetExpiryAsTime ¶
func (o *GatewayTokenRequestContract) GetExpiryAsTime() (*time.Time, error)
func (*GatewayTokenRequestContract) SetExpiryAsTime ¶
func (o *GatewayTokenRequestContract) SetExpiryAsTime(input time.Time)