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

How to use
EnableKeyRequest
in
com.oracle.bmc.keymanagement.requests

Best Java code snippets using com.oracle.bmc.keymanagement.requests.EnableKeyRequest (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(EnableKeyRequest o) {
  keyId(o.getKeyId());
  ifMatch(o.getIfMatch());
  opcRequestId(o.getOpcRequestId());
  opcRetryToken(o.getOpcRetryToken());
  invocationCallback(o.getInvocationCallback());
  return this;
}
origin: oracle/oci-java-sdk

  /**
   * Build the instance of EnableKeyRequest 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 EnableKeyRequest
   */
  public EnableKeyRequest build() {
    EnableKeyRequest request = buildWithoutInvocationCallback();
    request.setInvocationCallback(invocationCallback);
    return request;
  }
}
origin: oracle/oci-java-sdk

public static void enableKeyTest(KmsManagementClient kmsManagementClient, String keyId) {
  System.out.println("EnableKey Test: ");
  EnableKeyRequest enableKeyRequest = EnableKeyRequest.builder().keyId(keyId).build();
  EnableKeyResponse response = kmsManagementClient.enableKey(enableKeyRequest);
  System.out.println("Key Enabled Successfully, Updated Key: ");
  System.out.println(response.getKey());
  System.out.println();
}
origin: oracle/oci-java-sdk

public static com.oracle.bmc.http.internal.WrappedInvocationBuilder fromRequest(
    com.oracle.bmc.http.internal.RestClient client, EnableKeyRequest request) {
  Validate.notNull(request, "request instance is required");
  Validate.notBlank(request.getKeyId(), "keyId must not be blank");
  com.oracle.bmc.http.internal.WrappedWebTarget target =
      client.getBaseTarget()
          .path("/20180608")
          .path("keys")
          .path(
              com.oracle.bmc.util.internal.HttpUtils.encodePathSegment(
                  request.getKeyId()))
          .path("actions")
          .path("enable");
  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());
  }
  if (request.getOpcRequestId() != null) {
    ib.header("opc-request-id", request.getOpcRequestId());
  }
  if (request.getOpcRetryToken() != null) {
    ib.header("opc-retry-token", request.getOpcRetryToken());
  }
  return ib;
}
com.oracle.bmc.keymanagement.requestsEnableKeyRequest

Most used methods

  • builder
  • getIfMatch
  • getInvocationCallback
  • getKeyId
  • getOpcRequestId
  • getOpcRetryToken
  • setInvocationCallback

Popular in Java

  • Updating database using SQL prepared statement
  • onRequestPermissionsResult (Fragment)
  • findViewById (Activity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • Reference (javax.naming)
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Top Vim 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