package managementgroups // Copyright (c) Microsoft and contributors. All rights reserved. // // 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. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( "encoding/json" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "github.com/Azure/go-autorest/autorest/date" "github.com/Azure/go-autorest/autorest/to" "net/http" ) // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Permissions enumerates the values for permissions. type Permissions string const ( // Delete ... Delete Permissions = "delete" // Edit ... Edit Permissions = "edit" // Noaccess ... Noaccess Permissions = "noaccess" // View ... View Permissions = "view" ) // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // PossiblePermissionsValues returns an array of possible values for the Permissions const type. func PossiblePermissionsValues() []Permissions { return []Permissions{Delete, Edit, Noaccess, View} } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Permissions1 enumerates the values for permissions 1. type Permissions1 string const ( // Permissions1Delete ... Permissions1Delete Permissions1 = "delete" // Permissions1Edit ... Permissions1Edit Permissions1 = "edit" // Permissions1Noaccess ... Permissions1Noaccess Permissions1 = "noaccess" // Permissions1View ... Permissions1View Permissions1 = "view" ) // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // PossiblePermissions1Values returns an array of possible values for the Permissions1 const type. func PossiblePermissions1Values() []Permissions1 { return []Permissions1{Permissions1Delete, Permissions1Edit, Permissions1Noaccess, Permissions1View} } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // ProvisioningState enumerates the values for provisioning state. type ProvisioningState string const ( // Updating ... Updating ProvisioningState = "Updating" ) // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // PossibleProvisioningStateValues returns an array of possible values for the ProvisioningState const type. func PossibleProvisioningStateValues() []ProvisioningState { return []ProvisioningState{Updating} } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Reason enumerates the values for reason. type Reason string const ( // AlreadyExists ... AlreadyExists Reason = "AlreadyExists" // Invalid ... Invalid Reason = "Invalid" ) // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // PossibleReasonValues returns an array of possible values for the Reason const type. func PossibleReasonValues() []Reason { return []Reason{AlreadyExists, Invalid} } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Type enumerates the values for type. type Type string const ( // ProvidersMicrosoftManagementmanagementGroup ... ProvidersMicrosoftManagementmanagementGroup Type = "/providers/Microsoft.Management/managementGroup" ) // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // PossibleTypeValues returns an array of possible values for the Type const type. func PossibleTypeValues() []Type { return []Type{ProvidersMicrosoftManagementmanagementGroup} } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Type1 enumerates the values for type 1. type Type1 string const ( // ProvidersMicrosoftManagementmanagementGroups ... ProvidersMicrosoftManagementmanagementGroups Type1 = "/providers/Microsoft.Management/managementGroups" // Subscriptions ... Subscriptions Type1 = "/subscriptions" ) // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // PossibleType1Values returns an array of possible values for the Type1 const type. func PossibleType1Values() []Type1 { return []Type1{ProvidersMicrosoftManagementmanagementGroups, Subscriptions} } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Type2 enumerates the values for type 2. type Type2 string const ( // Type2ProvidersMicrosoftManagementmanagementGroups ... Type2ProvidersMicrosoftManagementmanagementGroups Type2 = "/providers/Microsoft.Management/managementGroups" // Type2Subscriptions ... Type2Subscriptions Type2 = "/subscriptions" ) // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // PossibleType2Values returns an array of possible values for the Type2 const type. func PossibleType2Values() []Type2 { return []Type2{Type2ProvidersMicrosoftManagementmanagementGroups, Type2Subscriptions} } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // CheckNameAvailabilityRequest management group name availability check parameters. type CheckNameAvailabilityRequest struct { // Name - the name to check for availability Name *string `json:"name,omitempty"` // Type - fully qualified resource type which includes provider namespace. Possible values include: 'ProvidersMicrosoftManagementmanagementGroup' Type Type `json:"type,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // CheckNameAvailabilityResult describes the result of the request to check management group name availability. type CheckNameAvailabilityResult struct { autorest.Response `json:"-"` // NameAvailable - Required. True indicates name is valid and available. False indicates the name is invalid, unavailable, or both. NameAvailable *bool `json:"nameAvailable,omitempty"` // Reason - Required if nameAvailable == false. Invalid indicates the name provided does not match the resource provider's naming requirements (incorrect length, unsupported characters, etc.) AlreadyExists indicates that the name is already in use and is therefore unavailable. Possible values include: 'Invalid', 'AlreadyExists' Reason Reason `json:"reason,omitempty"` // Message - Required if nameAvailable == false. Localized. If reason == invalid, provide the user with the reason why the given name is invalid, and provide the resource naming requirements so that the user can select a valid name. If reason == AlreadyExists, explain that is already in use, and direct them to select a different name. Message *string `json:"message,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // ChildInfo the child information of a management group. type ChildInfo struct { // Type - The fully qualified resource type which includes provider namespace (e.g. /providers/Microsoft.Management/managementGroups). Possible values include: 'ProvidersMicrosoftManagementmanagementGroups', 'Subscriptions' Type Type1 `json:"type,omitempty"` // ID - The fully qualified ID for the child resource (management group or subscription). For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 ID *string `json:"id,omitempty"` // Name - The name of the child entity. Name *string `json:"name,omitempty"` // DisplayName - The friendly name of the child resource. DisplayName *string `json:"displayName,omitempty"` // Roles - The roles definitions associated with the management group. Roles *[]string `json:"roles,omitempty"` // Children - The list of children. Children *[]ChildInfo `json:"children,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // CreateManagementGroupChildInfo the child information of a management group used during creation. type CreateManagementGroupChildInfo struct { // Type - The fully qualified resource type which includes provider namespace (e.g. /providers/Microsoft.Management/managementGroups). Possible values include: 'Type2ProvidersMicrosoftManagementmanagementGroups', 'Type2Subscriptions' Type Type2 `json:"type,omitempty"` // ID - The fully qualified ID for the child resource (management group or subscription). For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 ID *string `json:"id,omitempty"` // Name - The name of the child entity. Name *string `json:"name,omitempty"` // DisplayName - The friendly name of the child resource. DisplayName *string `json:"displayName,omitempty"` // Roles - The roles definitions associated with the management group. Roles *[]string `json:"roles,omitempty"` // Children - The list of children. Children *[]CreateManagementGroupChildInfo `json:"children,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // CreateManagementGroupDetails the details of a management group used during creation. type CreateManagementGroupDetails struct { // Version - The version number of the object. Version *float64 `json:"version,omitempty"` // UpdatedTime - The date and time when this object was last updated. UpdatedTime *date.Time `json:"updatedTime,omitempty"` // UpdatedBy - The identity of the principal or process that updated the object. UpdatedBy *string `json:"updatedBy,omitempty"` Parent *CreateParentGroupInfo `json:"parent,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // CreateManagementGroupProperties the generic properties of a management group used during creation. type CreateManagementGroupProperties struct { // TenantID - The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000 TenantID *string `json:"tenantId,omitempty"` // DisplayName - The friendly name of the management group. If no value is passed then this field will be set to the groupId. DisplayName *string `json:"displayName,omitempty"` // Roles - The roles definitions associated with the management group. Roles *[]string `json:"roles,omitempty"` Details *CreateManagementGroupDetails `json:"details,omitempty"` // Children - The list of children. Children *[]CreateManagementGroupChildInfo `json:"children,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // CreateManagementGroupRequest management group creation parameters. type CreateManagementGroupRequest struct { // ID - The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 ID *string `json:"id,omitempty"` // Type - The type of the resource. For example, /providers/Microsoft.Management/managementGroups Type *string `json:"type,omitempty"` // Name - The name of the management group. For example, 00000000-0000-0000-0000-000000000000 Name *string `json:"name,omitempty"` *CreateManagementGroupProperties `json:"properties,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // MarshalJSON is the custom marshaler for CreateManagementGroupRequest. func (cmgr CreateManagementGroupRequest) MarshalJSON() ([]byte, error) { objectMap := make(map[string]interface{}) if cmgr.ID != nil { objectMap["id"] = cmgr.ID } if cmgr.Type != nil { objectMap["type"] = cmgr.Type } if cmgr.Name != nil { objectMap["name"] = cmgr.Name } if cmgr.CreateManagementGroupProperties != nil { objectMap["properties"] = cmgr.CreateManagementGroupProperties } return json.Marshal(objectMap) } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // UnmarshalJSON is the custom unmarshaler for CreateManagementGroupRequest struct. func (cmgr *CreateManagementGroupRequest) UnmarshalJSON(body []byte) error { var m map[string]*json.RawMessage err := json.Unmarshal(body, &m) if err != nil { return err } for k, v := range m { switch k { case "id": if v != nil { var ID string err = json.Unmarshal(*v, &ID) if err != nil { return err } cmgr.ID = &ID } case "type": if v != nil { var typeVar string err = json.Unmarshal(*v, &typeVar) if err != nil { return err } cmgr.Type = &typeVar } case "name": if v != nil { var name string err = json.Unmarshal(*v, &name) if err != nil { return err } cmgr.Name = &name } case "properties": if v != nil { var createManagementGroupProperties CreateManagementGroupProperties err = json.Unmarshal(*v, &createManagementGroupProperties) if err != nil { return err } cmgr.CreateManagementGroupProperties = &createManagementGroupProperties } } } return nil } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // CreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a long-running operation. type CreateOrUpdateFuture struct { azure.Future req *http.Request } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. func (future CreateOrUpdateFuture) Result(client Client) (so SetObject, err error) { var done bool done, err = future.Done(client) if err != nil { err = autorest.NewErrorWithError(err, "managementgroups.CreateOrUpdateFuture", "Result", future.Response(), "Polling failure") return } if !done { return so, azure.NewAsyncOpIncompleteError("managementgroups.CreateOrUpdateFuture") } if future.PollingMethod() == azure.PollingLocation { so, err = client.CreateOrUpdateResponder(future.Response()) if err != nil { err = autorest.NewErrorWithError(err, "managementgroups.CreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") } return } var req *http.Request var resp *http.Response if future.PollingURL() != "" { req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) if err != nil { return } } else { req = autorest.ChangeToGet(future.req) } resp, err = autorest.SendWithSender(client, req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) if err != nil { err = autorest.NewErrorWithError(err, "managementgroups.CreateOrUpdateFuture", "Result", resp, "Failure sending request") return } so, err = client.CreateOrUpdateResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "managementgroups.CreateOrUpdateFuture", "Result", resp, "Failure responding to request") } return } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // CreateParentGroupInfo (Optional) The ID of the parent management group used during creation. type CreateParentGroupInfo struct { // ID - The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 ID *string `json:"id,omitempty"` // Name - The name of the parent management group Name *string `json:"name,omitempty"` // DisplayName - The friendly name of the parent management group. DisplayName *string `json:"displayName,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // DeleteFuture an abstraction for monitoring and retrieving the results of a long-running operation. type DeleteFuture struct { azure.Future req *http.Request } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Result returns the result of the asynchronous operation. // If the operation has not completed it will return an error. func (future DeleteFuture) Result(client Client) (or OperationResults, err error) { var done bool done, err = future.Done(client) if err != nil { err = autorest.NewErrorWithError(err, "managementgroups.DeleteFuture", "Result", future.Response(), "Polling failure") return } if !done { return or, azure.NewAsyncOpIncompleteError("managementgroups.DeleteFuture") } if future.PollingMethod() == azure.PollingLocation { or, err = client.DeleteResponder(future.Response()) if err != nil { err = autorest.NewErrorWithError(err, "managementgroups.DeleteFuture", "Result", future.Response(), "Failure responding to request") } return } var req *http.Request var resp *http.Response if future.PollingURL() != "" { req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) if err != nil { return } } else { req = autorest.ChangeToGet(future.req) } resp, err = autorest.SendWithSender(client, req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) if err != nil { err = autorest.NewErrorWithError(err, "managementgroups.DeleteFuture", "Result", resp, "Failure sending request") return } or, err = client.DeleteResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "managementgroups.DeleteFuture", "Result", resp, "Failure responding to request") } return } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Details the details of a management group. type Details struct { // Version - The version number of the object. Version *float64 `json:"version,omitempty"` // UpdatedTime - The date and time when this object was last updated. UpdatedTime *date.Time `json:"updatedTime,omitempty"` // UpdatedBy - The identity of the principal or process that updated the object. UpdatedBy *string `json:"updatedBy,omitempty"` Parent *ParentGroupInfo `json:"parent,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // EntityHierarchyItem the management group details for the hierarchy view. type EntityHierarchyItem struct { // ID - The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 ID *string `json:"id,omitempty"` // Type - The type of the resource. For example, /providers/Microsoft.Management/managementGroups Type *string `json:"type,omitempty"` // Name - The name of the management group. For example, 00000000-0000-0000-0000-000000000000 Name *string `json:"name,omitempty"` *EntityHierarchyItemProperties `json:"properties,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // MarshalJSON is the custom marshaler for EntityHierarchyItem. func (ehi EntityHierarchyItem) MarshalJSON() ([]byte, error) { objectMap := make(map[string]interface{}) if ehi.ID != nil { objectMap["id"] = ehi.ID } if ehi.Type != nil { objectMap["type"] = ehi.Type } if ehi.Name != nil { objectMap["name"] = ehi.Name } if ehi.EntityHierarchyItemProperties != nil { objectMap["properties"] = ehi.EntityHierarchyItemProperties } return json.Marshal(objectMap) } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // UnmarshalJSON is the custom unmarshaler for EntityHierarchyItem struct. func (ehi *EntityHierarchyItem) UnmarshalJSON(body []byte) error { var m map[string]*json.RawMessage err := json.Unmarshal(body, &m) if err != nil { return err } for k, v := range m { switch k { case "id": if v != nil { var ID string err = json.Unmarshal(*v, &ID) if err != nil { return err } ehi.ID = &ID } case "type": if v != nil { var typeVar string err = json.Unmarshal(*v, &typeVar) if err != nil { return err } ehi.Type = &typeVar } case "name": if v != nil { var name string err = json.Unmarshal(*v, &name) if err != nil { return err } ehi.Name = &name } case "properties": if v != nil { var entityHierarchyItemProperties EntityHierarchyItemProperties err = json.Unmarshal(*v, &entityHierarchyItemProperties) if err != nil { return err } ehi.EntityHierarchyItemProperties = &entityHierarchyItemProperties } } } return nil } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // EntityHierarchyItemProperties the generic properties of a management group. type EntityHierarchyItemProperties struct { // DisplayName - The friendly name of the management group. DisplayName *string `json:"displayName,omitempty"` // Permissions - Possible values include: 'Permissions1Noaccess', 'Permissions1View', 'Permissions1Edit', 'Permissions1Delete' Permissions Permissions1 `json:"permissions,omitempty"` // Children - The list of children. Children *[]EntityHierarchyItem `json:"children,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // EntityInfo the entity. type EntityInfo struct { // ID - The fully qualified ID for the entity. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 ID *string `json:"id,omitempty"` // Type - The type of the resource. For example, /providers/Microsoft.Management/managementGroups Type *string `json:"type,omitempty"` // Name - The name of the entity. For example, 00000000-0000-0000-0000-000000000000 Name *string `json:"name,omitempty"` *EntityInfoProperties `json:"properties,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // MarshalJSON is the custom marshaler for EntityInfo. func (ei EntityInfo) MarshalJSON() ([]byte, error) { objectMap := make(map[string]interface{}) if ei.ID != nil { objectMap["id"] = ei.ID } if ei.Type != nil { objectMap["type"] = ei.Type } if ei.Name != nil { objectMap["name"] = ei.Name } if ei.EntityInfoProperties != nil { objectMap["properties"] = ei.EntityInfoProperties } return json.Marshal(objectMap) } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // UnmarshalJSON is the custom unmarshaler for EntityInfo struct. func (ei *EntityInfo) UnmarshalJSON(body []byte) error { var m map[string]*json.RawMessage err := json.Unmarshal(body, &m) if err != nil { return err } for k, v := range m { switch k { case "id": if v != nil { var ID string err = json.Unmarshal(*v, &ID) if err != nil { return err } ei.ID = &ID } case "type": if v != nil { var typeVar string err = json.Unmarshal(*v, &typeVar) if err != nil { return err } ei.Type = &typeVar } case "name": if v != nil { var name string err = json.Unmarshal(*v, &name) if err != nil { return err } ei.Name = &name } case "properties": if v != nil { var entityInfoProperties EntityInfoProperties err = json.Unmarshal(*v, &entityInfoProperties) if err != nil { return err } ei.EntityInfoProperties = &entityInfoProperties } } } return nil } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // EntityInfoProperties the generic properties of an entity. type EntityInfoProperties struct { // TenantID - The AAD Tenant ID associated with the entity. For example, 00000000-0000-0000-0000-000000000000 TenantID *string `json:"tenantId,omitempty"` // DisplayName - The friendly name of the management group. DisplayName *string `json:"displayName,omitempty"` Parent *EntityParentGroupInfo `json:"parent,omitempty"` // Permissions - Possible values include: 'Noaccess', 'View', 'Edit', 'Delete' Permissions Permissions `json:"permissions,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // EntityListResult describes the result of the request to view entities. type EntityListResult struct { autorest.Response `json:"-"` // Value - The list of entities. Value *[]EntityInfo `json:"value,omitempty"` // NextLink - The URL to use for getting the next set of results. NextLink *string `json:"nextLink,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // EntityListResultIterator provides access to a complete listing of EntityInfo values. type EntityListResultIterator struct { i int page EntityListResultPage } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Next advances to the next value. If there was an error making // the request the iterator does not advance and the error is returned. func (iter *EntityListResultIterator) Next() error { iter.i++ if iter.i < len(iter.page.Values()) { return nil } err := iter.page.Next() if err != nil { iter.i-- return err } iter.i = 0 return nil } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // NotDone returns true if the enumeration should be started or is not yet complete. func (iter EntityListResultIterator) NotDone() bool { return iter.page.NotDone() && iter.i < len(iter.page.Values()) } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Response returns the raw server response from the last page request. func (iter EntityListResultIterator) Response() EntityListResult { return iter.page.Response() } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Value returns the current value or a zero-initialized value if the // iterator has advanced beyond the end of the collection. func (iter EntityListResultIterator) Value() EntityInfo { if !iter.page.NotDone() { return EntityInfo{} } return iter.page.Values()[iter.i] } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // IsEmpty returns true if the ListResult contains no values. func (elr EntityListResult) IsEmpty() bool { return elr.Value == nil || len(*elr.Value) == 0 } // entityListResultPreparer prepares a request to retrieve the next set of results. // It returns nil if no more results exist. func (elr EntityListResult) entityListResultPreparer() (*http.Request, error) { if elr.NextLink == nil || len(to.String(elr.NextLink)) < 1 { return nil, nil } return autorest.Prepare(&http.Request{}, autorest.AsJSON(), autorest.AsGet(), autorest.WithBaseURL(to.String(elr.NextLink))) } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // EntityListResultPage contains a page of EntityInfo values. type EntityListResultPage struct { fn func(EntityListResult) (EntityListResult, error) elr EntityListResult } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Next advances to the next page of values. If there was an error making // the request the page does not advance and the error is returned. func (page *EntityListResultPage) Next() error { next, err := page.fn(page.elr) if err != nil { return err } page.elr = next return nil } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // NotDone returns true if the page enumeration should be started or is not yet complete. func (page EntityListResultPage) NotDone() bool { return !page.elr.IsEmpty() } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Response returns the raw server response from the last page request. func (page EntityListResultPage) Response() EntityListResult { return page.elr } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Values returns the slice of values for the current page or nil if there are no values. func (page EntityListResultPage) Values() []EntityInfo { if page.elr.IsEmpty() { return nil } return *page.elr.Value } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // EntityParentGroupInfo (Optional) The ID of the parent management group. type EntityParentGroupInfo struct { // ID - The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 ID *string `json:"id,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // ErrorDetails the details of the error. type ErrorDetails struct { // Code - One of a server-defined set of error codes. Code *string `json:"code,omitempty"` // Message - A human-readable representation of the error. Message *string `json:"message,omitempty"` // Details - A human-readable representation of the error's details. Details *string `json:"details,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // ErrorResponse the error object. type ErrorResponse struct { Error *ErrorDetails `json:"error,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Info the management group resource. type Info struct { // ID - The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 ID *string `json:"id,omitempty"` // Type - The type of the resource. For example, /providers/Microsoft.Management/managementGroups Type *string `json:"type,omitempty"` // Name - The name of the management group. For example, 00000000-0000-0000-0000-000000000000 Name *string `json:"name,omitempty"` *InfoProperties `json:"properties,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // MarshalJSON is the custom marshaler for Info. func (i Info) MarshalJSON() ([]byte, error) { objectMap := make(map[string]interface{}) if i.ID != nil { objectMap["id"] = i.ID } if i.Type != nil { objectMap["type"] = i.Type } if i.Name != nil { objectMap["name"] = i.Name } if i.InfoProperties != nil { objectMap["properties"] = i.InfoProperties } return json.Marshal(objectMap) } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // UnmarshalJSON is the custom unmarshaler for Info struct. func (i *Info) UnmarshalJSON(body []byte) error { var m map[string]*json.RawMessage err := json.Unmarshal(body, &m) if err != nil { return err } for k, v := range m { switch k { case "id": if v != nil { var ID string err = json.Unmarshal(*v, &ID) if err != nil { return err } i.ID = &ID } case "type": if v != nil { var typeVar string err = json.Unmarshal(*v, &typeVar) if err != nil { return err } i.Type = &typeVar } case "name": if v != nil { var name string err = json.Unmarshal(*v, &name) if err != nil { return err } i.Name = &name } case "properties": if v != nil { var infoProperties InfoProperties err = json.Unmarshal(*v, &infoProperties) if err != nil { return err } i.InfoProperties = &infoProperties } } } return nil } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // InfoProperties the generic properties of a management group. type InfoProperties struct { // TenantID - The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000 TenantID *string `json:"tenantId,omitempty"` // DisplayName - The friendly name of the management group. DisplayName *string `json:"displayName,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // ListResult describes the result of the request to list management groups. type ListResult struct { autorest.Response `json:"-"` // Value - The list of management groups. Value *[]Info `json:"value,omitempty"` // NextLink - The URL to use for getting the next set of results. NextLink *string `json:"nextLink,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // ListResultIterator provides access to a complete listing of Info values. type ListResultIterator struct { i int page ListResultPage } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Next advances to the next value. If there was an error making // the request the iterator does not advance and the error is returned. func (iter *ListResultIterator) Next() error { iter.i++ if iter.i < len(iter.page.Values()) { return nil } err := iter.page.Next() if err != nil { iter.i-- return err } iter.i = 0 return nil } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // NotDone returns true if the enumeration should be started or is not yet complete. func (iter ListResultIterator) NotDone() bool { return iter.page.NotDone() && iter.i < len(iter.page.Values()) } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Response returns the raw server response from the last page request. func (iter ListResultIterator) Response() ListResult { return iter.page.Response() } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Value returns the current value or a zero-initialized value if the // iterator has advanced beyond the end of the collection. func (iter ListResultIterator) Value() Info { if !iter.page.NotDone() { return Info{} } return iter.page.Values()[iter.i] } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // IsEmpty returns true if the ListResult contains no values. func (lr ListResult) IsEmpty() bool { return lr.Value == nil || len(*lr.Value) == 0 } // listResultPreparer prepares a request to retrieve the next set of results. // It returns nil if no more results exist. func (lr ListResult) listResultPreparer() (*http.Request, error) { if lr.NextLink == nil || len(to.String(lr.NextLink)) < 1 { return nil, nil } return autorest.Prepare(&http.Request{}, autorest.AsJSON(), autorest.AsGet(), autorest.WithBaseURL(to.String(lr.NextLink))) } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // ListResultPage contains a page of Info values. type ListResultPage struct { fn func(ListResult) (ListResult, error) lr ListResult } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Next advances to the next page of values. If there was an error making // the request the page does not advance and the error is returned. func (page *ListResultPage) Next() error { next, err := page.fn(page.lr) if err != nil { return err } page.lr = next return nil } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // NotDone returns true if the page enumeration should be started or is not yet complete. func (page ListResultPage) NotDone() bool { return !page.lr.IsEmpty() } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Response returns the raw server response from the last page request. func (page ListResultPage) Response() ListResult { return page.lr } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Values returns the slice of values for the current page or nil if there are no values. func (page ListResultPage) Values() []Info { if page.lr.IsEmpty() { return nil } return *page.lr.Value } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // ManagementGroup the management group details. type ManagementGroup struct { autorest.Response `json:"-"` // ID - The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 ID *string `json:"id,omitempty"` // Type - The type of the resource. For example, /providers/Microsoft.Management/managementGroups Type *string `json:"type,omitempty"` // Name - The name of the management group. For example, 00000000-0000-0000-0000-000000000000 Name *string `json:"name,omitempty"` *Properties `json:"properties,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // MarshalJSON is the custom marshaler for ManagementGroup. func (mg ManagementGroup) MarshalJSON() ([]byte, error) { objectMap := make(map[string]interface{}) if mg.ID != nil { objectMap["id"] = mg.ID } if mg.Type != nil { objectMap["type"] = mg.Type } if mg.Name != nil { objectMap["name"] = mg.Name } if mg.Properties != nil { objectMap["properties"] = mg.Properties } return json.Marshal(objectMap) } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // UnmarshalJSON is the custom unmarshaler for ManagementGroup struct. func (mg *ManagementGroup) UnmarshalJSON(body []byte) error { var m map[string]*json.RawMessage err := json.Unmarshal(body, &m) if err != nil { return err } for k, v := range m { switch k { case "id": if v != nil { var ID string err = json.Unmarshal(*v, &ID) if err != nil { return err } mg.ID = &ID } case "type": if v != nil { var typeVar string err = json.Unmarshal(*v, &typeVar) if err != nil { return err } mg.Type = &typeVar } case "name": if v != nil { var name string err = json.Unmarshal(*v, &name) if err != nil { return err } mg.Name = &name } case "properties": if v != nil { var properties Properties err = json.Unmarshal(*v, &properties) if err != nil { return err } mg.Properties = &properties } } } return nil } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Operation operation supported by the Microsoft.Management resource provider. type Operation struct { // Name - Operation name: {provider}/{resource}/{operation}. Name *string `json:"name,omitempty"` Display *OperationDisplayProperties `json:"display,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // OperationDisplayProperties the object that represents the operation. type OperationDisplayProperties struct { // Provider - The name of the provider. Provider *string `json:"provider,omitempty"` // Resource - The resource on which the operation is performed. Resource *string `json:"resource,omitempty"` // Operation - The operation that can be performed. Operation *string `json:"operation,omitempty"` // Description - Operation description. Description *string `json:"description,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // OperationListResult describes the result of the request to list Microsoft.Management operations. type OperationListResult struct { autorest.Response `json:"-"` // Value - List of operations supported by the Microsoft.Management resource provider. Value *[]Operation `json:"value,omitempty"` // NextLink - URL to get the next set of operation list results if there are any. NextLink *string `json:"nextLink,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // OperationListResultIterator provides access to a complete listing of Operation values. type OperationListResultIterator struct { i int page OperationListResultPage } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Next advances to the next value. If there was an error making // the request the iterator does not advance and the error is returned. func (iter *OperationListResultIterator) Next() error { iter.i++ if iter.i < len(iter.page.Values()) { return nil } err := iter.page.Next() if err != nil { iter.i-- return err } iter.i = 0 return nil } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // NotDone returns true if the enumeration should be started or is not yet complete. func (iter OperationListResultIterator) NotDone() bool { return iter.page.NotDone() && iter.i < len(iter.page.Values()) } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Response returns the raw server response from the last page request. func (iter OperationListResultIterator) Response() OperationListResult { return iter.page.Response() } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Value returns the current value or a zero-initialized value if the // iterator has advanced beyond the end of the collection. func (iter OperationListResultIterator) Value() Operation { if !iter.page.NotDone() { return Operation{} } return iter.page.Values()[iter.i] } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // IsEmpty returns true if the ListResult contains no values. func (olr OperationListResult) IsEmpty() bool { return olr.Value == nil || len(*olr.Value) == 0 } // operationListResultPreparer prepares a request to retrieve the next set of results. // It returns nil if no more results exist. func (olr OperationListResult) operationListResultPreparer() (*http.Request, error) { if olr.NextLink == nil || len(to.String(olr.NextLink)) < 1 { return nil, nil } return autorest.Prepare(&http.Request{}, autorest.AsJSON(), autorest.AsGet(), autorest.WithBaseURL(to.String(olr.NextLink))) } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // OperationListResultPage contains a page of Operation values. type OperationListResultPage struct { fn func(OperationListResult) (OperationListResult, error) olr OperationListResult } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Next advances to the next page of values. If there was an error making // the request the page does not advance and the error is returned. func (page *OperationListResultPage) Next() error { next, err := page.fn(page.olr) if err != nil { return err } page.olr = next return nil } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // NotDone returns true if the page enumeration should be started or is not yet complete. func (page OperationListResultPage) NotDone() bool { return !page.olr.IsEmpty() } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Response returns the raw server response from the last page request. func (page OperationListResultPage) Response() OperationListResult { return page.olr } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Values returns the slice of values for the current page or nil if there are no values. func (page OperationListResultPage) Values() []Operation { if page.olr.IsEmpty() { return nil } return *page.olr.Value } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // OperationResults the results of an asynchronous operation. type OperationResults struct { autorest.Response `json:"-"` // ID - The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 ID *string `json:"id,omitempty"` // Type - The type of the resource. For example, /providers/Microsoft.Management/managementGroups Type *string `json:"type,omitempty"` // Name - The name of the management group. For example, 00000000-0000-0000-0000-000000000000 Name *string `json:"name,omitempty"` *OperationResultsProperties `json:"properties,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // MarshalJSON is the custom marshaler for OperationResults. func (or OperationResults) MarshalJSON() ([]byte, error) { objectMap := make(map[string]interface{}) if or.ID != nil { objectMap["id"] = or.ID } if or.Type != nil { objectMap["type"] = or.Type } if or.Name != nil { objectMap["name"] = or.Name } if or.OperationResultsProperties != nil { objectMap["properties"] = or.OperationResultsProperties } return json.Marshal(objectMap) } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // UnmarshalJSON is the custom unmarshaler for OperationResults struct. func (or *OperationResults) UnmarshalJSON(body []byte) error { var m map[string]*json.RawMessage err := json.Unmarshal(body, &m) if err != nil { return err } for k, v := range m { switch k { case "id": if v != nil { var ID string err = json.Unmarshal(*v, &ID) if err != nil { return err } or.ID = &ID } case "type": if v != nil { var typeVar string err = json.Unmarshal(*v, &typeVar) if err != nil { return err } or.Type = &typeVar } case "name": if v != nil { var name string err = json.Unmarshal(*v, &name) if err != nil { return err } or.Name = &name } case "properties": if v != nil { var operationResultsProperties OperationResultsProperties err = json.Unmarshal(*v, &operationResultsProperties) if err != nil { return err } or.OperationResultsProperties = &operationResultsProperties } } } return nil } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // OperationResultsProperties ... type OperationResultsProperties struct { // ProvisioningState - Possible values include: 'Updating' ProvisioningState ProvisioningState `json:"provisioningState,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // ParentGroupInfo (Optional) The ID of the parent management group. type ParentGroupInfo struct { // ID - The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 ID *string `json:"id,omitempty"` // Name - The name of the parent management group Name *string `json:"name,omitempty"` // DisplayName - The friendly name of the parent management group. DisplayName *string `json:"displayName,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // PatchManagementGroupRequest management group patch parameters. type PatchManagementGroupRequest struct { // DisplayName - The friendly name of the management group. DisplayName *string `json:"displayName,omitempty"` // ParentID - (Optional) The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 ParentID *string `json:"parentId,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // Properties the generic properties of a management group. type Properties struct { // TenantID - The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000 TenantID *string `json:"tenantId,omitempty"` // DisplayName - The friendly name of the management group. DisplayName *string `json:"displayName,omitempty"` // Roles - The role definitions associated with the management group. Roles *[]string `json:"roles,omitempty"` Details *Details `json:"details,omitempty"` // Children - The list of children. Children *[]ChildInfo `json:"children,omitempty"` } // Deprecated: Please use package github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2018-01-01-preview/management instead. // SetObject ... type SetObject struct { autorest.Response `json:"-"` Value interface{} `json:"value,omitempty"` }