|
910 | 910 | "type": "string" |
911 | 911 | }, |
912 | 912 | "viewId": { |
913 | | - "description": "Required. A client-assigned identifier such as \"my-view\". Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods.", |
| 913 | + "description": "Required. A client-assigned identifier such as \"my-view\". Identifiers are limited to 100 characters and can include only letters, digits, underscores, and hyphens.", |
914 | 914 | "location": "query", |
915 | 915 | "type": "string" |
916 | 916 | } |
|
2736 | 2736 | "type": "string" |
2737 | 2737 | }, |
2738 | 2738 | "viewId": { |
2739 | | - "description": "Required. A client-assigned identifier such as \"my-view\". Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods.", |
| 2739 | + "description": "Required. A client-assigned identifier such as \"my-view\". Identifiers are limited to 100 characters and can include only letters, digits, underscores, and hyphens.", |
2740 | 2740 | "location": "query", |
2741 | 2741 | "type": "string" |
2742 | 2742 | } |
|
4317 | 4317 | "type": "string" |
4318 | 4318 | }, |
4319 | 4319 | "viewId": { |
4320 | | - "description": "Required. A client-assigned identifier such as \"my-view\". Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods.", |
| 4320 | + "description": "Required. A client-assigned identifier such as \"my-view\". Identifiers are limited to 100 characters and can include only letters, digits, underscores, and hyphens.", |
4321 | 4321 | "location": "query", |
4322 | 4322 | "type": "string" |
4323 | 4323 | } |
|
5554 | 5554 | "type": "string" |
5555 | 5555 | }, |
5556 | 5556 | "viewId": { |
5557 | | - "description": "Required. A client-assigned identifier such as \"my-view\". Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods.", |
| 5557 | + "description": "Required. A client-assigned identifier such as \"my-view\". Identifiers are limited to 100 characters and can include only letters, digits, underscores, and hyphens.", |
5558 | 5558 | "location": "query", |
5559 | 5559 | "type": "string" |
5560 | 5560 | } |
|
7356 | 7356 | "type": "string" |
7357 | 7357 | }, |
7358 | 7358 | "viewId": { |
7359 | | - "description": "Required. A client-assigned identifier such as \"my-view\". Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods.", |
| 7359 | + "description": "Required. A client-assigned identifier such as \"my-view\". Identifiers are limited to 100 characters and can include only letters, digits, underscores, and hyphens.", |
7360 | 7360 | "location": "query", |
7361 | 7361 | "type": "string" |
7362 | 7362 | } |
|
8922 | 8922 | } |
8923 | 8923 | } |
8924 | 8924 | }, |
8925 | | - "revision": "20250110", |
| 8925 | + "revision": "20250124", |
8926 | 8926 | "rootUrl": "https://logging.googleapis.com/", |
8927 | 8927 | "schemas": { |
8928 | | - "AuditConfig": { |
8929 | | - "description": "Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs.If there are AuditConfigs for both allServices and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted.Example Policy with multiple AuditConfigs: { \"audit_configs\": [ { \"service\": \"allServices\", \"audit_log_configs\": [ { \"log_type\": \"DATA_READ\", \"exempted_members\": [ \"user: [email protected]\" ] }, { \"log_type\": \"DATA_WRITE\" }, { \"log_type\": \"ADMIN_READ\" } ] }, { \"service\": \"sampleservice.googleapis.com\", \"audit_log_configs\": [ { \"log_type\": \"DATA_READ\" }, { \"log_type\": \"DATA_WRITE\", \"exempted_members\": [ \"user: [email protected]\" ] } ] } ] } For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts [email protected] from DATA_READ logging, and [email protected] from DATA_WRITE logging.", |
8930 | | - "id": "AuditConfig", |
8931 | | - "properties": { |
8932 | | - "auditLogConfigs": { |
8933 | | - "description": "The configuration for logging of each type of permission.", |
8934 | | - "items": { |
8935 | | - "$ref": "AuditLogConfig" |
8936 | | - }, |
8937 | | - "type": "array" |
8938 | | - }, |
8939 | | - "service": { |
8940 | | - "description": "Specifies a service that will be enabled for audit logging. For example, storage.googleapis.com, cloudsql.googleapis.com. allServices is a special value that covers all services.", |
8941 | | - "type": "string" |
8942 | | - } |
8943 | | - }, |
8944 | | - "type": "object" |
8945 | | - }, |
8946 | | - "AuditLogConfig": { |
8947 | | - "description": "Provides the configuration for logging a type of permissions. Example: { \"audit_log_configs\": [ { \"log_type\": \"DATA_READ\", \"exempted_members\": [ \"user: [email protected]\" ] }, { \"log_type\": \"DATA_WRITE\" } ] } This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting [email protected] from DATA_READ logging.", |
8948 | | - "id": "AuditLogConfig", |
8949 | | - "properties": { |
8950 | | - "exemptedMembers": { |
8951 | | - "description": "Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.", |
8952 | | - "items": { |
8953 | | - "type": "string" |
8954 | | - }, |
8955 | | - "type": "array" |
8956 | | - }, |
8957 | | - "logType": { |
8958 | | - "description": "The log type that this config enables.", |
8959 | | - "enum": [ |
8960 | | - "LOG_TYPE_UNSPECIFIED", |
8961 | | - "ADMIN_READ", |
8962 | | - "DATA_WRITE", |
8963 | | - "DATA_READ" |
8964 | | - ], |
8965 | | - "enumDescriptions": [ |
8966 | | - "Default case. Should never be this.", |
8967 | | - "Admin reads. Example: CloudIAM getIamPolicy", |
8968 | | - "Data writes. Example: CloudSQL Users create", |
8969 | | - "Data reads. Example: CloudSQL Users list" |
8970 | | - ], |
8971 | | - "type": "string" |
8972 | | - } |
8973 | | - }, |
8974 | | - "type": "object" |
8975 | | - }, |
8976 | 8928 | "BigQueryDataset": { |
8977 | 8929 | "description": "Describes a BigQuery dataset that was created by a link.", |
8978 | 8930 | "id": "BigQueryDataset", |
|
10927 | 10879 | "description": "An Identity and Access Management (IAM) policy, which specifies access controls for Google Cloud resources.A Policy is a collection of bindings. A binding binds one or more members, or principals, to a single role. Principals can be user accounts, service accounts, Google groups, and domains (such as G Suite). A role is a named list of permissions; each role can be an IAM predefined role or a user-created custom role.For some types of Google Cloud resources, a binding can also specify a condition, which is a logical expression that allows access to a resource only if the expression evaluates to true. A condition can add constraints based on attributes of the request, the resource, or both. To learn which resources support conditions in their IAM policies, see the IAM documentation (https://cloud.google.com/iam/help/conditions/resource-policies).JSON example: { \"bindings\": [ { \"role\": \"roles/resourcemanager.organizationAdmin\", \"members\": [ \"user: [email protected]\", \"group: [email protected]\", \"domain:google.com\", \"serviceAccount: [email protected]\" ] }, { \"role\": \"roles/resourcemanager.organizationViewer\", \"members\": [ \"user: [email protected]\" ], \"condition\": { \"title\": \"expirable access\", \"description\": \"Does not grant access after Sep 2020\", \"expression\": \"request.time < timestamp('2020-10-01T00:00:00.000Z')\", } } ], \"etag\": \"BwWWja0YfJA=\", \"version\": 3 } YAML example: bindings: - members: - user: [email protected] - group: [email protected] - domain:google.com - serviceAccount: [email protected] role: roles/resourcemanager.organizationAdmin - members: - user: [email protected] role: roles/resourcemanager.organizationViewer condition: title: expirable access description: Does not grant access after Sep 2020 expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a description of IAM and its features, see the IAM documentation (https://cloud.google.com/iam/docs/).", |
10928 | 10880 | "id": "Policy", |
10929 | 10881 | "properties": { |
10930 | | - "auditConfigs": { |
10931 | | - "description": "Specifies cloud audit logging configuration for this policy.", |
10932 | | - "items": { |
10933 | | - "$ref": "AuditConfig" |
10934 | | - }, |
10935 | | - "type": "array" |
10936 | | - }, |
10937 | 10882 | "bindings": { |
10938 | 10883 | "description": "Associates a list of members, or principals, with a role. Optionally, may specify a condition that determines how and when the bindings are applied. Each of the bindings must contain at least one principal.The bindings in a Policy can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the bindings grant 50 different roles to user: [email protected], and not to any other principal, then you can add another 1,450 principals to the bindings in the Policy.", |
10939 | 10884 | "items": { |
|
0 commit comments