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

[AutoPR blueprint/resource-manager] modeling assignmentOperations with api-version 2018-11-01 #3420

Closed
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ type PublishedBlueprintsClientAPI = original.PublishedBlueprintsClientAPI
type PublishedArtifactsClientAPI = original.PublishedArtifactsClientAPI
type OperationsClientAPI = original.OperationsClientAPI
type AssignmentsClientAPI = original.AssignmentsClientAPI
type AssignmentOperationsClientAPI = original.AssignmentOperationsClientAPI
22 changes: 22 additions & 0 deletions profiles/preview/preview/blueprint/mgmt/blueprint/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import (
)

type ArtifactsClient = original.ArtifactsClient
type AssignmentOperationsClient = original.AssignmentOperationsClient
type AssignmentsClient = original.AssignmentsClient
type BlueprintsClient = original.BlueprintsClient

Expand Down Expand Up @@ -100,13 +101,22 @@ type ArtifactListPage = original.ArtifactListPage
type ArtifactModel = original.ArtifactModel
type ArtifactPropertiesBase = original.ArtifactPropertiesBase
type Assignment = original.Assignment
type AssignmentDeploymentJob = original.AssignmentDeploymentJob
type AssignmentDeploymentJobResult = original.AssignmentDeploymentJobResult
type AssignmentJobCreatedResource = original.AssignmentJobCreatedResource
type AssignmentList = original.AssignmentList
type AssignmentListIterator = original.AssignmentListIterator
type AssignmentListPage = original.AssignmentListPage
type AssignmentLockSettings = original.AssignmentLockSettings
type AssignmentOperation = original.AssignmentOperation
type AssignmentOperationList = original.AssignmentOperationList
type AssignmentOperationListIterator = original.AssignmentOperationListIterator
type AssignmentOperationListPage = original.AssignmentOperationListPage
type AssignmentOperationProperties = original.AssignmentOperationProperties
type AssignmentProperties = original.AssignmentProperties
type AssignmentStatus = original.AssignmentStatus
type AzureResourceBase = original.AzureResourceBase
type AzureResourceManagerError = original.AzureResourceManagerError
type KeyVaultReference = original.KeyVaultReference
type List = original.List
type ListIterator = original.ListIterator
Expand Down Expand Up @@ -151,6 +161,12 @@ func NewArtifactsClient() ArtifactsClient {
func NewArtifactsClientWithBaseURI(baseURI string) ArtifactsClient {
return original.NewArtifactsClientWithBaseURI(baseURI)
}
func NewAssignmentOperationsClient() AssignmentOperationsClient {
return original.NewAssignmentOperationsClient()
}
func NewAssignmentOperationsClientWithBaseURI(baseURI string) AssignmentOperationsClient {
return original.NewAssignmentOperationsClientWithBaseURI(baseURI)
}
func NewAssignmentsClient() AssignmentsClient {
return original.NewAssignmentsClient()
}
Expand Down Expand Up @@ -199,6 +215,12 @@ func NewAssignmentListIterator(page AssignmentListPage) AssignmentListIterator {
func NewAssignmentListPage(getNextPage func(context.Context, AssignmentList) (AssignmentList, error)) AssignmentListPage {
return original.NewAssignmentListPage(getNextPage)
}
func NewAssignmentOperationListIterator(page AssignmentOperationListPage) AssignmentOperationListIterator {
return original.NewAssignmentOperationListIterator(page)
}
func NewAssignmentOperationListPage(getNextPage func(context.Context, AssignmentOperationList) (AssignmentOperationList, error)) AssignmentOperationListPage {
return original.NewAssignmentOperationListPage(getNextPage)
}
func NewListIterator(page ListPage) ListIterator {
return original.NewListIterator(page)
}
Expand Down

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

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

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

Loading