@googleapis/servicenetworking 8.0.0 → 8.2.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 +14 -0
- package/build/v1.d.ts +245 -4
- package/build/v1.js.map +1 -1
- package/build/v1beta.d.ts +232 -1
- package/build/v1beta.js.map +1 -1
- package/package.json +2 -2
- package/v1.ts +243 -4
- package/v1beta.ts +230 -1
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,55 @@ 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
|
+
}
|
|
323
376
|
/**
|
|
324
377
|
* Cloud SQL configuration.
|
|
325
378
|
*/
|
|
@@ -337,6 +390,19 @@ export declare namespace servicenetworking_v1beta {
|
|
|
337
390
|
*/
|
|
338
391
|
umbrellaProject?: string | null;
|
|
339
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
|
+
}
|
|
340
406
|
/**
|
|
341
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.
|
|
342
408
|
*/
|
|
@@ -455,7 +521,7 @@ export declare namespace servicenetworking_v1beta {
|
|
|
455
521
|
selector?: string | null;
|
|
456
522
|
}
|
|
457
523
|
/**
|
|
458
|
-
* 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
|
|
459
525
|
*/
|
|
460
526
|
export interface Schema$Control {
|
|
461
527
|
/**
|
|
@@ -463,6 +529,15 @@ export declare namespace servicenetworking_v1beta {
|
|
|
463
529
|
*/
|
|
464
530
|
environment?: string | null;
|
|
465
531
|
}
|
|
532
|
+
/**
|
|
533
|
+
* Settings for C++ client libraries.
|
|
534
|
+
*/
|
|
535
|
+
export interface Schema$CppSettings {
|
|
536
|
+
/**
|
|
537
|
+
* Some settings.
|
|
538
|
+
*/
|
|
539
|
+
common?: Schema$CommonLanguageSettings;
|
|
540
|
+
}
|
|
466
541
|
/**
|
|
467
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
|
|
468
543
|
*/
|
|
@@ -592,10 +667,23 @@ export declare namespace servicenetworking_v1beta {
|
|
|
592
667
|
*/
|
|
593
668
|
selector?: string | null;
|
|
594
669
|
}
|
|
670
|
+
/**
|
|
671
|
+
* Settings for Dotnet client libraries.
|
|
672
|
+
*/
|
|
673
|
+
export interface Schema$DotnetSettings {
|
|
674
|
+
/**
|
|
675
|
+
* Some settings.
|
|
676
|
+
*/
|
|
677
|
+
common?: Schema$CommonLanguageSettings;
|
|
678
|
+
}
|
|
595
679
|
/**
|
|
596
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
|
|
597
681
|
*/
|
|
598
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;
|
|
599
687
|
/**
|
|
600
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.
|
|
601
689
|
*/
|
|
@@ -755,6 +843,15 @@ export declare namespace servicenetworking_v1beta {
|
|
|
755
843
|
*/
|
|
756
844
|
name?: string | null;
|
|
757
845
|
}
|
|
846
|
+
/**
|
|
847
|
+
* Settings for Go client libraries.
|
|
848
|
+
*/
|
|
849
|
+
export interface Schema$GoSettings {
|
|
850
|
+
/**
|
|
851
|
+
* Some settings.
|
|
852
|
+
*/
|
|
853
|
+
common?: Schema$CommonLanguageSettings;
|
|
854
|
+
}
|
|
758
855
|
/**
|
|
759
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.
|
|
760
857
|
*/
|
|
@@ -813,6 +910,25 @@ export declare namespace servicenetworking_v1beta {
|
|
|
813
910
|
*/
|
|
814
911
|
selector?: string | null;
|
|
815
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
|
+
}
|
|
816
932
|
/**
|
|
817
933
|
* Specifies a location to extract JWT from an API request.
|
|
818
934
|
*/
|
|
@@ -907,6 +1023,27 @@ export declare namespace servicenetworking_v1beta {
|
|
|
907
1023
|
*/
|
|
908
1024
|
monitoredResource?: string | null;
|
|
909
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
|
+
}
|
|
910
1047
|
/**
|
|
911
1048
|
* Method represents a method of an API interface.
|
|
912
1049
|
*/
|
|
@@ -940,6 +1077,19 @@ export declare namespace servicenetworking_v1beta {
|
|
|
940
1077
|
*/
|
|
941
1078
|
syntax?: string | null;
|
|
942
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
|
+
}
|
|
943
1093
|
/**
|
|
944
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.
|
|
945
1095
|
*/
|
|
@@ -1089,6 +1239,15 @@ export declare namespace servicenetworking_v1beta {
|
|
|
1089
1239
|
*/
|
|
1090
1240
|
monitoredResource?: string | null;
|
|
1091
1241
|
}
|
|
1242
|
+
/**
|
|
1243
|
+
* Settings for Node client libraries.
|
|
1244
|
+
*/
|
|
1245
|
+
export interface Schema$NodeSettings {
|
|
1246
|
+
/**
|
|
1247
|
+
* Some settings.
|
|
1248
|
+
*/
|
|
1249
|
+
common?: Schema$CommonLanguageSettings;
|
|
1250
|
+
}
|
|
1092
1251
|
/**
|
|
1093
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.
|
|
1094
1253
|
*/
|
|
@@ -1182,6 +1341,15 @@ export declare namespace servicenetworking_v1beta {
|
|
|
1182
1341
|
*/
|
|
1183
1342
|
export interface Schema$PeeredDnsDomainMetadata {
|
|
1184
1343
|
}
|
|
1344
|
+
/**
|
|
1345
|
+
* Settings for Php client libraries.
|
|
1346
|
+
*/
|
|
1347
|
+
export interface Schema$PhpSettings {
|
|
1348
|
+
/**
|
|
1349
|
+
* Some settings.
|
|
1350
|
+
*/
|
|
1351
|
+
common?: Schema$CommonLanguageSettings;
|
|
1352
|
+
}
|
|
1185
1353
|
/**
|
|
1186
1354
|
* Grouping of IAM role and IAM member.
|
|
1187
1355
|
*/
|
|
@@ -1195,6 +1363,56 @@ export declare namespace servicenetworking_v1beta {
|
|
|
1195
1363
|
*/
|
|
1196
1364
|
role?: string | null;
|
|
1197
1365
|
}
|
|
1366
|
+
/**
|
|
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
|
+
}
|
|
1198
1416
|
/**
|
|
1199
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
|
|
1200
1418
|
*/
|
|
@@ -1309,6 +1527,15 @@ export declare namespace servicenetworking_v1beta {
|
|
|
1309
1527
|
*/
|
|
1310
1528
|
nextHopGateway?: string | null;
|
|
1311
1529
|
}
|
|
1530
|
+
/**
|
|
1531
|
+
* Settings for Ruby client libraries.
|
|
1532
|
+
*/
|
|
1533
|
+
export interface Schema$RubySettings {
|
|
1534
|
+
/**
|
|
1535
|
+
* Some settings.
|
|
1536
|
+
*/
|
|
1537
|
+
common?: Schema$CommonLanguageSettings;
|
|
1538
|
+
}
|
|
1312
1539
|
/**
|
|
1313
1540
|
* Request to search for an unused range within allocated ranges.
|
|
1314
1541
|
*/
|
|
@@ -1416,6 +1643,10 @@ export declare namespace servicenetworking_v1beta {
|
|
|
1416
1643
|
* The Google project that owns this service.
|
|
1417
1644
|
*/
|
|
1418
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;
|
|
1419
1650
|
/**
|
|
1420
1651
|
* Quota configuration.
|
|
1421
1652
|
*/
|
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;;;AAEjC,uDAAuD;AACvD,sDAAsD;AACtD,0DAA0D;AAC1D,oDAAoD;AACpD,4CAA4C;AAE5C,yDAe2B;AAG3B,IAAiB,wBAAwB,
|
|
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": "8.
|
|
3
|
+
"version": "8.2.0",
|
|
4
4
|
"description": "servicenetworking",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -38,6 +38,6 @@
|
|
|
38
38
|
"ts-loader": "^9.0.0",
|
|
39
39
|
"typescript": "~4.8.4",
|
|
40
40
|
"webpack": "^5.0.0",
|
|
41
|
-
"webpack-cli": "^
|
|
41
|
+
"webpack-cli": "^5.0.0"
|
|
42
42
|
}
|
|
43
43
|
}
|