Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# CHANGELOG

## `v48.2.0`

### New Packages

| Package Name | API Version |
| ---: | :---: |
| attestation | 2020-10-01 |
| containerservice | 2020-11-01 |
| redisenterprise | 2020-10-01-preview |

Generated from https://github.com/Azure/azure-rest-api-specs/tree/48e7415267518cc2b92f6e6002466f676bdef1a5

## `v48.1.0`

### New Packages
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// +build go1.9

// Copyright 2020 Microsoft Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// This code was auto-generated by:
// github.com/Azure/azure-sdk-for-go/tools/profileBuilder

package attestationapi

import original "github.com/Azure/azure-sdk-for-go/services/attestation/mgmt/2020-10-01/attestation/attestationapi"

type OperationsClientAPI = original.OperationsClientAPI
type ProvidersClientAPI = original.ProvidersClientAPI
96 changes: 96 additions & 0 deletions profiles/latest/attestation/mgmt/attestation/models.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
// +build go1.9

// Copyright 2020 Microsoft Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// This code was auto-generated by:
// github.com/Azure/azure-sdk-for-go/tools/profileBuilder

package attestation

import original "github.com/Azure/azure-sdk-for-go/services/attestation/mgmt/2020-10-01/attestation"

const (
DefaultBaseURI = original.DefaultBaseURI
)

type CreatedByType = original.CreatedByType

const (
Application CreatedByType = original.Application
Key CreatedByType = original.Key
ManagedIdentity CreatedByType = original.ManagedIdentity
User CreatedByType = original.User
)

type ServiceStatus = original.ServiceStatus

const (
Error ServiceStatus = original.Error
NotReady ServiceStatus = original.NotReady
Ready ServiceStatus = original.Ready
)

type AzureEntityResource = original.AzureEntityResource
type BaseClient = original.BaseClient
type CloudError = original.CloudError
type CloudErrorBody = original.CloudErrorBody
type JSONWebKey = original.JSONWebKey
type JSONWebKeySet = original.JSONWebKeySet
type OperationList = original.OperationList
type OperationsClient = original.OperationsClient
type OperationsDefinition = original.OperationsDefinition
type OperationsDisplayDefinition = original.OperationsDisplayDefinition
type Provider = original.Provider
type ProviderListResult = original.ProviderListResult
type ProvidersClient = original.ProvidersClient
type ProxyResource = original.ProxyResource
type Resource = original.Resource
type ServiceCreationParams = original.ServiceCreationParams
type ServiceCreationSpecificParams = original.ServiceCreationSpecificParams
type ServicePatchParams = original.ServicePatchParams
type StatusResult = original.StatusResult
type SystemData = original.SystemData
type TrackedResource = original.TrackedResource

func New(subscriptionID string) BaseClient {
return original.New(subscriptionID)
}
func NewOperationsClient(subscriptionID string) OperationsClient {
return original.NewOperationsClient(subscriptionID)
}
func NewOperationsClientWithBaseURI(baseURI string, subscriptionID string) OperationsClient {
return original.NewOperationsClientWithBaseURI(baseURI, subscriptionID)
}
func NewProvidersClient(subscriptionID string) ProvidersClient {
return original.NewProvidersClient(subscriptionID)
}
func NewProvidersClientWithBaseURI(baseURI string, subscriptionID string) ProvidersClient {
return original.NewProvidersClientWithBaseURI(baseURI, subscriptionID)
}
func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
return original.NewWithBaseURI(baseURI, subscriptionID)
}
func PossibleCreatedByTypeValues() []CreatedByType {
return original.PossibleCreatedByTypeValues()
}
func PossibleServiceStatusValues() []ServiceStatus {
return original.PossibleServiceStatusValues()
}
func UserAgent() string {
return original.UserAgent() + " profiles/latest"
}
func Version() string {
return original.Version()
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,10 @@

package containerserviceapi

import original "github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-09-01/containerservice/containerserviceapi"
import original "github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-11-01/containerservice/containerserviceapi"

type AgentPoolsClientAPI = original.AgentPoolsClientAPI
type ContainerServicesClientAPI = original.ContainerServicesClientAPI
type ManagedClustersClientAPI = original.ManagedClustersClientAPI
type OpenShiftManagedClustersClientAPI = original.OpenShiftManagedClustersClientAPI
type OperationsClientAPI = original.OperationsClientAPI
type PrivateEndpointConnectionsClientAPI = original.PrivateEndpointConnectionsClientAPI
type PrivateLinkResourcesClientAPI = original.PrivateLinkResourcesClientAPI
Expand Down
Loading