@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/v1.ts
CHANGED
|
@@ -211,6 +211,10 @@ export namespace servicenetworking_v1 {
|
|
|
211
211
|
* Request to create a subnetwork in a previously peered service network.
|
|
212
212
|
*/
|
|
213
213
|
export interface Schema$AddSubnetworkRequest {
|
|
214
|
+
/**
|
|
215
|
+
* Optional. Defines the allowSubnetCidrRoutesOverlap field of the subnet, e.g. Available in alpha and beta according to [Compute API documentation](https://cloud.google.com/compute/docs/reference/rest/beta/subnetworks/insert)
|
|
216
|
+
*/
|
|
217
|
+
allowSubnetCidrRoutesOverlap?: boolean | null;
|
|
214
218
|
/**
|
|
215
219
|
* Optional. The IAM permission check determines whether the consumer project has 'servicenetworking.services.use' permission or not.
|
|
216
220
|
*/
|
|
@@ -232,7 +236,7 @@ export namespace servicenetworking_v1 {
|
|
|
232
236
|
*/
|
|
233
237
|
description?: string | null;
|
|
234
238
|
/**
|
|
235
|
-
* Required. The prefix length of the subnet's IP address range. Use CIDR range notation, such as `
|
|
239
|
+
* Required. The prefix length of the subnet's IP address range. Use CIDR range notation, such as `29` to provision a subnet with an `x.x.x.x/29` CIDR range. The IP address range is drawn from a pool of available ranges in the service consumer's allocated range. GCE disallows subnets with prefix_length \> 29
|
|
236
240
|
*/
|
|
237
241
|
ipPrefixLength?: number | null;
|
|
238
242
|
/**
|
|
@@ -259,6 +263,10 @@ export namespace servicenetworking_v1 {
|
|
|
259
263
|
* Optional. The name of one or more allocated IP address ranges associated with this private service access connection. If no range names are provided all ranges associated with this connection will be considered. If a CIDR range with the specified IP prefix length is not available within these ranges, the call fails.
|
|
260
264
|
*/
|
|
261
265
|
requestedRanges?: string[] | null;
|
|
266
|
+
/**
|
|
267
|
+
* Optional. Defines the role field of the subnet, e.g. 'ACTIVE'. For information about the roles that can be set using this field, see [subnetwork](https://cloud.google.com/compute/docs/reference/rest/v1/subnetworks) in the Compute API documentation.
|
|
268
|
+
*/
|
|
269
|
+
role?: string | null;
|
|
262
270
|
/**
|
|
263
271
|
* Optional. A list of secondary IP ranges to be created within the new subnetwork.
|
|
264
272
|
*/
|
|
@@ -414,6 +422,10 @@ export namespace servicenetworking_v1 {
|
|
|
414
422
|
* 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.
|
|
415
423
|
*/
|
|
416
424
|
jwtAudience?: string | null;
|
|
425
|
+
/**
|
|
426
|
+
* Deprecated, do not use.
|
|
427
|
+
*/
|
|
428
|
+
minDeadline?: number | null;
|
|
417
429
|
/**
|
|
418
430
|
* The number of seconds to wait for the completion of a long running operation. The default is no deadline.
|
|
419
431
|
*/
|
|
@@ -454,6 +466,55 @@ export namespace servicenetworking_v1 {
|
|
|
454
466
|
* The request message for Operations.CancelOperation.
|
|
455
467
|
*/
|
|
456
468
|
export interface Schema$CancelOperationRequest {}
|
|
469
|
+
/**
|
|
470
|
+
* Details about how and where to publish client libraries.
|
|
471
|
+
*/
|
|
472
|
+
export interface Schema$ClientLibrarySettings {
|
|
473
|
+
/**
|
|
474
|
+
* Settings for C++ client libraries.
|
|
475
|
+
*/
|
|
476
|
+
cppSettings?: Schema$CppSettings;
|
|
477
|
+
/**
|
|
478
|
+
* Settings for .NET client libraries.
|
|
479
|
+
*/
|
|
480
|
+
dotnetSettings?: Schema$DotnetSettings;
|
|
481
|
+
/**
|
|
482
|
+
* Settings for Go client libraries.
|
|
483
|
+
*/
|
|
484
|
+
goSettings?: Schema$GoSettings;
|
|
485
|
+
/**
|
|
486
|
+
* Settings for legacy Java features, supported in the Service YAML.
|
|
487
|
+
*/
|
|
488
|
+
javaSettings?: Schema$JavaSettings;
|
|
489
|
+
/**
|
|
490
|
+
* Launch stage of this version of the API.
|
|
491
|
+
*/
|
|
492
|
+
launchStage?: string | null;
|
|
493
|
+
/**
|
|
494
|
+
* Settings for Node client libraries.
|
|
495
|
+
*/
|
|
496
|
+
nodeSettings?: Schema$NodeSettings;
|
|
497
|
+
/**
|
|
498
|
+
* Settings for PHP client libraries.
|
|
499
|
+
*/
|
|
500
|
+
phpSettings?: Schema$PhpSettings;
|
|
501
|
+
/**
|
|
502
|
+
* Settings for Python client libraries.
|
|
503
|
+
*/
|
|
504
|
+
pythonSettings?: Schema$PythonSettings;
|
|
505
|
+
/**
|
|
506
|
+
* When using transport=rest, the client request will encode enums as numbers rather than strings.
|
|
507
|
+
*/
|
|
508
|
+
restNumericEnums?: boolean | null;
|
|
509
|
+
/**
|
|
510
|
+
* Settings for Ruby client libraries.
|
|
511
|
+
*/
|
|
512
|
+
rubySettings?: Schema$RubySettings;
|
|
513
|
+
/**
|
|
514
|
+
* Version of the API to apply these settings to.
|
|
515
|
+
*/
|
|
516
|
+
version?: string | null;
|
|
517
|
+
}
|
|
457
518
|
/**
|
|
458
519
|
* Cloud SQL configuration.
|
|
459
520
|
*/
|
|
@@ -471,6 +532,19 @@ export namespace servicenetworking_v1 {
|
|
|
471
532
|
*/
|
|
472
533
|
umbrellaProject?: string | null;
|
|
473
534
|
}
|
|
535
|
+
/**
|
|
536
|
+
* Required information for every language.
|
|
537
|
+
*/
|
|
538
|
+
export interface Schema$CommonLanguageSettings {
|
|
539
|
+
/**
|
|
540
|
+
* The destination where API teams want this client library to be published.
|
|
541
|
+
*/
|
|
542
|
+
destinations?: string[] | null;
|
|
543
|
+
/**
|
|
544
|
+
* Link to automatically generated reference documentation. Example: https://cloud.google.com/nodejs/docs/reference/asset/latest
|
|
545
|
+
*/
|
|
546
|
+
referenceDocsUri?: string | null;
|
|
547
|
+
}
|
|
474
548
|
/**
|
|
475
549
|
* 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.
|
|
476
550
|
*/
|
|
@@ -597,7 +671,7 @@ export namespace servicenetworking_v1 {
|
|
|
597
671
|
selector?: string | null;
|
|
598
672
|
}
|
|
599
673
|
/**
|
|
600
|
-
* Selects and configures the service controller used by the service.
|
|
674
|
+
* Selects and configures the service controller used by the service. Example: control: environment: servicecontrol.googleapis.com
|
|
601
675
|
*/
|
|
602
676
|
export interface Schema$Control {
|
|
603
677
|
/**
|
|
@@ -605,6 +679,15 @@ export namespace servicenetworking_v1 {
|
|
|
605
679
|
*/
|
|
606
680
|
environment?: string | null;
|
|
607
681
|
}
|
|
682
|
+
/**
|
|
683
|
+
* Settings for C++ client libraries.
|
|
684
|
+
*/
|
|
685
|
+
export interface Schema$CppSettings {
|
|
686
|
+
/**
|
|
687
|
+
* Some settings.
|
|
688
|
+
*/
|
|
689
|
+
common?: Schema$CommonLanguageSettings;
|
|
690
|
+
}
|
|
608
691
|
/**
|
|
609
692
|
* 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
|
|
610
693
|
*/
|
|
@@ -750,6 +833,15 @@ export namespace servicenetworking_v1 {
|
|
|
750
833
|
*/
|
|
751
834
|
selector?: string | null;
|
|
752
835
|
}
|
|
836
|
+
/**
|
|
837
|
+
* Settings for Dotnet client libraries.
|
|
838
|
+
*/
|
|
839
|
+
export interface Schema$DotnetSettings {
|
|
840
|
+
/**
|
|
841
|
+
* Some settings.
|
|
842
|
+
*/
|
|
843
|
+
common?: Schema$CommonLanguageSettings;
|
|
844
|
+
}
|
|
753
845
|
/**
|
|
754
846
|
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \}
|
|
755
847
|
*/
|
|
@@ -767,6 +859,10 @@ export namespace servicenetworking_v1 {
|
|
|
767
859
|
* `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
|
|
768
860
|
*/
|
|
769
861
|
export interface Schema$Endpoint {
|
|
862
|
+
/**
|
|
863
|
+
* 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.
|
|
864
|
+
*/
|
|
865
|
+
aliases?: string[] | null;
|
|
770
866
|
/**
|
|
771
867
|
* 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.
|
|
772
868
|
*/
|
|
@@ -926,6 +1022,15 @@ export namespace servicenetworking_v1 {
|
|
|
926
1022
|
*/
|
|
927
1023
|
name?: string | null;
|
|
928
1024
|
}
|
|
1025
|
+
/**
|
|
1026
|
+
* Settings for Go client libraries.
|
|
1027
|
+
*/
|
|
1028
|
+
export interface Schema$GoSettings {
|
|
1029
|
+
/**
|
|
1030
|
+
* Some settings.
|
|
1031
|
+
*/
|
|
1032
|
+
common?: Schema$CommonLanguageSettings;
|
|
1033
|
+
}
|
|
929
1034
|
/**
|
|
930
1035
|
* 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.
|
|
931
1036
|
*/
|
|
@@ -984,6 +1089,23 @@ export namespace servicenetworking_v1 {
|
|
|
984
1089
|
*/
|
|
985
1090
|
selector?: string | null;
|
|
986
1091
|
}
|
|
1092
|
+
/**
|
|
1093
|
+
* Settings for Java client libraries.
|
|
1094
|
+
*/
|
|
1095
|
+
export interface Schema$JavaSettings {
|
|
1096
|
+
/**
|
|
1097
|
+
* Some settings.
|
|
1098
|
+
*/
|
|
1099
|
+
common?: Schema$CommonLanguageSettings;
|
|
1100
|
+
/**
|
|
1101
|
+
* 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
|
|
1102
|
+
*/
|
|
1103
|
+
libraryPackage?: string | null;
|
|
1104
|
+
/**
|
|
1105
|
+
* 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
|
|
1106
|
+
*/
|
|
1107
|
+
serviceClassNames?: {[key: string]: string} | null;
|
|
1108
|
+
}
|
|
987
1109
|
/**
|
|
988
1110
|
* Specifies a location to extract JWT from an API request.
|
|
989
1111
|
*/
|
|
@@ -1100,6 +1222,27 @@ export namespace servicenetworking_v1 {
|
|
|
1100
1222
|
*/
|
|
1101
1223
|
monitoredResource?: string | null;
|
|
1102
1224
|
}
|
|
1225
|
+
/**
|
|
1226
|
+
* 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)).
|
|
1227
|
+
*/
|
|
1228
|
+
export interface Schema$LongRunning {
|
|
1229
|
+
/**
|
|
1230
|
+
* Initial delay after which the first poll request will be made. Default value: 5 seconds.
|
|
1231
|
+
*/
|
|
1232
|
+
initialPollDelay?: string | null;
|
|
1233
|
+
/**
|
|
1234
|
+
* Maximum time between two subsequent poll requests. Default value: 45 seconds.
|
|
1235
|
+
*/
|
|
1236
|
+
maxPollDelay?: string | null;
|
|
1237
|
+
/**
|
|
1238
|
+
* Multiplier to gradually increase delay between subsequent polls until it reaches max_poll_delay. Default value: 1.5.
|
|
1239
|
+
*/
|
|
1240
|
+
pollDelayMultiplier?: number | null;
|
|
1241
|
+
/**
|
|
1242
|
+
* Total polling timeout. Default value: 5 minutes.
|
|
1243
|
+
*/
|
|
1244
|
+
totalPollTimeout?: string | null;
|
|
1245
|
+
}
|
|
1103
1246
|
/**
|
|
1104
1247
|
* Method represents a method of an API interface.
|
|
1105
1248
|
*/
|
|
@@ -1133,6 +1276,19 @@ export namespace servicenetworking_v1 {
|
|
|
1133
1276
|
*/
|
|
1134
1277
|
syntax?: string | null;
|
|
1135
1278
|
}
|
|
1279
|
+
/**
|
|
1280
|
+
* Describes the generator configuration for a method.
|
|
1281
|
+
*/
|
|
1282
|
+
export interface Schema$MethodSettings {
|
|
1283
|
+
/**
|
|
1284
|
+
* 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
|
|
1285
|
+
*/
|
|
1286
|
+
longRunning?: Schema$LongRunning;
|
|
1287
|
+
/**
|
|
1288
|
+
* The fully qualified name of the method, for which the options below apply. This is used to find the method to apply the options.
|
|
1289
|
+
*/
|
|
1290
|
+
selector?: string | null;
|
|
1291
|
+
}
|
|
1136
1292
|
/**
|
|
1137
1293
|
* 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.
|
|
1138
1294
|
*/
|
|
@@ -1280,6 +1436,15 @@ export namespace servicenetworking_v1 {
|
|
|
1280
1436
|
*/
|
|
1281
1437
|
monitoredResource?: string | null;
|
|
1282
1438
|
}
|
|
1439
|
+
/**
|
|
1440
|
+
* Settings for Node client libraries.
|
|
1441
|
+
*/
|
|
1442
|
+
export interface Schema$NodeSettings {
|
|
1443
|
+
/**
|
|
1444
|
+
* Some settings.
|
|
1445
|
+
*/
|
|
1446
|
+
common?: Schema$CommonLanguageSettings;
|
|
1447
|
+
}
|
|
1283
1448
|
/**
|
|
1284
1449
|
* 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.
|
|
1285
1450
|
*/
|
|
@@ -1365,6 +1530,15 @@ export namespace servicenetworking_v1 {
|
|
|
1365
1530
|
* Metadata provided through GetOperation request for the LRO generated by CreatePeeredDnsDomain API.
|
|
1366
1531
|
*/
|
|
1367
1532
|
export interface Schema$PeeredDnsDomainMetadata {}
|
|
1533
|
+
/**
|
|
1534
|
+
* Settings for Php client libraries.
|
|
1535
|
+
*/
|
|
1536
|
+
export interface Schema$PhpSettings {
|
|
1537
|
+
/**
|
|
1538
|
+
* Some settings.
|
|
1539
|
+
*/
|
|
1540
|
+
common?: Schema$CommonLanguageSettings;
|
|
1541
|
+
}
|
|
1368
1542
|
/**
|
|
1369
1543
|
* Grouping of IAM role and IAM member.
|
|
1370
1544
|
*/
|
|
@@ -1378,6 +1552,56 @@ export namespace servicenetworking_v1 {
|
|
|
1378
1552
|
*/
|
|
1379
1553
|
role?: string | null;
|
|
1380
1554
|
}
|
|
1555
|
+
/**
|
|
1556
|
+
* 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.
|
|
1557
|
+
*/
|
|
1558
|
+
export interface Schema$Publishing {
|
|
1559
|
+
/**
|
|
1560
|
+
* Used as a tracking tag when collecting data about the APIs developer relations artifacts like docs, packages delivered to package managers, etc. Example: "speech".
|
|
1561
|
+
*/
|
|
1562
|
+
apiShortName?: string | null;
|
|
1563
|
+
/**
|
|
1564
|
+
* GitHub teams to be added to CODEOWNERS in the directory in GitHub containing source code for the client libraries for this API.
|
|
1565
|
+
*/
|
|
1566
|
+
codeownerGithubTeams?: string[] | null;
|
|
1567
|
+
/**
|
|
1568
|
+
* A prefix used in sample code when demarking regions to be included in documentation.
|
|
1569
|
+
*/
|
|
1570
|
+
docTagPrefix?: string | null;
|
|
1571
|
+
/**
|
|
1572
|
+
* Link to product home page. Example: https://cloud.google.com/asset-inventory/docs/overview
|
|
1573
|
+
*/
|
|
1574
|
+
documentationUri?: string | null;
|
|
1575
|
+
/**
|
|
1576
|
+
* GitHub label to apply to issues and pull requests opened for this API.
|
|
1577
|
+
*/
|
|
1578
|
+
githubLabel?: string | null;
|
|
1579
|
+
/**
|
|
1580
|
+
* 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.
|
|
1581
|
+
*/
|
|
1582
|
+
librarySettings?: Schema$ClientLibrarySettings[];
|
|
1583
|
+
/**
|
|
1584
|
+
* A list of API method settings, e.g. the behavior for methods that use the long-running operation pattern.
|
|
1585
|
+
*/
|
|
1586
|
+
methodSettings?: Schema$MethodSettings[];
|
|
1587
|
+
/**
|
|
1588
|
+
* Link to a place that API users can report issues. Example: https://issuetracker.google.com/issues/new?component=190865&template=1161103
|
|
1589
|
+
*/
|
|
1590
|
+
newIssueUri?: string | null;
|
|
1591
|
+
/**
|
|
1592
|
+
* For whom the client library is being published.
|
|
1593
|
+
*/
|
|
1594
|
+
organization?: string | null;
|
|
1595
|
+
}
|
|
1596
|
+
/**
|
|
1597
|
+
* Settings for Python client libraries.
|
|
1598
|
+
*/
|
|
1599
|
+
export interface Schema$PythonSettings {
|
|
1600
|
+
/**
|
|
1601
|
+
* Some settings.
|
|
1602
|
+
*/
|
|
1603
|
+
common?: Schema$CommonLanguageSettings;
|
|
1604
|
+
}
|
|
1381
1605
|
/**
|
|
1382
1606
|
* 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
|
|
1383
1607
|
*/
|
|
@@ -1454,7 +1678,7 @@ export namespace servicenetworking_v1 {
|
|
|
1454
1678
|
*/
|
|
1455
1679
|
export interface Schema$RangeReservation {
|
|
1456
1680
|
/**
|
|
1457
|
-
* Required. The size of the desired subnet. Use usual CIDR range notation. For example, '
|
|
1681
|
+
* Required. The size of the desired subnet. Use usual CIDR range notation. For example, '29' to find unused x.x.x.x/29 CIDR range. The goal is to determine if one of the allocated ranges has enough free space for a subnet of the requested size. GCE disallows subnets with prefix_length \> 29
|
|
1458
1682
|
*/
|
|
1459
1683
|
ipPrefixLength?: number | null;
|
|
1460
1684
|
/**
|
|
@@ -1462,7 +1686,7 @@ export namespace servicenetworking_v1 {
|
|
|
1462
1686
|
*/
|
|
1463
1687
|
requestedRanges?: string[] | null;
|
|
1464
1688
|
/**
|
|
1465
|
-
* Optional. The size of the desired secondary ranges for the subnet. Use usual CIDR range notation. For example, '
|
|
1689
|
+
* Optional. The size of the desired secondary ranges for the subnet. Use usual CIDR range notation. For example, '29' to find unused x.x.x.x/29 CIDR range. The goal is to determine that the allocated ranges have enough free space for all the requested secondary ranges. GCE disallows subnets with prefix_length \> 29
|
|
1466
1690
|
*/
|
|
1467
1691
|
secondaryRangeIpPrefixLengths?: number[] | null;
|
|
1468
1692
|
/**
|
|
@@ -1537,6 +1761,15 @@ export namespace servicenetworking_v1 {
|
|
|
1537
1761
|
*/
|
|
1538
1762
|
nextHopGateway?: string | null;
|
|
1539
1763
|
}
|
|
1764
|
+
/**
|
|
1765
|
+
* Settings for Ruby client libraries.
|
|
1766
|
+
*/
|
|
1767
|
+
export interface Schema$RubySettings {
|
|
1768
|
+
/**
|
|
1769
|
+
* Some settings.
|
|
1770
|
+
*/
|
|
1771
|
+
common?: Schema$CommonLanguageSettings;
|
|
1772
|
+
}
|
|
1540
1773
|
/**
|
|
1541
1774
|
* Request to search for an unused range within allocated ranges.
|
|
1542
1775
|
*/
|
|
@@ -1662,6 +1895,10 @@ export namespace servicenetworking_v1 {
|
|
|
1662
1895
|
* The Google project that owns this service.
|
|
1663
1896
|
*/
|
|
1664
1897
|
producerProjectId?: string | null;
|
|
1898
|
+
/**
|
|
1899
|
+
* Settings for [Google Cloud Client libraries](https://cloud.google.com/apis/docs/cloud-client-libraries) generated from APIs defined as protocol buffers.
|
|
1900
|
+
*/
|
|
1901
|
+
publishing?: Schema$Publishing;
|
|
1665
1902
|
/**
|
|
1666
1903
|
* Quota configuration.
|
|
1667
1904
|
*/
|
|
@@ -2568,6 +2805,7 @@ export namespace servicenetworking_v1 {
|
|
|
2568
2805
|
* requestBody: {
|
|
2569
2806
|
* // request body parameters
|
|
2570
2807
|
* // {
|
|
2808
|
+
* // "allowSubnetCidrRoutesOverlap": false,
|
|
2571
2809
|
* // "checkServiceNetworkingUsePermission": false,
|
|
2572
2810
|
* // "computeIdempotencyWindow": "my_computeIdempotencyWindow",
|
|
2573
2811
|
* // "consumer": "my_consumer",
|
|
@@ -2580,6 +2818,7 @@ export namespace servicenetworking_v1 {
|
|
|
2580
2818
|
* // "region": "my_region",
|
|
2581
2819
|
* // "requestedAddress": "my_requestedAddress",
|
|
2582
2820
|
* // "requestedRanges": [],
|
|
2821
|
+
* // "role": "my_role",
|
|
2583
2822
|
* // "secondaryIpRangeSpecs": [],
|
|
2584
2823
|
* // "subnetwork": "my_subnetwork",
|
|
2585
2824
|
* // "subnetworkUsers": [],
|