Skip to content

Commit 598fc86

Browse files
ved292Harness
authored andcommitted
Added billing_export_spec2 and inside it added billing_type (#683)
* Added billing_export_spec2 and inside it added billing_type
1 parent d6c643a commit 598fc86

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

harness/nextgen/api/swagger.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30287,6 +30287,31 @@ components:
3028730287
type: string
3028830288
subscriptionId:
3028930289
type: string
30290+
billingType:
30291+
type: string
30292+
description: "Returns Billing details like StorageAccount's Name, container's\
30293+
\ Name, directory's Name, report Name and subscription Id"
30294+
BillingExportSpec2:
30295+
required:
30296+
- containerName
30297+
- directoryName
30298+
- reportName
30299+
- storageAccountName
30300+
- subscriptionId
30301+
type: object
30302+
properties:
30303+
storageAccountName:
30304+
type: string
30305+
containerName:
30306+
type: string
30307+
directoryName:
30308+
type: string
30309+
reportName:
30310+
type: string
30311+
subscriptionId:
30312+
type: string
30313+
billingType:
30314+
type: string
3029030315
description: "Returns Billing details like StorageAccount's Name, container's\
3029130316
\ Name, directory's Name, report Name and subscription Id"
3029230317
BitbucketApiAccess:

harness/nextgen/model_billing_export_spec.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ type BillingExportSpec struct {
1616
DirectoryName string `json:"directoryName"`
1717
ReportName string `json:"reportName"`
1818
SubscriptionId string `json:"subscriptionId"`
19+
BillingType string `json:"billingType"`
1920
}

harness/nextgen/model_ce_azure_connector.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ type CeAzureConnector struct {
1515
TenantId string `json:"tenantId"`
1616
SubscriptionId string `json:"subscriptionId"`
1717
BillingExportSpec *BillingExportSpec `json:"billingExportSpec,omitempty"`
18+
BillingExportSpec2 *BillingExportSpec `json:"billingExportSpec2,omitempty"`
1819
}

0 commit comments

Comments
 (0)