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


Golang ECS.DescribeServices方法代碼示例

本文整理匯總了Golang中github.com/aws/aws-sdk-go/service/ecs.ECS.DescribeServices方法的典型用法代碼示例。如果您正苦於以下問題:Golang ECS.DescribeServices方法的具體用法?Golang ECS.DescribeServices怎麽用?Golang ECS.DescribeServices使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/aws/aws-sdk-go/service/ecs.ECS的用法示例。


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

示例1: findTaskArn

// findTaskArn
// finds the first task definition in a cluster and service.
//
// Returns task ARN
//
// TODO:
//   filter the resulting tasks by essential: true
//   and only return the essential?
//   either that or assume that the new image will
//   somewhat match the old image, and use that to pick
//   one of the tasks.
func findTaskArn(svc *ecs.ECS, clusterArn string, serviceArn string) (string, error) {
	params := &ecs.DescribeServicesInput{
		Services: []*string{
			aws.String(serviceArn),
		},
		Cluster: aws.String(clusterArn),
	}
	resp, err := svc.DescribeServices(params)
	return *resp.Services[0].TaskDefinition, err
}
開發者ID:oberd,項目名稱:aws-rollout,代碼行數:21,代碼來源:aws-rollout.go

示例2: VerifyServiceExists

// Verify that the ECS service exists.
func VerifyServiceExists(ecs_obj *ecs.ECS, cluster string, service string) error {
	params := &ecs.DescribeServicesInput{
		Cluster: &cluster,
		Services: []*string{ // Required
			aws.String(service), // Required
		},
	}
	_, err := ecs_obj.DescribeServices(params)

	if err != nil {
		return fmt.Errorf("Cannot verify if ECS service exists: %s", FormatAwsError(err))
	}
	return nil
}
開發者ID:CpuID,項目名稱:ecs-discoverer,代碼行數:15,代碼來源:shared.go

示例3: GetServices

// GetServices will return a slice of ECS Services for a given cluster
func GetServices(svc *ecs.ECS, cluster *string) ([]*ecs.Service, error) {

	var serviceArns []*string

	// List clusters
	reqParams := &ecs.ListServicesInput{
		Cluster:    cluster,
		MaxResults: aws.Int64(10),
		NextToken:  aws.String(""),
	}

	// Loop through tokens until no more results remain
	for {
		resp, err := svc.ListServices(reqParams)

		// Error check
		if err != nil {
			return nil, fmt.Errorf("ecs.ListServices: %s", err.Error())
		}

		// Expand slice of services and append to our comprehensive list
		serviceArns = append(serviceArns, resp.ServiceArns...)

		// Cycle token
		if resp.NextToken != nil {
			reqParams.NextToken = resp.NextToken
		} else {
			// Kill loop ... out of response pages
			break
		}

	}

	// Describe the services that we just got back
	resp, err := svc.DescribeServices(&ecs.DescribeServicesInput{
		Cluster:  cluster,
		Services: serviceArns,
	})
	if err != nil {
		return nil, fmt.Errorf("ecs.DescribeServices: %s", err.Error())
	}

	return resp.Services, nil
}
開發者ID:colinmutter,項目名稱:go-ecs,代碼行數:45,代碼來源:ecs.go


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