diff --git a/discovery/reseller-v1.json b/discovery/reseller-v1.json index 031b3dcf3e0..caa044674ba 100644 --- a/discovery/reseller-v1.json +++ b/discovery/reseller-v1.json @@ -631,7 +631,7 @@ } } }, - "revision": "20210308", + "revision": "20210323", "rootUrl": "https://reseller.googleapis.com/", "schemas": { "Address": { @@ -924,6 +924,10 @@ "transferInfo": { "description": "Read-only transfer related information for the subscription. For more information, see retrieve transferable subscriptions for a customer.", "properties": { + "currentLegacySkuId": { + "description": "Sku id of the current resold subscription. This is populated only when customer has subscription with legacy sku and the subscription resource is populated with recommeded sku for transfer in.", + "type": "string" + }, "minimumTransferableSeats": { "description": "When inserting a subscription, this is the minimum number of seats listed in the transfer order for this product. For example, if the customer has 20 users, the reseller cannot place a transfer order of 15 seats. The minimum is 20 seats.", "format": "int32", diff --git a/src/apis/reseller/v1.ts b/src/apis/reseller/v1.ts index 177f53f2ad6..fedaa9fe656 100644 --- a/src/apis/reseller/v1.ts +++ b/src/apis/reseller/v1.ts @@ -368,6 +368,7 @@ export namespace reseller_v1 { * Read-only transfer related information for the subscription. For more information, see retrieve transferable subscriptions for a customer. */ transferInfo?: { + currentLegacySkuId?: string; minimumTransferableSeats?: number; transferabilityExpirationTime?: string; } | null;