Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / google-auth-library / build / src / auth / iam.js
1 "use strict";
2 /**
3  * Copyright 2014 Google Inc. All Rights Reserved.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 Object.defineProperty(exports, "__esModule", { value: true });
18 const messages = require("../messages");
19 class IAMAuth {
20     /**
21      * IAM credentials.
22      *
23      * @param selector the iam authority selector
24      * @param token the token
25      * @constructor
26      */
27     constructor(selector, token) {
28         this.selector = selector;
29         this.token = token;
30         this.selector = selector;
31         this.token = token;
32     }
33     /**
34      * Indicates whether the credential requires scopes to be created by calling
35      * createdScoped before use.
36      * @deprecated
37      * @return always false
38      */
39     createScopedRequired() {
40         // IAM authorization does not use scopes.
41         messages.warn(messages.IAM_CREATE_SCOPED_DEPRECATED);
42         return false;
43     }
44     /**
45      * Pass the selector and token to the metadataFn callback.
46      * @deprecated
47      * @param unused_uri is required of the credentials interface
48      * @param metadataFn a callback invoked with object containing request
49      * metadata.
50      */
51     getRequestMetadata(unusedUri, metadataFn) {
52         messages.warn(messages.IAM_GET_REQUEST_METADATA_DEPRECATED);
53         metadataFn(null, this.getRequestHeaders());
54     }
55     /**
56      * Acquire the HTTP headers required to make an authenticated request.
57      */
58     getRequestHeaders() {
59         return {
60             'x-goog-iam-authority-selector': this.selector,
61             'x-goog-iam-authorization-token': this.token
62         };
63     }
64 }
65 exports.IAMAuth = IAMAuth;
66 //# sourceMappingURL=iam.js.map