Codota Logo
OracleAccount
Code IndexAdd Codota to your IDE (free)

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

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

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Connection c =
  • Codota IconDataSource dataSource;dataSource.getConnection()
  • Codota IconString url;DriverManager.getConnection(url)
  • Codota IconIdentityDatabaseUtil.getDBConnection()
  • Smart code suggestions by Codota
}
origin: com.netflix.spinnaker.halyard/halyard-cli

@Override
protected Account buildAccount(String accountName) {
 OracleAccount account = (OracleAccount) new OracleAccount().setName(accountName);
 account.setCompartmentId(compartmentId);
 account.setUserId(userId);
 account.setFingerprint(fingerprint);
 account.setSshPrivateKeyFilePath(sshPrivateKeyFilePath);
 account.setTenancyId(tenancyId);
 account.setRegion(region);
 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;
 }
}
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
 protected Account emptyAccount() {
  return new OracleAccount();
 }
}
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
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 emptyAccount() {
  return new OracleAccount();
 }
}
origin: spinnaker/halyard

@Override
protected Account buildAccount(String accountName) {
 OracleAccount account = (OracleAccount) new OracleAccount().setName(accountName);
 account.setCompartmentId(compartmentId);
 account.setUserId(userId);
 account.setFingerprint(fingerprint);
 account.setSshPrivateKeyFilePath(sshPrivateKeyFilePath);
 account.setPrivateKeyPassphrase(privateKeyPassphrase);
 account.setTenancyId(tenancyId);
 account.setRegion(region);
 return account;
}
com.netflix.spinnaker.halyard.config.model.v1.providers.oracleOracleAccount

Most used methods

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

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (ScheduledExecutorService)
  • startActivity (Activity)
  • addToBackStack (FragmentTransaction)
  • ObjectMapper (com.fasterxml.jackson.databind)
    This mapper (or, data binder, or codec) provides functionality for converting between Java objects (
  • Path (java.nio.file)
  • Stack (java.util)
    The Stack class represents a last-in-first-out (LIFO) stack of objects. It extends class Vector with
  • ImageIO (javax.imageio)
  • JOptionPane (javax.swing)
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now