Class CredentialListPageResponse.Builder
-
- All Implemented Interfaces:
public final class CredentialListPageResponse.BuilderA builder for CredentialListPageResponse.
-
-
Method Summary
-
-
Method Detail
-
data
final CredentialListPageResponse.Builder data(List<BetaManagedAgentsCredential> data)
List of credentials.
-
data
final CredentialListPageResponse.Builder data(JsonField<List<BetaManagedAgentsCredential>> data)
Sets Builder.data to an arbitrary JSON value.
You should usually call Builder.data with a well-typed
List<BetaManagedAgentsCredential>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addData
final CredentialListPageResponse.Builder addData(BetaManagedAgentsCredential data)
Adds a single BetaManagedAgentsCredential to Builder.data.
-
nextPage
final CredentialListPageResponse.Builder nextPage(String nextPage)
Pagination token for the next page, or null if no more results.
-
nextPage
final CredentialListPageResponse.Builder nextPage(Optional<String> nextPage)
Alias for calling Builder.nextPage with
nextPage.orElse(null).
-
nextPage
final CredentialListPageResponse.Builder nextPage(JsonField<String> nextPage)
Sets Builder.nextPage to an arbitrary JSON value.
You should usually call Builder.nextPage with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final CredentialListPageResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final CredentialListPageResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final CredentialListPageResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final CredentialListPageResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final CredentialListPageResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final CredentialListPageResponse build()
Returns an immutable instance of CredentialListPageResponse.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-