@spinnaker/appengine
Advanced tools
Comparing version 0.0.22 to 0.0.23
/// <reference types="angular" /> | ||
/// <reference types="spinnaker" /> | ||
/// <reference types="./types" /> | ||
import { Application, ILoadBalancer, ILoadBalancerUpsertCommand } from '@spinnaker/core'; | ||
@@ -4,0 +4,0 @@ import { IAppengineLoadBalancer, IAppengineTrafficSplit, ShardBy } from 'appengine/domain/index'; |
@@ -1,2 +0,2 @@ | ||
/// <reference types="spinnaker" /> | ||
/// <reference types="./types" /> | ||
import { IQService } from 'angular'; | ||
@@ -3,0 +3,0 @@ import { Application, IArtifact, IExpectedArtifact, IPipeline, IStage, IArtifactAccountPair } from '@spinnaker/core'; |
@@ -1,10 +0,8 @@ | ||
/// <reference types="angular" /> | ||
/// <reference types="spinnaker" /> | ||
import { Application, ITask } from '@spinnaker/core'; | ||
import { IAppengineServerGroup } from 'appengine/domain/index'; | ||
export declare class AppengineServerGroupWriter { | ||
startServerGroup(serverGroup: IAppengineServerGroup, application: Application): ng.IPromise<ITask>; | ||
stopServerGroup(serverGroup: IAppengineServerGroup, application: Application): ng.IPromise<ITask>; | ||
startServerGroup(serverGroup: IAppengineServerGroup, application: Application): PromiseLike<ITask>; | ||
stopServerGroup(serverGroup: IAppengineServerGroup, application: Application): PromiseLike<ITask>; | ||
private buildJob; | ||
} | ||
export declare const APPENGINE_SERVER_GROUP_WRITER = "spinnaker.appengine.serverGroup.write.service"; |
{ | ||
"name": "@spinnaker/appengine", | ||
"license": "Apache-2.0", | ||
"version": "0.0.22", | ||
"version": "0.0.23", | ||
"main": "lib/lib.js", | ||
@@ -6,0 +6,0 @@ "typings": "lib/index.d.ts", |
@@ -15,3 +15,3 @@ import { module } from 'angular'; | ||
export class AppengineServerGroupWriter { | ||
public startServerGroup(serverGroup: IAppengineServerGroup, application: Application): ng.IPromise<ITask> { | ||
public startServerGroup(serverGroup: IAppengineServerGroup, application: Application): PromiseLike<ITask> { | ||
const job = this.buildJob(serverGroup, application, 'startAppEngineServerGroup'); | ||
@@ -28,3 +28,3 @@ | ||
public stopServerGroup(serverGroup: IAppengineServerGroup, application: Application): ng.IPromise<ITask> { | ||
public stopServerGroup(serverGroup: IAppengineServerGroup, application: Application): PromiseLike<ITask> { | ||
const job = this.buildJob(serverGroup, application, 'stopAppEngineServerGroup'); | ||
@@ -31,0 +31,0 @@ |
Sorry, the diff of this file is not supported yet
969641
6811