Tabnine Logo
SpinnakerService$Type.getBaseType
Code IndexAdd Tabnine to your IDE (free)

How to use
getBaseType
method
in
com.netflix.spinnaker.halyard.deploy.spinnaker.v1.service.SpinnakerService$Type

Best Java code snippets using com.netflix.spinnaker.halyard.deploy.spinnaker.v1.service.SpinnakerService$Type.getBaseType (Showing top 5 results out of 315)

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

@Override
protected Optional<String> customProfileOutputPath(String profileName) {
 if (profileName.equals(getCanonicalName() + ".yml") ||
   profileName.startsWith(getCanonicalName() + "-") ||
   profileName.equals(getType().getBaseType().getCanonicalName() + "-local.yml") ||
   profileName.startsWith("spinnaker")) {
  return Optional.of(Paths.get(getConfigOutputPath(), profileName).toString());
 } else {
  return Optional.empty();
 }
}
origin: spinnaker/halyard

@Override
protected Optional<String> customProfileOutputPath(String profileName) {
 if (profileName.equals(getCanonicalName() + ".yml") ||
   profileName.startsWith(getCanonicalName() + "-") ||
   profileName.equals(getType().getBaseType().getCanonicalName() + "-local.yml") ||
   profileName.startsWith("spinnaker")) {
  return Optional.of(Paths.get(getConfigOutputPath(), profileName).toString());
 } else {
  return Optional.empty();
 }
}
origin: spinnaker/halyard

public String getBaseCanonicalName() {
 return getType().getBaseType().getCanonicalName();
}
origin: spinnaker/halyard

public SpinnakerRuntimeSettings newServiceOverrides(List<Type> overrideServiceEndpoints) {
 SpinnakerRuntimeSettings serviceOverrides = new SpinnakerRuntimeSettings();
 for (Type type : overrideServiceEndpoints) {
  if (this.serviceIsEnabled(type)) {
   serviceOverrides.setServiceSettings(type.getBaseType(), this.getServiceSettings(type).withOnlyBaseUrl());
  }
 }
 return serviceOverrides;
}
origin: com.netflix.spinnaker.halyard/halyard-deploy

public SpinnakerRuntimeSettings newServiceOverrides(List<Type> overrideServiceEndpoints) {
 SpinnakerRuntimeSettings serviceOverrides = new SpinnakerRuntimeSettings();
 for (Type type : overrideServiceEndpoints) {
  if (this.serviceIsEnabled(type)) {
   serviceOverrides.setServiceSettings(type.getBaseType(), this.getServiceSettings(type).withOnlyBaseUrl());
  }
 }
 return serviceOverrides;
}
com.netflix.spinnaker.halyard.deploy.spinnaker.v1.serviceSpinnakerService$TypegetBaseType

Popular methods of SpinnakerService$Type

  • equals
  • getCanonicalName
  • getModifier
  • getServiceName
  • reduceName
  • values

Popular in Java

  • Reading from database using SQL prepared statement
  • onCreateOptionsMenu (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • addToBackStack (FragmentTransaction)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • Top 12 Jupyter Notebook extensions
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