-
Notifications
You must be signed in to change notification settings - Fork 595
/
lookup_service.resolve_service.js
98 lines (88 loc) · 3.92 KB
/
lookup_service.resolve_service.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ** This file is automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **
'use strict';
function main(name) {
// [START servicedirectory_v1beta1_generated_LookupService_ResolveService_async]
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The name of the service to resolve.
*/
// const name = 'abc123'
/**
* Optional. The maximum number of endpoints to return. Defaults to 25. Maximum is 100.
* If a value less than one is specified, the Default is used.
* If a value greater than the Maximum is specified, the Maximum is used.
*/
// const maxEndpoints = 1234
/**
* Optional. The filter applied to the endpoints of the resolved service.
* General `filter` string syntax:
* `<field> <operator> <value> (<logical connector>)`
* * `<field>` can be `name`, `address`, `port`, or `metadata.<key>` for
* map field
* * `<operator>` can be `<`, `>`, `<=`, `>=`, `!=`, `=`, `:`. Of which `:`
* means `HAS`, and is roughly the same as `=`
* * `<value>` must be the same data type as field
* * `<logical connector>` can be `AND`, `OR`, `NOT`
* Examples of valid filters:
* * `metadata.owner` returns endpoints that have a annotation with the key
* `owner`, this is the same as `metadata:owner`
* * `metadata.protocol=gRPC` returns endpoints that have key/value
* `protocol=gRPC`
* * `address=192.108.1.105` returns endpoints that have this address
* * `port>8080` returns endpoints that have port number larger than 8080
* *
* `name>projects/my-project/locations/us-east1/namespaces/my-namespace/services/my-service/endpoints/endpoint-c`
* returns endpoints that have name that is alphabetically later than the
* string, so "endpoint-e" is returned but "endpoint-a" is not
* * `metadata.owner!=sd AND metadata.foo=bar` returns endpoints that have
* `owner` in annotation key but value is not `sd` AND have key/value
* `foo=bar`
* * `doesnotexist.foo=bar` returns an empty list. Note that endpoint
* doesn't have a field called "doesnotexist". Since the filter does not
* match any endpoint, it returns no results
* For more information about filtering, see
* API Filtering (https://aip.dev/160).
*/
// const endpointFilter = 'abc123'
// Imports the Servicedirectory library
const {LookupServiceClient} = require('@google-cloud/service-directory').v1beta1;
// Instantiates a client
const servicedirectoryClient = new LookupServiceClient();
async function callResolveService() {
// Construct request
const request = {
name,
};
// Run request
const response = await servicedirectoryClient.resolveService(request);
console.log(response);
}
callResolveService();
// [END servicedirectory_v1beta1_generated_LookupService_ResolveService_async]
}
process.on('unhandledRejection', err => {
console.error(err.message);
process.exitCode = 1;
});
main(...process.argv.slice(2));