[][src]Struct gcp_client::google::cloud::securitycenter::v1beta1::security_center_client::SecurityCenterClient

pub struct SecurityCenterClient<T> { /* fields omitted */ }

V1 Beta APIs for Security Center service.

Implementations

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]

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]

Creates a source.

pub async fn create_finding<'_>(
    &'_ mut self,
    request: impl IntoRequest<CreateFindingRequest>
) -> Result<Response<Finding>, Status>
[src]

Creates a finding. The corresponding source must exist for finding creation to succeed.

pub async fn get_iam_policy<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
[src]

Gets the access control policy on the specified Source.

pub async fn get_organization_settings<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetOrganizationSettingsRequest>
) -> Result<Response<OrganizationSettings>, Status>
[src]

Gets the settings for an organization.

pub async fn get_source<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetSourceRequest>
) -> Result<Response<Source>, Status>
[src]

Gets a source.

pub async fn group_assets<'_>(
    &'_ mut self,
    request: impl IntoRequest<GroupAssetsRequest>
) -> Result<Response<GroupAssetsResponse>, Status>
[src]

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]

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: /v1beta1/organizations/{organization_id}/sources/-/findings

pub async fn list_assets<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListAssetsRequest>
) -> Result<Response<ListAssetsResponse>, Status>
[src]

Lists an organization's assets.

pub async fn list_findings<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListFindingsRequest>
) -> Result<Response<ListFindingsResponse>, Status>
[src]

Lists an organization or source's findings.

To list across all sources provide a - as the source id. Example: /v1beta1/organizations/{organization_id}/sources/-/findings

pub async fn list_sources<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListSourcesRequest>
) -> Result<Response<ListSourcesResponse>, Status>
[src]

Lists all sources belonging to an organization.

pub async fn run_asset_discovery<'_>(
    &'_ mut self,
    request: impl IntoRequest<RunAssetDiscoveryRequest>
) -> Result<Response<Operation>, Status>
[src]

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]

Updates the state of a finding.

pub async fn set_iam_policy<'_>(
    &'_ mut self,
    request: impl IntoRequest<SetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
[src]

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]

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]

Creates or updates a finding. The corresponding source must exist for a finding creation to succeed.

pub async fn update_organization_settings<'_>(
    &'_ mut self,
    request: impl IntoRequest<UpdateOrganizationSettingsRequest>
) -> Result<Response<OrganizationSettings>, Status>
[src]

Updates an organization's settings.

pub async fn update_source<'_>(
    &'_ mut self,
    request: impl IntoRequest<UpdateSourceRequest>
) -> Result<Response<Source>, Status>
[src]

Updates a source.

pub async fn update_security_marks<'_>(
    &'_ mut self,
    request: impl IntoRequest<UpdateSecurityMarksRequest>
) -> Result<Response<SecurityMarks>, Status>
[src]

Updates security marks.

Trait Implementations

impl<T: Clone> Clone for SecurityCenterClient<T>[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

impl<T> Sync for SecurityCenterClient<T> where
    T: Sync

impl<T> Unpin for SecurityCenterClient<T> where
    T: Unpin

impl<T> !UnwindSafe for SecurityCenterClient<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]