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 @azure/arm-subscriptions] Nasingla/stableversion #1094

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
8 changes: 8 additions & 0 deletions sdk/subscription/arm-subscriptions/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,10 @@ export interface SubscriptionCreationParameters {
* 'MS-AZR-0148P'
*/
offerType?: OfferType;
/**
* Additional, untyped parameters to support custom subscription creation scenarios.
*/
additionalParameters?: { [propertyName: string]: any };
}

/**
Expand Down Expand Up @@ -189,6 +193,10 @@ export interface ModernSubscriptionCreationParameters {
* The identifier of the management group to which this subscription will be associated.
*/
managementGroupId?: string;
/**
* Additional, untyped parameters to support custom subscription creation scenarios.
*/
additionalParameters?: { [propertyName: string]: any };
}

/**
Expand Down
22 changes: 22 additions & 0 deletions sdk/subscription/arm-subscriptions/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,17 @@ export const SubscriptionCreationParameters: msRest.CompositeMapper = {
type: {
name: "String"
}
},
additionalParameters: {
serializedName: "additionalParameters",
type: {
name: "Dictionary",
value: {
type: {
name: "Object"
}
}
}
}
}
}
Expand Down Expand Up @@ -291,6 +302,17 @@ export const ModernSubscriptionCreationParameters: msRest.CompositeMapper = {
type: {
name: "String"
}
},
additionalParameters: {
serializedName: "additionalParameters",
type: {
name: "Dictionary",
value: {
type: {
name: "Object"
}
}
}
}
}
}
Expand Down