Update vendored dependencies

This includes github.com/kurin/blazer 0.2.0, which resolves #1291
This commit is contained in:
Alexander Neumann 2017-10-01 10:13:39 +02:00
parent ba23d24dd1
commit 61cb1cc6f8
1044 changed files with 203022 additions and 97709 deletions

View file

@ -14,7 +14,7 @@ package containerinstance
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
import (
@ -39,10 +39,11 @@ func NewContainerGroupsClientWithBaseURI(baseURI string, subscriptionID string)
return ContainerGroupsClient{NewWithBaseURI(baseURI, subscriptionID)}
}
// CreateOrUpdate create or update container groups.
// CreateOrUpdate create or update container groups with specified configurations.
//
// resourceGroupName is azure resource group name containerGroupName is container group name containerGroup is
// definition of the container to be created.
// resourceGroupName is the name of the resource group to contain the container group to be created or updated.
// containerGroupName is the name of the container group to be created or updated. containerGroup is the properties of
// the container group to be created or updated.
func (client ContainerGroupsClient) CreateOrUpdate(resourceGroupName string, containerGroupName string, containerGroup ContainerGroup) (result ContainerGroup, err error) {
if err := validation.Validate([]validation.Validation{
{TargetValue: containerGroup,
@ -118,9 +119,11 @@ func (client ContainerGroupsClient) CreateOrUpdateResponder(resp *http.Response)
return
}
// Delete delete container groups.
// Delete delete the specified container group in the specified subscription and resource group. The operation does not
// delete other resources provided by the user, such as volumes.
//
// resourceGroupName is azure resource group name containerGroupName is name of the container group to be deleted
// resourceGroupName is the name of the resource group that contains the container group. containerGroupName is the
// name of the container group to be deleted.
func (client ContainerGroupsClient) Delete(resourceGroupName string, containerGroupName string) (result ContainerGroup, err error) {
req, err := client.DeletePreparer(resourceGroupName, containerGroupName)
if err != nil {
@ -183,9 +186,12 @@ func (client ContainerGroupsClient) DeleteResponder(resp *http.Response) (result
return
}
// Get get details for this container group.
// Get gets the properties of the specified container group in the specified subscription and resource group. The
// operation returns the properties of each container group including containers, image registry credentials, restart
// policy, IP address type, OS type, state, and volumes.
//
// resourceGroupName is azure resource group name containerGroupName is container group name
// resourceGroupName is the name of the resource group that contains the container group. containerGroupName is the
// name of the container group.
func (client ContainerGroupsClient) Get(resourceGroupName string, containerGroupName string) (result ContainerGroup, err error) {
req, err := client.GetPreparer(resourceGroupName, containerGroupName)
if err != nil {
@ -248,7 +254,9 @@ func (client ContainerGroupsClient) GetResponder(resp *http.Response) (result Co
return
}
// List get the list of container groups in a given subscription.
// List get a list of container groups in the specified subscription. This operation returns properties of each
// container group including containers, image registry credentials, restart policy, IP address type, OS type, state,
// and volumes.
func (client ContainerGroupsClient) List() (result ContainerGroupListResult, err error) {
req, err := client.ListPreparer()
if err != nil {
@ -378,9 +386,11 @@ func (client ContainerGroupsClient) ListComplete(cancel <-chan struct{}) (<-chan
return resultChan, errChan
}
// ListByResourceGroup get the list of container groups in a given resource group.
// ListByResourceGroup get a list of container groups in a specified subscription and resource group. This operation
// returns properties of each container group including containers, image registry credentials, restart policy, IP
// address type, OS type, state, and volumes.
//
// resourceGroupName is azure resource group name
// resourceGroupName is the name of the resource group that contains the container group.
func (client ContainerGroupsClient) ListByResourceGroup(resourceGroupName string) (result ContainerGroupListResult, err error) {
req, err := client.ListByResourceGroupPreparer(resourceGroupName)
if err != nil {