@@ -17,23 +17,56 @@ import { BillingManagementClientContext } from "./billingManagementClientContext
1717
1818class BillingManagementClient extends BillingManagementClientContext {
1919 // Operation groups
20- enrollmentAccounts : operations . EnrollmentAccounts ;
21- billingPeriods : operations . BillingPeriods ;
20+ billingAccounts : operations . BillingAccounts ;
21+ address : operations . Address ;
22+ availableBalances : operations . AvailableBalances ;
23+ instructions : operations . Instructions ;
24+ billingProfiles : operations . BillingProfiles ;
25+ customers : operations . Customers ;
26+ invoiceSections : operations . InvoiceSections ;
27+ billingPermissions : operations . BillingPermissions ;
28+ billingSubscriptions : operations . BillingSubscriptions ;
29+ products : operations . Products ;
2230 invoices : operations . Invoices ;
31+ transactions : operations . Transactions ;
32+ policies : operations . Policies ;
33+ billingProperty : operations . BillingPropertyOperations ;
2334 operations : operations . Operations ;
35+ billingRoleDefinitions : operations . BillingRoleDefinitions ;
36+ billingRoleAssignments : operations . BillingRoleAssignments ;
37+ agreements : operations . Agreements ;
38+ enrollmentAccounts : operations . EnrollmentAccounts ;
39+ billingPeriods : operations . BillingPeriods ;
2440
2541 /**
2642 * Initializes a new instance of the BillingManagementClient class.
2743 * @param credentials Credentials needed for the client to connect to Azure.
28- * @param subscriptionId Azure Subscription ID.
44+ * @param subscriptionId The ID that uniquely identifies an Azure subscription.
45+ * @param subscriptionId1 Azure Subscription ID.
2946 * @param [options] The parameter options
3047 */
31- constructor ( credentials : msRest . ServiceClientCredentials , subscriptionId : string , options ?: Models . BillingManagementClientOptions ) {
32- super ( credentials , subscriptionId , options ) ;
33- this . enrollmentAccounts = new operations . EnrollmentAccounts ( this ) ;
34- this . billingPeriods = new operations . BillingPeriods ( this ) ;
48+ constructor ( credentials : msRest . ServiceClientCredentials , subscriptionId : string , subscriptionId1 : string , options ?: Models . BillingManagementClientOptions ) {
49+ super ( credentials , subscriptionId , subscriptionId1 , options ) ;
50+ this . billingAccounts = new operations . BillingAccounts ( this ) ;
51+ this . address = new operations . Address ( this ) ;
52+ this . availableBalances = new operations . AvailableBalances ( this ) ;
53+ this . instructions = new operations . Instructions ( this ) ;
54+ this . billingProfiles = new operations . BillingProfiles ( this ) ;
55+ this . customers = new operations . Customers ( this ) ;
56+ this . invoiceSections = new operations . InvoiceSections ( this ) ;
57+ this . billingPermissions = new operations . BillingPermissions ( this ) ;
58+ this . billingSubscriptions = new operations . BillingSubscriptions ( this ) ;
59+ this . products = new operations . Products ( this ) ;
3560 this . invoices = new operations . Invoices ( this ) ;
61+ this . transactions = new operations . Transactions ( this ) ;
62+ this . policies = new operations . Policies ( this ) ;
63+ this . billingProperty = new operations . BillingPropertyOperations ( this ) ;
3664 this . operations = new operations . Operations ( this ) ;
65+ this . billingRoleDefinitions = new operations . BillingRoleDefinitions ( this ) ;
66+ this . billingRoleAssignments = new operations . BillingRoleAssignments ( this ) ;
67+ this . agreements = new operations . Agreements ( this ) ;
68+ this . enrollmentAccounts = new operations . EnrollmentAccounts ( this ) ;
69+ this . billingPeriods = new operations . BillingPeriods ( this ) ;
3770 }
3871}
3972
0 commit comments