Skip to content
Merged
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
12 changes: 11 additions & 1 deletion gc/v1/gc.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1669,7 +1669,17 @@ message PayerAccountDetails {
// This is used by the UI to "resume" the onboarding flow and show which verification checks
// passed/failed when a user comes back later (e.g., after stopping at verification).
// Empty when verification hasn't been attempted yet or when no checks were persisted.
repeated VerifyAwsOnboardingResponse.AwsOnboardingFeatureCheck verificationChecks = 8;
repeated VerifyAwsOnboardingResponse.AwsOnboardingFeatureCheck verificationChecks = 5;

// AWS Marketplace private offer status for this payer account.
// Values: NOT_CREATED, CREATING, PENDING, ACCEPTED, EXPIRED, FAILED, WITHDRAWN.
string marketplacePrivateOfferStatus = 6;

// Optional. AWS Marketplace offer ID if one has already been created.
string marketplacePrivateOfferId = 7;

// Optional. Expiration date of the current private offer.
string marketplacePrivateOfferExpirationDate = 8;
}

message ListPayerAccountsResponse {
Expand Down
12 changes: 12 additions & 0 deletions openapiv2/apidocs.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -43841,6 +43841,18 @@
"$ref": "#/definitions/VerifyAwsOnboardingResponseAwsOnboardingFeatureCheck"
},
"description": "Detailed AWS verification results (best-effort) returned from the last VerifyAwsOnboarding call.\nThis is used by the UI to \"resume\" the onboarding flow and show which verification checks\npassed/failed when a user comes back later (e.g., after stopping at verification).\nEmpty when verification hasn't been attempted yet or when no checks were persisted."
},
"marketplacePrivateOfferStatus": {
"type": "string",
"description": "AWS Marketplace private offer status for this payer account.\nValues: NOT_CREATED, CREATING, PENDING, ACCEPTED, EXPIRED, FAILED, WITHDRAWN."
},
"marketplacePrivateOfferId": {
"type": "string",
"description": "Optional. AWS Marketplace offer ID if one has already been created."
},
"marketplacePrivateOfferExpirationDate": {
"type": "string",
"description": "Optional. Expiration date of the current private offer."
}
}
},
Expand Down
Loading