Skip to content

Commit

Permalink
Generated from f8b941ddb4f72ae7514c222cf7efb1eabd0c09a1
Browse files Browse the repository at this point in the history
Update readme.md
  • Loading branch information
SDK Automation committed Apr 23, 2020
1 parent fa0d679 commit 0b7b147
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
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

0 comments on commit 0b7b147

Please sign in to comment.