Tabnine Logo
DeleteCompartmentRequest
Code IndexAdd Tabnine to your IDE (free)

How to use
DeleteCompartmentRequest
in
com.oracle.bmc.identity.requests

Best Java code snippets using com.oracle.bmc.identity.requests.DeleteCompartmentRequest (Showing top 4 results out of 315)

origin: oracle/oci-java-sdk

/**
 * Copy method to populate the builder with values from the given instance.
 * @return this builder instance
 */
public Builder copy(DeleteCompartmentRequest o) {
  compartmentId(o.getCompartmentId());
  ifMatch(o.getIfMatch());
  invocationCallback(o.getInvocationCallback());
  return this;
}
origin: oracle/oci-java-sdk

  /**
   * Build the instance of DeleteCompartmentRequest as configured by this builder
   *
   * Note that this method takes calls to {@link Builder#invocationCallback(com.oracle.bmc.util.internal.Consumer)} into account,
   * while the method {@link Builder#buildWithoutInvocationCallback} does not.
   *
   * This is the preferred method to build an instance.
   *
   * @return instance of DeleteCompartmentRequest
   */
  public DeleteCompartmentRequest build() {
    DeleteCompartmentRequest request = buildWithoutInvocationCallback();
    request.setInvocationCallback(invocationCallback);
    return request;
  }
}
origin: oracle/oci-java-sdk

public static com.oracle.bmc.http.internal.WrappedInvocationBuilder fromRequest(
    com.oracle.bmc.http.internal.RestClient client, DeleteCompartmentRequest request) {
  Validate.notNull(request, "request instance is required");
  Validate.notBlank(request.getCompartmentId(), "compartmentId must not be blank");
  com.oracle.bmc.http.internal.WrappedWebTarget target =
      client.getBaseTarget()
          .path("/20160918")
          .path("compartments")
          .path(
              com.oracle.bmc.util.internal.HttpUtils.encodePathSegment(
                  request.getCompartmentId()));
  com.oracle.bmc.http.internal.WrappedInvocationBuilder ib = target.request();
  ib.accept(javax.ws.rs.core.MediaType.APPLICATION_JSON);
  if (request.getIfMatch() != null) {
    ib.header("if-match", request.getIfMatch());
  }
  return ib;
}
origin: oracle/oci-java-sdk

DeleteCompartmentRequest.builder().compartmentId(compartment.getId()).build();
com.oracle.bmc.identity.requestsDeleteCompartmentRequest

Most used methods

  • builder
  • getCompartmentId
  • getIfMatch
  • getInvocationCallback
  • setInvocationCallback

Popular in Java

  • Reactive rest calls using spring rest template
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • addToBackStack (FragmentTransaction)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • BoxLayout (javax.swing)
  • JComboBox (javax.swing)
  • Best IntelliJ plugins
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