googleapis
Advanced tools
| /*! THIS FILE IS AUTO-GENERATED */ | ||
| import { AuthPlus } from 'googleapis-common'; | ||
| import { cloudnumberregistry_v1alpha } from './v1alpha'; | ||
| export declare const VERSIONS: { | ||
| v1alpha: typeof cloudnumberregistry_v1alpha.Cloudnumberregistry; | ||
| }; | ||
| export declare function cloudnumberregistry(version: 'v1alpha'): cloudnumberregistry_v1alpha.Cloudnumberregistry; | ||
| export declare function cloudnumberregistry(options: cloudnumberregistry_v1alpha.Options): cloudnumberregistry_v1alpha.Cloudnumberregistry; | ||
| declare const auth: AuthPlus; | ||
| export { auth }; | ||
| export { cloudnumberregistry_v1alpha }; | ||
| export { AuthPlus, GlobalOptions, APIRequestContext, GoogleConfigurable, StreamMethodOptions, MethodOptions, BodyResponseCallback, } from 'googleapis-common'; |
| "use strict"; | ||
| // Copyright 2020 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 | ||
| // | ||
| // http://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. | ||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||
| exports.AuthPlus = exports.cloudnumberregistry_v1alpha = exports.auth = exports.VERSIONS = void 0; | ||
| exports.cloudnumberregistry = cloudnumberregistry; | ||
| /*! THIS FILE IS AUTO-GENERATED */ | ||
| const googleapis_common_1 = require("googleapis-common"); | ||
| const v1alpha_1 = require("./v1alpha"); | ||
| Object.defineProperty(exports, "cloudnumberregistry_v1alpha", { enumerable: true, get: function () { return v1alpha_1.cloudnumberregistry_v1alpha; } }); | ||
| exports.VERSIONS = { | ||
| v1alpha: v1alpha_1.cloudnumberregistry_v1alpha.Cloudnumberregistry, | ||
| }; | ||
| function cloudnumberregistry(versionOrOptions) { | ||
| return (0, googleapis_common_1.getAPI)('cloudnumberregistry', versionOrOptions, exports.VERSIONS, this); | ||
| } | ||
| const auth = new googleapis_common_1.AuthPlus(); | ||
| exports.auth = auth; | ||
| var googleapis_common_2 = require("googleapis-common"); | ||
| Object.defineProperty(exports, "AuthPlus", { enumerable: true, get: function () { return googleapis_common_2.AuthPlus; } }); |
Sorry, the diff of this file is too big to display
| "use strict"; | ||
| // Copyright 2020 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 | ||
| // | ||
| // http://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. | ||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||
| exports.cloudnumberregistry_v1alpha = void 0; | ||
| /* eslint-disable @typescript-eslint/no-explicit-any */ | ||
| /* eslint-disable @typescript-eslint/no-unused-vars */ | ||
| /* eslint-disable @typescript-eslint/no-empty-interface */ | ||
| /* eslint-disable @typescript-eslint/no-namespace */ | ||
| /* eslint-disable no-irregular-whitespace */ | ||
| const googleapis_common_1 = require("googleapis-common"); | ||
| var cloudnumberregistry_v1alpha; | ||
| (function (cloudnumberregistry_v1alpha) { | ||
| /** | ||
| * Cloud Number Registry API | ||
| * | ||
| * | ||
| * | ||
| * @example | ||
| * ```js | ||
| * const {google} = require('googleapis'); | ||
| * const cloudnumberregistry = google.cloudnumberregistry('v1alpha'); | ||
| * ``` | ||
| */ | ||
| class Cloudnumberregistry { | ||
| context; | ||
| projects; | ||
| constructor(options, google) { | ||
| this.context = { | ||
| _options: options || {}, | ||
| google, | ||
| }; | ||
| this.projects = new Resource$Projects(this.context); | ||
| } | ||
| } | ||
| cloudnumberregistry_v1alpha.Cloudnumberregistry = Cloudnumberregistry; | ||
| class Resource$Projects { | ||
| context; | ||
| locations; | ||
| constructor(context) { | ||
| this.context = context; | ||
| this.locations = new Resource$Projects$Locations(this.context); | ||
| } | ||
| } | ||
| cloudnumberregistry_v1alpha.Resource$Projects = Resource$Projects; | ||
| class Resource$Projects$Locations { | ||
| context; | ||
| customRanges; | ||
| discoveredRanges; | ||
| ipamAdminScopes; | ||
| operations; | ||
| realms; | ||
| registryBooks; | ||
| constructor(context) { | ||
| this.context = context; | ||
| this.customRanges = new Resource$Projects$Locations$Customranges(this.context); | ||
| this.discoveredRanges = new Resource$Projects$Locations$Discoveredranges(this.context); | ||
| this.ipamAdminScopes = new Resource$Projects$Locations$Ipamadminscopes(this.context); | ||
| this.operations = new Resource$Projects$Locations$Operations(this.context); | ||
| this.realms = new Resource$Projects$Locations$Realms(this.context); | ||
| this.registryBooks = new Resource$Projects$Locations$Registrybooks(this.context); | ||
| } | ||
| get(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| list(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}/locations').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| } | ||
| cloudnumberregistry_v1alpha.Resource$Projects$Locations = Resource$Projects$Locations; | ||
| class Resource$Projects$Locations$Customranges { | ||
| context; | ||
| constructor(context) { | ||
| this.context = context; | ||
| } | ||
| create(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+parent}/customRanges').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'POST', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['parent'], | ||
| pathParams: ['parent'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| delete(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'DELETE', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| findFreeIpRanges(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = | ||
| {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}:findFreeIpRanges').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| get(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| list(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+parent}/customRanges').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['parent'], | ||
| pathParams: ['parent'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| patch(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'PATCH', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| showUtilization(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = | ||
| {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}:showUtilization').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| } | ||
| cloudnumberregistry_v1alpha.Resource$Projects$Locations$Customranges = Resource$Projects$Locations$Customranges; | ||
| class Resource$Projects$Locations$Discoveredranges { | ||
| context; | ||
| constructor(context) { | ||
| this.context = context; | ||
| } | ||
| findFreeIpRanges(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = | ||
| {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}:findFreeIpRanges').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| get(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| list(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+parent}/discoveredRanges').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['parent'], | ||
| pathParams: ['parent'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| showUtilization(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = | ||
| {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}:showUtilization').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| } | ||
| cloudnumberregistry_v1alpha.Resource$Projects$Locations$Discoveredranges = Resource$Projects$Locations$Discoveredranges; | ||
| class Resource$Projects$Locations$Ipamadminscopes { | ||
| context; | ||
| constructor(context) { | ||
| this.context = context; | ||
| } | ||
| checkAvailability(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = | ||
| {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+parent}/ipamAdminScopes:checkAvailability').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['parent'], | ||
| pathParams: ['parent'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| cleanup(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = | ||
| {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}:cleanup').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'POST', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| create(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = | ||
| {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+parent}/ipamAdminScopes').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'POST', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['parent'], | ||
| pathParams: ['parent'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| delete(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = | ||
| {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'DELETE', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| disable(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = | ||
| {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}:disable').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'POST', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| get(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| list(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+parent}/ipamAdminScopes').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['parent'], | ||
| pathParams: ['parent'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| patch(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'PATCH', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| } | ||
| cloudnumberregistry_v1alpha.Resource$Projects$Locations$Ipamadminscopes = Resource$Projects$Locations$Ipamadminscopes; | ||
| class Resource$Projects$Locations$Operations { | ||
| context; | ||
| constructor(context) { | ||
| this.context = context; | ||
| } | ||
| cancel(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}:cancel').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'POST', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| delete(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'DELETE', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| get(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| list(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}/operations').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| } | ||
| cloudnumberregistry_v1alpha.Resource$Projects$Locations$Operations = Resource$Projects$Locations$Operations; | ||
| class Resource$Projects$Locations$Realms { | ||
| context; | ||
| constructor(context) { | ||
| this.context = context; | ||
| } | ||
| create(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+parent}/realms').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'POST', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['parent'], | ||
| pathParams: ['parent'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| delete(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'DELETE', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| get(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| list(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+parent}/realms').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['parent'], | ||
| pathParams: ['parent'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| patch(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'PATCH', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| } | ||
| cloudnumberregistry_v1alpha.Resource$Projects$Locations$Realms = Resource$Projects$Locations$Realms; | ||
| class Resource$Projects$Locations$Registrybooks { | ||
| context; | ||
| constructor(context) { | ||
| this.context = context; | ||
| } | ||
| create(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+parent}/registryBooks').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'POST', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['parent'], | ||
| pathParams: ['parent'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| delete(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'DELETE', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| get(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| list(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+parent}/registryBooks').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['parent'], | ||
| pathParams: ['parent'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| patch(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'PATCH', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| searchIpResources(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = | ||
| {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudnumberregistry.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1alpha/{+name}:searchIpResources').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'POST', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| } | ||
| cloudnumberregistry_v1alpha.Resource$Projects$Locations$Registrybooks = Resource$Projects$Locations$Registrybooks; | ||
| })(cloudnumberregistry_v1alpha || (exports.cloudnumberregistry_v1alpha = cloudnumberregistry_v1alpha = {})); |
| /*! THIS FILE IS AUTO-GENERATED */ | ||
| import { AuthPlus } from 'googleapis-common'; | ||
| import { webcontentpublisher_v1 } from './v1'; | ||
| export declare const VERSIONS: { | ||
| v1: typeof webcontentpublisher_v1.Webcontentpublisher; | ||
| }; | ||
| export declare function webcontentpublisher(version: 'v1'): webcontentpublisher_v1.Webcontentpublisher; | ||
| export declare function webcontentpublisher(options: webcontentpublisher_v1.Options): webcontentpublisher_v1.Webcontentpublisher; | ||
| declare const auth: AuthPlus; | ||
| export { auth }; | ||
| export { webcontentpublisher_v1 }; | ||
| export { AuthPlus, GlobalOptions, APIRequestContext, GoogleConfigurable, StreamMethodOptions, MethodOptions, BodyResponseCallback, } from 'googleapis-common'; |
| "use strict"; | ||
| // Copyright 2020 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 | ||
| // | ||
| // http://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. | ||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||
| exports.AuthPlus = exports.webcontentpublisher_v1 = exports.auth = exports.VERSIONS = void 0; | ||
| exports.webcontentpublisher = webcontentpublisher; | ||
| /*! THIS FILE IS AUTO-GENERATED */ | ||
| const googleapis_common_1 = require("googleapis-common"); | ||
| const v1_1 = require("./v1"); | ||
| Object.defineProperty(exports, "webcontentpublisher_v1", { enumerable: true, get: function () { return v1_1.webcontentpublisher_v1; } }); | ||
| exports.VERSIONS = { | ||
| v1: v1_1.webcontentpublisher_v1.Webcontentpublisher, | ||
| }; | ||
| function webcontentpublisher(versionOrOptions) { | ||
| return (0, googleapis_common_1.getAPI)('webcontentpublisher', versionOrOptions, exports.VERSIONS, this); | ||
| } | ||
| const auth = new googleapis_common_1.AuthPlus(); | ||
| exports.auth = auth; | ||
| var googleapis_common_2 = require("googleapis-common"); | ||
| Object.defineProperty(exports, "AuthPlus", { enumerable: true, get: function () { return googleapis_common_2.AuthPlus; } }); |
| import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient, GaxiosResponseWithHTTP2, GoogleConfigurable, MethodOptions, StreamMethodOptions, GlobalOptions, GoogleAuth, BodyResponseCallback, APIRequestContext } from 'googleapis-common'; | ||
| import { Readable } from 'stream'; | ||
| export declare namespace webcontentpublisher_v1 { | ||
| export interface Options extends GlobalOptions { | ||
| version: 'v1'; | ||
| } | ||
| interface StandardParameters { | ||
| /** | ||
| * Auth client or API Key for the request | ||
| */ | ||
| auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient | BaseExternalAccountClient | GoogleAuth; | ||
| /** | ||
| * V1 error format. | ||
| */ | ||
| '$.xgafv'?: string; | ||
| /** | ||
| * OAuth access token. | ||
| */ | ||
| access_token?: string; | ||
| /** | ||
| * Data format for response. | ||
| */ | ||
| alt?: string; | ||
| /** | ||
| * JSONP | ||
| */ | ||
| callback?: string; | ||
| /** | ||
| * Selector specifying which fields to include in a partial response. | ||
| */ | ||
| fields?: string; | ||
| /** | ||
| * API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. | ||
| */ | ||
| key?: string; | ||
| /** | ||
| * OAuth 2.0 token for the current user. | ||
| */ | ||
| oauth_token?: string; | ||
| /** | ||
| * Returns response with indentations and line breaks. | ||
| */ | ||
| prettyPrint?: boolean; | ||
| /** | ||
| * Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. | ||
| */ | ||
| quotaUser?: string; | ||
| /** | ||
| * Legacy upload protocol for media (e.g. "media", "multipart"). | ||
| */ | ||
| uploadType?: string; | ||
| /** | ||
| * Upload protocol for media (e.g. "raw", "multipart"). | ||
| */ | ||
| upload_protocol?: string; | ||
| } | ||
| /** | ||
| * Web Content Publisher API | ||
| * | ||
| * webcontentpublisher.googleapis.com API, a service for web content publishers. | ||
| * | ||
| * @example | ||
| * ```js | ||
| * const {google} = require('googleapis'); | ||
| * const webcontentpublisher = google.webcontentpublisher('v1'); | ||
| * ``` | ||
| */ | ||
| export class Webcontentpublisher { | ||
| context: APIRequestContext; | ||
| publications: Resource$Publications; | ||
| constructor(options: GlobalOptions, google?: GoogleConfigurable); | ||
| } | ||
| /** | ||
| * Response message for CheckFreeAccess | ||
| */ | ||
| export interface Schema$CheckFreeAccessResponse { | ||
| /** | ||
| * True if free access should be allowed, false otherwise. | ||
| */ | ||
| isAllowed?: boolean | null; | ||
| } | ||
| export class Resource$Publications { | ||
| context: APIRequestContext; | ||
| constructor(context: APIRequestContext); | ||
| /** | ||
| * Checks if a user is eligible for free article access. | ||
| * @example | ||
| * ```js | ||
| * // Before running the sample: | ||
| * // - Enable the API at: | ||
| * // https://console.developers.google.com/apis/api/webcontentpublisher.googleapis.com | ||
| * // - Login into gcloud by running: | ||
| * // ```sh | ||
| * // $ gcloud auth application-default login | ||
| * // ``` | ||
| * // - Install the npm module by running: | ||
| * // ```sh | ||
| * // $ npm install googleapis | ||
| * // ``` | ||
| * | ||
| * const {google} = require('googleapis'); | ||
| * const webcontentpublisher = google.webcontentpublisher('v1'); | ||
| * | ||
| * async function main() { | ||
| * const auth = new google.auth.GoogleAuth({ | ||
| * // Scopes can be specified either as an array or as a single, space-delimited string. | ||
| * scopes: [ | ||
| * 'https://www.googleapis.com/auth/subscribewithgoogle.publications.entitlements.readonly', | ||
| * ], | ||
| * }); | ||
| * | ||
| * // Acquire an auth client, and bind it to all future calls | ||
| * const authClient = await auth.getClient(); | ||
| * google.options({auth: authClient}); | ||
| * | ||
| * // Do the magic | ||
| * const res = await webcontentpublisher.publications.checkFreeAccess({ | ||
| * // Required. The HTTP referrer. | ||
| * httpReferrer: 'placeholder-value', | ||
| * // Required. The resource name of the publication. Format: publications/{publication_id\} | ||
| * name: 'publications/my-publication', | ||
| * // Required. The URI of the content. | ||
| * uri: 'placeholder-value', | ||
| * }); | ||
| * console.log(res.data); | ||
| * | ||
| * // Example response | ||
| * // { | ||
| * // "isAllowed": false | ||
| * // } | ||
| * } | ||
| * | ||
| * main().catch(e => { | ||
| * console.error(e); | ||
| * throw e; | ||
| * }); | ||
| * | ||
| * ``` | ||
| * | ||
| * @param params - Parameters for request | ||
| * @param options - Optionally override request options, such as `url`, `method`, and `encoding`. | ||
| * @param callback - Optional callback that handles the response. | ||
| * @returns A promise if used with async/await, or void if used with a callback. | ||
| */ | ||
| checkFreeAccess(params: Params$Resource$Publications$Checkfreeaccess, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>; | ||
| checkFreeAccess(params?: Params$Resource$Publications$Checkfreeaccess, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$CheckFreeAccessResponse>>; | ||
| checkFreeAccess(params: Params$Resource$Publications$Checkfreeaccess, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void; | ||
| checkFreeAccess(params: Params$Resource$Publications$Checkfreeaccess, options: MethodOptions | BodyResponseCallback<Schema$CheckFreeAccessResponse>, callback: BodyResponseCallback<Schema$CheckFreeAccessResponse>): void; | ||
| checkFreeAccess(params: Params$Resource$Publications$Checkfreeaccess, callback: BodyResponseCallback<Schema$CheckFreeAccessResponse>): void; | ||
| checkFreeAccess(callback: BodyResponseCallback<Schema$CheckFreeAccessResponse>): void; | ||
| } | ||
| export interface Params$Resource$Publications$Checkfreeaccess extends StandardParameters { | ||
| /** | ||
| * Required. The HTTP referrer. | ||
| */ | ||
| httpReferrer?: string; | ||
| /** | ||
| * Required. The resource name of the publication. Format: publications/{publication_id\} | ||
| */ | ||
| name?: string; | ||
| /** | ||
| * Required. The URI of the content. | ||
| */ | ||
| uri?: string; | ||
| } | ||
| export {}; | ||
| } |
| "use strict"; | ||
| // Copyright 2020 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 | ||
| // | ||
| // http://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. | ||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||
| exports.webcontentpublisher_v1 = void 0; | ||
| /* eslint-disable @typescript-eslint/no-explicit-any */ | ||
| /* eslint-disable @typescript-eslint/no-unused-vars */ | ||
| /* eslint-disable @typescript-eslint/no-empty-interface */ | ||
| /* eslint-disable @typescript-eslint/no-namespace */ | ||
| /* eslint-disable no-irregular-whitespace */ | ||
| const googleapis_common_1 = require("googleapis-common"); | ||
| var webcontentpublisher_v1; | ||
| (function (webcontentpublisher_v1) { | ||
| /** | ||
| * Web Content Publisher API | ||
| * | ||
| * webcontentpublisher.googleapis.com API, a service for web content publishers. | ||
| * | ||
| * @example | ||
| * ```js | ||
| * const {google} = require('googleapis'); | ||
| * const webcontentpublisher = google.webcontentpublisher('v1'); | ||
| * ``` | ||
| */ | ||
| class Webcontentpublisher { | ||
| context; | ||
| publications; | ||
| constructor(options, google) { | ||
| this.context = { | ||
| _options: options || {}, | ||
| google, | ||
| }; | ||
| this.publications = new Resource$Publications(this.context); | ||
| } | ||
| } | ||
| webcontentpublisher_v1.Webcontentpublisher = Webcontentpublisher; | ||
| class Resource$Publications { | ||
| context; | ||
| constructor(context) { | ||
| this.context = context; | ||
| } | ||
| checkFreeAccess(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://webcontentpublisher.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v1/{+name}:checkFreeAccess').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| } | ||
| webcontentpublisher_v1.Resource$Publications = Resource$Publications; | ||
| })(webcontentpublisher_v1 || (exports.webcontentpublisher_v1 = webcontentpublisher_v1 = {})); |
@@ -25,3 +25,3 @@ "use strict"; | ||
| /** | ||
| * Blogger API | ||
| * blogger API | ||
| * | ||
@@ -28,0 +28,0 @@ * The Blogger API provides access to posts, comments and pages of a Blogger blog. |
@@ -161,2 +161,6 @@ import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient, GaxiosResponseWithHTTP2, GoogleConfigurable, MethodOptions, StreamMethodOptions, GlobalOptions, GoogleAuth, BodyResponseCallback, APIRequestContext } from 'googleapis-common'; | ||
| /** | ||
| * Optional. When set to true the request will fail if there are any warnings during validation and the details will be included in the error_details. Otherwise warnings are treated as non-blocking and will be ignored for validation but will be included in the response for inspection. Defaults to `false` if unset. | ||
| */ | ||
| blockOnWarnings?: boolean | null; | ||
| /** | ||
| * Optional. Additional deploy information including the desired initial percentage rollout. Defaults to the current value saved in the developer dashboard if unset. | ||
@@ -190,2 +194,6 @@ */ | ||
| state?: string | null; | ||
| /** | ||
| * Output only. Non-blocking warnings encountered during the request. | ||
| */ | ||
| warningInfo?: Schema$WarningsInfo; | ||
| } | ||
@@ -232,2 +240,24 @@ /** | ||
| } | ||
| /** | ||
| * Represents a single warning encountered during the request. | ||
| */ | ||
| export interface Schema$Warning { | ||
| /** | ||
| * A description of the warning. Developers should use this message to understand the warning and take appropriate action to resolve the issue. | ||
| */ | ||
| description?: string | null; | ||
| /** | ||
| * The reason for the warning. This is a constant value that identifies the proximate cause of the warning. This should be at most 63 characters and match a regular expression of `A-Z+[A-Z0-9]`, which represents UPPER_SNAKE_CASE. | ||
| */ | ||
| reason?: string | null; | ||
| } | ||
| /** | ||
| * Message containing details on warnings encountered during PublishItem. | ||
| */ | ||
| export interface Schema$WarningsInfo { | ||
| /** | ||
| * All warnings encountered during the request. | ||
| */ | ||
| warnings?: Schema$Warning[]; | ||
| } | ||
| export class Resource$Media { | ||
@@ -513,2 +543,3 @@ context: APIRequestContext; | ||
| * // { | ||
| * // "blockOnWarnings": false, | ||
| * // "deployInfos": [], | ||
@@ -526,3 +557,4 @@ * // "publishType": "my_publishType", | ||
| * // "name": "my_name", | ||
| * // "state": "my_state" | ||
| * // "state": "my_state", | ||
| * // "warningInfo": {} | ||
| * // } | ||
@@ -529,0 +561,0 @@ * } |
@@ -323,2 +323,34 @@ "use strict"; | ||
| } | ||
| get(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudsupport.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v2/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| list(paramsOrCallback, optionsOrCallback, callback) { | ||
@@ -395,2 +427,34 @@ let params = (paramsOrCallback || | ||
| } | ||
| get(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://cloudsupport.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v2/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| list(paramsOrCallback, optionsOrCallback, callback) { | ||
@@ -397,0 +461,0 @@ let params = (paramsOrCallback || |
@@ -187,3 +187,3 @@ import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient, GaxiosResponseWithHTTP2, GoogleConfigurable, MethodOptions, StreamMethodOptions, GlobalOptions, GoogleAuth, BodyResponseCallback, APIRequestContext } from 'googleapis-common'; | ||
| * const res = await developerknowledge.documents.batchGet({ | ||
| * // Required. Specifies the names of the documents to retrieve. A maximum of 20 documents can be retrieved in a batch. The documents are returned in the same order as the `names` in the request. Format: `documents/{uri_without_scheme\}` Example: `documents/docs.cloud.google.com/storage/docs/creating-buckets` | ||
| * // Required. Specifies the names of the documents to retrieve. A maximum of 20 documents can be retrieved in a batch. The documents are returned in the same order as the `names` in the request. Format: `documents/{uri_without_scheme\}` Example: `documents/docs.cloud.google.com/storage/docs/creating-buckets` If you are changing the batch size, consider the value of `maxConcurrentGCSFetches` constant in the service implementation: http://cs///depot/google3/devrel/boq/developerknowledge/service/developerknowledge.go | ||
| * names: 'placeholder-value', | ||
@@ -358,3 +358,3 @@ * // Optional. Specifies the DocumentView of the document. If unspecified, DeveloperKnowledge.BatchGetDocuments defaults to `DOCUMENT_VIEW_CONTENT`. | ||
| /** | ||
| * Required. Specifies the names of the documents to retrieve. A maximum of 20 documents can be retrieved in a batch. The documents are returned in the same order as the `names` in the request. Format: `documents/{uri_without_scheme\}` Example: `documents/docs.cloud.google.com/storage/docs/creating-buckets` | ||
| * Required. Specifies the names of the documents to retrieve. A maximum of 20 documents can be retrieved in a batch. The documents are returned in the same order as the `names` in the request. Format: `documents/{uri_without_scheme\}` Example: `documents/docs.cloud.google.com/storage/docs/creating-buckets` If you are changing the batch size, consider the value of `maxConcurrentGCSFetches` constant in the service implementation: http://cs///depot/google3/devrel/boq/developerknowledge/service/developerknowledge.go | ||
| */ | ||
@@ -361,0 +361,0 @@ names?: string[]; |
@@ -79,3 +79,3 @@ import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient, GaxiosResponseWithHTTP2, GoogleConfigurable, MethodOptions, StreamMethodOptions, GlobalOptions, GoogleAuth, BodyResponseCallback, APIRequestContext } from 'googleapis-common'; | ||
| /** | ||
| * The text of the answer. | ||
| * Contains the text of the answer. | ||
| */ | ||
@@ -216,3 +216,3 @@ answerText?: string | null; | ||
| * const res = await developerknowledge.documents.batchGet({ | ||
| * // Required. Specifies the names of the documents to retrieve. A maximum of 20 documents can be retrieved in a batch. The documents are returned in the same order as the `names` in the request. Format: `documents/{uri_without_scheme\}` Example: `documents/docs.cloud.google.com/storage/docs/creating-buckets` | ||
| * // Required. Specifies the names of the documents to retrieve. A maximum of 20 documents can be retrieved in a batch. The documents are returned in the same order as the `names` in the request. Format: `documents/{uri_without_scheme\}` Example: `documents/docs.cloud.google.com/storage/docs/creating-buckets` If you are changing the batch size, consider the value of `maxConcurrentGCSFetches` constant in the service implementation: http://cs///depot/google3/devrel/boq/developerknowledge/service/developerknowledge.go | ||
| * names: 'placeholder-value', | ||
@@ -387,3 +387,3 @@ * // Optional. Specifies the DocumentView of the document. If unspecified, DeveloperKnowledge.BatchGetDocuments defaults to `DOCUMENT_VIEW_CONTENT`. | ||
| /** | ||
| * Required. Specifies the names of the documents to retrieve. A maximum of 20 documents can be retrieved in a batch. The documents are returned in the same order as the `names` in the request. Format: `documents/{uri_without_scheme\}` Example: `documents/docs.cloud.google.com/storage/docs/creating-buckets` | ||
| * Required. Specifies the names of the documents to retrieve. A maximum of 20 documents can be retrieved in a batch. The documents are returned in the same order as the `names` in the request. Format: `documents/{uri_without_scheme\}` Example: `documents/docs.cloud.google.com/storage/docs/creating-buckets` If you are changing the batch size, consider the value of `maxConcurrentGCSFetches` constant in the service implementation: http://cs///depot/google3/devrel/boq/developerknowledge/service/developerknowledge.go | ||
| */ | ||
@@ -390,0 +390,0 @@ names?: string[]; |
@@ -60,4 +60,6 @@ "use strict"; | ||
| context; | ||
| subscriptions; | ||
| constructor(context) { | ||
| this.context = context; | ||
| this.subscriptions = new Resource$Projects$Subscribers$Subscriptions(this.context); | ||
| } | ||
@@ -194,8 +196,147 @@ create(paramsOrCallback, optionsOrCallback, callback) { | ||
| health_v4.Resource$Projects$Subscribers = Resource$Projects$Subscribers; | ||
| class Resource$Projects$Subscribers$Subscriptions { | ||
| context; | ||
| constructor(context) { | ||
| this.context = context; | ||
| } | ||
| create(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = | ||
| {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://health.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v4/{+parent}/subscriptions').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'POST', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['parent'], | ||
| pathParams: ['parent'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| delete(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = | ||
| {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://health.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v4/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'DELETE', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| list(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://health.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v4/{+parent}/subscriptions').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['parent'], | ||
| pathParams: ['parent'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| patch(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://health.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v4/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'PATCH', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| } | ||
| health_v4.Resource$Projects$Subscribers$Subscriptions = Resource$Projects$Subscribers$Subscriptions; | ||
| class Resource$Users { | ||
| context; | ||
| dataTypes; | ||
| pairedDevices; | ||
| constructor(context) { | ||
| this.context = context; | ||
| this.dataTypes = new Resource$Users$Datatypes(this.context); | ||
| this.pairedDevices = new Resource$Users$Paireddevices(this.context); | ||
| } | ||
@@ -234,2 +375,34 @@ getIdentity(paramsOrCallback, optionsOrCallback, callback) { | ||
| } | ||
| getIrnProfile(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://health.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v4/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| getProfile(paramsOrCallback, optionsOrCallback, callback) { | ||
@@ -669,2 +842,73 @@ let params = (paramsOrCallback || {}); | ||
| health_v4.Resource$Users$Datatypes$Datapoints = Resource$Users$Datatypes$Datapoints; | ||
| class Resource$Users$Paireddevices { | ||
| context; | ||
| constructor(context) { | ||
| this.context = context; | ||
| } | ||
| get(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://health.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v4/{+name}').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['name'], | ||
| pathParams: ['name'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| list(paramsOrCallback, optionsOrCallback, callback) { | ||
| let params = (paramsOrCallback || | ||
| {}); | ||
| let options = (optionsOrCallback || {}); | ||
| if (typeof paramsOrCallback === 'function') { | ||
| callback = paramsOrCallback; | ||
| params = {}; | ||
| options = {}; | ||
| } | ||
| if (typeof optionsOrCallback === 'function') { | ||
| callback = optionsOrCallback; | ||
| options = {}; | ||
| } | ||
| const rootUrl = options.rootUrl || 'https://health.googleapis.com/'; | ||
| const parameters = { | ||
| options: Object.assign({ | ||
| url: (rootUrl + '/v4/{+parent}/pairedDevices').replace(/([^:]\/)\/+/g, '$1'), | ||
| method: 'GET', | ||
| apiVersion: '', | ||
| }, options), | ||
| params, | ||
| requiredParams: ['parent'], | ||
| pathParams: ['parent'], | ||
| context: this.context, | ||
| }; | ||
| if (callback) { | ||
| (0, googleapis_common_1.createAPIRequest)(parameters, callback); | ||
| } | ||
| else { | ||
| return (0, googleapis_common_1.createAPIRequest)(parameters); | ||
| } | ||
| } | ||
| } | ||
| health_v4.Resource$Users$Paireddevices = Resource$Users$Paireddevices; | ||
| })(health_v4 || (exports.health_v4 = health_v4 = {})); |
@@ -188,2 +188,13 @@ import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient, GaxiosResponseWithHTTP2, GoogleConfigurable, MethodOptions, StreamMethodOptions, GlobalOptions, GoogleAuth, BodyResponseCallback, APIRequestContext } from 'googleapis-common'; | ||
| /** | ||
| * Metadata for traits of a single device. | ||
| */ | ||
| export interface Schema$DeviceMetadata { | ||
| /** | ||
| * Map from the Trait ID (e.g., "action.devices.traits.OnOff") to its last Spanner commit timestamp. | ||
| */ | ||
| traitCommitTimestamps?: { | ||
| [key: string]: string; | ||
| } | null; | ||
| } | ||
| /** | ||
| * Identifiers used to describe the device. | ||
@@ -277,2 +288,6 @@ */ | ||
| /** | ||
| * Optional. If true, the response will include device metadata in the device_metadata field. | ||
| */ | ||
| includeDeviceMetadata?: boolean | null; | ||
| /** | ||
| * Required. Inputs containing third-party device IDs for which to get the device states. | ||
@@ -322,2 +337,8 @@ */ | ||
| /** | ||
| * Map from the Trait ID (e.g., "action.devices.traits.OnOff") to its last Spanner commit timestamp. If a trait has no recorded timestamp, it will be omitted from this map. | ||
| */ | ||
| deviceMetadata?: { | ||
| [key: string]: Schema$DeviceMetadata; | ||
| } | null; | ||
| /** | ||
| * States of the devices. Map of third-party device ID to struct of device states. | ||
@@ -461,3 +482,3 @@ */ | ||
| /** | ||
| * Optional. The Home API trait payload. | ||
| * The Provider Home API trait payload. | ||
| */ | ||
@@ -581,2 +602,3 @@ trait?: { | ||
| * // "agentUserId": "my_agentUserId", | ||
| * // "includeDeviceMetadata": false, | ||
| * // "inputs": [], | ||
@@ -583,0 +605,0 @@ * // "requestId": "my_requestId" |
@@ -87,2 +87,3 @@ /*! THIS FILE IS AUTO-GENERATED */ | ||
| import { cloudlocationfinder } from './cloudlocationfinder'; | ||
| import { cloudnumberregistry } from './cloudnumberregistry'; | ||
| import { cloudprofiler } from './cloudprofiler'; | ||
@@ -315,2 +316,3 @@ import { cloudresourcemanager } from './cloudresourcemanager'; | ||
| import { walletobjects } from './walletobjects'; | ||
| import { webcontentpublisher } from './webcontentpublisher'; | ||
| import { webfonts } from './webfonts'; | ||
@@ -420,2 +422,3 @@ import { webmasters } from './webmasters'; | ||
| cloudlocationfinder: typeof cloudlocationfinder; | ||
| cloudnumberregistry: typeof cloudnumberregistry; | ||
| cloudprofiler: typeof cloudprofiler; | ||
@@ -648,2 +651,3 @@ cloudresourcemanager: typeof cloudresourcemanager; | ||
| walletobjects: typeof walletobjects; | ||
| webcontentpublisher: typeof webcontentpublisher; | ||
| webfonts: typeof webfonts; | ||
@@ -650,0 +654,0 @@ webmasters: typeof webmasters; |
@@ -102,2 +102,3 @@ "use strict"; | ||
| const cloudlocationfinder_1 = require("./cloudlocationfinder"); | ||
| const cloudnumberregistry_1 = require("./cloudnumberregistry"); | ||
| const cloudprofiler_1 = require("./cloudprofiler"); | ||
@@ -330,2 +331,3 @@ const cloudresourcemanager_1 = require("./cloudresourcemanager"); | ||
| const walletobjects_1 = require("./walletobjects"); | ||
| const webcontentpublisher_1 = require("./webcontentpublisher"); | ||
| const webfonts_1 = require("./webfonts"); | ||
@@ -429,2 +431,3 @@ const webmasters_1 = require("./webmasters"); | ||
| cloudlocationfinder: cloudlocationfinder_1.VERSIONS, | ||
| cloudnumberregistry: cloudnumberregistry_1.VERSIONS, | ||
| cloudprofiler: cloudprofiler_1.VERSIONS, | ||
@@ -657,2 +660,3 @@ cloudresourcemanager: cloudresourcemanager_1.VERSIONS, | ||
| walletobjects: walletobjects_1.VERSIONS, | ||
| webcontentpublisher: webcontentpublisher_1.VERSIONS, | ||
| webfonts: webfonts_1.VERSIONS, | ||
@@ -757,2 +761,3 @@ webmasters: webmasters_1.VERSIONS, | ||
| cloudlocationfinder = cloudlocationfinder_1.cloudlocationfinder; | ||
| cloudnumberregistry = cloudnumberregistry_1.cloudnumberregistry; | ||
| cloudprofiler = cloudprofiler_1.cloudprofiler; | ||
@@ -985,2 +990,3 @@ cloudresourcemanager = cloudresourcemanager_1.cloudresourcemanager; | ||
| walletobjects = walletobjects_1.walletobjects; | ||
| webcontentpublisher = webcontentpublisher_1.webcontentpublisher; | ||
| webfonts = webfonts_1.webfonts; | ||
@@ -987,0 +993,0 @@ webmasters = webmasters_1.webmasters; |
@@ -162,3 +162,3 @@ import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient, GaxiosResponseWithHTTP2, GoogleConfigurable, MethodOptions, StreamMethodOptions, GlobalOptions, GoogleAuth, BodyResponseCallback, APIRequestContext } from 'googleapis-common'; | ||
| /** | ||
| * Immutable. The address and other details of the location to generate an instant verification token for. | ||
| * Immutable. Deprecated: Please use location_id instead. The address and other details of the location to generate an instant verification token for. | ||
| */ | ||
@@ -165,0 +165,0 @@ locationData?: Schema$LocationData; |
@@ -361,3 +361,3 @@ import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient, GaxiosResponseWithHTTP2, GoogleConfigurable, MethodOptions, StreamMethodOptions, GlobalOptions, GoogleAuth, BodyResponseCallback, APIRequestContext } from 'googleapis-common'; | ||
| /** | ||
| * Stateless method to retrieve emission estimates. Details on how emission estimates are computed are in [GitHub](https://github.com/google/travel-impact-model) The response will contain all entries that match the input flight legs, in the same order. If there are no estimates available for a certain flight leg, the response will return the flight leg object with empty emission fields. The request will still be considered successful. Reasons for missing emission estimates include: * The flight is unknown to the server. * The input flight leg is missing one or more identifiers. * The flight date is in the past. * The aircraft type is not supported by the model. * Missing seat configuration. The request can contain up to 1000 flight legs. If the request has more than 1000 direct flights, if will fail with an INVALID_ARGUMENT error. | ||
| * Stateless method to retrieve emission estimates. Details on how emission estimates are computed are in [GitHub](https://github.com/google/travel-impact-model). The response will contain all entries that match the input flight legs, in the same order. If there are no estimates available for a certain flight leg, the response will return the flight leg object with empty emission fields. The request will still be considered successful. Reasons for missing emission estimates include: * The flight is unknown to the server. * The input flight leg is missing one or more identifiers. * The flight date is in the past. * The aircraft type is not supported by the model. * Missing seat configuration. The request can contain up to 1000 flight legs. If the request has more than 1000 direct flights, if will fail with an INVALID_ARGUMENT error. | ||
| * @example | ||
@@ -364,0 +364,0 @@ * ```js |
@@ -701,3 +701,3 @@ import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient, GaxiosResponseWithHTTP2, GoogleConfigurable, MethodOptions, StreamMethodOptions, GlobalOptions, GoogleAuth, BodyResponseCallback, APIRequestContext } from 'googleapis-common'; | ||
| /** | ||
| * Creates a Submission of a URI suspected of containing phishing content to be reviewed. If the result verifies the existence of malicious phishing content, the site will be added to the [Google's Social Engineering lists](https://support.google.com/webmasters/answer/6350487/) in order to protect users that could get exposed to this threat in the future. Only allowlisted projects can use this method during Early Access. Please reach out to Sales or your customer engineer to obtain access. | ||
| * Creates a Submission of a URI suspected of containing phishing content for review. If the review confirms malicious phishing content, Google adds the site to [Google's Social Engineering lists](https://support.google.com/webmasters/answer/6350487/) to help protect users. Only allowlisted projects can use this method during Early Access. To obtain access, contact Sales or your customer engineer. | ||
| * @example | ||
@@ -704,0 +704,0 @@ * ```js |
@@ -148,2 +148,3 @@ /*! THIS FILE IS AUTO-GENERATED */ | ||
| export { cloudlocationfinder_v1alpha } from './apis/cloudlocationfinder/v1alpha'; | ||
| export { cloudnumberregistry_v1alpha } from './apis/cloudnumberregistry/v1alpha'; | ||
| export { cloudprofiler_v2 } from './apis/cloudprofiler/v2'; | ||
@@ -576,2 +577,3 @@ export { cloudresourcemanager_v1 } from './apis/cloudresourcemanager/v1'; | ||
| export { walletobjects_v1 } from './apis/walletobjects/v1'; | ||
| export { webcontentpublisher_v1 } from './apis/webcontentpublisher/v1'; | ||
| export { webfonts_v1 } from './apis/webfonts/v1'; | ||
@@ -578,0 +580,0 @@ export { webmasters_v3 } from './apis/webmasters/v3'; |
+1
-1
| { | ||
| "name": "googleapis", | ||
| "version": "172.0.0", | ||
| "version": "173.0.0", | ||
| "repository": "googleapis/google-api-nodejs-client", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
207485089
0.58%1851
0.43%3483288
0.71%