本文整理汇总了TypeScript中core/cloudProvider/providerService.delegate.ProviderServiceDelegate类的典型用法代码示例。如果您正苦于以下问题:TypeScript delegate.ProviderServiceDelegate类的具体用法?TypeScript delegate.ProviderServiceDelegate怎么用?TypeScript delegate.ProviderServiceDelegate使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了delegate.ProviderServiceDelegate类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: transform
private transform(instanceGroup: IMultiInstanceGroup, job: IMultiInstanceJob) {
const hasTransformer: boolean = this.providerServiceDelegate.hasDelegate(
instanceGroup.cloudProvider, 'instance.multiInstanceTaskTransformer');
if (hasTransformer) {
const transformer: any = this.providerServiceDelegate.getDelegate(
instanceGroup.cloudProvider, 'instance.multiInstanceTaskTransformer');
transformer.transform(instanceGroup, job);
}
}
示例2:
return AccountService.getAccountDetails(securityGroup.account).then((accountDetails: IAccountDetails) => {
return this.providerServiceDelegate
.getDelegate<any>(
securityGroup.provider || securityGroup.type,
'securityGroup.transformer',
accountDetails && accountDetails.skin,
)
.normalizeSecurityGroup(securityGroup);
});
示例3: getDelegate
private getDelegate(cloudProvider: string): IImageReader {
return this.providerServiceDelegate.getDelegate<IImageReader>(cloudProvider, 'image.reader');
}
示例4: getDelegate
private getDelegate(cloudProvider: string): IInstanceTypeService {
return this.providerServiceDelegate.getDelegate<IInstanceTypeService>(cloudProvider, 'instance.instanceTypeService');
}
示例5: getDelegate
private getDelegate(provider: string): any {
return this.providerServiceDelegate.getDelegate(provider, 'serverGroup.configurationService');
}
示例6: normalizeSecurityGroup
public normalizeSecurityGroup(securityGroup: ISecurityGroup): IPromise<ISecurityGroup> {
return this.providerServiceDelegate
.getDelegate<any>(securityGroup.provider || securityGroup.type, 'securityGroup.transformer')
.normalizeSecurityGroup(securityGroup);
}