@googleapis/servicenetworking 0.2.0 → 4.3.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 +121 -0
- package/README.md +4 -23
- package/build/v1.d.ts +182 -68
- package/build/v1.js +41 -5
- package/build/v1.js.map +1 -1
- package/build/v1beta.d.ts +20 -23
- package/build/v1beta.js.map +1 -1
- package/package.json +2 -2
- package/v1.ts +266 -75
- package/v1beta.ts +19 -23
package/v1beta.ts
CHANGED
|
@@ -232,7 +232,7 @@ export namespace servicenetworking_v1beta {
|
|
|
232
232
|
version?: string | null;
|
|
233
233
|
}
|
|
234
234
|
/**
|
|
235
|
-
* `Authentication` defines the authentication configuration for
|
|
235
|
+
* `Authentication` defines the authentication configuration for API methods provided by an API service. Example: name: calendar.googleapis.com authentication: providers: - id: google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: - selector: "*" requirements: provider_id: google_calendar_auth - selector: google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/auth/calendar.read
|
|
236
236
|
*/
|
|
237
237
|
export interface Schema$Authentication {
|
|
238
238
|
/**
|
|
@@ -336,10 +336,6 @@ export namespace servicenetworking_v1beta {
|
|
|
336
336
|
* 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.
|
|
337
337
|
*/
|
|
338
338
|
jwtAudience?: string | null;
|
|
339
|
-
/**
|
|
340
|
-
* Minimum deadline in seconds needed for this method. Calls having deadline value lower than this will be rejected.
|
|
341
|
-
*/
|
|
342
|
-
minDeadline?: number | null;
|
|
343
339
|
/**
|
|
344
340
|
* The number of seconds to wait for the completion of a long running operation. The default is no deadline.
|
|
345
341
|
*/
|
|
@@ -485,11 +481,11 @@ export namespace servicenetworking_v1beta {
|
|
|
485
481
|
selector?: string | null;
|
|
486
482
|
}
|
|
487
483
|
/**
|
|
488
|
-
* Selects and configures the service controller used by the service. The service controller handles
|
|
484
|
+
* Selects and configures the service controller used by the service. The service controller handles two things: - **What is allowed:** for each API request, Chemist checks the project status, activation status, abuse status, billing status, service status, location restrictions, VPC Service Controls, SuperQuota, and other policies. - **What has happened:** for each API response, Chemist reports the telemetry data to analytics, auditing, billing, eventing, logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data not associated with API traffic, such as billing metrics. Example: control: environment: servicecontrol.googleapis.com
|
|
489
485
|
*/
|
|
490
486
|
export interface Schema$Control {
|
|
491
487
|
/**
|
|
492
|
-
* The service
|
|
488
|
+
* The service controller environment to use. If empty, no control plane feature (like quota and billing) will be enabled. The recommended value for most services is servicecontrol.googleapis.com
|
|
493
489
|
*/
|
|
494
490
|
environment?: string | null;
|
|
495
491
|
}
|
|
@@ -599,7 +595,7 @@ export namespace servicenetworking_v1beta {
|
|
|
599
595
|
*/
|
|
600
596
|
serviceRootUrl?: string | null;
|
|
601
597
|
/**
|
|
602
|
-
* A short
|
|
598
|
+
* A short description of what the service does. The summary must be plain text. It becomes the overview of the service displayed in Google Cloud Console. NOTE: This field is equivalent to the standard field `description`.
|
|
603
599
|
*/
|
|
604
600
|
summary?: string | null;
|
|
605
601
|
}
|
|
@@ -612,22 +608,18 @@ export namespace servicenetworking_v1beta {
|
|
|
612
608
|
*/
|
|
613
609
|
deprecationDescription?: string | null;
|
|
614
610
|
/**
|
|
615
|
-
* Description of the selected
|
|
611
|
+
* Description of the selected proto element (e.g. a message, a method, a 'service' definition, or a field). Defaults to leading & trailing comments taken from the proto source definition of the proto element.
|
|
616
612
|
*/
|
|
617
613
|
description?: string | null;
|
|
618
614
|
/**
|
|
619
|
-
* The selector is a comma-separated list of patterns. Each pattern is a qualified name of the element which may end in "*", indicating a wildcard. Wildcards are only allowed at the end and for a whole component of the qualified name, i.e. "foo.*" is ok, but not "foo.b*" or "foo.*.bar". A wildcard will match one or more components. To specify a default for all applicable elements, the whole pattern "*" is used.
|
|
615
|
+
* The selector is a comma-separated list of patterns for any element such as a method, a field, an enum value. Each pattern is a qualified name of the element which may end in "*", indicating a wildcard. Wildcards are only allowed at the end and for a whole component of the qualified name, i.e. "foo.*" is ok, but not "foo.b*" or "foo.*.bar". A wildcard will match one or more components. To specify a default for all applicable elements, the whole pattern "*" is used.
|
|
620
616
|
*/
|
|
621
617
|
selector?: string | null;
|
|
622
618
|
}
|
|
623
619
|
/**
|
|
624
|
-
* `Endpoint` describes a network
|
|
620
|
+
* `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
|
|
625
621
|
*/
|
|
626
622
|
export interface Schema$Endpoint {
|
|
627
|
-
/**
|
|
628
|
-
* 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.
|
|
629
|
-
*/
|
|
630
|
-
aliases?: string[] | null;
|
|
631
623
|
/**
|
|
632
624
|
* 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.
|
|
633
625
|
*/
|
|
@@ -1085,7 +1077,7 @@ export namespace servicenetworking_v1beta {
|
|
|
1085
1077
|
*/
|
|
1086
1078
|
name?: string | null;
|
|
1087
1079
|
/**
|
|
1088
|
-
* Required. The monitored resource type. For example, the type `"cloudsql_database"` represents databases in Google Cloud SQL.
|
|
1080
|
+
* Required. The monitored resource type. For example, the type `"cloudsql_database"` represents databases in Google Cloud SQL. For a list of types, see [Monitoring resource types](https://cloud.google.com/monitoring/api/resources) and [Logging resource types](https://cloud.google.com/logging/docs/api/v2/resource-list).
|
|
1089
1081
|
*/
|
|
1090
1082
|
type?: string | null;
|
|
1091
1083
|
}
|
|
@@ -1167,7 +1159,7 @@ export namespace servicenetworking_v1beta {
|
|
|
1167
1159
|
*/
|
|
1168
1160
|
export interface Schema$Page {
|
|
1169
1161
|
/**
|
|
1170
|
-
* The Markdown content of the page. You can use (== include {path\} ==) to include content from a Markdown file.
|
|
1162
|
+
* The Markdown content of the page. You can use (== include {path\} ==) to include content from a Markdown file. The content can be used to produce the documentation page such as HTML format page.
|
|
1171
1163
|
*/
|
|
1172
1164
|
content?: string | null;
|
|
1173
1165
|
/**
|
|
@@ -1179,12 +1171,16 @@ export namespace servicenetworking_v1beta {
|
|
|
1179
1171
|
*/
|
|
1180
1172
|
subpages?: Schema$Page[];
|
|
1181
1173
|
}
|
|
1174
|
+
/**
|
|
1175
|
+
* Metadata provided through GetOperation request for the LRO generated by Partial Delete Connection API
|
|
1176
|
+
*/
|
|
1177
|
+
export interface Schema$PartialDeleteConnectionMetadata {}
|
|
1182
1178
|
/**
|
|
1183
1179
|
* DNS domain suffix for which requests originating in the producer VPC network are resolved in the associated consumer VPC network.
|
|
1184
1180
|
*/
|
|
1185
1181
|
export interface Schema$PeeredDnsDomain {
|
|
1186
1182
|
/**
|
|
1187
|
-
* The DNS domain name suffix e.g. `example.com.`.
|
|
1183
|
+
* The DNS domain name suffix e.g. `example.com.`. Cloud DNS requires that a DNS suffix ends with a trailing dot.
|
|
1188
1184
|
*/
|
|
1189
1185
|
dnsSuffix?: string | null;
|
|
1190
1186
|
/**
|
|
@@ -1341,7 +1337,7 @@ export namespace servicenetworking_v1beta {
|
|
|
1341
1337
|
rangeName?: string | null;
|
|
1342
1338
|
}
|
|
1343
1339
|
/**
|
|
1344
|
-
* `Service` is the root object of Google service configuration
|
|
1340
|
+
* `Service` is the root object of Google API service configuration (service config). It describes the basic information about a logical service, such as the service name and the user-facing title, and delegates other aspects to sub-sections. Each sub-section is either a proto message or a repeated proto message that configures a specific aspect, such as auth. For more information, see each proto message definition. Example: type: google.api.Service name: calendar.googleapis.com title: Google Calendar API apis: - name: google.calendar.v3.Calendar visibility: rules: - selector: "google.calendar.v3.*" restriction: PREVIEW backend: rules: - selector: "google.calendar.v3.*" address: calendar.example.com authentication: providers: - id: google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: - selector: "*" requirements: provider_id: google_calendar_auth
|
|
1345
1341
|
*/
|
|
1346
1342
|
export interface Schema$Service {
|
|
1347
1343
|
/**
|
|
@@ -1361,7 +1357,7 @@ export namespace servicenetworking_v1beta {
|
|
|
1361
1357
|
*/
|
|
1362
1358
|
billing?: Schema$Billing;
|
|
1363
1359
|
/**
|
|
1364
|
-
*
|
|
1360
|
+
* Obsolete. Do not use. This field has no semantic meaning. The service config compiler always sets this field to `3`.
|
|
1365
1361
|
*/
|
|
1366
1362
|
configVersion?: number | null;
|
|
1367
1363
|
/**
|
|
@@ -1385,7 +1381,7 @@ export namespace servicenetworking_v1beta {
|
|
|
1385
1381
|
*/
|
|
1386
1382
|
endpoints?: Schema$Endpoint[];
|
|
1387
1383
|
/**
|
|
1388
|
-
* A list of all enum types included in this API service. Enums referenced directly or indirectly by the `apis` are automatically included. Enums which are not referenced but shall be included should be listed here by name. Example: enums: - name: google.someapi.v1.SomeEnum
|
|
1384
|
+
* A list of all enum types included in this API service. Enums referenced directly or indirectly by the `apis` are automatically included. Enums which are not referenced but shall be included should be listed here by name by the configuration author. Example: enums: - name: google.someapi.v1.SomeEnum
|
|
1389
1385
|
*/
|
|
1390
1386
|
enums?: Schema$Enum[];
|
|
1391
1387
|
/**
|
|
@@ -1441,11 +1437,11 @@ export namespace servicenetworking_v1beta {
|
|
|
1441
1437
|
*/
|
|
1442
1438
|
systemTypes?: Schema$Type[];
|
|
1443
1439
|
/**
|
|
1444
|
-
* The product title for this service.
|
|
1440
|
+
* The product title for this service, it is the name displayed in Google Cloud Console.
|
|
1445
1441
|
*/
|
|
1446
1442
|
title?: string | null;
|
|
1447
1443
|
/**
|
|
1448
|
-
* A list of all proto message types included in this API service. Types referenced directly or indirectly by the `apis` are automatically included. Messages which are not referenced but shall be included, such as types used by the `google.protobuf.Any` type, should be listed here by name. Example: types: - name: google.protobuf.Int32
|
|
1444
|
+
* A list of all proto message types included in this API service. Types referenced directly or indirectly by the `apis` are automatically included. Messages which are not referenced but shall be included, such as types used by the `google.protobuf.Any` type, should be listed here by name by the configuration author. Example: types: - name: google.protobuf.Int32
|
|
1449
1445
|
*/
|
|
1450
1446
|
types?: Schema$Type[];
|
|
1451
1447
|
/**
|