1// Copyright 2020 Google LLC
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15// Code generated by protoc-gen-go_gapic. DO NOT EDIT.
16
17// Package cloudtasks is an auto-generated package for the
18// Cloud Tasks API.
19//
20// Manages the execution of large numbers of distributed requests.
21//
22//   NOTE: This package is in beta. It is not stable, and may be subject to changes.
23//
24// Use of Context
25//
26// The ctx passed to NewClient is used for authentication requests and
27// for creating the underlying connection, but is not used for subsequent calls.
28// Individual methods on the client use the ctx given to them.
29//
30// To close the open connection, use the Close() method.
31//
32// For information about setting deadlines, reusing contexts, and more
33// please visit godoc.org/cloud.google.com/go.
34package cloudtasks // import "cloud.google.com/go/cloudtasks/apiv2beta2"
35
36import (
37	"context"
38	"runtime"
39	"strings"
40	"unicode"
41
42	"google.golang.org/grpc/metadata"
43)
44
45const versionClient = "20200331"
46
47func insertMetadata(ctx context.Context, mds ...metadata.MD) context.Context {
48	out, _ := metadata.FromOutgoingContext(ctx)
49	out = out.Copy()
50	for _, md := range mds {
51		for k, v := range md {
52			out[k] = append(out[k], v...)
53		}
54	}
55	return metadata.NewOutgoingContext(ctx, out)
56}
57
58// DefaultAuthScopes reports the default set of authentication scopes to use with this package.
59func DefaultAuthScopes() []string {
60	return []string{
61		"https://www.googleapis.com/auth/cloud-platform",
62	}
63}
64
65// versionGo returns the Go runtime version. The returned string
66// has no whitespace, suitable for reporting in header.
67func versionGo() string {
68	const develPrefix = "devel +"
69
70	s := runtime.Version()
71	if strings.HasPrefix(s, develPrefix) {
72		s = s[len(develPrefix):]
73		if p := strings.IndexFunc(s, unicode.IsSpace); p >= 0 {
74			s = s[:p]
75		}
76		return s
77	}
78
79	notSemverRune := func(r rune) bool {
80		return !strings.ContainsRune("0123456789.", r)
81	}
82
83	if strings.HasPrefix(s, "go1") {
84		s = s[2:]
85		var prerelease string
86		if p := strings.IndexFunc(s, notSemverRune); p >= 0 {
87			s, prerelease = s[:p], s[p:]
88		}
89		if strings.HasSuffix(s, ".") {
90			s += "0"
91		} else if strings.Count(s, ".") < 2 {
92			s += ".0"
93		}
94		if prerelease != "" {
95			s += "-" + prerelease
96		}
97		return s
98	}
99	return "UNKNOWN"
100}
101