You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#### servicenetworking:v1beta
The following keys were added:
- schemas.Documentation.properties.additionalIamInfo.description
- schemas.Documentation.properties.additionalIamInfo.type
- schemas.ExperimentalFeatures.properties.protobufPythonicTypesEnabled.description
- schemas.ExperimentalFeatures.properties.protobufPythonicTypesEnabled.type
- schemas.GoSettings.properties.renamedServices.additionalProperties.type
- schemas.GoSettings.properties.renamedServices.description
- schemas.GoSettings.properties.renamedServices.type
The following keys were changed:
- schemas.QuotaLimit.properties.unit.description
#### servicenetworking:v1
The following keys were added:
- schemas.Documentation.properties.additionalIamInfo.description
- schemas.Documentation.properties.additionalIamInfo.type
- schemas.ExperimentalFeatures.properties.protobufPythonicTypesEnabled.description
- schemas.ExperimentalFeatures.properties.protobufPythonicTypesEnabled.type
- schemas.GoSettings.properties.renamedServices.additionalProperties.type
- schemas.GoSettings.properties.renamedServices.description
- schemas.GoSettings.properties.renamedServices.type
The following keys were changed:
- resources.operations.methods.cancel.description
- resources.services.resources.projects.resources.global.resources.networks.resources.dnsZones.methods.get.parameters.name.description
- schemas.QuotaLimit.properties.unit.description
Copy file name to clipboardExpand all lines: discovery/servicenetworking-v1.json
+19-4Lines changed: 19 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@
111
111
"operations": {
112
112
"methods": {
113
113
"cancel": {
114
-
"description": "Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.",
114
+
"description": "Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`.",
"description": "Required. The network that the consumer is using to connect with services. Must be in the form of services/{service}/projects/{project}/global/networks/{network}/zones/{zoneName} Where {service} is the peering service that is managing connectivity for the service producer's organization. For Google services that support this {project} is the project number, as in '12345' {network} is the network name. {zoneName} is the DNS zone name",
861
+
"description": "Required. The network that the consumer is using to connect with services. Must be in the form of services/{service}/projects/{project}/global/networks/{network}/dnsZones/{zoneName} Where {service} is the peering service that is managing connectivity for the service producer's organization. For Google services that support this {project} is the project number, as in '12345' {network} is the network name. {zoneName} is the DNS zone name",
"description": "`Documentation` provides the information for describing a service. Example: documentation: summary: > The Google Calendar API gives access to most calendar features. pages: - name: Overview content: (== include google/foo/overview.md ==) - name: Tutorial content: (== include google/foo/tutorial.md ==) subpages: - name: Java content: (== include google/foo/tutorial_java.md ==) rules: - selector: google.calendar.Calendar.Get description: > ... - selector: google.calendar.Calendar.Put description: > ... Documentation is provided in markdown syntax. In addition to standard markdown features, definition lists, tables and fenced code blocks are supported. Section headers can be provided and are interpreted relative to the section nesting of the context where a documentation fragment is embedded. Documentation from the IDL is merged with documentation defined via the config at normalization time, where documentation provided by config rules overrides IDL provided. A number of constructs specific to the API platform are supported in documentation text. In order to reference a proto element, the following notation can be used: [fully.qualified.proto.name][] To override the display text used for the link, this can be used: [display text][fully.qualified.proto.name] Text can be excluded from doc using the following notation: (-- internal comment --) A few directives are available in documentation. Note that directives must appear on a single line to be properly identified. The `include` directive includes a markdown file from an external source: (== include path/to/file ==) The `resource_for` directive marks a message to be the resource of a collection in REST view. If it is not specified, tools attempt to infer the resource from the operations in a collection: (== resource_for v1.shelves.books ==) The directive `suppress_warning` does not directly affect documentation and is documented together with service config validation.",
1969
1969
"id": "Documentation",
1970
1970
"properties": {
1971
+
"additionalIamInfo": {
1972
+
"description": "Optional information about the IAM configuration. This is typically used to link to documentation about a product's IAM roles and permissions.",
1973
+
"type": "string"
1974
+
},
1971
1975
"documentationRootUrl": {
1972
1976
"description": "The URL to the root of documentation.",
1973
1977
"type": "string"
@@ -2194,6 +2198,10 @@
2194
2198
"description": "Experimental features to be included during client library generation. These fields will be deprecated once the feature graduates and is enabled by default.",
2195
2199
"id": "ExperimentalFeatures",
2196
2200
"properties": {
2201
+
"protobufPythonicTypesEnabled": {
2202
+
"description": "Enables generation of protobuf code using new types that are more Pythonic which are included in `protobuf>=5.29.x`. This feature will be enabled by default 1 month after launching the feature in preview packages.",
2203
+
"type": "boolean"
2204
+
},
2197
2205
"restAsyncIoEnabled": {
2198
2206
"description": "Enables generation of asynchronous REST clients if `rest` transport is enabled. By default, asynchronous REST clients will not be generated. This feature will be enabled by default 1 month after launching the feature in preview packages.",
2199
2207
"type": "boolean"
@@ -2348,6 +2356,13 @@
2348
2356
"common": {
2349
2357
"$ref": "CommonLanguageSettings",
2350
2358
"description": "Some settings."
2359
+
},
2360
+
"renamedServices": {
2361
+
"additionalProperties": {
2362
+
"type": "string"
2363
+
},
2364
+
"description": "Map of service names to renamed services. Keys are the package relative service names and values are the name to be used for the service client and call options. publishing: go_settings: renamed_services: Publisher: TopicAdmin",
2365
+
"type": "object"
2351
2366
}
2352
2367
},
2353
2368
"type": "object"
@@ -3419,7 +3434,7 @@
3419
3434
"type": "string"
3420
3435
},
3421
3436
"unit": {
3422
-
"description": "Specify the unit of the quota limit. It uses the same syntax as Metric.unit. The supported unit kinds are determined by the quota backend system. Here are some examples: * \"1/min/{project}\" for quota per minute per project. Note: the order of unit components is insignificant. The \"1\" at the beginning is required to follow the metric unit syntax.",
3437
+
"description": "Specify the unit of the quota limit. It uses the same syntax as MetricDescriptor.unit. The supported unit kinds are determined by the quota backend system. Here are some examples: * \"1/min/{project}\" for quota per minute per project. Note: the order of unit components is insignificant. The \"1\" at the beginning is required to follow the metric unit syntax.",
"description": "`Documentation` provides the information for describing a service. Example: documentation: summary: > The Google Calendar API gives access to most calendar features. pages: - name: Overview content: (== include google/foo/overview.md ==) - name: Tutorial content: (== include google/foo/tutorial.md ==) subpages: - name: Java content: (== include google/foo/tutorial_java.md ==) rules: - selector: google.calendar.Calendar.Get description: > ... - selector: google.calendar.Calendar.Put description: > ... Documentation is provided in markdown syntax. In addition to standard markdown features, definition lists, tables and fenced code blocks are supported. Section headers can be provided and are interpreted relative to the section nesting of the context where a documentation fragment is embedded. Documentation from the IDL is merged with documentation defined via the config at normalization time, where documentation provided by config rules overrides IDL provided. A number of constructs specific to the API platform are supported in documentation text. In order to reference a proto element, the following notation can be used: [fully.qualified.proto.name][] To override the display text used for the link, this can be used: [display text][fully.qualified.proto.name] Text can be excluded from doc using the following notation: (-- internal comment --) A few directives are available in documentation. Note that directives must appear on a single line to be properly identified. The `include` directive includes a markdown file from an external source: (== include path/to/file ==) The `resource_for` directive marks a message to be the resource of a collection in REST view. If it is not specified, tools attempt to infer the resource from the operations in a collection: (== resource_for v1.shelves.books ==) The directive `suppress_warning` does not directly affect documentation and is documented together with service config validation.",
1081
1081
"id": "Documentation",
1082
1082
"properties": {
1083
+
"additionalIamInfo": {
1084
+
"description": "Optional information about the IAM configuration. This is typically used to link to documentation about a product's IAM roles and permissions.",
1085
+
"type": "string"
1086
+
},
1083
1087
"documentationRootUrl": {
1084
1088
"description": "The URL to the root of documentation.",
1085
1089
"type": "string"
@@ -1289,6 +1293,10 @@
1289
1293
"description": "Experimental features to be included during client library generation. These fields will be deprecated once the feature graduates and is enabled by default.",
1290
1294
"id": "ExperimentalFeatures",
1291
1295
"properties": {
1296
+
"protobufPythonicTypesEnabled": {
1297
+
"description": "Enables generation of protobuf code using new types that are more Pythonic which are included in `protobuf>=5.29.x`. This feature will be enabled by default 1 month after launching the feature in preview packages.",
1298
+
"type": "boolean"
1299
+
},
1292
1300
"restAsyncIoEnabled": {
1293
1301
"description": "Enables generation of asynchronous REST clients if `rest` transport is enabled. By default, asynchronous REST clients will not be generated. This feature will be enabled by default 1 month after launching the feature in preview packages.",
1294
1302
"type": "boolean"
@@ -1428,6 +1436,13 @@
1428
1436
"common": {
1429
1437
"$ref": "CommonLanguageSettings",
1430
1438
"description": "Some settings."
1439
+
},
1440
+
"renamedServices": {
1441
+
"additionalProperties": {
1442
+
"type": "string"
1443
+
},
1444
+
"description": "Map of service names to renamed services. Keys are the package relative service names and values are the name to be used for the service client and call options. publishing: go_settings: renamed_services: Publisher: TopicAdmin",
1445
+
"type": "object"
1431
1446
}
1432
1447
},
1433
1448
"type": "object"
@@ -2439,7 +2454,7 @@
2439
2454
"type": "string"
2440
2455
},
2441
2456
"unit": {
2442
-
"description": "Specify the unit of the quota limit. It uses the same syntax as Metric.unit. The supported unit kinds are determined by the quota backend system. Here are some examples: * \"1/min/{project}\" for quota per minute per project. Note: the order of unit components is insignificant. The \"1\" at the beginning is required to follow the metric unit syntax.",
2457
+
"description": "Specify the unit of the quota limit. It uses the same syntax as MetricDescriptor.unit. The supported unit kinds are determined by the quota backend system. Here are some examples: * \"1/min/{project}\" for quota per minute per project. Note: the order of unit components is insignificant. The \"1\" at the beginning is required to follow the metric unit syntax.",
* `Documentation` provides the information for describing a service. Example: documentation: summary: \> The Google Calendar API gives access to most calendar features. pages: - name: Overview content: (== include google/foo/overview.md ==) - name: Tutorial content: (== include google/foo/tutorial.md ==) subpages: - name: Java content: (== include google/foo/tutorial_java.md ==) rules: - selector: google.calendar.Calendar.Get description: \> ... - selector: google.calendar.Calendar.Put description: \> ... Documentation is provided in markdown syntax. In addition to standard markdown features, definition lists, tables and fenced code blocks are supported. Section headers can be provided and are interpreted relative to the section nesting of the context where a documentation fragment is embedded. Documentation from the IDL is merged with documentation defined via the config at normalization time, where documentation provided by config rules overrides IDL provided. A number of constructs specific to the API platform are supported in documentation text. In order to reference a proto element, the following notation can be used: [fully.qualified.proto.name][] To override the display text used for the link, this can be used: [display text][fully.qualified.proto.name] Text can be excluded from doc using the following notation: (-- internal comment --) A few directives are available in documentation. Note that directives must appear on a single line to be properly identified. The `include` directive includes a markdown file from an external source: (== include path/to/file ==) The `resource_for` directive marks a message to be the resource of a collection in REST view. If it is not specified, tools attempt to infer the resource from the operations in a collection: (== resource_for v1.shelves.books ==) The directive `suppress_warning` does not directly affect documentation and is documented together with service config validation.
825
825
*/
826
826
exportinterfaceSchema$Documentation{
827
+
/**
828
+
* Optional information about the IAM configuration. This is typically used to link to documentation about a product's IAM roles and permissions.
* Experimental features to be included during client library generation. These fields will be deprecated once the feature graduates and is enabled by default.
988
992
*/
989
993
exportinterfaceSchema$ExperimentalFeatures{
994
+
/**
995
+
* Enables generation of protobuf code using new types that are more Pythonic which are included in `protobuf\>=5.29.x`. This feature will be enabled by default 1 month after launching the feature in preview packages.
996
+
*/
997
+
protobufPythonicTypesEnabled?: boolean|null;
990
998
/**
991
999
* Enables generation of asynchronous REST clients if `rest` transport is enabled. By default, asynchronous REST clients will not be generated. This feature will be enabled by default 1 month after launching the feature in preview packages.
* Map of service names to renamed services. Keys are the package relative service names and values are the name to be used for the service client and call options. publishing: go_settings: renamed_services: Publisher: TopicAdmin
1147
+
*/
1148
+
renamedServices?: {[key: string]: string}|null;
1137
1149
}
1138
1150
/**
1139
1151
* 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.
* Specify the unit of the quota limit. It uses the same syntax as Metric.unit. The supported unit kinds are determined by the quota backend system. Here are some examples: * "1/min/{project\}" for quota per minute per project. Note: the order of unit components is insignificant. The "1" at the beginning is required to follow the metric unit syntax.
1822
+
* Specify the unit of the quota limit. It uses the same syntax as MetricDescriptor.unit. The supported unit kinds are determined by the quota backend system. Here are some examples: * "1/min/{project\}" for quota per minute per project. Note: the order of unit components is insignificant. The "1" at the beginning is required to follow the metric unit syntax.
* Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
2364
+
* Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`.
2353
2365
*
2354
2366
* @param params - Parameters for request
2355
2367
* @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
* Required. The network that the consumer is using to connect with services. Must be in the form of services/{service\}/projects/{project\}/global/networks/{network\}/zones/{zoneName\} Where {service\} is the peering service that is managing connectivity for the service producer's organization. For Google services that support this {project\} is the project number, as in '12345' {network\} is the network name. {zoneName\} is the DNS zone name
4988
+
* Required. The network that the consumer is using to connect with services. Must be in the form of services/{service\}/projects/{project\}/global/networks/{network\}/dnsZones/{zoneName\} Where {service\} is the peering service that is managing connectivity for the service producer's organization. For Google services that support this {project\} is the project number, as in '12345' {network\} is the network name. {zoneName\} is the DNS zone name
0 commit comments