@googleapis/servicenetworking 6.0.0 → 8.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +36 -0
- package/build/index.js +5 -4
- package/build/index.js.map +1 -1
- package/build/v1.d.ts +265 -7
- package/build/v1.js +49 -48
- package/build/v1.js.map +1 -1
- package/build/v1beta.d.ts +256 -4
- package/build/v1beta.js +13 -12
- package/build/v1beta.js.map +1 -1
- package/package.json +6 -6
- package/v1.ts +263 -7
- package/v1beta.ts +254 -4
package/build/v1beta.d.ts
CHANGED
|
@@ -284,6 +284,10 @@ export declare namespace servicenetworking_v1beta {
|
|
|
284
284
|
* The JWT audience is used when generating a JWT ID token for the backend. This ID token will be added in the HTTP "authorization" header, and sent to the backend.
|
|
285
285
|
*/
|
|
286
286
|
jwtAudience?: string | null;
|
|
287
|
+
/**
|
|
288
|
+
* Deprecated, do not use.
|
|
289
|
+
*/
|
|
290
|
+
minDeadline?: number | null;
|
|
287
291
|
/**
|
|
288
292
|
* The number of seconds to wait for the completion of a long running operation. The default is no deadline.
|
|
289
293
|
*/
|
|
@@ -320,6 +324,85 @@ export declare namespace servicenetworking_v1beta {
|
|
|
320
324
|
*/
|
|
321
325
|
monitoredResource?: string | null;
|
|
322
326
|
}
|
|
327
|
+
/**
|
|
328
|
+
* Details about how and where to publish client libraries.
|
|
329
|
+
*/
|
|
330
|
+
export interface Schema$ClientLibrarySettings {
|
|
331
|
+
/**
|
|
332
|
+
* Settings for C++ client libraries.
|
|
333
|
+
*/
|
|
334
|
+
cppSettings?: Schema$CppSettings;
|
|
335
|
+
/**
|
|
336
|
+
* Settings for .NET client libraries.
|
|
337
|
+
*/
|
|
338
|
+
dotnetSettings?: Schema$DotnetSettings;
|
|
339
|
+
/**
|
|
340
|
+
* Settings for Go client libraries.
|
|
341
|
+
*/
|
|
342
|
+
goSettings?: Schema$GoSettings;
|
|
343
|
+
/**
|
|
344
|
+
* Settings for legacy Java features, supported in the Service YAML.
|
|
345
|
+
*/
|
|
346
|
+
javaSettings?: Schema$JavaSettings;
|
|
347
|
+
/**
|
|
348
|
+
* Launch stage of this version of the API.
|
|
349
|
+
*/
|
|
350
|
+
launchStage?: string | null;
|
|
351
|
+
/**
|
|
352
|
+
* Settings for Node client libraries.
|
|
353
|
+
*/
|
|
354
|
+
nodeSettings?: Schema$NodeSettings;
|
|
355
|
+
/**
|
|
356
|
+
* Settings for PHP client libraries.
|
|
357
|
+
*/
|
|
358
|
+
phpSettings?: Schema$PhpSettings;
|
|
359
|
+
/**
|
|
360
|
+
* Settings for Python client libraries.
|
|
361
|
+
*/
|
|
362
|
+
pythonSettings?: Schema$PythonSettings;
|
|
363
|
+
/**
|
|
364
|
+
* When using transport=rest, the client request will encode enums as numbers rather than strings.
|
|
365
|
+
*/
|
|
366
|
+
restNumericEnums?: boolean | null;
|
|
367
|
+
/**
|
|
368
|
+
* Settings for Ruby client libraries.
|
|
369
|
+
*/
|
|
370
|
+
rubySettings?: Schema$RubySettings;
|
|
371
|
+
/**
|
|
372
|
+
* Version of the API to apply these settings to.
|
|
373
|
+
*/
|
|
374
|
+
version?: string | null;
|
|
375
|
+
}
|
|
376
|
+
/**
|
|
377
|
+
* Cloud SQL configuration.
|
|
378
|
+
*/
|
|
379
|
+
export interface Schema$CloudSQLConfig {
|
|
380
|
+
/**
|
|
381
|
+
* Peering service used for peering with the Cloud SQL project.
|
|
382
|
+
*/
|
|
383
|
+
service?: string | null;
|
|
384
|
+
/**
|
|
385
|
+
* The name of the umbrella network in the Cloud SQL umbrella project.
|
|
386
|
+
*/
|
|
387
|
+
umbrellaNetwork?: string | null;
|
|
388
|
+
/**
|
|
389
|
+
* The project number of the Cloud SQL umbrella project.
|
|
390
|
+
*/
|
|
391
|
+
umbrellaProject?: string | null;
|
|
392
|
+
}
|
|
393
|
+
/**
|
|
394
|
+
* Required information for every language.
|
|
395
|
+
*/
|
|
396
|
+
export interface Schema$CommonLanguageSettings {
|
|
397
|
+
/**
|
|
398
|
+
* The destination where API teams want this client library to be published.
|
|
399
|
+
*/
|
|
400
|
+
destinations?: string[] | null;
|
|
401
|
+
/**
|
|
402
|
+
* Link to automatically generated reference documentation. Example: https://cloud.google.com/nodejs/docs/reference/asset/latest
|
|
403
|
+
*/
|
|
404
|
+
referenceDocsUri?: string | null;
|
|
405
|
+
}
|
|
323
406
|
/**
|
|
324
407
|
* Represents a private connection resource. A private connection is implemented as a VPC Network Peering connection between a service producer's VPC network and a service consumer's VPC network.
|
|
325
408
|
*/
|
|
@@ -345,6 +428,10 @@ export declare namespace servicenetworking_v1beta {
|
|
|
345
428
|
* Configuration information for a private service access connection.
|
|
346
429
|
*/
|
|
347
430
|
export interface Schema$ConsumerConfig {
|
|
431
|
+
/**
|
|
432
|
+
* Represents one or multiple Cloud SQL configurations.
|
|
433
|
+
*/
|
|
434
|
+
cloudsqlConfigs?: Schema$CloudSQLConfig[];
|
|
348
435
|
/**
|
|
349
436
|
* Export custom routes flag value for peering from consumer to producer.
|
|
350
437
|
*/
|
|
@@ -434,7 +521,7 @@ export declare namespace servicenetworking_v1beta {
|
|
|
434
521
|
selector?: string | null;
|
|
435
522
|
}
|
|
436
523
|
/**
|
|
437
|
-
* Selects and configures the service controller used by the service.
|
|
524
|
+
* Selects and configures the service controller used by the service. Example: control: environment: servicecontrol.googleapis.com
|
|
438
525
|
*/
|
|
439
526
|
export interface Schema$Control {
|
|
440
527
|
/**
|
|
@@ -442,6 +529,15 @@ export declare namespace servicenetworking_v1beta {
|
|
|
442
529
|
*/
|
|
443
530
|
environment?: string | null;
|
|
444
531
|
}
|
|
532
|
+
/**
|
|
533
|
+
* Settings for C++ client libraries.
|
|
534
|
+
*/
|
|
535
|
+
export interface Schema$CppSettings {
|
|
536
|
+
/**
|
|
537
|
+
* Some settings.
|
|
538
|
+
*/
|
|
539
|
+
common?: Schema$CommonLanguageSettings;
|
|
540
|
+
}
|
|
445
541
|
/**
|
|
446
542
|
* Customize service error responses. For example, list any service specific protobuf types that can appear in error detail lists of error responses. Example: custom_error: types: - google.foo.v1.CustomError - google.foo.v1.AnotherError
|
|
447
543
|
*/
|
|
@@ -571,10 +667,23 @@ export declare namespace servicenetworking_v1beta {
|
|
|
571
667
|
*/
|
|
572
668
|
selector?: string | null;
|
|
573
669
|
}
|
|
670
|
+
/**
|
|
671
|
+
* Settings for Dotnet client libraries.
|
|
672
|
+
*/
|
|
673
|
+
export interface Schema$DotnetSettings {
|
|
674
|
+
/**
|
|
675
|
+
* Some settings.
|
|
676
|
+
*/
|
|
677
|
+
common?: Schema$CommonLanguageSettings;
|
|
678
|
+
}
|
|
574
679
|
/**
|
|
575
680
|
* `Endpoint` describes a network address of a service that serves a set of APIs. It is commonly known as a service endpoint. A service may expose any number of service endpoints, and all service endpoints share the same service definition, such as quota limits and monitoring metrics. Example: type: google.api.Service name: library-example.googleapis.com endpoints: # Declares network address `https://library-example.googleapis.com` # for service `library-example.googleapis.com`. The `https` scheme # is implicit for all service endpoints. Other schemes may be # supported in the future. - name: library-example.googleapis.com allow_cors: false - name: content-staging-library-example.googleapis.com # Allows HTTP OPTIONS calls to be passed to the API frontend, for it # to decide whether the subsequent cross-origin request is allowed # to proceed. allow_cors: true
|
|
576
681
|
*/
|
|
577
682
|
export interface Schema$Endpoint {
|
|
683
|
+
/**
|
|
684
|
+
* Unimplemented. Dot not use. DEPRECATED: This field is no longer supported. Instead of using aliases, please specify multiple google.api.Endpoint for each of the intended aliases. Additional names that this endpoint will be hosted on.
|
|
685
|
+
*/
|
|
686
|
+
aliases?: string[] | null;
|
|
578
687
|
/**
|
|
579
688
|
* Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing), aka cross-domain traffic, would allow the backends served from this endpoint to receive and respond to HTTP OPTIONS requests. The response will be used by the browser to determine whether the subsequent cross-origin request is allowed to proceed.
|
|
580
689
|
*/
|
|
@@ -734,6 +843,15 @@ export declare namespace servicenetworking_v1beta {
|
|
|
734
843
|
*/
|
|
735
844
|
name?: string | null;
|
|
736
845
|
}
|
|
846
|
+
/**
|
|
847
|
+
* Settings for Go client libraries.
|
|
848
|
+
*/
|
|
849
|
+
export interface Schema$GoSettings {
|
|
850
|
+
/**
|
|
851
|
+
* Some settings.
|
|
852
|
+
*/
|
|
853
|
+
common?: Schema$CommonLanguageSettings;
|
|
854
|
+
}
|
|
737
855
|
/**
|
|
738
856
|
* Defines the HTTP configuration for an API service. It contains a list of HttpRule, each specifying the mapping of an RPC method to one or more HTTP REST API methods.
|
|
739
857
|
*/
|
|
@@ -792,6 +910,25 @@ export declare namespace servicenetworking_v1beta {
|
|
|
792
910
|
*/
|
|
793
911
|
selector?: string | null;
|
|
794
912
|
}
|
|
913
|
+
/**
|
|
914
|
+
* Settings for Java client libraries.
|
|
915
|
+
*/
|
|
916
|
+
export interface Schema$JavaSettings {
|
|
917
|
+
/**
|
|
918
|
+
* Some settings.
|
|
919
|
+
*/
|
|
920
|
+
common?: Schema$CommonLanguageSettings;
|
|
921
|
+
/**
|
|
922
|
+
* The package name to use in Java. Clobbers the java_package option set in the protobuf. This should be used **only** by APIs who have already set the language_settings.java.package_name" field in gapic.yaml. API teams should use the protobuf java_package option where possible. Example of a YAML configuration:: publishing: java_settings: library_package: com.google.cloud.pubsub.v1
|
|
923
|
+
*/
|
|
924
|
+
libraryPackage?: string | null;
|
|
925
|
+
/**
|
|
926
|
+
* Configure the Java class name to use instead of the service's for its corresponding generated GAPIC client. Keys are fully-qualified service names as they appear in the protobuf (including the full the language_settings.java.interface_names" field in gapic.yaml. API teams should otherwise use the service name as it appears in the protobuf. Example of a YAML configuration:: publishing: java_settings: service_class_names: - google.pubsub.v1.Publisher: TopicAdmin - google.pubsub.v1.Subscriber: SubscriptionAdmin
|
|
927
|
+
*/
|
|
928
|
+
serviceClassNames?: {
|
|
929
|
+
[key: string]: string;
|
|
930
|
+
} | null;
|
|
931
|
+
}
|
|
795
932
|
/**
|
|
796
933
|
* Specifies a location to extract JWT from an API request.
|
|
797
934
|
*/
|
|
@@ -886,6 +1023,27 @@ export declare namespace servicenetworking_v1beta {
|
|
|
886
1023
|
*/
|
|
887
1024
|
monitoredResource?: string | null;
|
|
888
1025
|
}
|
|
1026
|
+
/**
|
|
1027
|
+
* Describes settings to use when generating API methods that use the long-running operation pattern. All default values below are from those used in the client library generators (e.g. [Java](https://github.com/googleapis/gapic-generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
|
|
1028
|
+
*/
|
|
1029
|
+
export interface Schema$LongRunning {
|
|
1030
|
+
/**
|
|
1031
|
+
* Initial delay after which the first poll request will be made. Default value: 5 seconds.
|
|
1032
|
+
*/
|
|
1033
|
+
initialPollDelay?: string | null;
|
|
1034
|
+
/**
|
|
1035
|
+
* Maximum time between two subsequent poll requests. Default value: 45 seconds.
|
|
1036
|
+
*/
|
|
1037
|
+
maxPollDelay?: string | null;
|
|
1038
|
+
/**
|
|
1039
|
+
* Multiplier to gradually increase delay between subsequent polls until it reaches max_poll_delay. Default value: 1.5.
|
|
1040
|
+
*/
|
|
1041
|
+
pollDelayMultiplier?: number | null;
|
|
1042
|
+
/**
|
|
1043
|
+
* Total polling timeout. Default value: 5 minutes.
|
|
1044
|
+
*/
|
|
1045
|
+
totalPollTimeout?: string | null;
|
|
1046
|
+
}
|
|
889
1047
|
/**
|
|
890
1048
|
* Method represents a method of an API interface.
|
|
891
1049
|
*/
|
|
@@ -919,6 +1077,19 @@ export declare namespace servicenetworking_v1beta {
|
|
|
919
1077
|
*/
|
|
920
1078
|
syntax?: string | null;
|
|
921
1079
|
}
|
|
1080
|
+
/**
|
|
1081
|
+
* Describes the generator configuration for a method.
|
|
1082
|
+
*/
|
|
1083
|
+
export interface Schema$MethodSettings {
|
|
1084
|
+
/**
|
|
1085
|
+
* Describes settings to use for long-running operations when generating API methods for RPCs. Complements RPCs that use the annotations in google/longrunning/operations.proto. Example of a YAML configuration:: publishing: method_behavior: - selector: CreateAdDomain long_running: initial_poll_delay: seconds: 60 # 1 minute poll_delay_multiplier: 1.5 max_poll_delay: seconds: 360 # 6 minutes total_poll_timeout: seconds: 54000 # 90 minutes
|
|
1086
|
+
*/
|
|
1087
|
+
longRunning?: Schema$LongRunning;
|
|
1088
|
+
/**
|
|
1089
|
+
* The fully qualified name of the method, for which the options below apply. This is used to find the method to apply the options.
|
|
1090
|
+
*/
|
|
1091
|
+
selector?: string | null;
|
|
1092
|
+
}
|
|
922
1093
|
/**
|
|
923
1094
|
* Defines a metric type and its schema. Once a metric descriptor is created, deleting or altering it stops data collection and makes the metric type's existing data unusable.
|
|
924
1095
|
*/
|
|
@@ -1068,6 +1239,15 @@ export declare namespace servicenetworking_v1beta {
|
|
|
1068
1239
|
*/
|
|
1069
1240
|
monitoredResource?: string | null;
|
|
1070
1241
|
}
|
|
1242
|
+
/**
|
|
1243
|
+
* Settings for Node client libraries.
|
|
1244
|
+
*/
|
|
1245
|
+
export interface Schema$NodeSettings {
|
|
1246
|
+
/**
|
|
1247
|
+
* Some settings.
|
|
1248
|
+
*/
|
|
1249
|
+
common?: Schema$CommonLanguageSettings;
|
|
1250
|
+
}
|
|
1071
1251
|
/**
|
|
1072
1252
|
* OAuth scopes are a way to define data and permissions on data. For example, there are scopes defined for "Read-only access to Google Calendar" and "Access to Cloud Platform". Users can consent to a scope for an application, giving it permission to access that data on their behalf. OAuth scope specifications should be fairly coarse grained; a user will need to see and understand the text description of what your scope means. In most cases: use one or at most two OAuth scopes for an entire family of products. If your product has multiple APIs, you should probably be sharing the OAuth scope across all of those APIs. When you need finer grained OAuth consent screens: talk with your product management about how developers will use them in practice. Please note that even though each of the canonical scopes is enough for a request to be accepted and passed to the backend, a request can still fail due to the backend requiring additional scopes or permissions.
|
|
1073
1253
|
*/
|
|
@@ -1161,6 +1341,15 @@ export declare namespace servicenetworking_v1beta {
|
|
|
1161
1341
|
*/
|
|
1162
1342
|
export interface Schema$PeeredDnsDomainMetadata {
|
|
1163
1343
|
}
|
|
1344
|
+
/**
|
|
1345
|
+
* Settings for Php client libraries.
|
|
1346
|
+
*/
|
|
1347
|
+
export interface Schema$PhpSettings {
|
|
1348
|
+
/**
|
|
1349
|
+
* Some settings.
|
|
1350
|
+
*/
|
|
1351
|
+
common?: Schema$CommonLanguageSettings;
|
|
1352
|
+
}
|
|
1164
1353
|
/**
|
|
1165
1354
|
* Grouping of IAM role and IAM member.
|
|
1166
1355
|
*/
|
|
@@ -1175,15 +1364,65 @@ export declare namespace servicenetworking_v1beta {
|
|
|
1175
1364
|
role?: string | null;
|
|
1176
1365
|
}
|
|
1177
1366
|
/**
|
|
1178
|
-
*
|
|
1367
|
+
* This message configures the settings for publishing [Google Cloud Client libraries](https://cloud.google.com/apis/docs/cloud-client-libraries) generated from the service config.
|
|
1368
|
+
*/
|
|
1369
|
+
export interface Schema$Publishing {
|
|
1370
|
+
/**
|
|
1371
|
+
* Used as a tracking tag when collecting data about the APIs developer relations artifacts like docs, packages delivered to package managers, etc. Example: "speech".
|
|
1372
|
+
*/
|
|
1373
|
+
apiShortName?: string | null;
|
|
1374
|
+
/**
|
|
1375
|
+
* GitHub teams to be added to CODEOWNERS in the directory in GitHub containing source code for the client libraries for this API.
|
|
1376
|
+
*/
|
|
1377
|
+
codeownerGithubTeams?: string[] | null;
|
|
1378
|
+
/**
|
|
1379
|
+
* A prefix used in sample code when demarking regions to be included in documentation.
|
|
1380
|
+
*/
|
|
1381
|
+
docTagPrefix?: string | null;
|
|
1382
|
+
/**
|
|
1383
|
+
* Link to product home page. Example: https://cloud.google.com/asset-inventory/docs/overview
|
|
1384
|
+
*/
|
|
1385
|
+
documentationUri?: string | null;
|
|
1386
|
+
/**
|
|
1387
|
+
* GitHub label to apply to issues and pull requests opened for this API.
|
|
1388
|
+
*/
|
|
1389
|
+
githubLabel?: string | null;
|
|
1390
|
+
/**
|
|
1391
|
+
* Client library settings. If the same version string appears multiple times in this list, then the last one wins. Settings from earlier settings with the same version string are discarded.
|
|
1392
|
+
*/
|
|
1393
|
+
librarySettings?: Schema$ClientLibrarySettings[];
|
|
1394
|
+
/**
|
|
1395
|
+
* A list of API method settings, e.g. the behavior for methods that use the long-running operation pattern.
|
|
1396
|
+
*/
|
|
1397
|
+
methodSettings?: Schema$MethodSettings[];
|
|
1398
|
+
/**
|
|
1399
|
+
* Link to a place that API users can report issues. Example: https://issuetracker.google.com/issues/new?component=190865&template=1161103
|
|
1400
|
+
*/
|
|
1401
|
+
newIssueUri?: string | null;
|
|
1402
|
+
/**
|
|
1403
|
+
* For whom the client library is being published.
|
|
1404
|
+
*/
|
|
1405
|
+
organization?: string | null;
|
|
1406
|
+
}
|
|
1407
|
+
/**
|
|
1408
|
+
* Settings for Python client libraries.
|
|
1409
|
+
*/
|
|
1410
|
+
export interface Schema$PythonSettings {
|
|
1411
|
+
/**
|
|
1412
|
+
* Some settings.
|
|
1413
|
+
*/
|
|
1414
|
+
common?: Schema$CommonLanguageSettings;
|
|
1415
|
+
}
|
|
1416
|
+
/**
|
|
1417
|
+
* Quota configuration helps to achieve fairness and budgeting in service usage. The metric based quota configuration works this way: - The service configuration defines a set of metrics. - For API calls, the quota.metric_rules maps methods to metrics with corresponding costs. - The quota.limits defines limits on the metrics, which will be used for quota checks at runtime. An example quota configuration in yaml format: quota: limits: - name: apiWriteQpsPerProject metric: library.googleapis.com/write_calls unit: "1/min/{project\}" # rate limit for consumer projects values: STANDARD: 10000 (The metric rules bind all methods to the read_calls metric, except for the UpdateBook and DeleteBook methods. These two methods are mapped to the write_calls metric, with the UpdateBook method consuming at twice rate as the DeleteBook method.) metric_rules: - selector: "*" metric_costs: library.googleapis.com/read_calls: 1 - selector: google.example.library.v1.LibraryService.UpdateBook metric_costs: library.googleapis.com/write_calls: 2 - selector: google.example.library.v1.LibraryService.DeleteBook metric_costs: library.googleapis.com/write_calls: 1 Corresponding Metric definition: metrics: - name: library.googleapis.com/read_calls display_name: Read requests metric_kind: DELTA value_type: INT64 - name: library.googleapis.com/write_calls display_name: Write requests metric_kind: DELTA value_type: INT64
|
|
1179
1418
|
*/
|
|
1180
1419
|
export interface Schema$Quota {
|
|
1181
1420
|
/**
|
|
1182
|
-
* List of
|
|
1421
|
+
* List of QuotaLimit definitions for the service.
|
|
1183
1422
|
*/
|
|
1184
1423
|
limits?: Schema$QuotaLimit[];
|
|
1185
1424
|
/**
|
|
1186
|
-
* List of
|
|
1425
|
+
* List of MetricRule definitions, each one mapping a selected method to one or more metrics.
|
|
1187
1426
|
*/
|
|
1188
1427
|
metricRules?: Schema$MetricRule[];
|
|
1189
1428
|
}
|
|
@@ -1288,6 +1527,15 @@ export declare namespace servicenetworking_v1beta {
|
|
|
1288
1527
|
*/
|
|
1289
1528
|
nextHopGateway?: string | null;
|
|
1290
1529
|
}
|
|
1530
|
+
/**
|
|
1531
|
+
* Settings for Ruby client libraries.
|
|
1532
|
+
*/
|
|
1533
|
+
export interface Schema$RubySettings {
|
|
1534
|
+
/**
|
|
1535
|
+
* Some settings.
|
|
1536
|
+
*/
|
|
1537
|
+
common?: Schema$CommonLanguageSettings;
|
|
1538
|
+
}
|
|
1291
1539
|
/**
|
|
1292
1540
|
* Request to search for an unused range within allocated ranges.
|
|
1293
1541
|
*/
|
|
@@ -1395,6 +1643,10 @@ export declare namespace servicenetworking_v1beta {
|
|
|
1395
1643
|
* The Google project that owns this service.
|
|
1396
1644
|
*/
|
|
1397
1645
|
producerProjectId?: string | null;
|
|
1646
|
+
/**
|
|
1647
|
+
* Settings for [Google Cloud Client libraries](https://cloud.google.com/apis/docs/cloud-client-libraries) generated from APIs defined as protocol buffers.
|
|
1648
|
+
*/
|
|
1649
|
+
publishing?: Schema$Publishing;
|
|
1398
1650
|
/**
|
|
1399
1651
|
* Quota configuration.
|
|
1400
1652
|
*/
|
package/build/v1beta.js
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
// See the License for the specific language governing permissions and
|
|
13
13
|
// limitations under the License.
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.servicenetworking_v1beta = void 0;
|
|
15
16
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
16
17
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
17
18
|
/* eslint-disable @typescript-eslint/no-empty-interface */
|
|
@@ -70,10 +71,10 @@ var servicenetworking_v1beta;
|
|
|
70
71
|
context: this.context,
|
|
71
72
|
};
|
|
72
73
|
if (callback) {
|
|
73
|
-
googleapis_common_1.createAPIRequest(parameters, callback);
|
|
74
|
+
(0, googleapis_common_1.createAPIRequest)(parameters, callback);
|
|
74
75
|
}
|
|
75
76
|
else {
|
|
76
|
-
return googleapis_common_1.createAPIRequest(parameters);
|
|
77
|
+
return (0, googleapis_common_1.createAPIRequest)(parameters);
|
|
77
78
|
}
|
|
78
79
|
}
|
|
79
80
|
}
|
|
@@ -108,10 +109,10 @@ var servicenetworking_v1beta;
|
|
|
108
109
|
context: this.context,
|
|
109
110
|
};
|
|
110
111
|
if (callback) {
|
|
111
|
-
googleapis_common_1.createAPIRequest(parameters, callback);
|
|
112
|
+
(0, googleapis_common_1.createAPIRequest)(parameters, callback);
|
|
112
113
|
}
|
|
113
114
|
else {
|
|
114
|
-
return googleapis_common_1.createAPIRequest(parameters);
|
|
115
|
+
return (0, googleapis_common_1.createAPIRequest)(parameters);
|
|
115
116
|
}
|
|
116
117
|
}
|
|
117
118
|
searchRange(paramsOrCallback, optionsOrCallback, callback) {
|
|
@@ -139,10 +140,10 @@ var servicenetworking_v1beta;
|
|
|
139
140
|
context: this.context,
|
|
140
141
|
};
|
|
141
142
|
if (callback) {
|
|
142
|
-
googleapis_common_1.createAPIRequest(parameters, callback);
|
|
143
|
+
(0, googleapis_common_1.createAPIRequest)(parameters, callback);
|
|
143
144
|
}
|
|
144
145
|
else {
|
|
145
|
-
return googleapis_common_1.createAPIRequest(parameters);
|
|
146
|
+
return (0, googleapis_common_1.createAPIRequest)(parameters);
|
|
146
147
|
}
|
|
147
148
|
}
|
|
148
149
|
updateConnections(paramsOrCallback, optionsOrCallback, callback) {
|
|
@@ -170,10 +171,10 @@ var servicenetworking_v1beta;
|
|
|
170
171
|
context: this.context,
|
|
171
172
|
};
|
|
172
173
|
if (callback) {
|
|
173
|
-
googleapis_common_1.createAPIRequest(parameters, callback);
|
|
174
|
+
(0, googleapis_common_1.createAPIRequest)(parameters, callback);
|
|
174
175
|
}
|
|
175
176
|
else {
|
|
176
|
-
return googleapis_common_1.createAPIRequest(parameters);
|
|
177
|
+
return (0, googleapis_common_1.createAPIRequest)(parameters);
|
|
177
178
|
}
|
|
178
179
|
}
|
|
179
180
|
}
|
|
@@ -207,10 +208,10 @@ var servicenetworking_v1beta;
|
|
|
207
208
|
context: this.context,
|
|
208
209
|
};
|
|
209
210
|
if (callback) {
|
|
210
|
-
googleapis_common_1.createAPIRequest(parameters, callback);
|
|
211
|
+
(0, googleapis_common_1.createAPIRequest)(parameters, callback);
|
|
211
212
|
}
|
|
212
213
|
else {
|
|
213
|
-
return googleapis_common_1.createAPIRequest(parameters);
|
|
214
|
+
return (0, googleapis_common_1.createAPIRequest)(parameters);
|
|
214
215
|
}
|
|
215
216
|
}
|
|
216
217
|
list(paramsOrCallback, optionsOrCallback, callback) {
|
|
@@ -238,10 +239,10 @@ var servicenetworking_v1beta;
|
|
|
238
239
|
context: this.context,
|
|
239
240
|
};
|
|
240
241
|
if (callback) {
|
|
241
|
-
googleapis_common_1.createAPIRequest(parameters, callback);
|
|
242
|
+
(0, googleapis_common_1.createAPIRequest)(parameters, callback);
|
|
242
243
|
}
|
|
243
244
|
else {
|
|
244
|
-
return googleapis_common_1.createAPIRequest(parameters);
|
|
245
|
+
return (0, googleapis_common_1.createAPIRequest)(parameters);
|
|
245
246
|
}
|
|
246
247
|
}
|
|
247
248
|
}
|
package/build/v1beta.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"v1beta.js","sourceRoot":"","sources":["../v1beta.ts"],"names":[],"mappings":";AAAA,4BAA4B;AAC5B,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,gDAAgD;AAChD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC
|
|
1
|
+
{"version":3,"file":"v1beta.js","sourceRoot":"","sources":["../v1beta.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@googleapis/servicenetworking",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.1.0",
|
|
4
4
|
"description": "servicenetworking",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"url": "https://github.com/googleapis/google-api-nodejs-client.git"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
|
-
"node": ">=
|
|
21
|
+
"node": ">=12.0.0"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
24
|
"fix": "gts fix",
|
|
@@ -28,16 +28,16 @@
|
|
|
28
28
|
"webpack": "webpack"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"googleapis-common": "^
|
|
31
|
+
"googleapis-common": "^6.0.3"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@microsoft/api-documenter": "^7.8.10",
|
|
35
35
|
"@microsoft/api-extractor": "^7.8.10",
|
|
36
|
-
"gts": "^
|
|
36
|
+
"gts": "^3.1.1",
|
|
37
37
|
"null-loader": "^4.0.0",
|
|
38
38
|
"ts-loader": "^9.0.0",
|
|
39
|
-
"typescript": "~
|
|
39
|
+
"typescript": "~4.8.4",
|
|
40
40
|
"webpack": "^5.0.0",
|
|
41
|
-
"webpack-cli": "^
|
|
41
|
+
"webpack-cli": "^5.0.0"
|
|
42
42
|
}
|
|
43
43
|
}
|