Tabnine Logo
DeploymentEnvironmentValidator.validateDistributedDeployment
Code IndexAdd Tabnine to your IDE (free)

How to use
validateDistributedDeployment
method
in
com.netflix.spinnaker.halyard.config.validate.v1.DeploymentEnvironmentValidator

Best Java code snippets using com.netflix.spinnaker.halyard.config.validate.v1.DeploymentEnvironmentValidator.validateDistributedDeployment (Showing top 2 results out of 315)

origin: spinnaker/halyard

@Override
public void validate(ConfigProblemSetBuilder p, DeploymentEnvironment n) {
 DeploymentType type = n.getType();
 switch (type) {
  case LocalDebian:
  case BakeDebian:
   break;
  case Distributed:
   validateDistributedDeployment(p, n);
   break;
  case LocalGit:
   validateGitDeployment(p, n);
   break;
  default:
   throw new RuntimeException("Unknown deployment environment type " + type);
 }
}
origin: com.netflix.spinnaker.halyard/halyard-config

@Override
public void validate(ConfigProblemSetBuilder p, DeploymentEnvironment n) {
 DeploymentType type = n.getType();
 switch (type) {
  case LocalDebian:
  case BakeDebian:
   break;
  case Distributed:
   validateDistributedDeployment(p, n);
   break;
  case LocalGit:
   validateGitDeployment(p, n);
   break;
  default:
   throw new RuntimeException("Unknown deployment environment type " + type);
 }
}
com.netflix.spinnaker.halyard.config.validate.v1DeploymentEnvironmentValidatorvalidateDistributedDeployment

Popular methods of DeploymentEnvironmentValidator

  • validateGitDeployment

Popular in Java

  • Parsing JSON documents to java classes using gson
  • notifyDataSetChanged (ArrayAdapter)
  • onCreateOptionsMenu (Activity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • BoxLayout (javax.swing)
  • Github Copilot alternatives
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