github.com/chnsz/golangsdk@v0.0.0-20240506093406-85a3fbfa605b/openstack/fgs/v2/aliases/results.go (about)

     1  package aliases
     2  
     3  // Alias is the structure that represent the details of the version alias.
     4  type Alias struct {
     5  	// Function alias.
     6  	Name string `json:"name"`
     7  	// Version corresponding to the alias.
     8  	Version string `json:"version"`
     9  	// Description of the alias.
    10  	Description string `json:"description"`
    11  	// Time when the alias was last modified.
    12  	LastModified string `json:"last_modified"`
    13  	// URN of the alias.
    14  	AliasUrn string `json:"alias_urn"`
    15  	// The weights configuration of the additional version.
    16  	AdditionalVersionWeights map[string]interface{} `json:"additional_version_weights"`
    17  }