@@ -161,7 +161,7 @@ service SecurityCenter {
161161 option (google.api.method_signature ) = "name" ;
162162 }
163163
164- // Gets a big query export.
164+ // Gets a BigQuery export.
165165 rpc GetBigQueryExport (GetBigQueryExportRequest ) returns (BigQueryExport ) {
166166 option (google.api.http ) = {
167167 get : "/v1/{name=organizations/*/bigQueryExports/*}"
@@ -507,7 +507,7 @@ service SecurityCenter {
507507 option (google.api.method_signature ) = "security_marks" ;
508508 }
509509
510- // Creates a big query export.
510+ // Creates a BigQuery export.
511511 rpc CreateBigQueryExport (CreateBigQueryExportRequest )
512512 returns (BigQueryExport ) {
513513 option (google.api.http ) = {
@@ -526,7 +526,7 @@ service SecurityCenter {
526526 "parent,big_query_export,big_query_export_id" ;
527527 }
528528
529- // Deletes an existing big query export.
529+ // Deletes an existing BigQuery export.
530530 rpc DeleteBigQueryExport (DeleteBigQueryExportRequest )
531531 returns (google.protobuf.Empty ) {
532532 option (google.api.http ) = {
@@ -673,8 +673,8 @@ message CreateNotificationConfigRequest {
673673
674674 // Required.
675675 // Unique identifier provided by the client within the parent scope.
676- // It must be between 1 and 128 characters, and contains alphanumeric
677- // characters, underscores or hyphens only.
676+ // It must be between 1 and 128 characters and contain alphanumeric
677+ // characters, underscores, or hyphens only.
678678 string config_id = 2 [(google.api.field_behavior ) = REQUIRED ];
679679
680680 // Required. The notification config being created. The name and the service
@@ -717,7 +717,9 @@ message DeleteMuteConfigRequest {
717717// Request message for deleting a notification config.
718718message DeleteNotificationConfigRequest {
719719 // Required. Name of the notification config to delete. Its format is
720- // "organizations/[organization_id]/notificationConfigs/[config_id]".
720+ // "organizations/[organization_id]/notificationConfigs/[config_id]",
721+ // "folders/[folder_id]/notificationConfigs/[config_id]",
722+ // or "projects/[project_id]/notificationConfigs/[config_id]".
721723 string name = 1 [
722724 (google.api.field_behavior ) = REQUIRED ,
723725 (google.api.resource_reference ) = {
@@ -726,9 +728,9 @@ message DeleteNotificationConfigRequest {
726728 ];
727729}
728730
729- // Request message for retrieving a big query export.
731+ // Request message for retrieving a BigQuery export.
730732message GetBigQueryExportRequest {
731- // Required. Name of the big query export to retrieve. Its format is
733+ // Required. Name of the BigQuery export to retrieve. Its format is
732734 // organizations/{organization}/bigQueryExports/{export_id},
733735 // folders/{folder}/bigQueryExports/{export_id}, or
734736 // projects/{project}/bigQueryExports/{export_id}
@@ -757,7 +759,9 @@ message GetMuteConfigRequest {
757759// Request message for getting a notification config.
758760message GetNotificationConfigRequest {
759761 // Required. Name of the notification config to get. Its format is
760- // "organizations/[organization_id]/notificationConfigs/[config_id]".
762+ // "organizations/[organization_id]/notificationConfigs/[config_id]",
763+ // "folders/[folder_id]/notificationConfigs/[config_id]",
764+ // or "projects/[project_id]/notificationConfigs/[config_id]".
761765 string name = 1 [
762766 (google.api.field_behavior ) = REQUIRED ,
763767 (google.api.resource_reference ) = {
@@ -792,7 +796,7 @@ message GetSourceRequest {
792796
793797// Request message for grouping by assets.
794798message GroupAssetsRequest {
795- // Required. Name of the organization to groupBy . Its format is
799+ // Required. The name of the parent to group the assets by . Its format is
796800 // "organizations/[organization_id], folders/[folder_id], or
797801 // projects/[project_id]".
798802 string parent = 1 [
@@ -1159,9 +1163,9 @@ message ListMuteConfigsResponse {
11591163
11601164// Request message for listing notification configs.
11611165message ListNotificationConfigsRequest {
1162- // Required. Name of the organization to list notification configs. Its format
1163- // is "organizations/[organization_id]", "folders/[folder_id]", or
1164- // "projects/[project_id]".
1166+ // Required. The name of the parent in which to list the notification
1167+ // configurations. Its format is "organizations/[organization_id]",
1168+ // "folders/[folder_id]", or " projects/[project_id]".
11651169 string parent = 1 [
11661170 (google.api.field_behavior ) = REQUIRED ,
11671171 (google.api.resource_reference ) = {
@@ -1223,8 +1227,8 @@ message ListSourcesResponse {
12231227
12241228// Request message for listing assets.
12251229message ListAssetsRequest {
1226- // Required. Name of the organization assets should belong to. Its format is
1227- // "organizations/[organization_id], folders/[folder_id], or
1230+ // Required. The name of the parent that the listed assets belong to. Its
1231+ // format is "organizations/[organization_id], folders/[folder_id], or
12281232 // projects/[project_id]".
12291233 string parent = 1 [
12301234 (google.api.field_behavior ) = REQUIRED ,
@@ -1652,10 +1656,12 @@ message ListFindingsResponse {
16521656
16531657// Request message for updating a finding's state.
16541658message SetFindingStateRequest {
1655- // Required. The relative resource name of the finding. See:
1656- // https://cloud.google.com/apis/design/resource_names#relative_resource_name
1657- // Example:
1658- // "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}".
1659+ // Required. The [relative resource
1660+ // name](https://cloud.google.com/apis/design/resource_names#relative_resource_name)
1661+ // of the finding. Example:
1662+ // "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}",
1663+ // "folders/{folder_id}/sources/{source_id}/findings/{finding_id}",
1664+ // "projects/{project_id}/sources/{source_id}/findings/{finding_id}".
16591665 string name = 1 [
16601666 (google.api.field_behavior ) = REQUIRED ,
16611667 (google.api.resource_reference ) = {
@@ -1673,9 +1679,9 @@ message SetFindingStateRequest {
16731679
16741680// Request message for updating a finding's mute status.
16751681message SetMuteRequest {
1676- // Required. The relative resource name of the finding. See:
1677- // https://cloud.google.com/apis/design/resource_names#relative_resource_name
1678- // Example:
1682+ // Required. The [ relative resource
1683+ // name]( https://cloud.google.com/apis/design/resource_names#relative_resource_name)
1684+ // of the finding. Example:
16791685 // "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}",
16801686 // "folders/{folder_id}/sources/{source_id}/findings/{finding_id}",
16811687 // "projects/{project_id}/sources/{source_id}/findings/{finding_id}".
@@ -1797,10 +1803,10 @@ message UpdateSecurityMarksRequest {
17971803 google.protobuf.Timestamp start_time = 3 ;
17981804}
17991805
1800- // Request message for creating a big query export.
1806+ // Request message for creating a BigQuery export.
18011807message CreateBigQueryExportRequest {
1802- // Required. Resource name of the new big query export's parent. Its format is
1803- // "organizations/[organization_id]", "folders/[folder_id]", or
1808+ // Required. The name of the parent resource of the new BigQuery export. Its
1809+ // format is "organizations/[organization_id]", "folders/[folder_id]", or
18041810 // "projects/[project_id]".
18051811 string parent = 1 [
18061812 (google.api.field_behavior ) = REQUIRED ,
@@ -1809,7 +1815,7 @@ message CreateBigQueryExportRequest {
18091815 }
18101816 ];
18111817
1812- // Required. The big query export being created.
1818+ // Required. The BigQuery export being created.
18131819 BigQueryExport big_query_export = 2 [(google.api.field_behavior ) = REQUIRED ];
18141820
18151821 // Required. Unique identifier provided by the client within the parent scope.
@@ -1865,9 +1871,9 @@ message ListBigQueryExportsResponse {
18651871 string next_page_token = 2 ;
18661872}
18671873
1868- // Request message for deleting a big query export.
1874+ // Request message for deleting a BigQuery export.
18691875message DeleteBigQueryExportRequest {
1870- // Required. Name of the big query export to delete. Its format is
1876+ // Required. The name of the BigQuery export to delete. Its format is
18711877 // organizations/{organization}/bigQueryExports/{export_id},
18721878 // folders/{folder}/bigQueryExports/{export_id}, or
18731879 // projects/{project}/bigQueryExports/{export_id}
0 commit comments