listCustomerAgreements
inline suspend fun ArtifactClient.listCustomerAgreements(crossinline block: ListCustomerAgreementsRequest.Builder.() -> Unit): ListCustomerAgreementsResponse
List active customer-agreements applicable to calling identity.
Samples
fun main() {
//sampleStart
// The ListCustomerAgreements operation returns a collection of customer agreement resources in the
// ACTIVE state for the calling credential.
val resp = artifactClient.listCustomerAgreements()
//sampleEnd
}