Documentation
¶
Overview ¶
Code generated by azure-service-operator-codegen. DO NOT EDIT. Copyright (c) Microsoft Corporation. Licensed under the MIT license.
Code generated by azure-service-operator-codegen. DO NOT EDIT. Copyright (c) Microsoft Corporation. Licensed under the MIT license.
Code generated by azure-service-operator-codegen. DO NOT EDIT. Copyright (c) Microsoft Corporation. Licensed under the MIT license.
Code generated by azure-service-operator-codegen. DO NOT EDIT. Copyright (c) Microsoft Corporation. Licensed under the MIT license.
Index ¶
- Constants
- type FederatedIdentityCredentialProperties
- type FederatedIdentityCredentialProperties_STATUS
- type FederatedIdentityCredential_STATUS
- type FederatedIdentityCredential_Spec
- type SystemData_CreatedByType_STATUS
- type SystemData_LastModifiedByType_STATUS
- type SystemData_STATUS
- type UserAssignedIdentityProperties_STATUS
- type UserAssignedIdentity_STATUS
- type UserAssignedIdentity_Spec
Constants ¶
const ( SystemData_CreatedByType_STATUS_Application = SystemData_CreatedByType_STATUS("Application") SystemData_CreatedByType_STATUS_Key = SystemData_CreatedByType_STATUS("Key") SystemData_CreatedByType_STATUS_ManagedIdentity = SystemData_CreatedByType_STATUS("ManagedIdentity") SystemData_CreatedByType_STATUS_User = SystemData_CreatedByType_STATUS("User") )
const ( SystemData_LastModifiedByType_STATUS_Application = SystemData_LastModifiedByType_STATUS("Application") SystemData_LastModifiedByType_STATUS_Key = SystemData_LastModifiedByType_STATUS("Key") SystemData_LastModifiedByType_STATUS_ManagedIdentity = SystemData_LastModifiedByType_STATUS("ManagedIdentity") SystemData_LastModifiedByType_STATUS_User = SystemData_LastModifiedByType_STATUS("User") )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FederatedIdentityCredentialProperties ¶
type FederatedIdentityCredentialProperties struct {
// Audiences: The list of audiences that can appear in the issued token.
Audiences []string `json:"audiences,omitempty"`
// Issuer: The URL of the issuer to be trusted.
Issuer *string `json:"issuer,omitempty" optionalConfigMapPair:"Issuer"`
// Subject: The identifier of the external identity.
Subject *string `json:"subject,omitempty" optionalConfigMapPair:"Subject"`
}
The properties associated with a federated identity credential.
type FederatedIdentityCredentialProperties_STATUS ¶
type FederatedIdentityCredentialProperties_STATUS struct {
// Audiences: The list of audiences that can appear in the issued token.
Audiences []string `json:"audiences,omitempty"`
// Issuer: The URL of the issuer to be trusted.
Issuer *string `json:"issuer,omitempty"`
// Subject: The identifier of the external identity.
Subject *string `json:"subject,omitempty"`
}
The properties associated with a federated identity credential.
type FederatedIdentityCredential_STATUS ¶
type FederatedIdentityCredential_STATUS struct {
// Id: Fully qualified resource ID for the resource. E.g.
// "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
Id *string `json:"id,omitempty"`
// Name: The name of the resource
Name *string `json:"name,omitempty"`
// Properties: The properties associated with the federated identity credential.
Properties *FederatedIdentityCredentialProperties_STATUS `json:"properties,omitempty"`
// SystemData: Azure Resource Manager metadata containing createdBy and modifiedBy information.
SystemData *SystemData_STATUS `json:"systemData,omitempty"`
// Type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Type *string `json:"type,omitempty"`
}
type FederatedIdentityCredential_Spec ¶
type FederatedIdentityCredential_Spec struct {
Name string `json:"name,omitempty"`
// Properties: The properties associated with the federated identity credential.
Properties *FederatedIdentityCredentialProperties `json:"properties,omitempty"`
}
func (FederatedIdentityCredential_Spec) GetAPIVersion ¶
func (credential FederatedIdentityCredential_Spec) GetAPIVersion() string
GetAPIVersion returns the ARM API version of the resource. This is always "2023-01-31"
func (*FederatedIdentityCredential_Spec) GetName ¶
func (credential *FederatedIdentityCredential_Spec) GetName() string
GetName returns the Name of the resource
func (*FederatedIdentityCredential_Spec) GetType ¶
func (credential *FederatedIdentityCredential_Spec) GetType() string
GetType returns the ARM Type of the resource. This is always "Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials"
type SystemData_CreatedByType_STATUS ¶
type SystemData_CreatedByType_STATUS string
type SystemData_LastModifiedByType_STATUS ¶
type SystemData_LastModifiedByType_STATUS string
type SystemData_STATUS ¶
type SystemData_STATUS struct {
// CreatedAt: The timestamp of resource creation (UTC).
CreatedAt *string `json:"createdAt,omitempty"`
// CreatedBy: The identity that created the resource.
CreatedBy *string `json:"createdBy,omitempty"`
// CreatedByType: The type of identity that created the resource.
CreatedByType *SystemData_CreatedByType_STATUS `json:"createdByType,omitempty"`
// LastModifiedAt: The timestamp of resource last modification (UTC)
LastModifiedAt *string `json:"lastModifiedAt,omitempty"`
// LastModifiedBy: The identity that last modified the resource.
LastModifiedBy *string `json:"lastModifiedBy,omitempty"`
// LastModifiedByType: The type of identity that last modified the resource.
LastModifiedByType *SystemData_LastModifiedByType_STATUS `json:"lastModifiedByType,omitempty"`
}
Metadata pertaining to creation and last modification of the resource.
type UserAssignedIdentityProperties_STATUS ¶
type UserAssignedIdentityProperties_STATUS struct {
// ClientId: The id of the app associated with the identity. This is a random generated UUID by MSI.
ClientId *string `json:"clientId,omitempty"`
// PrincipalId: The id of the service principal object associated with the created identity.
PrincipalId *string `json:"principalId,omitempty"`
// TenantId: The id of the tenant which the identity belongs to.
TenantId *string `json:"tenantId,omitempty"`
}
The properties associated with the user assigned identity.
type UserAssignedIdentity_STATUS ¶
type UserAssignedIdentity_STATUS struct {
// Id: Fully qualified resource ID for the resource. E.g.
// "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
Id *string `json:"id,omitempty"`
// Location: The geo-location where the resource lives
Location *string `json:"location,omitempty"`
// Name: The name of the resource
Name *string `json:"name,omitempty"`
// Properties: The properties associated with the identity.
Properties *UserAssignedIdentityProperties_STATUS `json:"properties,omitempty"`
// SystemData: Azure Resource Manager metadata containing createdBy and modifiedBy information.
SystemData *SystemData_STATUS `json:"systemData,omitempty"`
// Tags: Resource tags.
Tags map[string]string `json:"tags,omitempty"`
// Type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Type *string `json:"type,omitempty"`
}
type UserAssignedIdentity_Spec ¶
type UserAssignedIdentity_Spec struct {
// Location: The geo-location where the resource lives
Location *string `json:"location,omitempty"`
Name string `json:"name,omitempty"`
// Tags: Resource tags.
Tags map[string]string `json:"tags,omitempty"`
}
func (UserAssignedIdentity_Spec) GetAPIVersion ¶
func (identity UserAssignedIdentity_Spec) GetAPIVersion() string
GetAPIVersion returns the ARM API version of the resource. This is always "2023-01-31"
func (*UserAssignedIdentity_Spec) GetName ¶
func (identity *UserAssignedIdentity_Spec) GetName() string
GetName returns the Name of the resource
func (*UserAssignedIdentity_Spec) GetType ¶
func (identity *UserAssignedIdentity_Spec) GetType() string
GetType returns the ARM Type of the resource. This is always "Microsoft.ManagedIdentity/userAssignedIdentities"