congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
CustomerAgentInfo$Builder
Code IndexAdd Tabnine to your IDE (free)

How to use
CustomerAgentInfo$Builder
in
software.amazon.awssdk.services.applicationdiscovery.model

Best Java code snippets using software.amazon.awssdk.services.applicationdiscovery.model.CustomerAgentInfo$Builder (Showing top 4 results out of 315)

origin: software.amazon.awssdk/discovery

    if (context.testExpression("activeAgents", targetDepth)) {
      context.nextToken();
      customerAgentInfoBuilder.activeAgents(context.getUnmarshaller(Integer.class).unmarshall(context));
      customerAgentInfoBuilder.healthyAgents(context.getUnmarshaller(Integer.class).unmarshall(context));
      customerAgentInfoBuilder.blackListedAgents(context.getUnmarshaller(Integer.class).unmarshall(context));
      customerAgentInfoBuilder.shutdownAgents(context.getUnmarshaller(Integer.class).unmarshall(context));
      customerAgentInfoBuilder.unhealthyAgents(context.getUnmarshaller(Integer.class).unmarshall(context));
      customerAgentInfoBuilder.totalAgents(context.getUnmarshaller(Integer.class).unmarshall(context));
      customerAgentInfoBuilder.unknownAgents(context.getUnmarshaller(Integer.class).unmarshall(context));
return customerAgentInfoBuilder.build();
origin: software.amazon.awssdk/discovery

/**
 * <p>
 * Details about discovered agents, including agent status and health.
 * </p>
 * This is a convenience that creates an instance of the {@link CustomerAgentInfo.Builder} avoiding the need to
 * create one manually via {@link CustomerAgentInfo#builder()}.
 *
 * When the {@link Consumer} completes, {@link CustomerAgentInfo.Builder#build()} is called immediately and its
 * result is passed to {@link #agentSummary(CustomerAgentInfo)}.
 * 
 * @param agentSummary
 *        a consumer that will call methods on {@link CustomerAgentInfo.Builder}
 * @return Returns a reference to this object so that method calls can be chained together.
 * @see #agentSummary(CustomerAgentInfo)
 */
default Builder agentSummary(Consumer<CustomerAgentInfo.Builder> agentSummary) {
  return agentSummary(CustomerAgentInfo.builder().applyMutation(agentSummary).build());
}
origin: software.amazon.awssdk/applicationdiscovery

/**
 * <p>
 * Details about discovered agents, including agent status and health.
 * </p>
 * This is a convenience that creates an instance of the {@link CustomerAgentInfo.Builder} avoiding the need to
 * create one manually via {@link CustomerAgentInfo#builder()}.
 *
 * When the {@link Consumer} completes, {@link CustomerAgentInfo.Builder#build()} is called immediately and its
 * result is passed to {@link #agentSummary(CustomerAgentInfo)}.
 * 
 * @param agentSummary
 *        a consumer that will call methods on {@link CustomerAgentInfo.Builder}
 * @return Returns a reference to this object so that method calls can be chained together.
 * @see #agentSummary(CustomerAgentInfo)
 */
default Builder agentSummary(Consumer<CustomerAgentInfo.Builder> agentSummary) {
  return agentSummary(CustomerAgentInfo.builder().applyMutation(agentSummary).build());
}
origin: aws/aws-sdk-java-v2

/**
 * <p>
 * Details about discovered agents, including agent status and health.
 * </p>
 * This is a convenience that creates an instance of the {@link CustomerAgentInfo.Builder} avoiding the need to
 * create one manually via {@link CustomerAgentInfo#builder()}.
 *
 * When the {@link Consumer} completes, {@link CustomerAgentInfo.Builder#build()} is called immediately and its
 * result is passed to {@link #agentSummary(CustomerAgentInfo)}.
 * 
 * @param agentSummary
 *        a consumer that will call methods on {@link CustomerAgentInfo.Builder}
 * @return Returns a reference to this object so that method calls can be chained together.
 * @see #agentSummary(CustomerAgentInfo)
 */
default Builder agentSummary(Consumer<CustomerAgentInfo.Builder> agentSummary) {
  return agentSummary(CustomerAgentInfo.builder().applyMutation(agentSummary).build());
}
software.amazon.awssdk.services.applicationdiscovery.modelCustomerAgentInfo$Builder

Most used methods

  • applyMutation
  • build
  • activeAgents
    Number of active discovery agents.
  • blackListedAgents
    Number of blacklisted discovery agents.
  • healthyAgents
    Number of healthy discovery agents
  • shutdownAgents
    Number of discovery agents with status SHUTDOWN.
  • totalAgents
    Total number of discovery agents.
  • unhealthyAgents
    Number of unhealthy discovery agents.
  • unknownAgents
    Number of unknown discovery agents.

Popular in Java

  • Reading from database using SQL prepared statement
  • getSharedPreferences (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getContentResolver (Context)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now