@googleapis/serviceusage 14.0.0 → 15.0.1

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/v1.ts CHANGED
@@ -252,6 +252,19 @@ export namespace serviceusage_v1 {
252
252
  */
253
253
  version?: string | null;
254
254
  }
255
+ /**
256
+ * Aspect represents Generic aspect. It is used to configure an aspect without making direct changes to service.proto
257
+ */
258
+ export interface Schema$Aspect {
259
+ /**
260
+ * The type of this aspect configuration.
261
+ */
262
+ kind?: string | null;
263
+ /**
264
+ * Content of the configuration. The underlying schema should be defined by Aspect owners as protobuf message under `apiserving/configaspects/proto`.
265
+ */
266
+ spec?: {[key: string]: any} | null;
267
+ }
255
268
  /**
256
269
  * `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
257
270
  */
@@ -357,6 +370,10 @@ export namespace serviceusage_v1 {
357
370
  * 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.
358
371
  */
359
372
  jwtAudience?: string | null;
373
+ /**
374
+ * The load balancing policy used for connection to the application backend. Defined as an arbitrary string to accomondate custom load balancing policies supported by the underlying channel, but suggest most users use one of the standard policies, such as the default, "RoundRobin".
375
+ */
376
+ loadBalancingPolicy?: string | null;
360
377
  /**
361
378
  * Deprecated, do not use.
362
379
  */
@@ -515,6 +532,10 @@ export namespace serviceusage_v1 {
515
532
  * Link to automatically generated reference documentation. Example: https://cloud.google.com/nodejs/docs/reference/asset/latest
516
533
  */
517
534
  referenceDocsUri?: string | null;
535
+ /**
536
+ * Configuration for which RPCs should be generated in the GAPIC client.
537
+ */
538
+ selectiveGapicGeneration?: Schema$SelectiveGapicGeneration;
518
539
  }
519
540
  /**
520
541
  * Consumer Policy is a set of rules that define what services or service groups can be used for a cloud resource hierarchy.
@@ -670,6 +691,10 @@ export namespace serviceusage_v1 {
670
691
  * `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.
671
692
  */
672
693
  export interface Schema$Documentation {
694
+ /**
695
+ * Optional information about the IAM configuration. This is typically used to link to documentation about a product's IAM roles and permissions.
696
+ */
697
+ additionalIamInfo?: string | null;
673
698
  /**
674
699
  * The URL to the root of documentation.
675
700
  */
@@ -687,7 +712,7 @@ export namespace serviceusage_v1 {
687
712
  */
688
713
  rules?: Schema$DocumentationRule[];
689
714
  /**
690
- * Specifies section and content to override boilerplate content provided by go/api-docgen. Currently overrides following sections: 1. rest.service.client_libraries
715
+ * Specifies section and content to override the boilerplate content. Currently overrides following sections: 1. rest.service.client_libraries
691
716
  */
692
717
  sectionOverrides?: Schema$Page[];
693
718
  /**
@@ -712,7 +737,7 @@ export namespace serviceusage_v1 {
712
737
  */
713
738
  description?: string | null;
714
739
  /**
715
- * String of comma or space separated case-sensitive words for which method/field name replacement will be disabled by go/api-docgen.
740
+ * String of comma or space separated case-sensitive words for which method/field name replacement will be disabled.
716
741
  */
717
742
  disableReplacementWords?: string | null;
718
743
  /**
@@ -867,6 +892,23 @@ export namespace serviceusage_v1 {
867
892
  */
868
893
  options?: Schema$Option[];
869
894
  }
895
+ /**
896
+ * Experimental features to be included during client library generation. These fields will be deprecated once the feature graduates and is enabled by default.
897
+ */
898
+ export interface Schema$ExperimentalFeatures {
899
+ /**
900
+ * 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.
901
+ */
902
+ protobufPythonicTypesEnabled?: boolean | null;
903
+ /**
904
+ * 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.
905
+ */
906
+ restAsyncIoEnabled?: boolean | null;
907
+ /**
908
+ * Disables generation of an unversioned Python package for this client library. This means that the module names will need to be versioned in import statements. For example `import google.cloud.library_v2` instead of `import google.cloud.library`.
909
+ */
910
+ unversionedPackageDisabled?: boolean | null;
911
+ }
870
912
  /**
871
913
  * A single field of a message type.
872
914
  */
@@ -954,6 +996,10 @@ export namespace serviceusage_v1 {
954
996
  * A list of API interfaces exported by this service. Only the `name` field of the google.protobuf.Api needs to be provided by the configuration author, as the remaining fields will be derived from the IDL during the normalization process. It is an error to specify an API interface here which cannot be resolved against the associated IDL files.
955
997
  */
956
998
  apis?: Schema$Api[];
999
+ /**
1000
+ * Configuration aspects. This is a repeated field to allow multiple aspects to be configured. The kind field in each ConfigAspect specifies the type of aspect. The spec field contains the configuration for that aspect. The schema for the spec field is defined by the backend service owners.
1001
+ */
1002
+ aspects?: Schema$Aspect[];
957
1003
  /**
958
1004
  * Auth configuration.
959
1005
  */
@@ -1206,6 +1252,108 @@ export namespace serviceusage_v1 {
1206
1252
  * Metadata for the `UpdateConsumerPolicy` method.
1207
1253
  */
1208
1254
  export interface Schema$GoogleApiServiceusageV2alphaUpdateConsumerPolicyMetadata {}
1255
+ /**
1256
+ * A message to group the analysis information.
1257
+ */
1258
+ export interface Schema$GoogleApiServiceusageV2betaAnalysis {
1259
+ /**
1260
+ * Output only. Analysis result of updating a policy.
1261
+ */
1262
+ analysisResult?: Schema$GoogleApiServiceusageV2betaAnalysisResult;
1263
+ /**
1264
+ * Output only. The type of analysis.
1265
+ */
1266
+ analysisType?: string | null;
1267
+ /**
1268
+ * Output only. The user friendly display name of the analysis type. E.g. service dependency analysis, service resource usage analysis, etc.
1269
+ */
1270
+ displayName?: string | null;
1271
+ /**
1272
+ * The names of the service that has analysis result of warnings or blockers. Example: `services/storage.googleapis.com`.
1273
+ */
1274
+ service?: string | null;
1275
+ }
1276
+ /**
1277
+ * An analysis result including blockers and warnings.
1278
+ */
1279
+ export interface Schema$GoogleApiServiceusageV2betaAnalysisResult {
1280
+ /**
1281
+ * Blocking information that would prevent the policy changes at runtime.
1282
+ */
1283
+ blockers?: Schema$GoogleApiServiceusageV2betaImpact[];
1284
+ /**
1285
+ * Warning information indicating that the policy changes might be unsafe, but will not block the changes at runtime.
1286
+ */
1287
+ warnings?: Schema$GoogleApiServiceusageV2betaImpact[];
1288
+ }
1289
+ /**
1290
+ * Metadata for the `AnalyzeConsumerPolicy` method.
1291
+ */
1292
+ export interface Schema$GoogleApiServiceusageV2betaAnalyzeConsumerPolicyMetadata {}
1293
+ /**
1294
+ * The response of analyzing a consumer policy update.
1295
+ */
1296
+ export interface Schema$GoogleApiServiceusageV2betaAnalyzeConsumerPolicyResponse {
1297
+ /**
1298
+ * The list of analyses returned from performing the intended policy update analysis. The analysis is grouped by service name and different analysis types. The empty analysis list means that the consumer policy can be updated without any warnings or blockers.
1299
+ */
1300
+ analysis?: Schema$GoogleApiServiceusageV2betaAnalysis[];
1301
+ }
1302
+ /**
1303
+ * Consumer Policy is a set of rules that define what services or service groups can be used for a cloud resource hierarchy.
1304
+ */
1305
+ export interface Schema$GoogleApiServiceusageV2betaConsumerPolicy {
1306
+ /**
1307
+ * Optional. Annotations is an unstructured key-value map stored with a policy that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. [AIP-128](https://google.aip.dev/128#annotations)
1308
+ */
1309
+ annotations?: {[key: string]: string} | null;
1310
+ /**
1311
+ * Output only. The time the policy was created. For singleton policies, this is the first touch of the policy.
1312
+ */
1313
+ createTime?: string | null;
1314
+ /**
1315
+ * Enable rules define usable services, groups, and categories. There can currently be at most one `EnableRule`. This restriction will be lifted in later releases.
1316
+ */
1317
+ enableRules?: Schema$GoogleApiServiceusageV2betaEnableRule[];
1318
+ /**
1319
+ * Output only. An opaque tag indicating the current version of the policy, used for concurrency control.
1320
+ */
1321
+ etag?: string | null;
1322
+ /**
1323
+ * Output only. The resource name of the policy. Only the `default` policy is supported: `projects/12345/consumerPolicies/default`, `folders/12345/consumerPolicies/default`, `organizations/12345/consumerPolicies/default`.
1324
+ */
1325
+ name?: string | null;
1326
+ /**
1327
+ * Output only. The time the policy was last updated.
1328
+ */
1329
+ updateTime?: string | null;
1330
+ }
1331
+ /**
1332
+ * The consumer policy rule that defines enabled services, groups, and categories.
1333
+ */
1334
+ export interface Schema$GoogleApiServiceusageV2betaEnableRule {
1335
+ /**
1336
+ * The names of the services that are enabled. Example: `services/storage.googleapis.com`.
1337
+ */
1338
+ services?: string[] | null;
1339
+ }
1340
+ /**
1341
+ * A message to group impacts of updating a policy.
1342
+ */
1343
+ export interface Schema$GoogleApiServiceusageV2betaImpact {
1344
+ /**
1345
+ * Output only. User friendly impact detail in a free form message.
1346
+ */
1347
+ detail?: string | null;
1348
+ /**
1349
+ * Output only. The type of impact.
1350
+ */
1351
+ impactType?: string | null;
1352
+ }
1353
+ /**
1354
+ * Metadata for the `UpdateConsumerPolicy` method.
1355
+ */
1356
+ export interface Schema$GoogleApiServiceusageV2betaUpdateConsumerPolicyMetadata {}
1209
1357
  /**
1210
1358
  * Settings for Go client libraries.
1211
1359
  */
@@ -1214,6 +1362,10 @@ export namespace serviceusage_v1 {
1214
1362
  * Some settings.
1215
1363
  */
1216
1364
  common?: Schema$CommonLanguageSettings;
1365
+ /**
1366
+ * 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
1367
+ */
1368
+ renamedServices?: {[key: string]: string} | null;
1217
1369
  }
1218
1370
  /**
1219
1371
  * 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.
@@ -1285,6 +1437,10 @@ export namespace serviceusage_v1 {
1285
1437
  * Output only. The type of impact.
1286
1438
  */
1287
1439
  impactType?: string | null;
1440
+ /**
1441
+ * The parent resource that the analysis is based on and the service name that the analysis is for. Example: `projects/100/services/compute.googleapis.com`, folders/101/services/compute.googleapis.com` and `organizations/102/services/compute.googleapis.com`. Usually, the parent resource here is same as the parent resource of the analyzed policy. However, for some analysis types, the parent can be different. For example, for resource existence analysis, if the parent resource of the analyzed policy is a folder or an organization, the parent resource here can still be the project that contains the resources.
1442
+ */
1443
+ parent?: string | null;
1288
1444
  }
1289
1445
  /**
1290
1446
  * Metadata message that provides information such as progress, partial failures, and similar information on each GetOperation call of LRO returned by ImportAdminOverrides.
@@ -1334,7 +1490,7 @@ export namespace serviceusage_v1 {
1334
1490
  */
1335
1491
  common?: Schema$CommonLanguageSettings;
1336
1492
  /**
1337
- * 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
1493
+ * 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: library_settings: java_settings: library_package: com.google.cloud.pubsub.v1
1338
1494
  */
1339
1495
  libraryPackage?: string | null;
1340
1496
  /**
@@ -1602,6 +1758,10 @@ export namespace serviceusage_v1 {
1602
1758
  * The sampling period of metric data points. For metrics which are written periodically, consecutive data points are stored at this time interval, excluding data loss due to errors. Metrics with a higher granularity have a smaller sampling period.
1603
1759
  */
1604
1760
  samplePeriod?: string | null;
1761
+ /**
1762
+ * The scope of the timeseries data of the metric.
1763
+ */
1764
+ timeSeriesResourceHierarchyLevel?: string[] | null;
1605
1765
  }
1606
1766
  /**
1607
1767
  * Bind API methods to metrics. Binding a method to a metric causes that metric's configured quota behaviors to apply to the method call.
@@ -1617,7 +1777,7 @@ export namespace serviceusage_v1 {
1617
1777
  selector?: string | null;
1618
1778
  }
1619
1779
  /**
1620
- * Declares an API Interface to be included in this interface. The including interface must redeclare all the methods from the included interface, but documentation and options are inherited as follows: - If after comment and whitespace stripping, the documentation string of the redeclared method is empty, it will be inherited from the original method. - Each annotation belonging to the service config (http, visibility) which is not set in the redeclared method will be inherited. - If an http annotation is inherited, the path pattern will be modified as follows. Any version prefix will be replaced by the version of the including interface plus the root path if specified. Example of a simple mixin: package google.acl.v1; service AccessControl { // Get the underlying ACL object. rpc GetAcl(GetAclRequest) returns (Acl) { option (google.api.http).get = "/v1/{resource=**\}:getAcl"; \} \} package google.storage.v2; service Storage { // rpc GetAcl(GetAclRequest) returns (Acl); // Get a data record. rpc GetData(GetDataRequest) returns (Data) { option (google.api.http).get = "/v2/{resource=**\}"; \} \} Example of a mixin configuration: apis: - name: google.storage.v2.Storage mixins: - name: google.acl.v1.AccessControl The mixin construct implies that all methods in `AccessControl` are also declared with same name and request/response types in `Storage`. A documentation generator or annotation processor will see the effective `Storage.GetAcl` method after inherting documentation and annotations as follows: service Storage { // Get the underlying ACL object. rpc GetAcl(GetAclRequest) returns (Acl) { option (google.api.http).get = "/v2/{resource=**\}:getAcl"; \} ... \} Note how the version in the path pattern changed from `v1` to `v2`. If the `root` field in the mixin is specified, it should be a relative path under which inherited HTTP paths are placed. Example: apis: - name: google.storage.v2.Storage mixins: - name: google.acl.v1.AccessControl root: acls This implies the following inherited HTTP annotation: service Storage { // Get the underlying ACL object. rpc GetAcl(GetAclRequest) returns (Acl) { option (google.api.http).get = "/v2/acls/{resource=**\}:getAcl"; \} ... \}
1780
+ * Declares an API Interface to be included in this interface. The including interface must redeclare all the methods from the included interface, but documentation and options are inherited as follows: - If after comment and whitespace stripping, the documentation string of the redeclared method is empty, it will be inherited from the original method. - Each annotation belonging to the service config (http, visibility) which is not set in the redeclared method will be inherited. - If an http annotation is inherited, the path pattern will be modified as follows. Any version prefix will be replaced by the version of the including interface plus the root path if specified. Example of a simple mixin: package google.acl.v1; service AccessControl { // Get the underlying ACL object. rpc GetAcl(GetAclRequest) returns (Acl) { option (google.api.http).get = "/v1/{resource=**\}:getAcl"; \} \} package google.storage.v2; service Storage { // rpc GetAcl(GetAclRequest) returns (Acl); // Get a data record. rpc GetData(GetDataRequest) returns (Data) { option (google.api.http).get = "/v2/{resource=**\}"; \} \} Example of a mixin configuration: apis: - name: google.storage.v2.Storage mixins: - name: google.acl.v1.AccessControl The mixin construct implies that all methods in `AccessControl` are also declared with same name and request/response types in `Storage`. A documentation generator or annotation processor will see the effective `Storage.GetAcl` method after inheriting documentation and annotations as follows: service Storage { // Get the underlying ACL object. rpc GetAcl(GetAclRequest) returns (Acl) { option (google.api.http).get = "/v2/{resource=**\}:getAcl"; \} ... \} Note how the version in the path pattern changed from `v1` to `v2`. If the `root` field in the mixin is specified, it should be a relative path under which inherited HTTP paths are placed. Example: apis: - name: google.storage.v2.Storage mixins: - name: google.acl.v1.AccessControl root: acls This implies the following inherited HTTP annotation: service Storage { // Get the underlying ACL object. rpc GetAcl(GetAclRequest) returns (Acl) { option (google.api.http).get = "/v2/acls/{resource=**\}:getAcl"; \} ... \}
1621
1781
  */
1622
1782
  export interface Schema$Mixin {
1623
1783
  /**
@@ -1754,7 +1914,7 @@ export namespace serviceusage_v1 {
1754
1914
  */
1755
1915
  export interface Schema$Page {
1756
1916
  /**
1757
- * 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.
1917
+ * 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.
1758
1918
  */
1759
1919
  content?: string | null;
1760
1920
  /**
@@ -1832,6 +1992,10 @@ export namespace serviceusage_v1 {
1832
1992
  * Some settings.
1833
1993
  */
1834
1994
  common?: Schema$CommonLanguageSettings;
1995
+ /**
1996
+ * Experimental features to be included during client library generation.
1997
+ */
1998
+ experimentalFeatures?: Schema$ExperimentalFeatures;
1835
1999
  }
1836
2000
  /**
1837
2001
  * 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
@@ -1883,7 +2047,7 @@ export namespace serviceusage_v1 {
1883
2047
  */
1884
2048
  name?: string | null;
1885
2049
  /**
1886
- * 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.
2050
+ * 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.
1887
2051
  */
1888
2052
  unit?: string | null;
1889
2053
  /**
@@ -1946,6 +2110,19 @@ export namespace serviceusage_v1 {
1946
2110
  */
1947
2111
  common?: Schema$CommonLanguageSettings;
1948
2112
  }
2113
+ /**
2114
+ * This message is used to configure the generation of a subset of the RPCs in a service for client libraries.
2115
+ */
2116
+ export interface Schema$SelectiveGapicGeneration {
2117
+ /**
2118
+ * Setting this to true indicates to the client generators that methods that would be excluded from the generation should instead be generated in a way that indicates these methods should not be consumed by end users. How this is expressed is up to individual language implementations to decide. Some examples may be: added annotations, obfuscated identifiers, or other language idiomatic patterns.
2119
+ */
2120
+ generateOmittedAsInternal?: boolean | null;
2121
+ /**
2122
+ * An allowlist of the fully qualified names of RPCs that should be included on public client surfaces.
2123
+ */
2124
+ methods?: string[] | null;
2125
+ }
1949
2126
  /**
1950
2127
  * Service identity for a service. This is the identity that service producer should use to access consumer resources.
1951
2128
  */
@@ -2092,11 +2269,11 @@ export namespace serviceusage_v1 {
2092
2269
  rules?: Schema$UsageRule[];
2093
2270
  }
2094
2271
  /**
2095
- * Usage configuration rules for the service. NOTE: Under development. Use this rule to configure unregistered calls for the service. Unregistered calls are calls that do not contain consumer project identity. (Example: calls that do not contain an API key). By default, API methods do not allow unregistered calls, and each method call must be identified by a consumer project identity. Use this rule to allow/disallow unregistered calls. Example of an API that wants to allow unregistered calls for entire service. usage: rules: - selector: "*" allow_unregistered_calls: true Example of a method that wants to allow unregistered calls. usage: rules: - selector: "google.example.library.v1.LibraryService.CreateBook" allow_unregistered_calls: true
2272
+ * Usage configuration rules for the service.
2096
2273
  */
2097
2274
  export interface Schema$UsageRule {
2098
2275
  /**
2099
- * If true, the selected method allows unregistered calls, e.g. calls that don't identify any user or application.
2276
+ * Use this rule to configure unregistered calls for the service. Unregistered calls are calls that do not contain consumer project identity. (Example: calls that do not contain an API key). WARNING: By default, API methods do not allow unregistered calls, and each method call must be identified by a consumer project identity.
2100
2277
  */
2101
2278
  allowUnregisteredCalls?: boolean | null;
2102
2279
  /**
@@ -2116,7 +2293,7 @@ export namespace serviceusage_v1 {
2116
2293
  }
2117
2294
 
2118
2295
  /**
2119
- * 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`.
2296
+ * 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`.
2120
2297
  *
2121
2298
  * @param params - Parameters for request
2122
2299
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.