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
#### servicemanagement: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:
- schemas.QuotaLimit.properties.unit.description
"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.",
1569
1569
"id": "Documentation",
1570
1570
"properties": {
1571
+
"additionalIamInfo": {
1572
+
"description": "Optional information about the IAM configuration. This is typically used to link to documentation about a product's IAM roles and permissions.",
1573
+
"type": "string"
1574
+
},
1571
1575
"documentationRootUrl": {
1572
1576
"description": "The URL to the root of documentation.",
1573
1577
"type": "string"
@@ -1783,6 +1787,10 @@
1783
1787
"description": "Experimental features to be included during client library generation. These fields will be deprecated once the feature graduates and is enabled by default.",
1784
1788
"id": "ExperimentalFeatures",
1785
1789
"properties": {
1790
+
"protobufPythonicTypesEnabled": {
1791
+
"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.",
1792
+
"type": "boolean"
1793
+
},
1786
1794
"restAsyncIoEnabled": {
1787
1795
"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.",
1788
1796
"type": "boolean"
@@ -2035,6 +2043,13 @@
2035
2043
"common": {
2036
2044
"$ref": "CommonLanguageSettings",
2037
2045
"description": "Some settings."
2046
+
},
2047
+
"renamedServices": {
2048
+
"additionalProperties": {
2049
+
"type": "string"
2050
+
},
2051
+
"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",
2052
+
"type": "object"
2038
2053
}
2039
2054
},
2040
2055
"type": "object"
@@ -3085,7 +3100,7 @@
3085
3100
"type": "string"
3086
3101
},
3087
3102
"unit": {
3088
-
"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.",
3103
+
"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.
620
620
*/
621
621
exportinterfaceSchema$Documentation{
622
+
/**
623
+
* 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.
774
778
*/
775
779
exportinterfaceSchema$ExperimentalFeatures{
780
+
/**
781
+
* 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.
782
+
*/
783
+
protobufPythonicTypesEnabled?: boolean|null;
776
784
/**
777
785
* 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
947
+
*/
948
+
renamedServices?: {[key: string]: string}|null;
937
949
}
938
950
/**
939
951
* 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.
1659
+
* 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.
0 commit comments