github.com/coreos/mantle@v0.13.0/platform/api/azure/options.go (about)

     1  // Copyright 2016 CoreOS, Inc.
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package azure
    16  
    17  import (
    18  	"github.com/coreos/mantle/platform"
    19  )
    20  
    21  type Options struct {
    22  	*platform.Options
    23  
    24  	AzureProfile      string
    25  	AzureAuthLocation string
    26  	AzureSubscription string
    27  
    28  	DiskURI   string
    29  	Publisher string
    30  	Offer     string
    31  	Sku       string
    32  	Version   string
    33  	Size      string
    34  	Location  string
    35  
    36  	SubscriptionName string
    37  	SubscriptionID   string
    38  
    39  	// Azure API endpoint. If unset, the Azure SDK default will be used.
    40  	ManagementURL         string
    41  	ManagementCertificate []byte
    42  
    43  	// Azure Storage API endpoint suffix. If unset, the Azure SDK default will be used.
    44  	StorageEndpointSuffix string
    45  }