@googleapis/serviceusage 18.0.0 → 21.0.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 +33 -0
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/v1.d.ts +121 -17
- package/build/v1.js.map +1 -1
- package/build/v1beta1.d.ts +121 -17
- package/build/v1beta1.js.map +1 -1
- package/package.json +1 -1
- package/v1.ts +119 -15
- package/v1beta1.ts +119 -15
package/build/v1.d.ts
CHANGED
|
@@ -169,9 +169,13 @@ export declare namespace serviceusage_v1 {
|
|
|
169
169
|
analysis?: Schema$Analysis[];
|
|
170
170
|
}
|
|
171
171
|
/**
|
|
172
|
-
* Api is a light-weight descriptor for an API Interface. Interfaces are also described as "protocol buffer services" in some contexts, such as by the "service" keyword in a .proto file, but they are different from API Services, which represent a concrete implementation of an interface as opposed to simply a description of methods and bindings. They are also sometimes simply referred to as "APIs" in other contexts, such as the name of this message itself. See https://cloud.google.com/apis/design/glossary for detailed terminology.
|
|
172
|
+
* Api is a light-weight descriptor for an API Interface. Interfaces are also described as "protocol buffer services" in some contexts, such as by the "service" keyword in a .proto file, but they are different from API Services, which represent a concrete implementation of an interface as opposed to simply a description of methods and bindings. They are also sometimes simply referred to as "APIs" in other contexts, such as the name of this message itself. See https://cloud.google.com/apis/design/glossary for detailed terminology. New usages of this message as an alternative to ServiceDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.
|
|
173
173
|
*/
|
|
174
174
|
export interface Schema$Api {
|
|
175
|
+
/**
|
|
176
|
+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
|
|
177
|
+
*/
|
|
178
|
+
edition?: string | null;
|
|
175
179
|
/**
|
|
176
180
|
* The methods of this interface, in unspecified order.
|
|
177
181
|
*/
|
|
@@ -339,6 +343,9 @@ export declare namespace serviceusage_v1 {
|
|
|
339
343
|
overridesByRequestProtocol?: {
|
|
340
344
|
[key: string]: Schema$BackendRule;
|
|
341
345
|
} | null;
|
|
346
|
+
/**
|
|
347
|
+
* no-lint
|
|
348
|
+
*/
|
|
342
349
|
pathTranslation?: string | null;
|
|
343
350
|
/**
|
|
344
351
|
* The protocol used for sending a request to the backend. The supported values are "http/1.1" and "h2". The default value is inferred from the scheme in the address field: SCHEME PROTOCOL http:// http/1.1 https:// http/1.1 grpc:// h2 grpcs:// h2 For secure HTTP backends (https://) that support HTTP/2, set this field to "h2" for improved performance. Configuring this field to non-default values is only supported for secure HTTP backends. This field will be ignored for all other backends. See https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids for more details on the supported values.
|
|
@@ -585,6 +592,37 @@ export declare namespace serviceusage_v1 {
|
|
|
585
592
|
*/
|
|
586
593
|
updateTime?: string | null;
|
|
587
594
|
}
|
|
595
|
+
/**
|
|
596
|
+
* ContentSecurity defines the content security related fields of a MCP policy.
|
|
597
|
+
*/
|
|
598
|
+
export interface Schema$ContentSecurity {
|
|
599
|
+
/**
|
|
600
|
+
* List of content security providers that are enabled for content scanning.
|
|
601
|
+
*/
|
|
602
|
+
contentSecurityProviders?: Schema$ContentSecurityProvider[];
|
|
603
|
+
}
|
|
604
|
+
/**
|
|
605
|
+
* Content Security Policy contains the content security related policy of a resource.
|
|
606
|
+
*/
|
|
607
|
+
export interface Schema$ContentSecurityPolicy {
|
|
608
|
+
/**
|
|
609
|
+
* mcp_content_security contains the content security related settings at resource level for MCP traffic.
|
|
610
|
+
*/
|
|
611
|
+
mcpContentSecurity?: Schema$ContentSecurity;
|
|
612
|
+
/**
|
|
613
|
+
* Output only. The resource name of the policy. Only the `default` policy is supported. We allow the following formats: `projects/{PROJECT_NUMBER\}/contentSecurityPolicies/default`, `projects/{PROJECT_ID\}/contentSecurityPolicies/default`, We only support project level content security policy for now.
|
|
614
|
+
*/
|
|
615
|
+
name?: string | null;
|
|
616
|
+
}
|
|
617
|
+
/**
|
|
618
|
+
* ContentSecurityProvider contains the name of content security provider.
|
|
619
|
+
*/
|
|
620
|
+
export interface Schema$ContentSecurityProvider {
|
|
621
|
+
/**
|
|
622
|
+
* Name of security service for content scanning, such as Google Cloud Model Armor or supported third-party ISV solutions. If it is Google 1P service, the name should be prefixed with `services/`. If it is a 3P service, the format needs to be documented. The currently supported values are: - `services/modelarmor.googleapis.com` for Google Cloud Model Armor.
|
|
623
|
+
*/
|
|
624
|
+
name?: string | null;
|
|
625
|
+
}
|
|
588
626
|
/**
|
|
589
627
|
* `Context` defines which contexts an API requests. Example: context: rules: - selector: "*" requested: - google.rpc.context.ProjectContext - google.rpc.context.OriginContext The above specifies that all methods in the API request `google.rpc.context.ProjectContext` and `google.rpc.context.OriginContext`. Available context types are defined in package `google.rpc.context`. This also provides mechanism to allowlist any protobuf message extension that can be sent in grpc metadata using “x-goog-ext--bin” and “x-goog-ext--jspb” format. For example, list any service specific protobuf types that can appear in grpc metadata as follows in your yaml file: Example: context: rules: - selector: "google.example.library.v1.LibraryService.CreateBook" allowed_request_extensions: - google.foo.v1.NewExtension allowed_response_extensions: - google.foo.v1.NewExtension You can also specify extension ID instead of fully qualified extension name here.
|
|
590
628
|
*/
|
|
@@ -878,7 +916,7 @@ export declare namespace serviceusage_v1 {
|
|
|
878
916
|
target?: string | null;
|
|
879
917
|
}
|
|
880
918
|
/**
|
|
881
|
-
* Enum type definition.
|
|
919
|
+
* Enum type definition. New usages of this message as an alternative to EnumDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.
|
|
882
920
|
*/
|
|
883
921
|
export interface Schema$Enum {
|
|
884
922
|
/**
|
|
@@ -907,7 +945,7 @@ export declare namespace serviceusage_v1 {
|
|
|
907
945
|
syntax?: string | null;
|
|
908
946
|
}
|
|
909
947
|
/**
|
|
910
|
-
* Enum value definition.
|
|
948
|
+
* Enum value definition. New usages of this message as an alternative to EnumValueDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.
|
|
911
949
|
*/
|
|
912
950
|
export interface Schema$EnumValue {
|
|
913
951
|
/**
|
|
@@ -941,7 +979,7 @@ export declare namespace serviceusage_v1 {
|
|
|
941
979
|
unversionedPackageDisabled?: boolean | null;
|
|
942
980
|
}
|
|
943
981
|
/**
|
|
944
|
-
* A single field of a message type.
|
|
982
|
+
* A single field of a message type. New usages of this message as an alternative to FieldDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.
|
|
945
983
|
*/
|
|
946
984
|
export interface Schema$Field {
|
|
947
985
|
/**
|
|
@@ -1339,12 +1377,6 @@ export declare namespace serviceusage_v1 {
|
|
|
1339
1377
|
* Consumer Policy is a set of rules that define what services or service groups can be used for a cloud resource hierarchy.
|
|
1340
1378
|
*/
|
|
1341
1379
|
export interface Schema$GoogleApiServiceusageV2betaConsumerPolicy {
|
|
1342
|
-
/**
|
|
1343
|
-
* 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)
|
|
1344
|
-
*/
|
|
1345
|
-
annotations?: {
|
|
1346
|
-
[key: string]: string;
|
|
1347
|
-
} | null;
|
|
1348
1380
|
/**
|
|
1349
1381
|
* Output only. The time the policy was created. For singleton policies, this is the first touch of the policy.
|
|
1350
1382
|
*/
|
|
@@ -1354,7 +1386,7 @@ export declare namespace serviceusage_v1 {
|
|
|
1354
1386
|
*/
|
|
1355
1387
|
enableRules?: Schema$GoogleApiServiceusageV2betaEnableRule[];
|
|
1356
1388
|
/**
|
|
1357
|
-
*
|
|
1389
|
+
* An opaque tag indicating the current version of the policy, used for concurrency control.
|
|
1358
1390
|
*/
|
|
1359
1391
|
etag?: string | null;
|
|
1360
1392
|
/**
|
|
@@ -1387,6 +1419,10 @@ export declare namespace serviceusage_v1 {
|
|
|
1387
1419
|
* Output only. The type of impact.
|
|
1388
1420
|
*/
|
|
1389
1421
|
impactType?: string | null;
|
|
1422
|
+
/**
|
|
1423
|
+
* Output only. This field will be populated only for the `DEPENDENCY_MISSING_DEPENDENCIES` impact type. Example: `services/compute.googleapis.com`. Impact.detail will be in format : `missing service dependency: {missing_dependency\}.`
|
|
1424
|
+
*/
|
|
1425
|
+
missingDependency?: string | null;
|
|
1390
1426
|
}
|
|
1391
1427
|
/**
|
|
1392
1428
|
* Metadata for the `UpdateConsumerPolicy` method.
|
|
@@ -1402,7 +1438,7 @@ export declare namespace serviceusage_v1 {
|
|
|
1402
1438
|
*/
|
|
1403
1439
|
common?: Schema$CommonLanguageSettings;
|
|
1404
1440
|
/**
|
|
1405
|
-
* 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
|
|
1441
|
+
* 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. Example: publishing: go_settings: renamed_services: Publisher: TopicAdmin
|
|
1406
1442
|
*/
|
|
1407
1443
|
renamedServices?: {
|
|
1408
1444
|
[key: string]: string;
|
|
@@ -1594,6 +1630,10 @@ export declare namespace serviceusage_v1 {
|
|
|
1594
1630
|
* A list of operations that matches the specified filter in the request.
|
|
1595
1631
|
*/
|
|
1596
1632
|
operations?: Schema$Operation[];
|
|
1633
|
+
/**
|
|
1634
|
+
* Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations.
|
|
1635
|
+
*/
|
|
1636
|
+
unreachable?: string[] | null;
|
|
1597
1637
|
}
|
|
1598
1638
|
/**
|
|
1599
1639
|
* Response message for the `ListServices` method.
|
|
@@ -1677,9 +1717,56 @@ export declare namespace serviceusage_v1 {
|
|
|
1677
1717
|
totalPollTimeout?: string | null;
|
|
1678
1718
|
}
|
|
1679
1719
|
/**
|
|
1680
|
-
*
|
|
1720
|
+
* McpEnableRule contains MCP enablement related rules.
|
|
1721
|
+
*/
|
|
1722
|
+
export interface Schema$McpEnableRule {
|
|
1723
|
+
/**
|
|
1724
|
+
* List of enabled MCP services.
|
|
1725
|
+
*/
|
|
1726
|
+
mcpServices?: Schema$McpService[];
|
|
1727
|
+
}
|
|
1728
|
+
/**
|
|
1729
|
+
* MCP Consumer Policy is a set of rules that define MCP related policy for a cloud resource hierarchy.
|
|
1730
|
+
*/
|
|
1731
|
+
export interface Schema$McpPolicy {
|
|
1732
|
+
/**
|
|
1733
|
+
* Output only. The time the policy was created. For singleton policies (such as the `default` policy), this is the first touch of the policy.
|
|
1734
|
+
*/
|
|
1735
|
+
createTime?: string | null;
|
|
1736
|
+
/**
|
|
1737
|
+
* An opaque tag indicating the current version of the policy, used for concurrency control.
|
|
1738
|
+
*/
|
|
1739
|
+
etag?: string | null;
|
|
1740
|
+
/**
|
|
1741
|
+
* McpEnableRules contains MCP enablement related rules.
|
|
1742
|
+
*/
|
|
1743
|
+
mcpEnableRules?: Schema$McpEnableRule[];
|
|
1744
|
+
/**
|
|
1745
|
+
* Output only. The resource name of the policy. Only the `default` policy is supported. We allow the following formats: `projects/{PROJECT_NUMBER\}/mcpPolicies/default`, `projects/{PROJECT_ID\}/mcpPolicies/default`, `folders/{FOLDER_ID\}/mcpPolicies/default`, `organizations/{ORG_ID\}/mcpPolicies/default`.
|
|
1746
|
+
*/
|
|
1747
|
+
name?: string | null;
|
|
1748
|
+
/**
|
|
1749
|
+
* Output only. The time the policy was last updated.
|
|
1750
|
+
*/
|
|
1751
|
+
updateTime?: string | null;
|
|
1752
|
+
}
|
|
1753
|
+
/**
|
|
1754
|
+
* McpService contains the service names that are enabled for MCP.
|
|
1755
|
+
*/
|
|
1756
|
+
export interface Schema$McpService {
|
|
1757
|
+
/**
|
|
1758
|
+
* The names of the services that are enabled for MCP. Example: `services/library-example.googleapis.com`
|
|
1759
|
+
*/
|
|
1760
|
+
service?: string | null;
|
|
1761
|
+
}
|
|
1762
|
+
/**
|
|
1763
|
+
* Method represents a method of an API interface. New usages of this message as an alternative to MethodDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.
|
|
1681
1764
|
*/
|
|
1682
1765
|
export interface Schema$Method {
|
|
1766
|
+
/**
|
|
1767
|
+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS. This field should be ignored, instead the edition should be inherited from Api. This is similar to Field and EnumValue.
|
|
1768
|
+
*/
|
|
1769
|
+
edition?: string | null;
|
|
1683
1770
|
/**
|
|
1684
1771
|
* The simple name of this method.
|
|
1685
1772
|
*/
|
|
@@ -1705,7 +1792,7 @@ export declare namespace serviceusage_v1 {
|
|
|
1705
1792
|
*/
|
|
1706
1793
|
responseTypeUrl?: string | null;
|
|
1707
1794
|
/**
|
|
1708
|
-
* The source syntax of this method.
|
|
1795
|
+
* The source syntax of this method. This field should be ignored, instead the syntax should be inherited from Api. This is similar to Field and EnumValue.
|
|
1709
1796
|
*/
|
|
1710
1797
|
syntax?: string | null;
|
|
1711
1798
|
}
|
|
@@ -1953,7 +2040,7 @@ export declare namespace serviceusage_v1 {
|
|
|
1953
2040
|
resourceNames?: string[] | null;
|
|
1954
2041
|
}
|
|
1955
2042
|
/**
|
|
1956
|
-
* A protocol buffer option, which can be attached to a message, field, enumeration, etc.
|
|
2043
|
+
* A protocol buffer option, which can be attached to a message, field, enumeration, etc. New usages of this message as an alternative to FileOptions, MessageOptions, FieldOptions, EnumOptions, EnumValueOptions, ServiceOptions, or MethodOptions are strongly discouraged.
|
|
1957
2044
|
*/
|
|
1958
2045
|
export interface Schema$Option {
|
|
1959
2046
|
/**
|
|
@@ -2282,7 +2369,7 @@ export declare namespace serviceusage_v1 {
|
|
|
2282
2369
|
rules?: Schema$SystemParameterRule[];
|
|
2283
2370
|
}
|
|
2284
2371
|
/**
|
|
2285
|
-
* A protocol buffer message type.
|
|
2372
|
+
* A protocol buffer message type. New usages of this message as an alternative to DescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.
|
|
2286
2373
|
*/
|
|
2287
2374
|
export interface Schema$Type {
|
|
2288
2375
|
/**
|
|
@@ -2324,6 +2411,16 @@ export declare namespace serviceusage_v1 {
|
|
|
2324
2411
|
*/
|
|
2325
2412
|
export interface Schema$UpdateConsumerPolicyMetadata {
|
|
2326
2413
|
}
|
|
2414
|
+
/**
|
|
2415
|
+
* Metadata for the `UpdateContentSecurityPolicy` method.
|
|
2416
|
+
*/
|
|
2417
|
+
export interface Schema$UpdateContentSecurityPolicyMetadata {
|
|
2418
|
+
}
|
|
2419
|
+
/**
|
|
2420
|
+
* Metadata for the `UpdateMcpPolicy` method.
|
|
2421
|
+
*/
|
|
2422
|
+
export interface Schema$UpdateMcpPolicyMetadata {
|
|
2423
|
+
}
|
|
2327
2424
|
/**
|
|
2328
2425
|
* Configuration controlling usage of a service.
|
|
2329
2426
|
*/
|
|
@@ -2598,13 +2695,16 @@ export declare namespace serviceusage_v1 {
|
|
|
2598
2695
|
* pageSize: 'placeholder-value',
|
|
2599
2696
|
* // The standard list page token.
|
|
2600
2697
|
* pageToken: 'placeholder-value',
|
|
2698
|
+
* // When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.
|
|
2699
|
+
* returnPartialSuccess: 'placeholder-value',
|
|
2601
2700
|
* });
|
|
2602
2701
|
* console.log(res.data);
|
|
2603
2702
|
*
|
|
2604
2703
|
* // Example response
|
|
2605
2704
|
* // {
|
|
2606
2705
|
* // "nextPageToken": "my_nextPageToken",
|
|
2607
|
-
* // "operations": []
|
|
2706
|
+
* // "operations": [],
|
|
2707
|
+
* // "unreachable": []
|
|
2608
2708
|
* // }
|
|
2609
2709
|
* }
|
|
2610
2710
|
*
|
|
@@ -2666,6 +2766,10 @@ export declare namespace serviceusage_v1 {
|
|
|
2666
2766
|
* The standard list page token.
|
|
2667
2767
|
*/
|
|
2668
2768
|
pageToken?: string;
|
|
2769
|
+
/**
|
|
2770
|
+
* When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.
|
|
2771
|
+
*/
|
|
2772
|
+
returnPartialSuccess?: boolean;
|
|
2669
2773
|
}
|
|
2670
2774
|
export class Resource$Services {
|
|
2671
2775
|
context: APIRequestContext;
|
package/build/v1.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"v1.js","sourceRoot":"","sources":["../v1.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"v1.js","sourceRoot":"","sources":["../v1.ts"],"names":[],"mappings":"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"}
|
package/build/v1beta1.d.ts
CHANGED
|
@@ -169,9 +169,13 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
169
169
|
analysis?: Schema$Analysis[];
|
|
170
170
|
}
|
|
171
171
|
/**
|
|
172
|
-
* Api is a light-weight descriptor for an API Interface. Interfaces are also described as "protocol buffer services" in some contexts, such as by the "service" keyword in a .proto file, but they are different from API Services, which represent a concrete implementation of an interface as opposed to simply a description of methods and bindings. They are also sometimes simply referred to as "APIs" in other contexts, such as the name of this message itself. See https://cloud.google.com/apis/design/glossary for detailed terminology.
|
|
172
|
+
* Api is a light-weight descriptor for an API Interface. Interfaces are also described as "protocol buffer services" in some contexts, such as by the "service" keyword in a .proto file, but they are different from API Services, which represent a concrete implementation of an interface as opposed to simply a description of methods and bindings. They are also sometimes simply referred to as "APIs" in other contexts, such as the name of this message itself. See https://cloud.google.com/apis/design/glossary for detailed terminology. New usages of this message as an alternative to ServiceDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.
|
|
173
173
|
*/
|
|
174
174
|
export interface Schema$Api {
|
|
175
|
+
/**
|
|
176
|
+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
|
|
177
|
+
*/
|
|
178
|
+
edition?: string | null;
|
|
175
179
|
/**
|
|
176
180
|
* The methods of this interface, in unspecified order.
|
|
177
181
|
*/
|
|
@@ -339,6 +343,9 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
339
343
|
overridesByRequestProtocol?: {
|
|
340
344
|
[key: string]: Schema$BackendRule;
|
|
341
345
|
} | null;
|
|
346
|
+
/**
|
|
347
|
+
* no-lint
|
|
348
|
+
*/
|
|
342
349
|
pathTranslation?: string | null;
|
|
343
350
|
/**
|
|
344
351
|
* The protocol used for sending a request to the backend. The supported values are "http/1.1" and "h2". The default value is inferred from the scheme in the address field: SCHEME PROTOCOL http:// http/1.1 https:// http/1.1 grpc:// h2 grpcs:// h2 For secure HTTP backends (https://) that support HTTP/2, set this field to "h2" for improved performance. Configuring this field to non-default values is only supported for secure HTTP backends. This field will be ignored for all other backends. See https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids for more details on the supported values.
|
|
@@ -633,6 +640,37 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
633
640
|
*/
|
|
634
641
|
unit?: string | null;
|
|
635
642
|
}
|
|
643
|
+
/**
|
|
644
|
+
* ContentSecurity defines the content security related fields of a MCP policy.
|
|
645
|
+
*/
|
|
646
|
+
export interface Schema$ContentSecurity {
|
|
647
|
+
/**
|
|
648
|
+
* List of content security providers that are enabled for content scanning.
|
|
649
|
+
*/
|
|
650
|
+
contentSecurityProviders?: Schema$ContentSecurityProvider[];
|
|
651
|
+
}
|
|
652
|
+
/**
|
|
653
|
+
* Content Security Policy contains the content security related policy of a resource.
|
|
654
|
+
*/
|
|
655
|
+
export interface Schema$ContentSecurityPolicy {
|
|
656
|
+
/**
|
|
657
|
+
* mcp_content_security contains the content security related settings at resource level for MCP traffic.
|
|
658
|
+
*/
|
|
659
|
+
mcpContentSecurity?: Schema$ContentSecurity;
|
|
660
|
+
/**
|
|
661
|
+
* Output only. The resource name of the policy. Only the `default` policy is supported. We allow the following formats: `projects/{PROJECT_NUMBER\}/contentSecurityPolicies/default`, `projects/{PROJECT_ID\}/contentSecurityPolicies/default`, We only support project level content security policy for now.
|
|
662
|
+
*/
|
|
663
|
+
name?: string | null;
|
|
664
|
+
}
|
|
665
|
+
/**
|
|
666
|
+
* ContentSecurityProvider contains the name of content security provider.
|
|
667
|
+
*/
|
|
668
|
+
export interface Schema$ContentSecurityProvider {
|
|
669
|
+
/**
|
|
670
|
+
* Name of security service for content scanning, such as Google Cloud Model Armor or supported third-party ISV solutions. If it is Google 1P service, the name should be prefixed with `services/`. If it is a 3P service, the format needs to be documented. The currently supported values are: - `services/modelarmor.googleapis.com` for Google Cloud Model Armor.
|
|
671
|
+
*/
|
|
672
|
+
name?: string | null;
|
|
673
|
+
}
|
|
636
674
|
/**
|
|
637
675
|
* `Context` defines which contexts an API requests. Example: context: rules: - selector: "*" requested: - google.rpc.context.ProjectContext - google.rpc.context.OriginContext The above specifies that all methods in the API request `google.rpc.context.ProjectContext` and `google.rpc.context.OriginContext`. Available context types are defined in package `google.rpc.context`. This also provides mechanism to allowlist any protobuf message extension that can be sent in grpc metadata using “x-goog-ext--bin” and “x-goog-ext--jspb” format. For example, list any service specific protobuf types that can appear in grpc metadata as follows in your yaml file: Example: context: rules: - selector: "google.example.library.v1.LibraryService.CreateBook" allowed_request_extensions: - google.foo.v1.NewExtension allowed_response_extensions: - google.foo.v1.NewExtension You can also specify extension ID instead of fully qualified extension name here.
|
|
638
676
|
*/
|
|
@@ -918,7 +956,7 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
918
956
|
target?: string | null;
|
|
919
957
|
}
|
|
920
958
|
/**
|
|
921
|
-
* Enum type definition.
|
|
959
|
+
* Enum type definition. New usages of this message as an alternative to EnumDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.
|
|
922
960
|
*/
|
|
923
961
|
export interface Schema$Enum {
|
|
924
962
|
/**
|
|
@@ -947,7 +985,7 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
947
985
|
syntax?: string | null;
|
|
948
986
|
}
|
|
949
987
|
/**
|
|
950
|
-
* Enum value definition.
|
|
988
|
+
* Enum value definition. New usages of this message as an alternative to EnumValueDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.
|
|
951
989
|
*/
|
|
952
990
|
export interface Schema$EnumValue {
|
|
953
991
|
/**
|
|
@@ -981,7 +1019,7 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
981
1019
|
unversionedPackageDisabled?: boolean | null;
|
|
982
1020
|
}
|
|
983
1021
|
/**
|
|
984
|
-
* A single field of a message type.
|
|
1022
|
+
* A single field of a message type. New usages of this message as an alternative to FieldDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.
|
|
985
1023
|
*/
|
|
986
1024
|
export interface Schema$Field {
|
|
987
1025
|
/**
|
|
@@ -1379,12 +1417,6 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
1379
1417
|
* Consumer Policy is a set of rules that define what services or service groups can be used for a cloud resource hierarchy.
|
|
1380
1418
|
*/
|
|
1381
1419
|
export interface Schema$GoogleApiServiceusageV2betaConsumerPolicy {
|
|
1382
|
-
/**
|
|
1383
|
-
* 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)
|
|
1384
|
-
*/
|
|
1385
|
-
annotations?: {
|
|
1386
|
-
[key: string]: string;
|
|
1387
|
-
} | null;
|
|
1388
1420
|
/**
|
|
1389
1421
|
* Output only. The time the policy was created. For singleton policies, this is the first touch of the policy.
|
|
1390
1422
|
*/
|
|
@@ -1394,7 +1426,7 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
1394
1426
|
*/
|
|
1395
1427
|
enableRules?: Schema$GoogleApiServiceusageV2betaEnableRule[];
|
|
1396
1428
|
/**
|
|
1397
|
-
*
|
|
1429
|
+
* An opaque tag indicating the current version of the policy, used for concurrency control.
|
|
1398
1430
|
*/
|
|
1399
1431
|
etag?: string | null;
|
|
1400
1432
|
/**
|
|
@@ -1427,6 +1459,10 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
1427
1459
|
* Output only. The type of impact.
|
|
1428
1460
|
*/
|
|
1429
1461
|
impactType?: string | null;
|
|
1462
|
+
/**
|
|
1463
|
+
* Output only. This field will be populated only for the `DEPENDENCY_MISSING_DEPENDENCIES` impact type. Example: `services/compute.googleapis.com`. Impact.detail will be in format : `missing service dependency: {missing_dependency\}.`
|
|
1464
|
+
*/
|
|
1465
|
+
missingDependency?: string | null;
|
|
1430
1466
|
}
|
|
1431
1467
|
/**
|
|
1432
1468
|
* Metadata for the `UpdateConsumerPolicy` method.
|
|
@@ -1442,7 +1478,7 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
1442
1478
|
*/
|
|
1443
1479
|
common?: Schema$CommonLanguageSettings;
|
|
1444
1480
|
/**
|
|
1445
|
-
* 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
|
|
1481
|
+
* 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. Example: publishing: go_settings: renamed_services: Publisher: TopicAdmin
|
|
1446
1482
|
*/
|
|
1447
1483
|
renamedServices?: {
|
|
1448
1484
|
[key: string]: string;
|
|
@@ -1707,6 +1743,10 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
1707
1743
|
* A list of operations that matches the specified filter in the request.
|
|
1708
1744
|
*/
|
|
1709
1745
|
operations?: Schema$Operation[];
|
|
1746
|
+
/**
|
|
1747
|
+
* Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations.
|
|
1748
|
+
*/
|
|
1749
|
+
unreachable?: string[] | null;
|
|
1710
1750
|
}
|
|
1711
1751
|
/**
|
|
1712
1752
|
* Response message for the `ListServices` method.
|
|
@@ -1790,9 +1830,56 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
1790
1830
|
totalPollTimeout?: string | null;
|
|
1791
1831
|
}
|
|
1792
1832
|
/**
|
|
1793
|
-
*
|
|
1833
|
+
* McpEnableRule contains MCP enablement related rules.
|
|
1834
|
+
*/
|
|
1835
|
+
export interface Schema$McpEnableRule {
|
|
1836
|
+
/**
|
|
1837
|
+
* List of enabled MCP services.
|
|
1838
|
+
*/
|
|
1839
|
+
mcpServices?: Schema$McpService[];
|
|
1840
|
+
}
|
|
1841
|
+
/**
|
|
1842
|
+
* MCP Consumer Policy is a set of rules that define MCP related policy for a cloud resource hierarchy.
|
|
1843
|
+
*/
|
|
1844
|
+
export interface Schema$McpPolicy {
|
|
1845
|
+
/**
|
|
1846
|
+
* Output only. The time the policy was created. For singleton policies (such as the `default` policy), this is the first touch of the policy.
|
|
1847
|
+
*/
|
|
1848
|
+
createTime?: string | null;
|
|
1849
|
+
/**
|
|
1850
|
+
* An opaque tag indicating the current version of the policy, used for concurrency control.
|
|
1851
|
+
*/
|
|
1852
|
+
etag?: string | null;
|
|
1853
|
+
/**
|
|
1854
|
+
* McpEnableRules contains MCP enablement related rules.
|
|
1855
|
+
*/
|
|
1856
|
+
mcpEnableRules?: Schema$McpEnableRule[];
|
|
1857
|
+
/**
|
|
1858
|
+
* Output only. The resource name of the policy. Only the `default` policy is supported. We allow the following formats: `projects/{PROJECT_NUMBER\}/mcpPolicies/default`, `projects/{PROJECT_ID\}/mcpPolicies/default`, `folders/{FOLDER_ID\}/mcpPolicies/default`, `organizations/{ORG_ID\}/mcpPolicies/default`.
|
|
1859
|
+
*/
|
|
1860
|
+
name?: string | null;
|
|
1861
|
+
/**
|
|
1862
|
+
* Output only. The time the policy was last updated.
|
|
1863
|
+
*/
|
|
1864
|
+
updateTime?: string | null;
|
|
1865
|
+
}
|
|
1866
|
+
/**
|
|
1867
|
+
* McpService contains the service names that are enabled for MCP.
|
|
1868
|
+
*/
|
|
1869
|
+
export interface Schema$McpService {
|
|
1870
|
+
/**
|
|
1871
|
+
* The names of the services that are enabled for MCP. Example: `services/library-example.googleapis.com`
|
|
1872
|
+
*/
|
|
1873
|
+
service?: string | null;
|
|
1874
|
+
}
|
|
1875
|
+
/**
|
|
1876
|
+
* Method represents a method of an API interface. New usages of this message as an alternative to MethodDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.
|
|
1794
1877
|
*/
|
|
1795
1878
|
export interface Schema$Method {
|
|
1879
|
+
/**
|
|
1880
|
+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS. This field should be ignored, instead the edition should be inherited from Api. This is similar to Field and EnumValue.
|
|
1881
|
+
*/
|
|
1882
|
+
edition?: string | null;
|
|
1796
1883
|
/**
|
|
1797
1884
|
* The simple name of this method.
|
|
1798
1885
|
*/
|
|
@@ -1818,7 +1905,7 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
1818
1905
|
*/
|
|
1819
1906
|
responseTypeUrl?: string | null;
|
|
1820
1907
|
/**
|
|
1821
|
-
* The source syntax of this method.
|
|
1908
|
+
* The source syntax of this method. This field should be ignored, instead the syntax should be inherited from Api. This is similar to Field and EnumValue.
|
|
1822
1909
|
*/
|
|
1823
1910
|
syntax?: string | null;
|
|
1824
1911
|
}
|
|
@@ -2066,7 +2153,7 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
2066
2153
|
resourceNames?: string[] | null;
|
|
2067
2154
|
}
|
|
2068
2155
|
/**
|
|
2069
|
-
* A protocol buffer option, which can be attached to a message, field, enumeration, etc.
|
|
2156
|
+
* A protocol buffer option, which can be attached to a message, field, enumeration, etc. New usages of this message as an alternative to FileOptions, MessageOptions, FieldOptions, EnumOptions, EnumValueOptions, ServiceOptions, or MethodOptions are strongly discouraged.
|
|
2070
2157
|
*/
|
|
2071
2158
|
export interface Schema$Option {
|
|
2072
2159
|
/**
|
|
@@ -2549,7 +2636,7 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
2549
2636
|
rules?: Schema$SystemParameterRule[];
|
|
2550
2637
|
}
|
|
2551
2638
|
/**
|
|
2552
|
-
* A protocol buffer message type.
|
|
2639
|
+
* A protocol buffer message type. New usages of this message as an alternative to DescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.
|
|
2553
2640
|
*/
|
|
2554
2641
|
export interface Schema$Type {
|
|
2555
2642
|
/**
|
|
@@ -2591,6 +2678,16 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
2591
2678
|
*/
|
|
2592
2679
|
export interface Schema$UpdateConsumerPolicyMetadata {
|
|
2593
2680
|
}
|
|
2681
|
+
/**
|
|
2682
|
+
* Metadata for the `UpdateContentSecurityPolicy` method.
|
|
2683
|
+
*/
|
|
2684
|
+
export interface Schema$UpdateContentSecurityPolicyMetadata {
|
|
2685
|
+
}
|
|
2686
|
+
/**
|
|
2687
|
+
* Metadata for the `UpdateMcpPolicy` method.
|
|
2688
|
+
*/
|
|
2689
|
+
export interface Schema$UpdateMcpPolicyMetadata {
|
|
2690
|
+
}
|
|
2594
2691
|
/**
|
|
2595
2692
|
* Configuration controlling usage of a service.
|
|
2596
2693
|
*/
|
|
@@ -2737,13 +2834,16 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
2737
2834
|
* pageSize: 'placeholder-value',
|
|
2738
2835
|
* // The standard list page token.
|
|
2739
2836
|
* pageToken: 'placeholder-value',
|
|
2837
|
+
* // When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.
|
|
2838
|
+
* returnPartialSuccess: 'placeholder-value',
|
|
2740
2839
|
* });
|
|
2741
2840
|
* console.log(res.data);
|
|
2742
2841
|
*
|
|
2743
2842
|
* // Example response
|
|
2744
2843
|
* // {
|
|
2745
2844
|
* // "nextPageToken": "my_nextPageToken",
|
|
2746
|
-
* // "operations": []
|
|
2845
|
+
* // "operations": [],
|
|
2846
|
+
* // "unreachable": []
|
|
2747
2847
|
* // }
|
|
2748
2848
|
* }
|
|
2749
2849
|
*
|
|
@@ -2789,6 +2889,10 @@ export declare namespace serviceusage_v1beta1 {
|
|
|
2789
2889
|
* The standard list page token.
|
|
2790
2890
|
*/
|
|
2791
2891
|
pageToken?: string;
|
|
2892
|
+
/**
|
|
2893
|
+
* When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.
|
|
2894
|
+
*/
|
|
2895
|
+
returnPartialSuccess?: boolean;
|
|
2792
2896
|
}
|
|
2793
2897
|
export class Resource$Services {
|
|
2794
2898
|
context: APIRequestContext;
|