Struct gapi_grpc::google::cloud::securitycenter::v1::security_center_client::SecurityCenterClient [−][src]
V1 APIs for Security Center service.
Implementations
impl SecurityCenterClient<Channel>
[src]
pub async fn connect<D>(dst: D) -> Result<Self, Error> where
D: TryInto<Endpoint>,
D::Error: Into<StdError>,
[src]
D: TryInto<Endpoint>,
D::Error: Into<StdError>,
Attempt to create a new client by connecting to a given endpoint.
impl<T> SecurityCenterClient<T> where
T: GrpcService<BoxBody>,
T::ResponseBody: Body + HttpBody + Send + 'static,
T::Error: Into<StdError>,
<T::ResponseBody as HttpBody>::Error: Into<StdError> + Send,
[src]
T: GrpcService<BoxBody>,
T::ResponseBody: Body + HttpBody + Send + 'static,
T::Error: Into<StdError>,
<T::ResponseBody as HttpBody>::Error: Into<StdError> + Send,
pub fn new(inner: T) -> Self
[src]
pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self
[src]
pub async fn create_source(
&mut self,
request: impl IntoRequest<CreateSourceRequest>
) -> Result<Response<Source>, Status>
[src]
&mut self,
request: impl IntoRequest<CreateSourceRequest>
) -> Result<Response<Source>, Status>
Creates a source.
pub async fn create_finding(
&mut self,
request: impl IntoRequest<CreateFindingRequest>
) -> Result<Response<Finding>, Status>
[src]
&mut self,
request: impl IntoRequest<CreateFindingRequest>
) -> Result<Response<Finding>, Status>
Creates a finding. The corresponding source must exist for finding creation to succeed.
pub async fn create_notification_config(
&mut self,
request: impl IntoRequest<CreateNotificationConfigRequest>
) -> Result<Response<NotificationConfig>, Status>
[src]
&mut self,
request: impl IntoRequest<CreateNotificationConfigRequest>
) -> Result<Response<NotificationConfig>, Status>
Creates a notification config.
pub async fn delete_notification_config(
&mut self,
request: impl IntoRequest<DeleteNotificationConfigRequest>
) -> Result<Response<()>, Status>
[src]
&mut self,
request: impl IntoRequest<DeleteNotificationConfigRequest>
) -> Result<Response<()>, Status>
Deletes a notification config.
pub async fn get_iam_policy(
&mut self,
request: impl IntoRequest<GetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
[src]
&mut self,
request: impl IntoRequest<GetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
Gets the access control policy on the specified Source.
pub async fn get_notification_config(
&mut self,
request: impl IntoRequest<GetNotificationConfigRequest>
) -> Result<Response<NotificationConfig>, Status>
[src]
&mut self,
request: impl IntoRequest<GetNotificationConfigRequest>
) -> Result<Response<NotificationConfig>, Status>
Gets a notification config.
pub async fn get_organization_settings(
&mut self,
request: impl IntoRequest<GetOrganizationSettingsRequest>
) -> Result<Response<OrganizationSettings>, Status>
[src]
&mut self,
request: impl IntoRequest<GetOrganizationSettingsRequest>
) -> Result<Response<OrganizationSettings>, Status>
Gets the settings for an organization.
pub async fn get_source(
&mut self,
request: impl IntoRequest<GetSourceRequest>
) -> Result<Response<Source>, Status>
[src]
&mut self,
request: impl IntoRequest<GetSourceRequest>
) -> Result<Response<Source>, Status>
Gets a source.
pub async fn group_assets(
&mut self,
request: impl IntoRequest<GroupAssetsRequest>
) -> Result<Response<GroupAssetsResponse>, Status>
[src]
&mut self,
request: impl IntoRequest<GroupAssetsRequest>
) -> Result<Response<GroupAssetsResponse>, Status>
Filters an organization’s assets and groups them by their specified properties.
pub async fn group_findings(
&mut self,
request: impl IntoRequest<GroupFindingsRequest>
) -> Result<Response<GroupFindingsResponse>, Status>
[src]
&mut self,
request: impl IntoRequest<GroupFindingsRequest>
) -> Result<Response<GroupFindingsResponse>, Status>
Filters an organization or source’s findings and groups them by their specified properties.
To group across all sources provide a -
as the source id.
Example: /v1/organizations/{organization_id}/sources/-/findings,
/v1/folders/{folder_id}/sources/-/findings,
/v1/projects/{project_id}/sources/-/findings
pub async fn list_assets(
&mut self,
request: impl IntoRequest<ListAssetsRequest>
) -> Result<Response<ListAssetsResponse>, Status>
[src]
&mut self,
request: impl IntoRequest<ListAssetsRequest>
) -> Result<Response<ListAssetsResponse>, Status>
Lists an organization’s assets.
pub async fn list_findings(
&mut self,
request: impl IntoRequest<ListFindingsRequest>
) -> Result<Response<ListFindingsResponse>, Status>
[src]
&mut self,
request: impl IntoRequest<ListFindingsRequest>
) -> Result<Response<ListFindingsResponse>, Status>
Lists an organization or source’s findings.
To list across all sources provide a -
as the source id.
Example: /v1/organizations/{organization_id}/sources/-/findings
pub async fn list_notification_configs(
&mut self,
request: impl IntoRequest<ListNotificationConfigsRequest>
) -> Result<Response<ListNotificationConfigsResponse>, Status>
[src]
&mut self,
request: impl IntoRequest<ListNotificationConfigsRequest>
) -> Result<Response<ListNotificationConfigsResponse>, Status>
Lists notification configs.
pub async fn list_sources(
&mut self,
request: impl IntoRequest<ListSourcesRequest>
) -> Result<Response<ListSourcesResponse>, Status>
[src]
&mut self,
request: impl IntoRequest<ListSourcesRequest>
) -> Result<Response<ListSourcesResponse>, Status>
Lists all sources belonging to an organization.
pub async fn run_asset_discovery(
&mut self,
request: impl IntoRequest<RunAssetDiscoveryRequest>
) -> Result<Response<Operation>, Status>
[src]
&mut self,
request: impl IntoRequest<RunAssetDiscoveryRequest>
) -> Result<Response<Operation>, Status>
Runs asset discovery. The discovery is tracked with a long-running operation.
This API can only be called with limited frequency for an organization. If it is called too frequently the caller will receive a TOO_MANY_REQUESTS error.
pub async fn set_finding_state(
&mut self,
request: impl IntoRequest<SetFindingStateRequest>
) -> Result<Response<Finding>, Status>
[src]
&mut self,
request: impl IntoRequest<SetFindingStateRequest>
) -> Result<Response<Finding>, Status>
Updates the state of a finding.
pub async fn set_iam_policy(
&mut self,
request: impl IntoRequest<SetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
[src]
&mut self,
request: impl IntoRequest<SetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
Sets the access control policy on the specified Source.
pub async fn test_iam_permissions(
&mut self,
request: impl IntoRequest<TestIamPermissionsRequest>
) -> Result<Response<TestIamPermissionsResponse>, Status>
[src]
&mut self,
request: impl IntoRequest<TestIamPermissionsRequest>
) -> Result<Response<TestIamPermissionsResponse>, Status>
Returns the permissions that a caller has on the specified source.
pub async fn update_finding(
&mut self,
request: impl IntoRequest<UpdateFindingRequest>
) -> Result<Response<Finding>, Status>
[src]
&mut self,
request: impl IntoRequest<UpdateFindingRequest>
) -> Result<Response<Finding>, Status>
Creates or updates a finding. The corresponding source must exist for a finding creation to succeed.
pub async fn update_notification_config(
&mut self,
request: impl IntoRequest<UpdateNotificationConfigRequest>
) -> Result<Response<NotificationConfig>, Status>
[src]
&mut self,
request: impl IntoRequest<UpdateNotificationConfigRequest>
) -> Result<Response<NotificationConfig>, Status>
Updates a notification config. The following update fields are allowed: description, pubsub_topic, streaming_config.filter
pub async fn update_organization_settings(
&mut self,
request: impl IntoRequest<UpdateOrganizationSettingsRequest>
) -> Result<Response<OrganizationSettings>, Status>
[src]
&mut self,
request: impl IntoRequest<UpdateOrganizationSettingsRequest>
) -> Result<Response<OrganizationSettings>, Status>
Updates an organization’s settings.
pub async fn update_source(
&mut self,
request: impl IntoRequest<UpdateSourceRequest>
) -> Result<Response<Source>, Status>
[src]
&mut self,
request: impl IntoRequest<UpdateSourceRequest>
) -> Result<Response<Source>, Status>
Updates a source.
pub async fn update_security_marks(
&mut self,
request: impl IntoRequest<UpdateSecurityMarksRequest>
) -> Result<Response<SecurityMarks>, Status>
[src]
&mut self,
request: impl IntoRequest<UpdateSecurityMarksRequest>
) -> Result<Response<SecurityMarks>, Status>
Updates security marks.
Trait Implementations
impl<T: Clone> Clone for SecurityCenterClient<T>
[src]
fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T> Debug for SecurityCenterClient<T>
[src]
Auto Trait Implementations
impl<T> !RefUnwindSafe for SecurityCenterClient<T>
impl<T> Send for SecurityCenterClient<T> where
T: Send,
T: Send,
impl<T> Sync for SecurityCenterClient<T> where
T: Sync,
T: Sync,
impl<T> Unpin for SecurityCenterClient<T> where
T: Unpin,
T: Unpin,
impl<T> !UnwindSafe for SecurityCenterClient<T>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoRequest<T> for T
[src]
pub fn into_request(self) -> Request<T>
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,
impl<T> WithSubscriber for T
[src]
pub fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]
S: Into<Dispatch>,