Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v39.3.0 #7452

Merged
merged 5 commits into from
Feb 24, 2020
Merged

v39.3.0 #7452

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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# CHANGELOG

## `v39.3.0`

### New Packages

| Package Name | API Version |
| -----------: | :---------: |
| containerservice | 2019-10-27-preview |
| synapse | 2019-06-01-preview |

## `v39.2.0`

### New Packages
Expand Down
42 changes: 31 additions & 11 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

[[constraint]]
name = "github.com/Azure/go-autorest"
version = "13.3.2"
version = "13.4.0"

[[constraint]]
branch = "master"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

package containerserviceapi

import original "github.com/Azure/azure-sdk-for-go/services/preview/containerservice/mgmt/2019-09-30-preview/containerservice/containerserviceapi"
import original "github.com/Azure/azure-sdk-for-go/services/preview/containerservice/mgmt/2019-10-27-preview/containerservice/containerserviceapi"

type AgentPoolsClientAPI = original.AgentPoolsClientAPI
type ContainerServicesClientAPI = original.ContainerServicesClientAPI
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ package containerservice
import (
"context"

original "github.com/Azure/azure-sdk-for-go/services/preview/containerservice/mgmt/2019-09-30-preview/containerservice"
original "github.com/Azure/azure-sdk-for-go/services/preview/containerservice/mgmt/2019-10-27-preview/containerservice"
)

const (
Expand Down Expand Up @@ -126,6 +126,13 @@ const (
Swarm OrchestratorTypes = original.Swarm
)

type OutboundType = original.OutboundType

const (
LoadBalancer OutboundType = original.LoadBalancer
UserDefinedRouting OutboundType = original.UserDefinedRouting
)

type ResourceIdentityType = original.ResourceIdentityType

const (
Expand Down Expand Up @@ -370,6 +377,7 @@ type ManagedClusterAADProfile = original.ManagedClusterAADProfile
type ManagedClusterAPIServerAccessProfile = original.ManagedClusterAPIServerAccessProfile
type ManagedClusterAccessProfile = original.ManagedClusterAccessProfile
type ManagedClusterAddonProfile = original.ManagedClusterAddonProfile
type ManagedClusterAddonProfileIdentity = original.ManagedClusterAddonProfileIdentity
type ManagedClusterAgentPoolProfile = original.ManagedClusterAgentPoolProfile
type ManagedClusterAgentPoolProfileProperties = original.ManagedClusterAgentPoolProfileProperties
type ManagedClusterIdentity = original.ManagedClusterIdentity
Expand All @@ -383,6 +391,7 @@ type ManagedClusterLoadBalancerProfileOutboundIPs = original.ManagedClusterLoadB
type ManagedClusterPoolUpgradeProfile = original.ManagedClusterPoolUpgradeProfile
type ManagedClusterPoolUpgradeProfileUpgradesItem = original.ManagedClusterPoolUpgradeProfileUpgradesItem
type ManagedClusterProperties = original.ManagedClusterProperties
type ManagedClusterPropertiesIdentityProfileValue = original.ManagedClusterPropertiesIdentityProfileValue
type ManagedClusterServicePrincipalProfile = original.ManagedClusterServicePrincipalProfile
type ManagedClusterUpgradeProfile = original.ManagedClusterUpgradeProfile
type ManagedClusterUpgradeProfileProperties = original.ManagedClusterUpgradeProfileProperties
Expand All @@ -397,6 +406,7 @@ type ManagedClustersUpdateTagsFuture = original.ManagedClustersUpdateTagsFuture
type MasterProfile = original.MasterProfile
type NetworkProfile = original.NetworkProfile
type NetworkProfileType = original.NetworkProfileType
type OpenShiftAPIProperties = original.OpenShiftAPIProperties
type OpenShiftManagedCluster = original.OpenShiftManagedCluster
type OpenShiftManagedClusterAADIdentityProvider = original.OpenShiftManagedClusterAADIdentityProvider
type OpenShiftManagedClusterAgentPoolProfile = original.OpenShiftManagedClusterAgentPoolProfile
Expand Down Expand Up @@ -432,6 +442,7 @@ type SSHPublicKey = original.SSHPublicKey
type ServicePrincipalProfile = original.ServicePrincipalProfile
type SubResource = original.SubResource
type TagsObject = original.TagsObject
type UserAssignedIdentity = original.UserAssignedIdentity
type VMDiagnostics = original.VMDiagnostics
type WindowsProfile = original.WindowsProfile

Expand Down Expand Up @@ -522,6 +533,9 @@ func PossibleOpenShiftContainerServiceVMSizeValues() []OpenShiftContainerService
func PossibleOrchestratorTypesValues() []OrchestratorTypes {
return original.PossibleOrchestratorTypesValues()
}
func PossibleOutboundTypeValues() []OutboundType {
return original.PossibleOutboundTypeValues()
}
func PossibleResourceIdentityTypeValues() []ResourceIdentityType {
return original.PossibleResourceIdentityTypeValues()
}
Expand Down
Loading