當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript pipelineConfigProvider.PipelineConfigProvider類代碼示例

本文整理匯總了TypeScript中core/pipeline/config/pipelineConfigProvider.PipelineConfigProvider的典型用法代碼示例。如果您正苦於以下問題:TypeScript PipelineConfigProvider類的具體用法?TypeScript PipelineConfigProvider怎麽用?TypeScript PipelineConfigProvider使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了PipelineConfigProvider類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: constructor

  constructor(public stage: any,
              private jsonUtilityService: JsonUtilityService,
              private $uibModal: IModalService,
              private pipelineConfig: PipelineConfigProvider) {
    'ngInject';
    this.methods = ['GET', 'HEAD', 'POST', 'PUT', 'DELETE'];

    this.viewState = {
      waitForCompletion: this.stage.waitForCompletion || false,
      statusUrlResolution: this.stage.statusUrlResolution || 'getMethod'
    };

    this.command = {
      payloadJSON: this.jsonUtilityService.makeSortedStringFromObject(this.stage.payload || {}),
    };

    this.stage.statusUrlResolution = this.viewState.statusUrlResolution;

    const stageConfig = this.pipelineConfig.getStageConfig(this.stage);
    if (stageConfig && stageConfig.configuration) {
      this.preconfiguredProperties = stageConfig.configuration.preconfiguredProperties || [];
      this.noUserConfigurableFields = stageConfig.configuration.noUserConfigurableFields;
      this.viewState.waitForCompletion = stageConfig.configuration.waitForCompletion || this.viewState.waitForCompletion;
    }
  }
開發者ID:jcwest,項目名稱:deck,代碼行數:25,代碼來源:webhookStage.ts

示例2:

 .config(function(pipelineConfigProvider: PipelineConfigProvider) {
   pipelineConfigProvider.registerStage({
     useBaseProvider: true,
     key: 'rollbackCluster',
     label: 'Rollback Cluster',
     description: 'Rollback one or more regions in a cluster',
     executionDetailsSections: [RollbackClusterExecutionDetails, ExecutionDetailsTasks]
   });
 });
開發者ID:robfletcher,項目名稱:deck,代碼行數:9,代碼來源:rollbackClusterStage.ts

示例3:

 .config((pipelineConfigProvider: PipelineConfigProvider) => {
   pipelineConfigProvider.registerStage({
     executionDetailsSections: [FindAmiExecutionDetails, ExecutionDetailsTasks],
     useBaseProvider: true,
     key: 'findImage',
     label: 'Find Image from Cluster',
     description: 'Finds an image to deploy from an existing cluster'
   });
 });
開發者ID:robfletcher,項目名稱:deck,代碼行數:9,代碼來源:findAmiStage.ts

示例4:

 .config((pipelineConfigProvider: PipelineConfigProvider) => {
   pipelineConfigProvider.registerStage({
     executionDetailsSections: [ScaleDownClusterExecutionDetails, ExecutionDetailsTasks],
     useBaseProvider: true,
     key: 'scaleDownCluster',
     label: 'Scale Down Cluster',
     description: 'Scales down a cluster',
     strategy: true,
   });
 });
開發者ID:robfletcher,項目名稱:deck,代碼行數:10,代碼來源:scaleDownClusterStage.ts

示例5:

.config((pipelineConfigProvider: PipelineConfigProvider) => {
  pipelineConfigProvider.registerStage({
    useBaseProvider: true,
    executionDetailsSections: [DisableAsgExecutionDetails, ExecutionDetailsTasks],
    key: 'disableServerGroup',
    label: 'Disable Server Group',
    description: 'Disables a server group',
    strategy: true,
  });
});
開發者ID:robfletcher,項目名稱:deck,代碼行數:10,代碼來源:disableAsgStage.module.ts

示例6:

]).config((pipelineConfigProvider: PipelineConfigProvider) => {
  pipelineConfigProvider.registerStage({
    useBaseProvider: true,
    key: 'cloneServerGroup',
    label: 'Clone Server Group',
    executionDetailsSections: [CloneServerGroupExecutionDetails, ExecutionDetailsTasks],
    description: 'Clones a server group',
    strategy: false,
  });
});
開發者ID:robfletcher,項目名稱:deck,代碼行數:10,代碼來源:cloneServerGroupStage.module.ts

示例7:

 .config(function(pipelineConfigProvider: PipelineConfigProvider) {
   pipelineConfigProvider.registerStage({
     useBaseProvider: true,
     key: 'disableCluster',
     label: 'Disable Cluster',
     description: 'Disables a cluster',
     executionDetailsSections: [DisableClusterExecutionDetails, ExecutionDetailsTasks],
     strategy: true,
   });
 });
開發者ID:robfletcher,項目名稱:deck,代碼行數:10,代碼來源:disableClusterStage.ts

示例8: require

]).config((pipelineConfigProvider: PipelineConfigProvider) => {
  pipelineConfigProvider.registerTrigger({
    label: 'Webhook',
    description: 'Executes the pipeline when a webhook is received.',
    key: 'webhook',
    controller: 'WebhookTriggerCtrl',
    controllerAs: 'ctrl',
    templateUrl: require('./webhookTrigger.html'),
    validators: []
  });
}).controller('WebhookTriggerCtrl', WebhookTriggerController);
開發者ID:robfletcher,項目名稱:deck,代碼行數:11,代碼來源:webhook.trigger.ts

示例9: require

 .config((pipelineConfigProvider: PipelineConfigProvider) => {
   pipelineConfigProvider.registerStage({
     executionConfigSections: ['resizeServerGroupConfig', 'taskStatus'],
     executionDetailsUrl: require('./resizeAsgExecutionDetails.html'),
     useBaseProvider: true,
     key: 'resizeServerGroup',
     label: 'Resize Server Group',
     description: 'Resizes a server group',
     strategy: true,
   });
 });
開發者ID:robfletcher,項目名稱:deck,代碼行數:11,代碼來源:resizeAsgStage.ts

示例10: require

 .config((pipelineConfigProvider: PipelineConfigProvider) => {
   pipelineConfigProvider.registerStage({
     label: 'Check Preconditions',
     description: 'Checks for preconditions before continuing',
     key: 'checkPreconditions',
     restartable: true,
     controller: 'CheckPreconditionsStageCtrl',
     controllerAs: 'checkPreconditionsStageCtrl',
     templateUrl: require('./checkPreconditionsStage.html'),
     executionDetailsSections: [ CheckPreconditionsExecutionDetails, ExecutionDetailsTasks ],
     strategy: true,
   });
 })
開發者ID:robfletcher,項目名稱:deck,代碼行數:13,代碼來源:checkPreconditionsStage.ts


注:本文中的core/pipeline/config/pipelineConfigProvider.PipelineConfigProvider類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。