[][src]Struct gcp_client::google::cloud::securitycenter::v1::CreateFindingRequest

pub struct CreateFindingRequest {
    pub parent: String,
    pub finding_id: String,
    pub finding: Option<Finding>,
}

Request message for creating a finding.

Fields

parent: String

Required. Resource name of the new finding's parent. Its format should be "organizations/[organization_id]/sources/[source_id]".

finding_id: String

Required. Unique identifier provided by the client within the parent scope. It must be alphanumeric and less than or equal to 32 characters and greater than 0 characters in length.

finding: Option<Finding>

Required. The Finding being created. The name and security_marks will be ignored as they are both output only fields on this resource.

Trait Implementations

impl Clone for CreateFindingRequest[src]

impl Debug for CreateFindingRequest[src]

impl Default for CreateFindingRequest[src]

impl Message for CreateFindingRequest[src]

impl PartialEq<CreateFindingRequest> for CreateFindingRequest[src]

impl StructuralPartialEq for CreateFindingRequest[src]

Auto Trait Implementations

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]