Tabnine Logo
OracleAccount.getRegion
Code IndexAdd Tabnine to your IDE (free)

How to use
getRegion
method
in
com.netflix.spinnaker.halyard.config.model.v1.providers.oracle.OracleAccount

Best Java code snippets using com.netflix.spinnaker.halyard.config.model.v1.providers.oracle.OracleAccount.getRegion (Showing top 4 results out of 315)

origin: com.netflix.spinnaker.halyard/halyard-config

@Override
public void validate(ConfigProblemSetBuilder psBuilder, OracleAccount account) {
 notNullOrEmpty(account.getCompartmentId(), "compartment id", psBuilder);
 notNullOrEmpty(account.getUserId(), "user id", psBuilder);
 notNullOrEmpty(account.getFingerprint(), "fingerprint", psBuilder);
 notNullOrEmpty(account.getSshPrivateKeyFilePath(), "ssh private key file path", psBuilder);
 notNullOrEmpty(account.getTenancyId(), "tenancy id", psBuilder);
 notNullOrEmpty(account.getRegion(), "region", psBuilder);
 // TODO (simonlord): Once BMCS SDK is in maven we can access via spinnaker.dependency("clouddriverOracleBmcs") and test account login
}
origin: spinnaker/halyard

@Override
public void validate(ConfigProblemSetBuilder psBuilder, OracleAccount account) {
 notNullOrEmpty(account.getCompartmentId(), "compartment id", psBuilder);
 notNullOrEmpty(account.getUserId(), "user id", psBuilder);
 notNullOrEmpty(account.getFingerprint(), "fingerprint", psBuilder);
 notNullOrEmpty(account.getSshPrivateKeyFilePath(), "ssh private key file path", psBuilder);
 notNullOrEmpty(account.getTenancyId(), "tenancy id", psBuilder);
 notNullOrEmpty(account.getRegion(), "region", psBuilder);
 // TODO (simonlord): Once BMCS SDK is in maven we can access via spinnaker.dependency("clouddriverOracleBmcs") and test account login
}
origin: com.netflix.spinnaker.halyard/halyard-cli

 @Override
 protected Account editAccount(OracleAccount account) {
  account.setCompartmentId(isSet(compartmentId) ? compartmentId : account.getCompartmentId());
  account.setUserId(isSet(userId) ? userId : account.getUserId());
  account.setFingerprint(isSet(fingerprint) ? fingerprint : account.getFingerprint());
  account.setSshPrivateKeyFilePath(isSet(sshPrivateKeyFilePath) ? sshPrivateKeyFilePath : account.getSshPrivateKeyFilePath());
  account.setTenancyId(isSet(tenancyId) ? tenancyId : account.getTenancyId());
  account.setRegion(isSet(region) ? region : account.getRegion());
  return account;
 }
}
origin: spinnaker/halyard

 @Override
 protected Account editAccount(OracleAccount account) {
  account.setCompartmentId(isSet(compartmentId) ? compartmentId : account.getCompartmentId());
  account.setUserId(isSet(userId) ? userId : account.getUserId());
  account.setFingerprint(isSet(fingerprint) ? fingerprint : account.getFingerprint());
  account.setSshPrivateKeyFilePath(isSet(sshPrivateKeyFilePath) ? sshPrivateKeyFilePath : account.getSshPrivateKeyFilePath());
  account.setPrivateKeyPassphrase(isSet(privateKeyPassphrase) ? privateKeyPassphrase : account.getPrivateKeyPassphrase());
  account.setTenancyId(isSet(tenancyId) ? tenancyId : account.getTenancyId());
  account.setRegion(isSet(region) ? region : account.getRegion());
  return account;
 }
}
com.netflix.spinnaker.halyard.config.model.v1.providers.oracleOracleAccountgetRegion

Popular methods of OracleAccount

  • getCompartmentId
  • getFingerprint
  • getSshPrivateKeyFilePath
  • getTenancyId
  • getUserId
  • <init>
  • setCompartmentId
  • setFingerprint
  • setName
  • setRegion
  • setSshPrivateKeyFilePath
  • setTenancyId
  • setSshPrivateKeyFilePath,
  • setTenancyId,
  • setUserId,
  • getPrivateKeyPassphrase,
  • setPrivateKeyPassphrase

Popular in Java

  • Finding current android device location
  • putExtra (Intent)
  • compareTo (BigDecimal)
  • requestLocationUpdates (LocationManager)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • JList (javax.swing)
  • Best plugins for Eclipse
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