Security Command Center v2 API - Class SecurityCenterClient (1.0.0-beta03)

public abstract class SecurityCenterClient

Reference documentation and code samples for the Security Command Center v2 API class SecurityCenterClient.

SecurityCenter client wrapper, for convenient use.

Inheritance

object > SecurityCenterClient

Derived Types

Namespace

Google.Cloud.SecurityCenter.V2

Assembly

Google.Cloud.SecurityCenter.V2.dll

Remarks

V2 APIs for Security Center service.

Properties

BulkMuteFindingsOperationsClient

public virtual OperationsClient BulkMuteFindingsOperationsClient { get; }

The long-running operations client for BulkMuteFindings.

Property Value
Type Description
OperationsClient

DefaultEndpoint

public static string DefaultEndpoint { get; }

The default endpoint for the SecurityCenter service, which is a host of "securitycenter.googleapis.com" and a port of 443.

Property Value
Type Description
string

DefaultScopes

public static IReadOnlyList<string> DefaultScopes { get; }

The default SecurityCenter scopes.

Property Value
Type Description
IReadOnlyListstring
Remarks

The default SecurityCenter scopes are:

GrpcClient

public virtual SecurityCenter.SecurityCenterClient GrpcClient { get; }

The underlying gRPC SecurityCenter client

Property Value
Type Description
SecurityCenterSecurityCenterClient

ServiceMetadata

public static ServiceMetadata ServiceMetadata { get; }

The service metadata associated with this client type.

Property Value
Type Description
ServiceMetadata

Methods

BatchCreateResourceValueConfigs(OrganizationName, IEnumerable<CreateResourceValueConfigRequest>, CallSettings)

public virtual BatchCreateResourceValueConfigsResponse BatchCreateResourceValueConfigs(OrganizationName parent, IEnumerable<CreateResourceValueConfigRequest> requests, CallSettings callSettings = null)

Creates a ResourceValueConfig for an organization. Maps user's tags to difference resource values for use by the attack path simulation.

Parameters
Name Description
parent OrganizationName

Required. Resource name of the new ResourceValueConfig's parent. The parent field in the CreateResourceValueConfigRequest messages must either be empty or match this field.

requests IEnumerableCreateResourceValueConfigRequest

Required. The resource value configs to be created.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
BatchCreateResourceValueConfigsResponse

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
IEnumerable<CreateResourceValueConfigRequest> requests = new CreateResourceValueConfigRequest[]
{
    new CreateResourceValueConfigRequest(),
};
// Make the request
BatchCreateResourceValueConfigsResponse response = securityCenterClient.BatchCreateResourceValueConfigs(parent, requests);

BatchCreateResourceValueConfigs(BatchCreateResourceValueConfigsRequest, CallSettings)

public virtual BatchCreateResourceValueConfigsResponse BatchCreateResourceValueConfigs(BatchCreateResourceValueConfigsRequest request, CallSettings callSettings = null)

Creates a ResourceValueConfig for an organization. Maps user's tags to difference resource values for use by the attack path simulation.

Parameters
Name Description
request BatchCreateResourceValueConfigsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
BatchCreateResourceValueConfigsResponse

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
BatchCreateResourceValueConfigsRequest request = new BatchCreateResourceValueConfigsRequest
{
    ParentAsOrganizationName = OrganizationName.FromOrganization("[ORGANIZATION]"),
    Requests =
    {
        new CreateResourceValueConfigRequest(),
    },
};
// Make the request
BatchCreateResourceValueConfigsResponse response = securityCenterClient.BatchCreateResourceValueConfigs(request);

BatchCreateResourceValueConfigs(string, IEnumerable<CreateResourceValueConfigRequest>, CallSettings)

public virtual BatchCreateResourceValueConfigsResponse BatchCreateResourceValueConfigs(string parent, IEnumerable<CreateResourceValueConfigRequest> requests, CallSettings callSettings = null)

Creates a ResourceValueConfig for an organization. Maps user's tags to difference resource values for use by the attack path simulation.

Parameters
Name Description
parent string

Required. Resource name of the new ResourceValueConfig's parent. The parent field in the CreateResourceValueConfigRequest messages must either be empty or match this field.

requests IEnumerableCreateResourceValueConfigRequest

Required. The resource value configs to be created.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
BatchCreateResourceValueConfigsResponse

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]";
IEnumerable<CreateResourceValueConfigRequest> requests = new CreateResourceValueConfigRequest[]
{
    new CreateResourceValueConfigRequest(),
};
// Make the request
BatchCreateResourceValueConfigsResponse response = securityCenterClient.BatchCreateResourceValueConfigs(parent, requests);

BatchCreateResourceValueConfigsAsync(OrganizationName, IEnumerable<CreateResourceValueConfigRequest>, CallSettings)

public virtual Task<BatchCreateResourceValueConfigsResponse> BatchCreateResourceValueConfigsAsync(OrganizationName parent, IEnumerable<CreateResourceValueConfigRequest> requests, CallSettings callSettings = null)

Creates a ResourceValueConfig for an organization. Maps user's tags to difference resource values for use by the attack path simulation.

Parameters
Name Description
parent OrganizationName

Required. Resource name of the new ResourceValueConfig's parent. The parent field in the CreateResourceValueConfigRequest messages must either be empty or match this field.

requests IEnumerableCreateResourceValueConfigRequest

Required. The resource value configs to be created.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskBatchCreateResourceValueConfigsResponse

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
IEnumerable<CreateResourceValueConfigRequest> requests = new CreateResourceValueConfigRequest[]
{
    new CreateResourceValueConfigRequest(),
};
// Make the request
BatchCreateResourceValueConfigsResponse response = await securityCenterClient.BatchCreateResourceValueConfigsAsync(parent, requests);

BatchCreateResourceValueConfigsAsync(OrganizationName, IEnumerable<CreateResourceValueConfigRequest>, CancellationToken)

public virtual Task<BatchCreateResourceValueConfigsResponse> BatchCreateResourceValueConfigsAsync(OrganizationName parent, IEnumerable<CreateResourceValueConfigRequest> requests, CancellationToken cancellationToken)

Creates a ResourceValueConfig for an organization. Maps user's tags to difference resource values for use by the attack path simulation.

Parameters
Name Description
parent OrganizationName

Required. Resource name of the new ResourceValueConfig's parent. The parent field in the CreateResourceValueConfigRequest messages must either be empty or match this field.

requests IEnumerableCreateResourceValueConfigRequest

Required. The resource value configs to be created.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskBatchCreateResourceValueConfigsResponse

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
IEnumerable<CreateResourceValueConfigRequest> requests = new CreateResourceValueConfigRequest[]
{
    new CreateResourceValueConfigRequest(),
};
// Make the request
BatchCreateResourceValueConfigsResponse response = await securityCenterClient.BatchCreateResourceValueConfigsAsync(parent, requests);

BatchCreateResourceValueConfigsAsync(BatchCreateResourceValueConfigsRequest, CallSettings)

public virtual Task<BatchCreateResourceValueConfigsResponse> BatchCreateResourceValueConfigsAsync(BatchCreateResourceValueConfigsRequest request, CallSettings callSettings = null)

Creates a ResourceValueConfig for an organization. Maps user's tags to difference resource values for use by the attack path simulation.

Parameters
Name Description
request BatchCreateResourceValueConfigsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskBatchCreateResourceValueConfigsResponse

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
BatchCreateResourceValueConfigsRequest request = new BatchCreateResourceValueConfigsRequest
{
    ParentAsOrganizationName = OrganizationName.FromOrganization("[ORGANIZATION]"),
    Requests =
    {
        new CreateResourceValueConfigRequest(),
    },
};
// Make the request
BatchCreateResourceValueConfigsResponse response = await securityCenterClient.BatchCreateResourceValueConfigsAsync(request);

BatchCreateResourceValueConfigsAsync(BatchCreateResourceValueConfigsRequest, CancellationToken)

public virtual Task<BatchCreateResourceValueConfigsResponse> BatchCreateResourceValueConfigsAsync(BatchCreateResourceValueConfigsRequest request, CancellationToken cancellationToken)

Creates a ResourceValueConfig for an organization. Maps user's tags to difference resource values for use by the attack path simulation.

Parameters
Name Description
request BatchCreateResourceValueConfigsRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskBatchCreateResourceValueConfigsResponse

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
BatchCreateResourceValueConfigsRequest request = new BatchCreateResourceValueConfigsRequest
{
    ParentAsOrganizationName = OrganizationName.FromOrganization("[ORGANIZATION]"),
    Requests =
    {
        new CreateResourceValueConfigRequest(),
    },
};
// Make the request
BatchCreateResourceValueConfigsResponse response = await securityCenterClient.BatchCreateResourceValueConfigsAsync(request);

BatchCreateResourceValueConfigsAsync(string, IEnumerable<CreateResourceValueConfigRequest>, CallSettings)

public virtual Task<BatchCreateResourceValueConfigsResponse> BatchCreateResourceValueConfigsAsync(string parent, IEnumerable<CreateResourceValueConfigRequest> requests, CallSettings callSettings = null)

Creates a ResourceValueConfig for an organization. Maps user's tags to difference resource values for use by the attack path simulation.

Parameters
Name Description
parent string

Required. Resource name of the new ResourceValueConfig's parent. The parent field in the CreateResourceValueConfigRequest messages must either be empty or match this field.

requests IEnumerableCreateResourceValueConfigRequest

Required. The resource value configs to be created.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskBatchCreateResourceValueConfigsResponse

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]";
IEnumerable<CreateResourceValueConfigRequest> requests = new CreateResourceValueConfigRequest[]
{
    new CreateResourceValueConfigRequest(),
};
// Make the request
BatchCreateResourceValueConfigsResponse response = await securityCenterClient.BatchCreateResourceValueConfigsAsync(parent, requests);

BatchCreateResourceValueConfigsAsync(string, IEnumerable<CreateResourceValueConfigRequest>, CancellationToken)

public virtual Task<BatchCreateResourceValueConfigsResponse> BatchCreateResourceValueConfigsAsync(string parent, IEnumerable<CreateResourceValueConfigRequest> requests, CancellationToken cancellationToken)

Creates a ResourceValueConfig for an organization. Maps user's tags to difference resource values for use by the attack path simulation.

Parameters
Name Description
parent string

Required. Resource name of the new ResourceValueConfig's parent. The parent field in the CreateResourceValueConfigRequest messages must either be empty or match this field.

requests IEnumerableCreateResourceValueConfigRequest

Required. The resource value configs to be created.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskBatchCreateResourceValueConfigsResponse

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]";
IEnumerable<CreateResourceValueConfigRequest> requests = new CreateResourceValueConfigRequest[]
{
    new CreateResourceValueConfigRequest(),
};
// Make the request
BatchCreateResourceValueConfigsResponse response = await securityCenterClient.BatchCreateResourceValueConfigsAsync(parent, requests);

BulkMuteFindings(IResourceName, CallSettings)

public virtual Operation<BulkMuteFindingsResponse, Empty> BulkMuteFindings(IResourceName parent, CallSettings callSettings = null)

Kicks off an LRO to bulk mute findings for a parent based on a filter. If no location is specified, findings are muted in global. The parent can be either an organization, folder, or project. The findings matched by the filter will be muted after the LRO is done.

Parameters
Name Description
parent IResourceName

Required. The parent, at which bulk action needs to be applied. If no location is specified, findings are updated in global. The following list shows some examples:

  • organizations/[organization_id]
  • organizations/[organization_id]/locations/[location_id]
  • folders/[folder_id]
  • folders/[folder_id]/locations/[location_id]
  • projects/[project_id]
  • projects/[project_id]/locations/[location_id]
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationBulkMuteFindingsResponseEmpty

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
IResourceName parent = new UnparsedResourceName("a/wildcard/resource");
// Make the request
Operation<BulkMuteFindingsResponse, Empty> response = securityCenterClient.BulkMuteFindings(parent);

// Poll until the returned long-running operation is complete
Operation<BulkMuteFindingsResponse, Empty> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
BulkMuteFindingsResponse result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<BulkMuteFindingsResponse, Empty> retrievedResponse = securityCenterClient.PollOnceBulkMuteFindings(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BulkMuteFindingsResponse retrievedResult = retrievedResponse.Result;
}

BulkMuteFindings(BulkMuteFindingsRequest, CallSettings)

public virtual Operation<BulkMuteFindingsResponse, Empty> BulkMuteFindings(BulkMuteFindingsRequest request, CallSettings callSettings = null)

Kicks off an LRO to bulk mute findings for a parent based on a filter. If no location is specified, findings are muted in global. The parent can be either an organization, folder, or project. The findings matched by the filter will be muted after the LRO is done.

Parameters
Name Description
request BulkMuteFindingsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationBulkMuteFindingsResponseEmpty

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
BulkMuteFindingsRequest request = new BulkMuteFindingsRequest
{
    ParentAsResourceName = new UnparsedResourceName("a/wildcard/resource"),
    Filter = "",
};
// Make the request
Operation<BulkMuteFindingsResponse, Empty> response = securityCenterClient.BulkMuteFindings(request);

// Poll until the returned long-running operation is complete
Operation<BulkMuteFindingsResponse, Empty> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
BulkMuteFindingsResponse result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<BulkMuteFindingsResponse, Empty> retrievedResponse = securityCenterClient.PollOnceBulkMuteFindings(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BulkMuteFindingsResponse retrievedResult = retrievedResponse.Result;
}

BulkMuteFindings(string, CallSettings)

public virtual Operation<BulkMuteFindingsResponse, Empty> BulkMuteFindings(string parent, CallSettings callSettings = null)

Kicks off an LRO to bulk mute findings for a parent based on a filter. If no location is specified, findings are muted in global. The parent can be either an organization, folder, or project. The findings matched by the filter will be muted after the LRO is done.

Parameters
Name Description
parent string

Required. The parent, at which bulk action needs to be applied. If no location is specified, findings are updated in global. The following list shows some examples:

  • organizations/[organization_id]
  • organizations/[organization_id]/locations/[location_id]
  • folders/[folder_id]
  • folders/[folder_id]/locations/[location_id]
  • projects/[project_id]
  • projects/[project_id]/locations/[location_id]
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationBulkMuteFindingsResponseEmpty

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "a/wildcard/resource";
// Make the request
Operation<BulkMuteFindingsResponse, Empty> response = securityCenterClient.BulkMuteFindings(parent);

// Poll until the returned long-running operation is complete
Operation<BulkMuteFindingsResponse, Empty> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
BulkMuteFindingsResponse result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<BulkMuteFindingsResponse, Empty> retrievedResponse = securityCenterClient.PollOnceBulkMuteFindings(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BulkMuteFindingsResponse retrievedResult = retrievedResponse.Result;
}

BulkMuteFindingsAsync(IResourceName, CallSettings)

public virtual Task<Operation<BulkMuteFindingsResponse, Empty>> BulkMuteFindingsAsync(IResourceName parent, CallSettings callSettings = null)

Kicks off an LRO to bulk mute findings for a parent based on a filter. If no location is specified, findings are muted in global. The parent can be either an organization, folder, or project. The findings matched by the filter will be muted after the LRO is done.

Parameters
Name Description
parent IResourceName

Required. The parent, at which bulk action needs to be applied. If no location is specified, findings are updated in global. The following list shows some examples:

  • organizations/[organization_id]
  • organizations/[organization_id]/locations/[location_id]
  • folders/[folder_id]
  • folders/[folder_id]/locations/[location_id]
  • projects/[project_id]
  • projects/[project_id]/locations/[location_id]
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationBulkMuteFindingsResponseEmpty

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
IResourceName parent = new UnparsedResourceName("a/wildcard/resource");
// Make the request
Operation<BulkMuteFindingsResponse, Empty> response = await securityCenterClient.BulkMuteFindingsAsync(parent);

// Poll until the returned long-running operation is complete
Operation<BulkMuteFindingsResponse, Empty> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BulkMuteFindingsResponse result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<BulkMuteFindingsResponse, Empty> retrievedResponse = await securityCenterClient.PollOnceBulkMuteFindingsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BulkMuteFindingsResponse retrievedResult = retrievedResponse.Result;
}

BulkMuteFindingsAsync(IResourceName, CancellationToken)

public virtual Task<Operation<BulkMuteFindingsResponse, Empty>> BulkMuteFindingsAsync(IResourceName parent, CancellationToken cancellationToken)

Kicks off an LRO to bulk mute findings for a parent based on a filter. If no location is specified, findings are muted in global. The parent can be either an organization, folder, or project. The findings matched by the filter will be muted after the LRO is done.

Parameters
Name Description
parent IResourceName

Required. The parent, at which bulk action needs to be applied. If no location is specified, findings are updated in global. The following list shows some examples:

  • organizations/[organization_id]
  • organizations/[organization_id]/locations/[location_id]
  • folders/[folder_id]
  • folders/[folder_id]/locations/[location_id]
  • projects/[project_id]
  • projects/[project_id]/locations/[location_id]
cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskOperationBulkMuteFindingsResponseEmpty

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
IResourceName parent = new UnparsedResourceName("a/wildcard/resource");
// Make the request
Operation<BulkMuteFindingsResponse, Empty> response = await securityCenterClient.BulkMuteFindingsAsync(parent);

// Poll until the returned long-running operation is complete
Operation<BulkMuteFindingsResponse, Empty> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BulkMuteFindingsResponse result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<BulkMuteFindingsResponse, Empty> retrievedResponse = await securityCenterClient.PollOnceBulkMuteFindingsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BulkMuteFindingsResponse retrievedResult = retrievedResponse.Result;
}

BulkMuteFindingsAsync(BulkMuteFindingsRequest, CallSettings)

public virtual Task<Operation<BulkMuteFindingsResponse, Empty>> BulkMuteFindingsAsync(BulkMuteFindingsRequest request, CallSettings callSettings = null)

Kicks off an LRO to bulk mute findings for a parent based on a filter. If no location is specified, findings are muted in global. The parent can be either an organization, folder, or project. The findings matched by the filter will be muted after the LRO is done.

Parameters
Name Description
request BulkMuteFindingsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationBulkMuteFindingsResponseEmpty

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
BulkMuteFindingsRequest request = new BulkMuteFindingsRequest
{
    ParentAsResourceName = new UnparsedResourceName("a/wildcard/resource"),
    Filter = "",
};
// Make the request
Operation<BulkMuteFindingsResponse, Empty> response = await securityCenterClient.BulkMuteFindingsAsync(request);

// Poll until the returned long-running operation is complete
Operation<BulkMuteFindingsResponse, Empty> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BulkMuteFindingsResponse result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<BulkMuteFindingsResponse, Empty> retrievedResponse = await securityCenterClient.PollOnceBulkMuteFindingsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BulkMuteFindingsResponse retrievedResult = retrievedResponse.Result;
}

BulkMuteFindingsAsync(BulkMuteFindingsRequest, CancellationToken)

public virtual Task<Operation<BulkMuteFindingsResponse, Empty>> BulkMuteFindingsAsync(BulkMuteFindingsRequest request, CancellationToken cancellationToken)

Kicks off an LRO to bulk mute findings for a parent based on a filter. If no location is specified, findings are muted in global. The parent can be either an organization, folder, or project. The findings matched by the filter will be muted after the LRO is done.

Parameters
Name Description
request BulkMuteFindingsRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskOperationBulkMuteFindingsResponseEmpty

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
BulkMuteFindingsRequest request = new BulkMuteFindingsRequest
{
    ParentAsResourceName = new UnparsedResourceName("a/wildcard/resource"),
    Filter = "",
};
// Make the request
Operation<BulkMuteFindingsResponse, Empty> response = await securityCenterClient.BulkMuteFindingsAsync(request);

// Poll until the returned long-running operation is complete
Operation<BulkMuteFindingsResponse, Empty> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BulkMuteFindingsResponse result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<BulkMuteFindingsResponse, Empty> retrievedResponse = await securityCenterClient.PollOnceBulkMuteFindingsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BulkMuteFindingsResponse retrievedResult = retrievedResponse.Result;
}

BulkMuteFindingsAsync(string, CallSettings)

public virtual Task<Operation<BulkMuteFindingsResponse, Empty>> BulkMuteFindingsAsync(string parent, CallSettings callSettings = null)

Kicks off an LRO to bulk mute findings for a parent based on a filter. If no location is specified, findings are muted in global. The parent can be either an organization, folder, or project. The findings matched by the filter will be muted after the LRO is done.

Parameters
Name Description
parent string

Required. The parent, at which bulk action needs to be applied. If no location is specified, findings are updated in global. The following list shows some examples:

  • organizations/[organization_id]
  • organizations/[organization_id]/locations/[location_id]
  • folders/[folder_id]
  • folders/[folder_id]/locations/[location_id]
  • projects/[project_id]
  • projects/[project_id]/locations/[location_id]
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationBulkMuteFindingsResponseEmpty

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "a/wildcard/resource";
// Make the request
Operation<BulkMuteFindingsResponse, Empty> response = await securityCenterClient.BulkMuteFindingsAsync(parent);

// Poll until the returned long-running operation is complete
Operation<BulkMuteFindingsResponse, Empty> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BulkMuteFindingsResponse result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<BulkMuteFindingsResponse, Empty> retrievedResponse = await securityCenterClient.PollOnceBulkMuteFindingsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BulkMuteFindingsResponse retrievedResult = retrievedResponse.Result;
}

BulkMuteFindingsAsync(string, CancellationToken)

public virtual Task<Operation<BulkMuteFindingsResponse, Empty>> BulkMuteFindingsAsync(string parent, CancellationToken cancellationToken)

Kicks off an LRO to bulk mute findings for a parent based on a filter. If no location is specified, findings are muted in global. The parent can be either an organization, folder, or project. The findings matched by the filter will be muted after the LRO is done.

Parameters
Name Description
parent string

Required. The parent, at which bulk action needs to be applied. If no location is specified, findings are updated in global. The following list shows some examples:

  • organizations/[organization_id]
  • organizations/[organization_id]/locations/[location_id]
  • folders/[folder_id]
  • folders/[folder_id]/locations/[location_id]
  • projects/[project_id]
  • projects/[project_id]/locations/[location_id]
cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskOperationBulkMuteFindingsResponseEmpty

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "a/wildcard/resource";
// Make the request
Operation<BulkMuteFindingsResponse, Empty> response = await securityCenterClient.BulkMuteFindingsAsync(parent);

// Poll until the returned long-running operation is complete
Operation<BulkMuteFindingsResponse, Empty> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BulkMuteFindingsResponse result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<BulkMuteFindingsResponse, Empty> retrievedResponse = await securityCenterClient.PollOnceBulkMuteFindingsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BulkMuteFindingsResponse retrievedResult = retrievedResponse.Result;
}

Create()

public static SecurityCenterClient Create()

Synchronously creates a SecurityCenterClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use SecurityCenterClientBuilder.

Returns
Type Description
SecurityCenterClient

The created SecurityCenterClient.

CreateAsync(CancellationToken)

public static Task<SecurityCenterClient> CreateAsync(CancellationToken cancellationToken = default)

Asynchronously creates a SecurityCenterClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use SecurityCenterClientBuilder.

Parameter
Name Description
cancellationToken CancellationToken

The CancellationToken to use while creating the client.

Returns
Type Description
TaskSecurityCenterClient

The task representing the created SecurityCenterClient.

CreateBigQueryExport(LocationName, BigQueryExport, string, CallSettings)

public virtual BigQueryExport CreateBigQueryExport(LocationName parent, BigQueryExport bigQueryExport, string bigQueryExportId, CallSettings callSettings = null)

Creates a BigQuery export.

Parameters
Name Description
parent LocationName

Required. The name of the parent resource of the new BigQuery export. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

bigQueryExport BigQueryExport

Required. The BigQuery export being created.

bigQueryExportId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
BigQueryExport

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
BigQueryExport bigQueryExport = new BigQueryExport();
string bigQueryExportId = "";
// Make the request
BigQueryExport response = securityCenterClient.CreateBigQueryExport(parent, bigQueryExport, bigQueryExportId);

CreateBigQueryExport(CreateBigQueryExportRequest, CallSettings)

public virtual BigQueryExport CreateBigQueryExport(CreateBigQueryExportRequest request, CallSettings callSettings = null)

Creates a BigQuery export.

Parameters
Name Description
request CreateBigQueryExportRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
BigQueryExport

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
CreateBigQueryExportRequest request = new CreateBigQueryExportRequest
{
    ParentAsOrganizationLocationName = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]"),
    BigQueryExport = new BigQueryExport(),
    BigQueryExportId = "",
};
// Make the request
BigQueryExport response = securityCenterClient.CreateBigQueryExport(request);

CreateBigQueryExport(FolderLocationName, BigQueryExport, string, CallSettings)

public virtual BigQueryExport CreateBigQueryExport(FolderLocationName parent, BigQueryExport bigQueryExport, string bigQueryExportId, CallSettings callSettings = null)

Creates a BigQuery export.

Parameters
Name Description
parent FolderLocationName

Required. The name of the parent resource of the new BigQuery export. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

bigQueryExport BigQueryExport

Required. The BigQuery export being created.

bigQueryExportId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
BigQueryExport

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
FolderLocationName parent = FolderLocationName.FromFolderLocation("[FOLDER]", "[LOCATION]");
BigQueryExport bigQueryExport = new BigQueryExport();
string bigQueryExportId = "";
// Make the request
BigQueryExport response = securityCenterClient.CreateBigQueryExport(parent, bigQueryExport, bigQueryExportId);

CreateBigQueryExport(OrganizationLocationName, BigQueryExport, string, CallSettings)

public virtual BigQueryExport CreateBigQueryExport(OrganizationLocationName parent, BigQueryExport bigQueryExport, string bigQueryExportId, CallSettings callSettings = null)

Creates a BigQuery export.

Parameters
Name Description
parent OrganizationLocationName

Required. The name of the parent resource of the new BigQuery export. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

bigQueryExport BigQueryExport

Required. The BigQuery export being created.

bigQueryExportId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
BigQueryExport

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
OrganizationLocationName parent = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
BigQueryExport bigQueryExport = new BigQueryExport();
string bigQueryExportId = "";
// Make the request
BigQueryExport response = securityCenterClient.CreateBigQueryExport(parent, bigQueryExport, bigQueryExportId);

CreateBigQueryExport(string, BigQueryExport, string, CallSettings)

public virtual BigQueryExport CreateBigQueryExport(string parent, BigQueryExport bigQueryExport, string bigQueryExportId, CallSettings callSettings = null)

Creates a BigQuery export.

Parameters
Name Description
parent string

Required. The name of the parent resource of the new BigQuery export. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

bigQueryExport BigQueryExport

Required. The BigQuery export being created.

bigQueryExportId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
BigQueryExport

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/locations/[LOCATION]";
BigQueryExport bigQueryExport = new BigQueryExport();
string bigQueryExportId = "";
// Make the request
BigQueryExport response = securityCenterClient.CreateBigQueryExport(parent, bigQueryExport, bigQueryExportId);

CreateBigQueryExportAsync(LocationName, BigQueryExport, string, CallSettings)

public virtual Task<BigQueryExport> CreateBigQueryExportAsync(LocationName parent, BigQueryExport bigQueryExport, string bigQueryExportId, CallSettings callSettings = null)

Creates a BigQuery export.

Parameters
Name Description
parent LocationName

Required. The name of the parent resource of the new BigQuery export. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

bigQueryExport BigQueryExport

Required. The BigQuery export being created.

bigQueryExportId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
BigQueryExport bigQueryExport = new BigQueryExport();
string bigQueryExportId = "";
// Make the request
BigQueryExport response = await securityCenterClient.CreateBigQueryExportAsync(parent, bigQueryExport, bigQueryExportId);

CreateBigQueryExportAsync(LocationName, BigQueryExport, string, CancellationToken)

public virtual Task<BigQueryExport> CreateBigQueryExportAsync(LocationName parent, BigQueryExport bigQueryExport, string bigQueryExportId, CancellationToken cancellationToken)

Creates a BigQuery export.

Parameters
Name Description
parent LocationName

Required. The name of the parent resource of the new BigQuery export. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

bigQueryExport BigQueryExport

Required. The BigQuery export being created.

bigQueryExportId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
BigQueryExport bigQueryExport = new BigQueryExport();
string bigQueryExportId = "";
// Make the request
BigQueryExport response = await securityCenterClient.CreateBigQueryExportAsync(parent, bigQueryExport, bigQueryExportId);

CreateBigQueryExportAsync(CreateBigQueryExportRequest, CallSettings)

public virtual Task<BigQueryExport> CreateBigQueryExportAsync(CreateBigQueryExportRequest request, CallSettings callSettings = null)

Creates a BigQuery export.

Parameters
Name Description
request CreateBigQueryExportRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
CreateBigQueryExportRequest request = new CreateBigQueryExportRequest
{
    ParentAsOrganizationLocationName = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]"),
    BigQueryExport = new BigQueryExport(),
    BigQueryExportId = "",
};
// Make the request
BigQueryExport response = await securityCenterClient.CreateBigQueryExportAsync(request);

CreateBigQueryExportAsync(CreateBigQueryExportRequest, CancellationToken)

public virtual Task<BigQueryExport> CreateBigQueryExportAsync(CreateBigQueryExportRequest request, CancellationToken cancellationToken)

Creates a BigQuery export.

Parameters
Name Description
request CreateBigQueryExportRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
CreateBigQueryExportRequest request = new CreateBigQueryExportRequest
{
    ParentAsOrganizationLocationName = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]"),
    BigQueryExport = new BigQueryExport(),
    BigQueryExportId = "",
};
// Make the request
BigQueryExport response = await securityCenterClient.CreateBigQueryExportAsync(request);

CreateBigQueryExportAsync(FolderLocationName, BigQueryExport, string, CallSettings)

public virtual Task<BigQueryExport> CreateBigQueryExportAsync(FolderLocationName parent, BigQueryExport bigQueryExport, string bigQueryExportId, CallSettings callSettings = null)

Creates a BigQuery export.

Parameters
Name Description
parent FolderLocationName

Required. The name of the parent resource of the new BigQuery export. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

bigQueryExport BigQueryExport

Required. The BigQuery export being created.

bigQueryExportId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FolderLocationName parent = FolderLocationName.FromFolderLocation("[FOLDER]", "[LOCATION]");
BigQueryExport bigQueryExport = new BigQueryExport();
string bigQueryExportId = "";
// Make the request
BigQueryExport response = await securityCenterClient.CreateBigQueryExportAsync(parent, bigQueryExport, bigQueryExportId);

CreateBigQueryExportAsync(FolderLocationName, BigQueryExport, string, CancellationToken)

public virtual Task<BigQueryExport> CreateBigQueryExportAsync(FolderLocationName parent, BigQueryExport bigQueryExport, string bigQueryExportId, CancellationToken cancellationToken)

Creates a BigQuery export.

Parameters
Name Description
parent FolderLocationName

Required. The name of the parent resource of the new BigQuery export. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

bigQueryExport BigQueryExport

Required. The BigQuery export being created.

bigQueryExportId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FolderLocationName parent = FolderLocationName.FromFolderLocation("[FOLDER]", "[LOCATION]");
BigQueryExport bigQueryExport = new BigQueryExport();
string bigQueryExportId = "";
// Make the request
BigQueryExport response = await securityCenterClient.CreateBigQueryExportAsync(parent, bigQueryExport, bigQueryExportId);

CreateBigQueryExportAsync(OrganizationLocationName, BigQueryExport, string, CallSettings)

public virtual Task<BigQueryExport> CreateBigQueryExportAsync(OrganizationLocationName parent, BigQueryExport bigQueryExport, string bigQueryExportId, CallSettings callSettings = null)

Creates a BigQuery export.

Parameters
Name Description
parent OrganizationLocationName

Required. The name of the parent resource of the new BigQuery export. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

bigQueryExport BigQueryExport

Required. The BigQuery export being created.

bigQueryExportId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationLocationName parent = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
BigQueryExport bigQueryExport = new BigQueryExport();
string bigQueryExportId = "";
// Make the request
BigQueryExport response = await securityCenterClient.CreateBigQueryExportAsync(parent, bigQueryExport, bigQueryExportId);

CreateBigQueryExportAsync(OrganizationLocationName, BigQueryExport, string, CancellationToken)

public virtual Task<BigQueryExport> CreateBigQueryExportAsync(OrganizationLocationName parent, BigQueryExport bigQueryExport, string bigQueryExportId, CancellationToken cancellationToken)

Creates a BigQuery export.

Parameters
Name Description
parent OrganizationLocationName

Required. The name of the parent resource of the new BigQuery export. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

bigQueryExport BigQueryExport

Required. The BigQuery export being created.

bigQueryExportId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationLocationName parent = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
BigQueryExport bigQueryExport = new BigQueryExport();
string bigQueryExportId = "";
// Make the request
BigQueryExport response = await securityCenterClient.CreateBigQueryExportAsync(parent, bigQueryExport, bigQueryExportId);

CreateBigQueryExportAsync(string, BigQueryExport, string, CallSettings)

public virtual Task<BigQueryExport> CreateBigQueryExportAsync(string parent, BigQueryExport bigQueryExport, string bigQueryExportId, CallSettings callSettings = null)

Creates a BigQuery export.

Parameters
Name Description
parent string

Required. The name of the parent resource of the new BigQuery export. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

bigQueryExport BigQueryExport

Required. The BigQuery export being created.

bigQueryExportId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/locations/[LOCATION]";
BigQueryExport bigQueryExport = new BigQueryExport();
string bigQueryExportId = "";
// Make the request
BigQueryExport response = await securityCenterClient.CreateBigQueryExportAsync(parent, bigQueryExport, bigQueryExportId);

CreateBigQueryExportAsync(string, BigQueryExport, string, CancellationToken)

public virtual Task<BigQueryExport> CreateBigQueryExportAsync(string parent, BigQueryExport bigQueryExport, string bigQueryExportId, CancellationToken cancellationToken)

Creates a BigQuery export.

Parameters
Name Description
parent string

Required. The name of the parent resource of the new BigQuery export. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

bigQueryExport BigQueryExport

Required. The BigQuery export being created.

bigQueryExportId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/locations/[LOCATION]";
BigQueryExport bigQueryExport = new BigQueryExport();
string bigQueryExportId = "";
// Make the request
BigQueryExport response = await securityCenterClient.CreateBigQueryExportAsync(parent, bigQueryExport, bigQueryExportId);

CreateFinding(CreateFindingRequest, CallSettings)

public virtual Finding CreateFinding(CreateFindingRequest request, CallSettings callSettings = null)

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

Parameters
Name Description
request CreateFindingRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Finding

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
CreateFindingRequest request = new CreateFindingRequest
{
    ParentAsSourceName = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]"),
    FindingId = "",
    Finding = new Finding(),
};
// Make the request
Finding response = securityCenterClient.CreateFinding(request);

CreateFinding(SourceName, Finding, string, CallSettings)

public virtual Finding CreateFinding(SourceName parent, Finding finding, string findingId, CallSettings callSettings = null)

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

Parameters
Name Description
parent SourceName

Required. Resource name of the new finding's parent. The following list shows some examples of the format: + organizations/[organization_id]/sources/[source_id] + organizations/[organization_id]/sources/[source_id]/locations/[location_id]

finding Finding

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

findingId 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.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Finding

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
SourceName parent = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]");
Finding finding = new Finding();
string findingId = "";
// Make the request
Finding response = securityCenterClient.CreateFinding(parent, finding, findingId);

CreateFinding(string, Finding, string, CallSettings)

public virtual Finding CreateFinding(string parent, Finding finding, string findingId, CallSettings callSettings = null)

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

Parameters
Name Description
parent string

Required. Resource name of the new finding's parent. The following list shows some examples of the format: + organizations/[organization_id]/sources/[source_id] + organizations/[organization_id]/sources/[source_id]/locations/[location_id]

finding Finding

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

findingId 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.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Finding

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/sources/[SOURCE]";
Finding finding = new Finding();
string findingId = "";
// Make the request
Finding response = securityCenterClient.CreateFinding(parent, finding, findingId);

CreateFindingAsync(CreateFindingRequest, CallSettings)

public virtual Task<Finding> CreateFindingAsync(CreateFindingRequest request, CallSettings callSettings = null)

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

Parameters
Name Description
request CreateFindingRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
CreateFindingRequest request = new CreateFindingRequest
{
    ParentAsSourceName = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]"),
    FindingId = "",
    Finding = new Finding(),
};
// Make the request
Finding response = await securityCenterClient.CreateFindingAsync(request);

CreateFindingAsync(CreateFindingRequest, CancellationToken)

public virtual Task<Finding> CreateFindingAsync(CreateFindingRequest request, CancellationToken cancellationToken)

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

Parameters
Name Description
request CreateFindingRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
CreateFindingRequest request = new CreateFindingRequest
{
    ParentAsSourceName = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]"),
    FindingId = "",
    Finding = new Finding(),
};
// Make the request
Finding response = await securityCenterClient.CreateFindingAsync(request);

CreateFindingAsync(SourceName, Finding, string, CallSettings)

public virtual Task<Finding> CreateFindingAsync(SourceName parent, Finding finding, string findingId, CallSettings callSettings = null)

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

Parameters
Name Description
parent SourceName

Required. Resource name of the new finding's parent. The following list shows some examples of the format: + organizations/[organization_id]/sources/[source_id] + organizations/[organization_id]/sources/[source_id]/locations/[location_id]

finding Finding

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

findingId 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.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SourceName parent = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]");
Finding finding = new Finding();
string findingId = "";
// Make the request
Finding response = await securityCenterClient.CreateFindingAsync(parent, finding, findingId);

CreateFindingAsync(SourceName, Finding, string, CancellationToken)

public virtual Task<Finding> CreateFindingAsync(SourceName parent, Finding finding, string findingId, CancellationToken cancellationToken)

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

Parameters
Name Description
parent SourceName

Required. Resource name of the new finding's parent. The following list shows some examples of the format: + organizations/[organization_id]/sources/[source_id] + organizations/[organization_id]/sources/[source_id]/locations/[location_id]

finding Finding

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

findingId 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.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SourceName parent = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]");
Finding finding = new Finding();
string findingId = "";
// Make the request
Finding response = await securityCenterClient.CreateFindingAsync(parent, finding, findingId);

CreateFindingAsync(string, Finding, string, CallSettings)

public virtual Task<Finding> CreateFindingAsync(string parent, Finding finding, string findingId, CallSettings callSettings = null)

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

Parameters
Name Description
parent string

Required. Resource name of the new finding's parent. The following list shows some examples of the format: + organizations/[organization_id]/sources/[source_id] + organizations/[organization_id]/sources/[source_id]/locations/[location_id]

finding Finding

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

findingId 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.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/sources/[SOURCE]";
Finding finding = new Finding();
string findingId = "";
// Make the request
Finding response = await securityCenterClient.CreateFindingAsync(parent, finding, findingId);

CreateFindingAsync(string, Finding, string, CancellationToken)

public virtual Task<Finding> CreateFindingAsync(string parent, Finding finding, string findingId, CancellationToken cancellationToken)

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

Parameters
Name Description
parent string

Required. Resource name of the new finding's parent. The following list shows some examples of the format: + organizations/[organization_id]/sources/[source_id] + organizations/[organization_id]/sources/[source_id]/locations/[location_id]

finding Finding

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

findingId 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.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/sources/[SOURCE]";
Finding finding = new Finding();
string findingId = "";
// Make the request
Finding response = await securityCenterClient.CreateFindingAsync(parent, finding, findingId);

CreateMuteConfig(FolderName, MuteConfig, string, CallSettings)

public virtual MuteConfig CreateMuteConfig(FolderName parent, MuteConfig muteConfig, string muteConfigId, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
parent FolderName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
MuteConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
FolderName parent = FolderName.FromFolder("[FOLDER]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = securityCenterClient.CreateMuteConfig(parent, muteConfig, muteConfigId);

CreateMuteConfig(LocationName, MuteConfig, string, CallSettings)

public virtual MuteConfig CreateMuteConfig(LocationName parent, MuteConfig muteConfig, string muteConfigId, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
parent LocationName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
MuteConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = securityCenterClient.CreateMuteConfig(parent, muteConfig, muteConfigId);

CreateMuteConfig(OrganizationName, MuteConfig, string, CallSettings)

public virtual MuteConfig CreateMuteConfig(OrganizationName parent, MuteConfig muteConfig, string muteConfigId, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
parent OrganizationName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
MuteConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = securityCenterClient.CreateMuteConfig(parent, muteConfig, muteConfigId);

CreateMuteConfig(ProjectName, MuteConfig, string, CallSettings)

public virtual MuteConfig CreateMuteConfig(ProjectName parent, MuteConfig muteConfig, string muteConfigId, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
parent ProjectName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
MuteConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ProjectName parent = ProjectName.FromProject("[PROJECT]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = securityCenterClient.CreateMuteConfig(parent, muteConfig, muteConfigId);

CreateMuteConfig(CreateMuteConfigRequest, CallSettings)

public virtual MuteConfig CreateMuteConfig(CreateMuteConfigRequest request, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
request CreateMuteConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
MuteConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
CreateMuteConfigRequest request = new CreateMuteConfigRequest
{
    ParentAsOrganizationName = OrganizationName.FromOrganization("[ORGANIZATION]"),
    MuteConfig = new MuteConfig(),
    MuteConfigId = "",
};
// Make the request
MuteConfig response = securityCenterClient.CreateMuteConfig(request);

CreateMuteConfig(FolderLocationName, MuteConfig, string, CallSettings)

public virtual MuteConfig CreateMuteConfig(FolderLocationName parent, MuteConfig muteConfig, string muteConfigId, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
parent FolderLocationName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
MuteConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
FolderLocationName parent = FolderLocationName.FromFolderLocation("[FOLDER]", "[LOCATION]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = securityCenterClient.CreateMuteConfig(parent, muteConfig, muteConfigId);

CreateMuteConfig(OrganizationLocationName, MuteConfig, string, CallSettings)

public virtual MuteConfig CreateMuteConfig(OrganizationLocationName parent, MuteConfig muteConfig, string muteConfigId, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
parent OrganizationLocationName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
MuteConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
OrganizationLocationName parent = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = securityCenterClient.CreateMuteConfig(parent, muteConfig, muteConfigId);

CreateMuteConfig(string, MuteConfig, string, CallSettings)

public virtual MuteConfig CreateMuteConfig(string parent, MuteConfig muteConfig, string muteConfigId, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
parent string

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
MuteConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]";
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = securityCenterClient.CreateMuteConfig(parent, muteConfig, muteConfigId);

CreateMuteConfigAsync(FolderName, MuteConfig, string, CallSettings)

public virtual Task<MuteConfig> CreateMuteConfigAsync(FolderName parent, MuteConfig muteConfig, string muteConfigId, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
parent FolderName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FolderName parent = FolderName.FromFolder("[FOLDER]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(parent, muteConfig, muteConfigId);

CreateMuteConfigAsync(FolderName, MuteConfig, string, CancellationToken)

public virtual Task<MuteConfig> CreateMuteConfigAsync(FolderName parent, MuteConfig muteConfig, string muteConfigId, CancellationToken cancellationToken)

Creates a mute config.

Parameters
Name Description
parent FolderName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FolderName parent = FolderName.FromFolder("[FOLDER]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(parent, muteConfig, muteConfigId);

CreateMuteConfigAsync(LocationName, MuteConfig, string, CallSettings)

public virtual Task<MuteConfig> CreateMuteConfigAsync(LocationName parent, MuteConfig muteConfig, string muteConfigId, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
parent LocationName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(parent, muteConfig, muteConfigId);

CreateMuteConfigAsync(LocationName, MuteConfig, string, CancellationToken)

public virtual Task<MuteConfig> CreateMuteConfigAsync(LocationName parent, MuteConfig muteConfig, string muteConfigId, CancellationToken cancellationToken)

Creates a mute config.

Parameters
Name Description
parent LocationName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(parent, muteConfig, muteConfigId);

CreateMuteConfigAsync(OrganizationName, MuteConfig, string, CallSettings)

public virtual Task<MuteConfig> CreateMuteConfigAsync(OrganizationName parent, MuteConfig muteConfig, string muteConfigId, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
parent OrganizationName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(parent, muteConfig, muteConfigId);

CreateMuteConfigAsync(OrganizationName, MuteConfig, string, CancellationToken)

public virtual Task<MuteConfig> CreateMuteConfigAsync(OrganizationName parent, MuteConfig muteConfig, string muteConfigId, CancellationToken cancellationToken)

Creates a mute config.

Parameters
Name Description
parent OrganizationName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(parent, muteConfig, muteConfigId);

CreateMuteConfigAsync(ProjectName, MuteConfig, string, CallSettings)

public virtual Task<MuteConfig> CreateMuteConfigAsync(ProjectName parent, MuteConfig muteConfig, string muteConfigId, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
parent ProjectName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ProjectName parent = ProjectName.FromProject("[PROJECT]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(parent, muteConfig, muteConfigId);

CreateMuteConfigAsync(ProjectName, MuteConfig, string, CancellationToken)

public virtual Task<MuteConfig> CreateMuteConfigAsync(ProjectName parent, MuteConfig muteConfig, string muteConfigId, CancellationToken cancellationToken)

Creates a mute config.

Parameters
Name Description
parent ProjectName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ProjectName parent = ProjectName.FromProject("[PROJECT]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(parent, muteConfig, muteConfigId);

CreateMuteConfigAsync(CreateMuteConfigRequest, CallSettings)

public virtual Task<MuteConfig> CreateMuteConfigAsync(CreateMuteConfigRequest request, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
request CreateMuteConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
CreateMuteConfigRequest request = new CreateMuteConfigRequest
{
    ParentAsOrganizationName = OrganizationName.FromOrganization("[ORGANIZATION]"),
    MuteConfig = new MuteConfig(),
    MuteConfigId = "",
};
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(request);

CreateMuteConfigAsync(CreateMuteConfigRequest, CancellationToken)

public virtual Task<MuteConfig> CreateMuteConfigAsync(CreateMuteConfigRequest request, CancellationToken cancellationToken)

Creates a mute config.

Parameters
Name Description
request CreateMuteConfigRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
CreateMuteConfigRequest request = new CreateMuteConfigRequest
{
    ParentAsOrganizationName = OrganizationName.FromOrganization("[ORGANIZATION]"),
    MuteConfig = new MuteConfig(),
    MuteConfigId = "",
};
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(request);

CreateMuteConfigAsync(FolderLocationName, MuteConfig, string, CallSettings)

public virtual Task<MuteConfig> CreateMuteConfigAsync(FolderLocationName parent, MuteConfig muteConfig, string muteConfigId, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
parent FolderLocationName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FolderLocationName parent = FolderLocationName.FromFolderLocation("[FOLDER]", "[LOCATION]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(parent, muteConfig, muteConfigId);

CreateMuteConfigAsync(FolderLocationName, MuteConfig, string, CancellationToken)

public virtual Task<MuteConfig> CreateMuteConfigAsync(FolderLocationName parent, MuteConfig muteConfig, string muteConfigId, CancellationToken cancellationToken)

Creates a mute config.

Parameters
Name Description
parent FolderLocationName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FolderLocationName parent = FolderLocationName.FromFolderLocation("[FOLDER]", "[LOCATION]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(parent, muteConfig, muteConfigId);

CreateMuteConfigAsync(OrganizationLocationName, MuteConfig, string, CallSettings)

public virtual Task<MuteConfig> CreateMuteConfigAsync(OrganizationLocationName parent, MuteConfig muteConfig, string muteConfigId, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
parent OrganizationLocationName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationLocationName parent = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(parent, muteConfig, muteConfigId);

CreateMuteConfigAsync(OrganizationLocationName, MuteConfig, string, CancellationToken)

public virtual Task<MuteConfig> CreateMuteConfigAsync(OrganizationLocationName parent, MuteConfig muteConfig, string muteConfigId, CancellationToken cancellationToken)

Creates a mute config.

Parameters
Name Description
parent OrganizationLocationName

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationLocationName parent = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(parent, muteConfig, muteConfigId);

CreateMuteConfigAsync(string, MuteConfig, string, CallSettings)

public virtual Task<MuteConfig> CreateMuteConfigAsync(string parent, MuteConfig muteConfig, string muteConfigId, CallSettings callSettings = null)

Creates a mute config.

Parameters
Name Description
parent string

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]";
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(parent, muteConfig, muteConfigId);

CreateMuteConfigAsync(string, MuteConfig, string, CancellationToken)

public virtual Task<MuteConfig> CreateMuteConfigAsync(string parent, MuteConfig muteConfig, string muteConfigId, CancellationToken cancellationToken)

Creates a mute config.

Parameters
Name Description
parent string

Required. Resource name of the new mute configs's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

muteConfig MuteConfig

Required. The mute config being created.

muteConfigId string

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]";
MuteConfig muteConfig = new MuteConfig();
string muteConfigId = "";
// Make the request
MuteConfig response = await securityCenterClient.CreateMuteConfigAsync(parent, muteConfig, muteConfigId);

CreateNotificationConfig(LocationName, NotificationConfig, string, CallSettings)

public virtual NotificationConfig CreateNotificationConfig(LocationName parent, NotificationConfig notificationConfig, string configId, CallSettings callSettings = null)

Creates a notification config.

Parameters
Name Description
parent LocationName

Required. Resource name of the new notification config's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

notificationConfig NotificationConfig

Required. The notification config being created. The name and the service account will be ignored as they are both output only fields on this resource.

configId string

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
NotificationConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
NotificationConfig notificationConfig = new NotificationConfig();
string configId = "";
// Make the request
NotificationConfig response = securityCenterClient.CreateNotificationConfig(parent, notificationConfig, configId);

CreateNotificationConfig(CreateNotificationConfigRequest, CallSettings)

public virtual NotificationConfig CreateNotificationConfig(CreateNotificationConfigRequest request, CallSettings callSettings = null)

Creates a notification config.

Parameters
Name Description
request CreateNotificationConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
NotificationConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
CreateNotificationConfigRequest request = new CreateNotificationConfigRequest
{
    ParentAsOrganizationLocationName = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]"),
    ConfigId = "",
    NotificationConfig = new NotificationConfig(),
};
// Make the request
NotificationConfig response = securityCenterClient.CreateNotificationConfig(request);

CreateNotificationConfig(FolderLocationName, NotificationConfig, string, CallSettings)

public virtual NotificationConfig CreateNotificationConfig(FolderLocationName parent, NotificationConfig notificationConfig, string configId, CallSettings callSettings = null)

Creates a notification config.

Parameters
Name Description
parent FolderLocationName

Required. Resource name of the new notification config's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

notificationConfig NotificationConfig

Required. The notification config being created. The name and the service account will be ignored as they are both output only fields on this resource.

configId string

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
NotificationConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
FolderLocationName parent = FolderLocationName.FromFolderLocation("[FOLDER]", "[LOCATION]");
NotificationConfig notificationConfig = new NotificationConfig();
string configId = "";
// Make the request
NotificationConfig response = securityCenterClient.CreateNotificationConfig(parent, notificationConfig, configId);

CreateNotificationConfig(OrganizationLocationName, NotificationConfig, string, CallSettings)

public virtual NotificationConfig CreateNotificationConfig(OrganizationLocationName parent, NotificationConfig notificationConfig, string configId, CallSettings callSettings = null)

Creates a notification config.

Parameters
Name Description
parent OrganizationLocationName

Required. Resource name of the new notification config's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

notificationConfig NotificationConfig

Required. The notification config being created. The name and the service account will be ignored as they are both output only fields on this resource.

configId string

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
NotificationConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
OrganizationLocationName parent = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
NotificationConfig notificationConfig = new NotificationConfig();
string configId = "";
// Make the request
NotificationConfig response = securityCenterClient.CreateNotificationConfig(parent, notificationConfig, configId);

CreateNotificationConfig(string, NotificationConfig, string, CallSettings)

public virtual NotificationConfig CreateNotificationConfig(string parent, NotificationConfig notificationConfig, string configId, CallSettings callSettings = null)

Creates a notification config.

Parameters
Name Description
parent string

Required. Resource name of the new notification config's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

notificationConfig NotificationConfig

Required. The notification config being created. The name and the service account will be ignored as they are both output only fields on this resource.

configId string

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
NotificationConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/locations/[LOCATION]";
NotificationConfig notificationConfig = new NotificationConfig();
string configId = "";
// Make the request
NotificationConfig response = securityCenterClient.CreateNotificationConfig(parent, notificationConfig, configId);

CreateNotificationConfigAsync(LocationName, NotificationConfig, string, CallSettings)

public virtual Task<NotificationConfig> CreateNotificationConfigAsync(LocationName parent, NotificationConfig notificationConfig, string configId, CallSettings callSettings = null)

Creates a notification config.

Parameters
Name Description
parent LocationName

Required. Resource name of the new notification config's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

notificationConfig NotificationConfig

Required. The notification config being created. The name and the service account will be ignored as they are both output only fields on this resource.

configId string

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
NotificationConfig notificationConfig = new NotificationConfig();
string configId = "";
// Make the request
NotificationConfig response = await securityCenterClient.CreateNotificationConfigAsync(parent, notificationConfig, configId);

CreateNotificationConfigAsync(LocationName, NotificationConfig, string, CancellationToken)

public virtual Task<NotificationConfig> CreateNotificationConfigAsync(LocationName parent, NotificationConfig notificationConfig, string configId, CancellationToken cancellationToken)

Creates a notification config.

Parameters
Name Description
parent LocationName

Required. Resource name of the new notification config's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

notificationConfig NotificationConfig

Required. The notification config being created. The name and the service account will be ignored as they are both output only fields on this resource.

configId string

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
NotificationConfig notificationConfig = new NotificationConfig();
string configId = "";
// Make the request
NotificationConfig response = await securityCenterClient.CreateNotificationConfigAsync(parent, notificationConfig, configId);

CreateNotificationConfigAsync(CreateNotificationConfigRequest, CallSettings)

public virtual Task<NotificationConfig> CreateNotificationConfigAsync(CreateNotificationConfigRequest request, CallSettings callSettings = null)

Creates a notification config.

Parameters
Name Description
request CreateNotificationConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
CreateNotificationConfigRequest request = new CreateNotificationConfigRequest
{
    ParentAsOrganizationLocationName = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]"),
    ConfigId = "",
    NotificationConfig = new NotificationConfig(),
};
// Make the request
NotificationConfig response = await securityCenterClient.CreateNotificationConfigAsync(request);

CreateNotificationConfigAsync(CreateNotificationConfigRequest, CancellationToken)

public virtual Task<NotificationConfig> CreateNotificationConfigAsync(CreateNotificationConfigRequest request, CancellationToken cancellationToken)

Creates a notification config.

Parameters
Name Description
request CreateNotificationConfigRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
CreateNotificationConfigRequest request = new CreateNotificationConfigRequest
{
    ParentAsOrganizationLocationName = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]"),
    ConfigId = "",
    NotificationConfig = new NotificationConfig(),
};
// Make the request
NotificationConfig response = await securityCenterClient.CreateNotificationConfigAsync(request);

CreateNotificationConfigAsync(FolderLocationName, NotificationConfig, string, CallSettings)

public virtual Task<NotificationConfig> CreateNotificationConfigAsync(FolderLocationName parent, NotificationConfig notificationConfig, string configId, CallSettings callSettings = null)

Creates a notification config.

Parameters
Name Description
parent FolderLocationName

Required. Resource name of the new notification config's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

notificationConfig NotificationConfig

Required. The notification config being created. The name and the service account will be ignored as they are both output only fields on this resource.

configId string

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FolderLocationName parent = FolderLocationName.FromFolderLocation("[FOLDER]", "[LOCATION]");
NotificationConfig notificationConfig = new NotificationConfig();
string configId = "";
// Make the request
NotificationConfig response = await securityCenterClient.CreateNotificationConfigAsync(parent, notificationConfig, configId);

CreateNotificationConfigAsync(FolderLocationName, NotificationConfig, string, CancellationToken)

public virtual Task<NotificationConfig> CreateNotificationConfigAsync(FolderLocationName parent, NotificationConfig notificationConfig, string configId, CancellationToken cancellationToken)

Creates a notification config.

Parameters
Name Description
parent FolderLocationName

Required. Resource name of the new notification config's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

notificationConfig NotificationConfig

Required. The notification config being created. The name and the service account will be ignored as they are both output only fields on this resource.

configId string

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FolderLocationName parent = FolderLocationName.FromFolderLocation("[FOLDER]", "[LOCATION]");
NotificationConfig notificationConfig = new NotificationConfig();
string configId = "";
// Make the request
NotificationConfig response = await securityCenterClient.CreateNotificationConfigAsync(parent, notificationConfig, configId);

CreateNotificationConfigAsync(OrganizationLocationName, NotificationConfig, string, CallSettings)

public virtual Task<NotificationConfig> CreateNotificationConfigAsync(OrganizationLocationName parent, NotificationConfig notificationConfig, string configId, CallSettings callSettings = null)

Creates a notification config.

Parameters
Name Description
parent OrganizationLocationName

Required. Resource name of the new notification config's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

notificationConfig NotificationConfig

Required. The notification config being created. The name and the service account will be ignored as they are both output only fields on this resource.

configId string

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationLocationName parent = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
NotificationConfig notificationConfig = new NotificationConfig();
string configId = "";
// Make the request
NotificationConfig response = await securityCenterClient.CreateNotificationConfigAsync(parent, notificationConfig, configId);

CreateNotificationConfigAsync(OrganizationLocationName, NotificationConfig, string, CancellationToken)

public virtual Task<NotificationConfig> CreateNotificationConfigAsync(OrganizationLocationName parent, NotificationConfig notificationConfig, string configId, CancellationToken cancellationToken)

Creates a notification config.

Parameters
Name Description
parent OrganizationLocationName

Required. Resource name of the new notification config's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

notificationConfig NotificationConfig

Required. The notification config being created. The name and the service account will be ignored as they are both output only fields on this resource.

configId string

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationLocationName parent = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
NotificationConfig notificationConfig = new NotificationConfig();
string configId = "";
// Make the request
NotificationConfig response = await securityCenterClient.CreateNotificationConfigAsync(parent, notificationConfig, configId);

CreateNotificationConfigAsync(string, NotificationConfig, string, CallSettings)

public virtual Task<NotificationConfig> CreateNotificationConfigAsync(string parent, NotificationConfig notificationConfig, string configId, CallSettings callSettings = null)

Creates a notification config.

Parameters
Name Description
parent string

Required. Resource name of the new notification config's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

notificationConfig NotificationConfig

Required. The notification config being created. The name and the service account will be ignored as they are both output only fields on this resource.

configId string

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/locations/[LOCATION]";
NotificationConfig notificationConfig = new NotificationConfig();
string configId = "";
// Make the request
NotificationConfig response = await securityCenterClient.CreateNotificationConfigAsync(parent, notificationConfig, configId);

CreateNotificationConfigAsync(string, NotificationConfig, string, CancellationToken)

public virtual Task<NotificationConfig> CreateNotificationConfigAsync(string parent, NotificationConfig notificationConfig, string configId, CancellationToken cancellationToken)

Creates a notification config.

Parameters
Name Description
parent string

Required. Resource name of the new notification config's parent. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

notificationConfig NotificationConfig

Required. The notification config being created. The name and the service account will be ignored as they are both output only fields on this resource.

configId string

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/locations/[LOCATION]";
NotificationConfig notificationConfig = new NotificationConfig();
string configId = "";
// Make the request
NotificationConfig response = await securityCenterClient.CreateNotificationConfigAsync(parent, notificationConfig, configId);

CreateSource(OrganizationName, Source, CallSettings)

public virtual Source CreateSource(OrganizationName parent, Source source, CallSettings callSettings = null)

Creates a source.

Parameters
Name Description
parent OrganizationName

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

source Source

Required. The Source being created, only the display_name and description will be used. All other fields will be ignored.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Source

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
Source source = new Source();
// Make the request
Source response = securityCenterClient.CreateSource(parent, source);

CreateSource(CreateSourceRequest, CallSettings)

public virtual Source CreateSource(CreateSourceRequest request, CallSettings callSettings = null)

Creates a source.

Parameters
Name Description
request CreateSourceRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Source

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
CreateSourceRequest request = new CreateSourceRequest
{
    ParentAsOrganizationName = OrganizationName.FromOrganization("[ORGANIZATION]"),
    Source = new Source(),
};
// Make the request
Source response = securityCenterClient.CreateSource(request);

CreateSource(string, Source, CallSettings)

public virtual Source CreateSource(string parent, Source source, CallSettings callSettings = null)

Creates a source.

Parameters
Name Description
parent string

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

source Source

Required. The Source being created, only the display_name and description will be used. All other fields will be ignored.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Source

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]";
Source source = new Source();
// Make the request
Source response = securityCenterClient.CreateSource(parent, source);

CreateSourceAsync(OrganizationName, Source, CallSettings)

public virtual Task<Source> CreateSourceAsync(OrganizationName parent, Source source, CallSettings callSettings = null)

Creates a source.

Parameters
Name Description
parent OrganizationName

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

source Source

Required. The Source being created, only the display_name and description will be used. All other fields will be ignored.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
Source source = new Source();
// Make the request
Source response = await securityCenterClient.CreateSourceAsync(parent, source);

CreateSourceAsync(OrganizationName, Source, CancellationToken)

public virtual Task<Source> CreateSourceAsync(OrganizationName parent, Source source, CancellationToken cancellationToken)

Creates a source.

Parameters
Name Description
parent OrganizationName

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

source Source

Required. The Source being created, only the display_name and description will be used. All other fields will be ignored.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
Source source = new Source();
// Make the request
Source response = await securityCenterClient.CreateSourceAsync(parent, source);

CreateSourceAsync(CreateSourceRequest, CallSettings)

public virtual Task<Source> CreateSourceAsync(CreateSourceRequest request, CallSettings callSettings = null)

Creates a source.

Parameters
Name Description
request CreateSourceRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
CreateSourceRequest request = new CreateSourceRequest
{
    ParentAsOrganizationName = OrganizationName.FromOrganization("[ORGANIZATION]"),
    Source = new Source(),
};
// Make the request
Source response = await securityCenterClient.CreateSourceAsync(request);

CreateSourceAsync(CreateSourceRequest, CancellationToken)

public virtual Task<Source> CreateSourceAsync(CreateSourceRequest request, CancellationToken cancellationToken)

Creates a source.

Parameters
Name Description
request CreateSourceRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
CreateSourceRequest request = new CreateSourceRequest
{
    ParentAsOrganizationName = OrganizationName.FromOrganization("[ORGANIZATION]"),
    Source = new Source(),
};
// Make the request
Source response = await securityCenterClient.CreateSourceAsync(request);

CreateSourceAsync(string, Source, CallSettings)

public virtual Task<Source> CreateSourceAsync(string parent, Source source, CallSettings callSettings = null)

Creates a source.

Parameters
Name Description
parent string

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

source Source

Required. The Source being created, only the display_name and description will be used. All other fields will be ignored.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]";
Source source = new Source();
// Make the request
Source response = await securityCenterClient.CreateSourceAsync(parent, source);

CreateSourceAsync(string, Source, CancellationToken)

public virtual Task<Source> CreateSourceAsync(string parent, Source source, CancellationToken cancellationToken)

Creates a source.

Parameters
Name Description
parent string

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

source Source

Required. The Source being created, only the display_name and description will be used. All other fields will be ignored.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]";
Source source = new Source();
// Make the request
Source response = await securityCenterClient.CreateSourceAsync(parent, source);

DeleteBigQueryExport(BigQueryExportName, CallSettings)

public virtual void DeleteBigQueryExport(BigQueryExportName name, CallSettings callSettings = null)

Deletes an existing BigQuery export.

Parameters
Name Description
name BigQueryExportName

Required. The name of the BigQuery export to delete. The following list shows some examples of the format:

+ organizations/{organization}/locations/{location}/bigQueryExports/{export_id}

  • folders/{folder}/locations/{location}/bigQueryExports/{export_id}
  • projects/{project}/locations/{location}/bigQueryExports/{export_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
BigQueryExportName name = BigQueryExportName.FromOrganizationLocationExport("[ORGANIZATION]", "[LOCATION]", "[EXPORT]");
// Make the request
securityCenterClient.DeleteBigQueryExport(name);

DeleteBigQueryExport(DeleteBigQueryExportRequest, CallSettings)

public virtual void DeleteBigQueryExport(DeleteBigQueryExportRequest request, CallSettings callSettings = null)

Deletes an existing BigQuery export.

Parameters
Name Description
request DeleteBigQueryExportRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
DeleteBigQueryExportRequest request = new DeleteBigQueryExportRequest
{
    BigQueryExportName = BigQueryExportName.FromOrganizationLocationExport("[ORGANIZATION]", "[LOCATION]", "[EXPORT]"),
};
// Make the request
securityCenterClient.DeleteBigQueryExport(request);

DeleteBigQueryExport(string, CallSettings)

public virtual void DeleteBigQueryExport(string name, CallSettings callSettings = null)

Deletes an existing BigQuery export.

Parameters
Name Description
name string

Required. The name of the BigQuery export to delete. The following list shows some examples of the format:

+ organizations/{organization}/locations/{location}/bigQueryExports/{export_id}

  • folders/{folder}/locations/{location}/bigQueryExports/{export_id}
  • projects/{project}/locations/{location}/bigQueryExports/{export_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/locations/[LOCATION]/bigQueryExports/[EXPORT]";
// Make the request
securityCenterClient.DeleteBigQueryExport(name);

DeleteBigQueryExportAsync(BigQueryExportName, CallSettings)

public virtual Task DeleteBigQueryExportAsync(BigQueryExportName name, CallSettings callSettings = null)

Deletes an existing BigQuery export.

Parameters
Name Description
name BigQueryExportName

Required. The name of the BigQuery export to delete. The following list shows some examples of the format:

+ organizations/{organization}/locations/{location}/bigQueryExports/{export_id}

  • folders/{folder}/locations/{location}/bigQueryExports/{export_id}
  • projects/{project}/locations/{location}/bigQueryExports/{export_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
BigQueryExportName name = BigQueryExportName.FromOrganizationLocationExport("[ORGANIZATION]", "[LOCATION]", "[EXPORT]");
// Make the request
await securityCenterClient.DeleteBigQueryExportAsync(name);

DeleteBigQueryExportAsync(BigQueryExportName, CancellationToken)

public virtual Task DeleteBigQueryExportAsync(BigQueryExportName name, CancellationToken cancellationToken)

Deletes an existing BigQuery export.

Parameters
Name Description
name BigQueryExportName

Required. The name of the BigQuery export to delete. The following list shows some examples of the format:

+ organizations/{organization}/locations/{location}/bigQueryExports/{export_id}

  • folders/{folder}/locations/{location}/bigQueryExports/{export_id}
  • projects/{project}/locations/{location}/bigQueryExports/{export_id}
cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
BigQueryExportName name = BigQueryExportName.FromOrganizationLocationExport("[ORGANIZATION]", "[LOCATION]", "[EXPORT]");
// Make the request
await securityCenterClient.DeleteBigQueryExportAsync(name);

DeleteBigQueryExportAsync(DeleteBigQueryExportRequest, CallSettings)

public virtual Task DeleteBigQueryExportAsync(DeleteBigQueryExportRequest request, CallSettings callSettings = null)

Deletes an existing BigQuery export.

Parameters
Name Description
request DeleteBigQueryExportRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
DeleteBigQueryExportRequest request = new DeleteBigQueryExportRequest
{
    BigQueryExportName = BigQueryExportName.FromOrganizationLocationExport("[ORGANIZATION]", "[LOCATION]", "[EXPORT]"),
};
// Make the request
await securityCenterClient.DeleteBigQueryExportAsync(request);

DeleteBigQueryExportAsync(DeleteBigQueryExportRequest, CancellationToken)

public virtual Task DeleteBigQueryExportAsync(DeleteBigQueryExportRequest request, CancellationToken cancellationToken)

Deletes an existing BigQuery export.

Parameters
Name Description
request DeleteBigQueryExportRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
DeleteBigQueryExportRequest request = new DeleteBigQueryExportRequest
{
    BigQueryExportName = BigQueryExportName.FromOrganizationLocationExport("[ORGANIZATION]", "[LOCATION]", "[EXPORT]"),
};
// Make the request
await securityCenterClient.DeleteBigQueryExportAsync(request);

DeleteBigQueryExportAsync(string, CallSettings)

public virtual Task DeleteBigQueryExportAsync(string name, CallSettings callSettings = null)

Deletes an existing BigQuery export.

Parameters
Name Description
name string

Required. The name of the BigQuery export to delete. The following list shows some examples of the format:

+ organizations/{organization}/locations/{location}/bigQueryExports/{export_id}

  • folders/{folder}/locations/{location}/bigQueryExports/{export_id}
  • projects/{project}/locations/{location}/bigQueryExports/{export_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/locations/[LOCATION]/bigQueryExports/[EXPORT]";
// Make the request
await securityCenterClient.DeleteBigQueryExportAsync(name);

DeleteBigQueryExportAsync(string, CancellationToken)

public virtual Task DeleteBigQueryExportAsync(string name, CancellationToken cancellationToken)

Deletes an existing BigQuery export.

Parameters
Name Description
name string

Required. The name of the BigQuery export to delete. The following list shows some examples of the format:

+ organizations/{organization}/locations/{location}/bigQueryExports/{export_id}

  • folders/{folder}/locations/{location}/bigQueryExports/{export_id}
  • projects/{project}/locations/{location}/bigQueryExports/{export_id}
cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/locations/[LOCATION]/bigQueryExports/[EXPORT]";
// Make the request
await securityCenterClient.DeleteBigQueryExportAsync(name);

DeleteMuteConfig(DeleteMuteConfigRequest, CallSettings)

public virtual void DeleteMuteConfig(DeleteMuteConfigRequest request, CallSettings callSettings = null)

Deletes an existing mute config. If no location is specified, default is global.

Parameters
Name Description
request DeleteMuteConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
DeleteMuteConfigRequest request = new DeleteMuteConfigRequest
{
    MuteConfigName = MuteConfigName.FromOrganizationMuteConfig("[ORGANIZATION]", "[MUTE_CONFIG]"),
};
// Make the request
securityCenterClient.DeleteMuteConfig(request);

DeleteMuteConfig(MuteConfigName, CallSettings)

public virtual void DeleteMuteConfig(MuteConfigName name, CallSettings callSettings = null)

Deletes an existing mute config. If no location is specified, default is global.

Parameters
Name Description
name MuteConfigName

Required. Name of the mute config to delete. The following list shows some examples of the format:

  • organizations/{organization}/muteConfigs/{config_id} + organizations/{organization}/locations/{location}/muteConfigs/{config_id}
  • folders/{folder}/muteConfigs/{config_id}
  • folders/{folder}/locations/{location}/muteConfigs/{config_id}
  • projects/{project}/muteConfigs/{config_id}
  • projects/{project}/locations/{location}/muteConfigs/{config_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
MuteConfigName name = MuteConfigName.FromOrganizationMuteConfig("[ORGANIZATION]", "[MUTE_CONFIG]");
// Make the request
securityCenterClient.DeleteMuteConfig(name);

DeleteMuteConfig(string, CallSettings)

public virtual void DeleteMuteConfig(string name, CallSettings callSettings = null)

Deletes an existing mute config. If no location is specified, default is global.

Parameters
Name Description
name string

Required. Name of the mute config to delete. The following list shows some examples of the format:

  • organizations/{organization}/muteConfigs/{config_id} + organizations/{organization}/locations/{location}/muteConfigs/{config_id}
  • folders/{folder}/muteConfigs/{config_id}
  • folders/{folder}/locations/{location}/muteConfigs/{config_id}
  • projects/{project}/muteConfigs/{config_id}
  • projects/{project}/locations/{location}/muteConfigs/{config_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/muteConfigs/[MUTE_CONFIG]";
// Make the request
securityCenterClient.DeleteMuteConfig(name);

DeleteMuteConfigAsync(DeleteMuteConfigRequest, CallSettings)

public virtual Task DeleteMuteConfigAsync(DeleteMuteConfigRequest request, CallSettings callSettings = null)

Deletes an existing mute config. If no location is specified, default is global.

Parameters
Name Description
request DeleteMuteConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
DeleteMuteConfigRequest request = new DeleteMuteConfigRequest
{
    MuteConfigName = MuteConfigName.FromOrganizationMuteConfig("[ORGANIZATION]", "[MUTE_CONFIG]"),
};
// Make the request
await securityCenterClient.DeleteMuteConfigAsync(request);

DeleteMuteConfigAsync(DeleteMuteConfigRequest, CancellationToken)

public virtual Task DeleteMuteConfigAsync(DeleteMuteConfigRequest request, CancellationToken cancellationToken)

Deletes an existing mute config. If no location is specified, default is global.

Parameters
Name Description
request DeleteMuteConfigRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
DeleteMuteConfigRequest request = new DeleteMuteConfigRequest
{
    MuteConfigName = MuteConfigName.FromOrganizationMuteConfig("[ORGANIZATION]", "[MUTE_CONFIG]"),
};
// Make the request
await securityCenterClient.DeleteMuteConfigAsync(request);

DeleteMuteConfigAsync(MuteConfigName, CallSettings)

public virtual Task DeleteMuteConfigAsync(MuteConfigName name, CallSettings callSettings = null)

Deletes an existing mute config. If no location is specified, default is global.

Parameters
Name Description
name MuteConfigName

Required. Name of the mute config to delete. The following list shows some examples of the format:

  • organizations/{organization}/muteConfigs/{config_id} + organizations/{organization}/locations/{location}/muteConfigs/{config_id}
  • folders/{folder}/muteConfigs/{config_id}
  • folders/{folder}/locations/{location}/muteConfigs/{config_id}
  • projects/{project}/muteConfigs/{config_id}
  • projects/{project}/locations/{location}/muteConfigs/{config_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
MuteConfigName name = MuteConfigName.FromOrganizationMuteConfig("[ORGANIZATION]", "[MUTE_CONFIG]");
// Make the request
await securityCenterClient.DeleteMuteConfigAsync(name);

DeleteMuteConfigAsync(MuteConfigName, CancellationToken)

public virtual Task DeleteMuteConfigAsync(MuteConfigName name, CancellationToken cancellationToken)

Deletes an existing mute config. If no location is specified, default is global.

Parameters
Name Description
name MuteConfigName

Required. Name of the mute config to delete. The following list shows some examples of the format:

  • organizations/{organization}/muteConfigs/{config_id} + organizations/{organization}/locations/{location}/muteConfigs/{config_id}
  • folders/{folder}/muteConfigs/{config_id}
  • folders/{folder}/locations/{location}/muteConfigs/{config_id}
  • projects/{project}/muteConfigs/{config_id}
  • projects/{project}/locations/{location}/muteConfigs/{config_id}
cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
MuteConfigName name = MuteConfigName.FromOrganizationMuteConfig("[ORGANIZATION]", "[MUTE_CONFIG]");
// Make the request
await securityCenterClient.DeleteMuteConfigAsync(name);

DeleteMuteConfigAsync(string, CallSettings)

public virtual Task DeleteMuteConfigAsync(string name, CallSettings callSettings = null)

Deletes an existing mute config. If no location is specified, default is global.

Parameters
Name Description
name string

Required. Name of the mute config to delete. The following list shows some examples of the format:

  • organizations/{organization}/muteConfigs/{config_id} + organizations/{organization}/locations/{location}/muteConfigs/{config_id}
  • folders/{folder}/muteConfigs/{config_id}
  • folders/{folder}/locations/{location}/muteConfigs/{config_id}
  • projects/{project}/muteConfigs/{config_id}
  • projects/{project}/locations/{location}/muteConfigs/{config_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/muteConfigs/[MUTE_CONFIG]";
// Make the request
await securityCenterClient.DeleteMuteConfigAsync(name);

DeleteMuteConfigAsync(string, CancellationToken)

public virtual Task DeleteMuteConfigAsync(string name, CancellationToken cancellationToken)

Deletes an existing mute config. If no location is specified, default is global.

Parameters
Name Description
name string

Required. Name of the mute config to delete. The following list shows some examples of the format:

  • organizations/{organization}/muteConfigs/{config_id} + organizations/{organization}/locations/{location}/muteConfigs/{config_id}
  • folders/{folder}/muteConfigs/{config_id}
  • folders/{folder}/locations/{location}/muteConfigs/{config_id}
  • projects/{project}/muteConfigs/{config_id}
  • projects/{project}/locations/{location}/muteConfigs/{config_id}
cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/muteConfigs/[MUTE_CONFIG]";
// Make the request
await securityCenterClient.DeleteMuteConfigAsync(name);

DeleteNotificationConfig(DeleteNotificationConfigRequest, CallSettings)

public virtual void DeleteNotificationConfig(DeleteNotificationConfigRequest request, CallSettings callSettings = null)

Deletes a notification config.

Parameters
Name Description
request DeleteNotificationConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
DeleteNotificationConfigRequest request = new DeleteNotificationConfigRequest
{
    NotificationConfigName = NotificationConfigName.FromOrganizationLocationNotificationConfig("[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION_CONFIG]"),
};
// Make the request
securityCenterClient.DeleteNotificationConfig(request);

DeleteNotificationConfig(NotificationConfigName, CallSettings)

public virtual void DeleteNotificationConfig(NotificationConfigName name, CallSettings callSettings = null)

Deletes a notification config.

Parameters
Name Description
name NotificationConfigName

Required. Name of the notification config to delete. The following list shows some examples of the format:

+ organizations/[organization_id]/locations/[location_id]/notificationConfigs/[config_id] + folders/[folder_id]/locations/[location_id]notificationConfigs/[config_id] + projects/[project_id]/locations/[location_id]notificationConfigs/[config_id]

callSettings CallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
NotificationConfigName name = NotificationConfigName.FromOrganizationLocationNotificationConfig("[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION_CONFIG]");
// Make the request
securityCenterClient.DeleteNotificationConfig(name);

DeleteNotificationConfig(string, CallSettings)

public virtual void DeleteNotificationConfig(string name, CallSettings callSettings = null)

Deletes a notification config.

Parameters
Name Description
name string

Required. Name of the notification config to delete. The following list shows some examples of the format:

+ organizations/[organization_id]/locations/[location_id]/notificationConfigs/[config_id] + folders/[folder_id]/locations/[location_id]notificationConfigs/[config_id] + projects/[project_id]/locations/[location_id]notificationConfigs/[config_id]

callSettings CallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/locations/[LOCATION]/notificationConfigs/[NOTIFICATION_CONFIG]";
// Make the request
securityCenterClient.DeleteNotificationConfig(name);

DeleteNotificationConfigAsync(DeleteNotificationConfigRequest, CallSettings)

public virtual Task DeleteNotificationConfigAsync(DeleteNotificationConfigRequest request, CallSettings callSettings = null)

Deletes a notification config.

Parameters
Name Description
request DeleteNotificationConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
DeleteNotificationConfigRequest request = new DeleteNotificationConfigRequest
{
    NotificationConfigName = NotificationConfigName.FromOrganizationLocationNotificationConfig("[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION_CONFIG]"),
};
// Make the request
await securityCenterClient.DeleteNotificationConfigAsync(request);

DeleteNotificationConfigAsync(DeleteNotificationConfigRequest, CancellationToken)

public virtual Task DeleteNotificationConfigAsync(DeleteNotificationConfigRequest request, CancellationToken cancellationToken)

Deletes a notification config.

Parameters
Name Description
request DeleteNotificationConfigRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
DeleteNotificationConfigRequest request = new DeleteNotificationConfigRequest
{
    NotificationConfigName = NotificationConfigName.FromOrganizationLocationNotificationConfig("[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION_CONFIG]"),
};
// Make the request
await securityCenterClient.DeleteNotificationConfigAsync(request);

DeleteNotificationConfigAsync(NotificationConfigName, CallSettings)

public virtual Task DeleteNotificationConfigAsync(NotificationConfigName name, CallSettings callSettings = null)

Deletes a notification config.

Parameters
Name Description
name NotificationConfigName

Required. Name of the notification config to delete. The following list shows some examples of the format:

+ organizations/[organization_id]/locations/[location_id]/notificationConfigs/[config_id] + folders/[folder_id]/locations/[location_id]notificationConfigs/[config_id] + projects/[project_id]/locations/[location_id]notificationConfigs/[config_id]

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
NotificationConfigName name = NotificationConfigName.FromOrganizationLocationNotificationConfig("[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION_CONFIG]");
// Make the request
await securityCenterClient.DeleteNotificationConfigAsync(name);

DeleteNotificationConfigAsync(NotificationConfigName, CancellationToken)

public virtual Task DeleteNotificationConfigAsync(NotificationConfigName name, CancellationToken cancellationToken)

Deletes a notification config.

Parameters
Name Description
name NotificationConfigName

Required. Name of the notification config to delete. The following list shows some examples of the format:

+ organizations/[organization_id]/locations/[location_id]/notificationConfigs/[config_id] + folders/[folder_id]/locations/[location_id]notificationConfigs/[config_id] + projects/[project_id]/locations/[location_id]notificationConfigs/[config_id]

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
NotificationConfigName name = NotificationConfigName.FromOrganizationLocationNotificationConfig("[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION_CONFIG]");
// Make the request
await securityCenterClient.DeleteNotificationConfigAsync(name);

DeleteNotificationConfigAsync(string, CallSettings)

public virtual Task DeleteNotificationConfigAsync(string name, CallSettings callSettings = null)

Deletes a notification config.

Parameters
Name Description
name string

Required. Name of the notification config to delete. The following list shows some examples of the format:

+ organizations/[organization_id]/locations/[location_id]/notificationConfigs/[config_id] + folders/[folder_id]/locations/[location_id]notificationConfigs/[config_id] + projects/[project_id]/locations/[location_id]notificationConfigs/[config_id]

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/locations/[LOCATION]/notificationConfigs/[NOTIFICATION_CONFIG]";
// Make the request
await securityCenterClient.DeleteNotificationConfigAsync(name);

DeleteNotificationConfigAsync(string, CancellationToken)

public virtual Task DeleteNotificationConfigAsync(string name, CancellationToken cancellationToken)

Deletes a notification config.

Parameters
Name Description
name string

Required. Name of the notification config to delete. The following list shows some examples of the format:

+ organizations/[organization_id]/locations/[location_id]/notificationConfigs/[config_id] + folders/[folder_id]/locations/[location_id]notificationConfigs/[config_id] + projects/[project_id]/locations/[location_id]notificationConfigs/[config_id]

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/locations/[LOCATION]/notificationConfigs/[NOTIFICATION_CONFIG]";
// Make the request
await securityCenterClient.DeleteNotificationConfigAsync(name);

DeleteResourceValueConfig(DeleteResourceValueConfigRequest, CallSettings)

public virtual void DeleteResourceValueConfig(DeleteResourceValueConfigRequest request, CallSettings callSettings = null)

Deletes a ResourceValueConfig.

Parameters
Name Description
request DeleteResourceValueConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
DeleteResourceValueConfigRequest request = new DeleteResourceValueConfigRequest
{
    ResourceValueConfigName = ResourceValueConfigName.FromOrganizationResourceValueConfig("[ORGANIZATION]", "[RESOURCE_VALUE_CONFIG]"),
};
// Make the request
securityCenterClient.DeleteResourceValueConfig(request);

DeleteResourceValueConfig(ResourceValueConfigName, CallSettings)

public virtual void DeleteResourceValueConfig(ResourceValueConfigName name, CallSettings callSettings = null)

Deletes a ResourceValueConfig.

Parameters
Name Description
name ResourceValueConfigName

Required. Name of the ResourceValueConfig to delete

callSettings CallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ResourceValueConfigName name = ResourceValueConfigName.FromOrganizationResourceValueConfig("[ORGANIZATION]", "[RESOURCE_VALUE_CONFIG]");
// Make the request
securityCenterClient.DeleteResourceValueConfig(name);

DeleteResourceValueConfig(string, CallSettings)

public virtual void DeleteResourceValueConfig(string name, CallSettings callSettings = null)

Deletes a ResourceValueConfig.

Parameters
Name Description
name string

Required. Name of the ResourceValueConfig to delete

callSettings CallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/resourceValueConfigs/[RESOURCE_VALUE_CONFIG]";
// Make the request
securityCenterClient.DeleteResourceValueConfig(name);

DeleteResourceValueConfigAsync(DeleteResourceValueConfigRequest, CallSettings)

public virtual Task DeleteResourceValueConfigAsync(DeleteResourceValueConfigRequest request, CallSettings callSettings = null)

Deletes a ResourceValueConfig.

Parameters
Name Description
request DeleteResourceValueConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
DeleteResourceValueConfigRequest request = new DeleteResourceValueConfigRequest
{
    ResourceValueConfigName = ResourceValueConfigName.FromOrganizationResourceValueConfig("[ORGANIZATION]", "[RESOURCE_VALUE_CONFIG]"),
};
// Make the request
await securityCenterClient.DeleteResourceValueConfigAsync(request);

DeleteResourceValueConfigAsync(DeleteResourceValueConfigRequest, CancellationToken)

public virtual Task DeleteResourceValueConfigAsync(DeleteResourceValueConfigRequest request, CancellationToken cancellationToken)

Deletes a ResourceValueConfig.

Parameters
Name Description
request DeleteResourceValueConfigRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
DeleteResourceValueConfigRequest request = new DeleteResourceValueConfigRequest
{
    ResourceValueConfigName = ResourceValueConfigName.FromOrganizationResourceValueConfig("[ORGANIZATION]", "[RESOURCE_VALUE_CONFIG]"),
};
// Make the request
await securityCenterClient.DeleteResourceValueConfigAsync(request);

DeleteResourceValueConfigAsync(ResourceValueConfigName, CallSettings)

public virtual Task DeleteResourceValueConfigAsync(ResourceValueConfigName name, CallSettings callSettings = null)

Deletes a ResourceValueConfig.

Parameters
Name Description
name ResourceValueConfigName

Required. Name of the ResourceValueConfig to delete

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ResourceValueConfigName name = ResourceValueConfigName.FromOrganizationResourceValueConfig("[ORGANIZATION]", "[RESOURCE_VALUE_CONFIG]");
// Make the request
await securityCenterClient.DeleteResourceValueConfigAsync(name);

DeleteResourceValueConfigAsync(ResourceValueConfigName, CancellationToken)

public virtual Task DeleteResourceValueConfigAsync(ResourceValueConfigName name, CancellationToken cancellationToken)

Deletes a ResourceValueConfig.

Parameters
Name Description
name ResourceValueConfigName

Required. Name of the ResourceValueConfig to delete

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ResourceValueConfigName name = ResourceValueConfigName.FromOrganizationResourceValueConfig("[ORGANIZATION]", "[RESOURCE_VALUE_CONFIG]");
// Make the request
await securityCenterClient.DeleteResourceValueConfigAsync(name);

DeleteResourceValueConfigAsync(string, CallSettings)

public virtual Task DeleteResourceValueConfigAsync(string name, CallSettings callSettings = null)

Deletes a ResourceValueConfig.

Parameters
Name Description
name string

Required. Name of the ResourceValueConfig to delete

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/resourceValueConfigs/[RESOURCE_VALUE_CONFIG]";
// Make the request
await securityCenterClient.DeleteResourceValueConfigAsync(name);

DeleteResourceValueConfigAsync(string, CancellationToken)

public virtual Task DeleteResourceValueConfigAsync(string name, CancellationToken cancellationToken)

Deletes a ResourceValueConfig.

Parameters
Name Description
name string

Required. Name of the ResourceValueConfig to delete

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/resourceValueConfigs/[RESOURCE_VALUE_CONFIG]";
// Make the request
await securityCenterClient.DeleteResourceValueConfigAsync(name);

GetBigQueryExport(BigQueryExportName, CallSettings)

public virtual BigQueryExport GetBigQueryExport(BigQueryExportName name, CallSettings callSettings = null)

Gets a BigQuery export.

Parameters
Name Description
name BigQueryExportName

Required. Name of the BigQuery export to retrieve. The following list shows some examples of the format:

+ organizations/{organization}/locations/{location}/bigQueryExports/{export_id}

  • folders/{folder}/locations/{location}/bigQueryExports/{export_id}
  • projects/{project}locations/{location}//bigQueryExports/{export_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
BigQueryExport

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
BigQueryExportName name = BigQueryExportName.FromOrganizationLocationExport("[ORGANIZATION]", "[LOCATION]", "[EXPORT]");
// Make the request
BigQueryExport response = securityCenterClient.GetBigQueryExport(name);

GetBigQueryExport(GetBigQueryExportRequest, CallSettings)

public virtual BigQueryExport GetBigQueryExport(GetBigQueryExportRequest request, CallSettings callSettings = null)

Gets a BigQuery export.

Parameters
Name Description
request GetBigQueryExportRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
BigQueryExport

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
GetBigQueryExportRequest request = new GetBigQueryExportRequest
{
    BigQueryExportName = BigQueryExportName.FromOrganizationLocationExport("[ORGANIZATION]", "[LOCATION]", "[EXPORT]"),
};
// Make the request
BigQueryExport response = securityCenterClient.GetBigQueryExport(request);

GetBigQueryExport(string, CallSettings)

public virtual BigQueryExport GetBigQueryExport(string name, CallSettings callSettings = null)

Gets a BigQuery export.

Parameters
Name Description
name string

Required. Name of the BigQuery export to retrieve. The following list shows some examples of the format:

+ organizations/{organization}/locations/{location}/bigQueryExports/{export_id}

  • folders/{folder}/locations/{location}/bigQueryExports/{export_id}
  • projects/{project}locations/{location}//bigQueryExports/{export_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
BigQueryExport

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/locations/[LOCATION]/bigQueryExports/[EXPORT]";
// Make the request
BigQueryExport response = securityCenterClient.GetBigQueryExport(name);

GetBigQueryExportAsync(BigQueryExportName, CallSettings)

public virtual Task<BigQueryExport> GetBigQueryExportAsync(BigQueryExportName name, CallSettings callSettings = null)

Gets a BigQuery export.

Parameters
Name Description
name BigQueryExportName

Required. Name of the BigQuery export to retrieve. The following list shows some examples of the format:

+ organizations/{organization}/locations/{location}/bigQueryExports/{export_id}

  • folders/{folder}/locations/{location}/bigQueryExports/{export_id}
  • projects/{project}locations/{location}//bigQueryExports/{export_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
BigQueryExportName name = BigQueryExportName.FromOrganizationLocationExport("[ORGANIZATION]", "[LOCATION]", "[EXPORT]");
// Make the request
BigQueryExport response = await securityCenterClient.GetBigQueryExportAsync(name);

GetBigQueryExportAsync(BigQueryExportName, CancellationToken)

public virtual Task<BigQueryExport> GetBigQueryExportAsync(BigQueryExportName name, CancellationToken cancellationToken)

Gets a BigQuery export.

Parameters
Name Description
name BigQueryExportName

Required. Name of the BigQuery export to retrieve. The following list shows some examples of the format:

+ organizations/{organization}/locations/{location}/bigQueryExports/{export_id}

  • folders/{folder}/locations/{location}/bigQueryExports/{export_id}
  • projects/{project}locations/{location}//bigQueryExports/{export_id}
cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
BigQueryExportName name = BigQueryExportName.FromOrganizationLocationExport("[ORGANIZATION]", "[LOCATION]", "[EXPORT]");
// Make the request
BigQueryExport response = await securityCenterClient.GetBigQueryExportAsync(name);

GetBigQueryExportAsync(GetBigQueryExportRequest, CallSettings)

public virtual Task<BigQueryExport> GetBigQueryExportAsync(GetBigQueryExportRequest request, CallSettings callSettings = null)

Gets a BigQuery export.

Parameters
Name Description
request GetBigQueryExportRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetBigQueryExportRequest request = new GetBigQueryExportRequest
{
    BigQueryExportName = BigQueryExportName.FromOrganizationLocationExport("[ORGANIZATION]", "[LOCATION]", "[EXPORT]"),
};
// Make the request
BigQueryExport response = await securityCenterClient.GetBigQueryExportAsync(request);

GetBigQueryExportAsync(GetBigQueryExportRequest, CancellationToken)

public virtual Task<BigQueryExport> GetBigQueryExportAsync(GetBigQueryExportRequest request, CancellationToken cancellationToken)

Gets a BigQuery export.

Parameters
Name Description
request GetBigQueryExportRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetBigQueryExportRequest request = new GetBigQueryExportRequest
{
    BigQueryExportName = BigQueryExportName.FromOrganizationLocationExport("[ORGANIZATION]", "[LOCATION]", "[EXPORT]"),
};
// Make the request
BigQueryExport response = await securityCenterClient.GetBigQueryExportAsync(request);

GetBigQueryExportAsync(string, CallSettings)

public virtual Task<BigQueryExport> GetBigQueryExportAsync(string name, CallSettings callSettings = null)

Gets a BigQuery export.

Parameters
Name Description
name string

Required. Name of the BigQuery export to retrieve. The following list shows some examples of the format:

+ organizations/{organization}/locations/{location}/bigQueryExports/{export_id}

  • folders/{folder}/locations/{location}/bigQueryExports/{export_id}
  • projects/{project}locations/{location}//bigQueryExports/{export_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/locations/[LOCATION]/bigQueryExports/[EXPORT]";
// Make the request
BigQueryExport response = await securityCenterClient.GetBigQueryExportAsync(name);

GetBigQueryExportAsync(string, CancellationToken)

public virtual Task<BigQueryExport> GetBigQueryExportAsync(string name, CancellationToken cancellationToken)

Gets a BigQuery export.

Parameters
Name Description
name string

Required. Name of the BigQuery export to retrieve. The following list shows some examples of the format:

+ organizations/{organization}/locations/{location}/bigQueryExports/{export_id}

  • folders/{folder}/locations/{location}/bigQueryExports/{export_id}
  • projects/{project}locations/{location}//bigQueryExports/{export_id}
cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/locations/[LOCATION]/bigQueryExports/[EXPORT]";
// Make the request
BigQueryExport response = await securityCenterClient.GetBigQueryExportAsync(name);

GetIamPolicy(IResourceName, CallSettings)

public virtual Policy GetIamPolicy(IResourceName resource, CallSettings callSettings = null)

Gets the access control policy on the specified Source.

Parameters
Name Description
resource IResourceName

REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Policy

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
IResourceName resource = new UnparsedResourceName("a/wildcard/resource");
// Make the request
Policy response = securityCenterClient.GetIamPolicy(resource);

GetIamPolicy(GetIamPolicyRequest, CallSettings)

public virtual Policy GetIamPolicy(GetIamPolicyRequest request, CallSettings callSettings = null)

Gets the access control policy on the specified Source.

Parameters
Name Description
request GetIamPolicyRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Policy

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
GetIamPolicyRequest request = new GetIamPolicyRequest
{
    ResourceAsResourceName = new UnparsedResourceName("a/wildcard/resource"),
    Options = new GetPolicyOptions(),
};
// Make the request
Policy response = securityCenterClient.GetIamPolicy(request);

GetIamPolicy(string, CallSettings)

public virtual Policy GetIamPolicy(string resource, CallSettings callSettings = null)

Gets the access control policy on the specified Source.

Parameters
Name Description
resource string

REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Policy

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string resource = "a/wildcard/resource";
// Make the request
Policy response = securityCenterClient.GetIamPolicy(resource);

GetIamPolicyAsync(IResourceName, CallSettings)

public virtual Task<Policy> GetIamPolicyAsync(IResourceName resource, CallSettings callSettings = null)

Gets the access control policy on the specified Source.

Parameters
Name Description
resource IResourceName

REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
IResourceName resource = new UnparsedResourceName("a/wildcard/resource");
// Make the request
Policy response = await securityCenterClient.GetIamPolicyAsync(resource);

GetIamPolicyAsync(IResourceName, CancellationToken)

public virtual Task<Policy> GetIamPolicyAsync(IResourceName resource, CancellationToken cancellationToken)

Gets the access control policy on the specified Source.

Parameters
Name Description
resource IResourceName

REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
IResourceName resource = new UnparsedResourceName("a/wildcard/resource");
// Make the request
Policy response = await securityCenterClient.GetIamPolicyAsync(resource);

GetIamPolicyAsync(GetIamPolicyRequest, CallSettings)

public virtual Task<Policy> GetIamPolicyAsync(GetIamPolicyRequest request, CallSettings callSettings = null)

Gets the access control policy on the specified Source.

Parameters
Name Description
request GetIamPolicyRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetIamPolicyRequest request = new GetIamPolicyRequest
{
    ResourceAsResourceName = new UnparsedResourceName("a/wildcard/resource"),
    Options = new GetPolicyOptions(),
};
// Make the request
Policy response = await securityCenterClient.GetIamPolicyAsync(request);

GetIamPolicyAsync(GetIamPolicyRequest, CancellationToken)

public virtual Task<Policy> GetIamPolicyAsync(GetIamPolicyRequest request, CancellationToken cancellationToken)

Gets the access control policy on the specified Source.

Parameters
Name Description
request GetIamPolicyRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetIamPolicyRequest request = new GetIamPolicyRequest
{
    ResourceAsResourceName = new UnparsedResourceName("a/wildcard/resource"),
    Options = new GetPolicyOptions(),
};
// Make the request
Policy response = await securityCenterClient.GetIamPolicyAsync(request);

GetIamPolicyAsync(string, CallSettings)

public virtual Task<Policy> GetIamPolicyAsync(string resource, CallSettings callSettings = null)

Gets the access control policy on the specified Source.

Parameters
Name Description
resource string

REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string resource = "a/wildcard/resource";
// Make the request
Policy response = await securityCenterClient.GetIamPolicyAsync(resource);

GetIamPolicyAsync(string, CancellationToken)

public virtual Task<Policy> GetIamPolicyAsync(string resource, CancellationToken cancellationToken)

Gets the access control policy on the specified Source.

Parameters
Name Description
resource string

REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string resource = "a/wildcard/resource";
// Make the request
Policy response = await securityCenterClient.GetIamPolicyAsync(resource);

GetMuteConfig(GetMuteConfigRequest, CallSettings)

public virtual MuteConfig GetMuteConfig(GetMuteConfigRequest request, CallSettings callSettings = null)

Gets a mute config. If no location is specified, default is global.

Parameters
Name Description
request GetMuteConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
MuteConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
GetMuteConfigRequest request = new GetMuteConfigRequest
{
    MuteConfigName = MuteConfigName.FromOrganizationMuteConfig("[ORGANIZATION]", "[MUTE_CONFIG]"),
};
// Make the request
MuteConfig response = securityCenterClient.GetMuteConfig(request);

GetMuteConfig(MuteConfigName, CallSettings)

public virtual MuteConfig GetMuteConfig(MuteConfigName name, CallSettings callSettings = null)

Gets a mute config. If no location is specified, default is global.

Parameters
Name Description
name MuteConfigName

Required. Name of the mute config to retrieve. The following list shows some examples of the format:

  • organizations/{organization}/muteConfigs/{config_id} + organizations/{organization}/locations/{location}/muteConfigs/{config_id}
  • folders/{folder}/muteConfigs/{config_id}
  • folders/{folder}/locations/{location}/muteConfigs/{config_id}
  • projects/{project}/muteConfigs/{config_id}
  • projects/{project}/locations/{location}/muteConfigs/{config_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
MuteConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
MuteConfigName name = MuteConfigName.FromOrganizationMuteConfig("[ORGANIZATION]", "[MUTE_CONFIG]");
// Make the request
MuteConfig response = securityCenterClient.GetMuteConfig(name);

GetMuteConfig(string, CallSettings)

public virtual MuteConfig GetMuteConfig(string name, CallSettings callSettings = null)

Gets a mute config. If no location is specified, default is global.

Parameters
Name Description
name string

Required. Name of the mute config to retrieve. The following list shows some examples of the format:

  • organizations/{organization}/muteConfigs/{config_id} + organizations/{organization}/locations/{location}/muteConfigs/{config_id}
  • folders/{folder}/muteConfigs/{config_id}
  • folders/{folder}/locations/{location}/muteConfigs/{config_id}
  • projects/{project}/muteConfigs/{config_id}
  • projects/{project}/locations/{location}/muteConfigs/{config_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
MuteConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/muteConfigs/[MUTE_CONFIG]";
// Make the request
MuteConfig response = securityCenterClient.GetMuteConfig(name);

GetMuteConfigAsync(GetMuteConfigRequest, CallSettings)

public virtual Task<MuteConfig> GetMuteConfigAsync(GetMuteConfigRequest request, CallSettings callSettings = null)

Gets a mute config. If no location is specified, default is global.

Parameters
Name Description
request GetMuteConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetMuteConfigRequest request = new GetMuteConfigRequest
{
    MuteConfigName = MuteConfigName.FromOrganizationMuteConfig("[ORGANIZATION]", "[MUTE_CONFIG]"),
};
// Make the request
MuteConfig response = await securityCenterClient.GetMuteConfigAsync(request);

GetMuteConfigAsync(GetMuteConfigRequest, CancellationToken)

public virtual Task<MuteConfig> GetMuteConfigAsync(GetMuteConfigRequest request, CancellationToken cancellationToken)

Gets a mute config. If no location is specified, default is global.

Parameters
Name Description
request GetMuteConfigRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetMuteConfigRequest request = new GetMuteConfigRequest
{
    MuteConfigName = MuteConfigName.FromOrganizationMuteConfig("[ORGANIZATION]", "[MUTE_CONFIG]"),
};
// Make the request
MuteConfig response = await securityCenterClient.GetMuteConfigAsync(request);

GetMuteConfigAsync(MuteConfigName, CallSettings)

public virtual Task<MuteConfig> GetMuteConfigAsync(MuteConfigName name, CallSettings callSettings = null)

Gets a mute config. If no location is specified, default is global.

Parameters
Name Description
name MuteConfigName

Required. Name of the mute config to retrieve. The following list shows some examples of the format:

  • organizations/{organization}/muteConfigs/{config_id} + organizations/{organization}/locations/{location}/muteConfigs/{config_id}
  • folders/{folder}/muteConfigs/{config_id}
  • folders/{folder}/locations/{location}/muteConfigs/{config_id}
  • projects/{project}/muteConfigs/{config_id}
  • projects/{project}/locations/{location}/muteConfigs/{config_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
MuteConfigName name = MuteConfigName.FromOrganizationMuteConfig("[ORGANIZATION]", "[MUTE_CONFIG]");
// Make the request
MuteConfig response = await securityCenterClient.GetMuteConfigAsync(name);

GetMuteConfigAsync(MuteConfigName, CancellationToken)

public virtual Task<MuteConfig> GetMuteConfigAsync(MuteConfigName name, CancellationToken cancellationToken)

Gets a mute config. If no location is specified, default is global.

Parameters
Name Description
name MuteConfigName

Required. Name of the mute config to retrieve. The following list shows some examples of the format:

  • organizations/{organization}/muteConfigs/{config_id} + organizations/{organization}/locations/{location}/muteConfigs/{config_id}
  • folders/{folder}/muteConfigs/{config_id}
  • folders/{folder}/locations/{location}/muteConfigs/{config_id}
  • projects/{project}/muteConfigs/{config_id}
  • projects/{project}/locations/{location}/muteConfigs/{config_id}
cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
MuteConfigName name = MuteConfigName.FromOrganizationMuteConfig("[ORGANIZATION]", "[MUTE_CONFIG]");
// Make the request
MuteConfig response = await securityCenterClient.GetMuteConfigAsync(name);

GetMuteConfigAsync(string, CallSettings)

public virtual Task<MuteConfig> GetMuteConfigAsync(string name, CallSettings callSettings = null)

Gets a mute config. If no location is specified, default is global.

Parameters
Name Description
name string

Required. Name of the mute config to retrieve. The following list shows some examples of the format:

  • organizations/{organization}/muteConfigs/{config_id} + organizations/{organization}/locations/{location}/muteConfigs/{config_id}
  • folders/{folder}/muteConfigs/{config_id}
  • folders/{folder}/locations/{location}/muteConfigs/{config_id}
  • projects/{project}/muteConfigs/{config_id}
  • projects/{project}/locations/{location}/muteConfigs/{config_id}
callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/muteConfigs/[MUTE_CONFIG]";
// Make the request
MuteConfig response = await securityCenterClient.GetMuteConfigAsync(name);

GetMuteConfigAsync(string, CancellationToken)

public virtual Task<MuteConfig> GetMuteConfigAsync(string name, CancellationToken cancellationToken)

Gets a mute config. If no location is specified, default is global.

Parameters
Name Description
name string

Required. Name of the mute config to retrieve. The following list shows some examples of the format:

  • organizations/{organization}/muteConfigs/{config_id} + organizations/{organization}/locations/{location}/muteConfigs/{config_id}
  • folders/{folder}/muteConfigs/{config_id}
  • folders/{folder}/locations/{location}/muteConfigs/{config_id}
  • projects/{project}/muteConfigs/{config_id}
  • projects/{project}/locations/{location}/muteConfigs/{config_id}
cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/muteConfigs/[MUTE_CONFIG]";
// Make the request
MuteConfig response = await securityCenterClient.GetMuteConfigAsync(name);

GetNotificationConfig(GetNotificationConfigRequest, CallSettings)

public virtual NotificationConfig GetNotificationConfig(GetNotificationConfigRequest request, CallSettings callSettings = null)

Gets a notification config.

Parameters
Name Description
request GetNotificationConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
NotificationConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
GetNotificationConfigRequest request = new GetNotificationConfigRequest
{
    NotificationConfigName = NotificationConfigName.FromOrganizationLocationNotificationConfig("[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION_CONFIG]"),
};
// Make the request
NotificationConfig response = securityCenterClient.GetNotificationConfig(request);

GetNotificationConfig(NotificationConfigName, CallSettings)

public virtual NotificationConfig GetNotificationConfig(NotificationConfigName name, CallSettings callSettings = null)

Gets a notification config.

Parameters
Name Description
name NotificationConfigName

Required. Name of the notification config to get. The following list shows some examples of the format:

+ organizations/[organization_id]/locations/[location_id]/notificationConfigs/[config_id] + folders/[folder_id]/locations/[location_id]/notificationConfigs/[config_id] + projects/[project_id]/locations/[location_id]/notificationConfigs/[config_id]

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
NotificationConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
NotificationConfigName name = NotificationConfigName.FromOrganizationLocationNotificationConfig("[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION_CONFIG]");
// Make the request
NotificationConfig response = securityCenterClient.GetNotificationConfig(name);

GetNotificationConfig(string, CallSettings)

public virtual NotificationConfig GetNotificationConfig(string name, CallSettings callSettings = null)

Gets a notification config.

Parameters
Name Description
name string

Required. Name of the notification config to get. The following list shows some examples of the format:

+ organizations/[organization_id]/locations/[location_id]/notificationConfigs/[config_id] + folders/[folder_id]/locations/[location_id]/notificationConfigs/[config_id] + projects/[project_id]/locations/[location_id]/notificationConfigs/[config_id]

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
NotificationConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/locations/[LOCATION]/notificationConfigs/[NOTIFICATION_CONFIG]";
// Make the request
NotificationConfig response = securityCenterClient.GetNotificationConfig(name);

GetNotificationConfigAsync(GetNotificationConfigRequest, CallSettings)

public virtual Task<NotificationConfig> GetNotificationConfigAsync(GetNotificationConfigRequest request, CallSettings callSettings = null)

Gets a notification config.

Parameters
Name Description
request GetNotificationConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetNotificationConfigRequest request = new GetNotificationConfigRequest
{
    NotificationConfigName = NotificationConfigName.FromOrganizationLocationNotificationConfig("[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION_CONFIG]"),
};
// Make the request
NotificationConfig response = await securityCenterClient.GetNotificationConfigAsync(request);

GetNotificationConfigAsync(GetNotificationConfigRequest, CancellationToken)

public virtual Task<NotificationConfig> GetNotificationConfigAsync(GetNotificationConfigRequest request, CancellationToken cancellationToken)

Gets a notification config.

Parameters
Name Description
request GetNotificationConfigRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetNotificationConfigRequest request = new GetNotificationConfigRequest
{
    NotificationConfigName = NotificationConfigName.FromOrganizationLocationNotificationConfig("[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION_CONFIG]"),
};
// Make the request
NotificationConfig response = await securityCenterClient.GetNotificationConfigAsync(request);

GetNotificationConfigAsync(NotificationConfigName, CallSettings)

public virtual Task<NotificationConfig> GetNotificationConfigAsync(NotificationConfigName name, CallSettings callSettings = null)

Gets a notification config.

Parameters
Name Description
name NotificationConfigName

Required. Name of the notification config to get. The following list shows some examples of the format:

+ organizations/[organization_id]/locations/[location_id]/notificationConfigs/[config_id] + folders/[folder_id]/locations/[location_id]/notificationConfigs/[config_id] + projects/[project_id]/locations/[location_id]/notificationConfigs/[config_id]

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
NotificationConfigName name = NotificationConfigName.FromOrganizationLocationNotificationConfig("[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION_CONFIG]");
// Make the request
NotificationConfig response = await securityCenterClient.GetNotificationConfigAsync(name);

GetNotificationConfigAsync(NotificationConfigName, CancellationToken)

public virtual Task<NotificationConfig> GetNotificationConfigAsync(NotificationConfigName name, CancellationToken cancellationToken)

Gets a notification config.

Parameters
Name Description
name NotificationConfigName

Required. Name of the notification config to get. The following list shows some examples of the format:

+ organizations/[organization_id]/locations/[location_id]/notificationConfigs/[config_id] + folders/[folder_id]/locations/[location_id]/notificationConfigs/[config_id] + projects/[project_id]/locations/[location_id]/notificationConfigs/[config_id]

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
NotificationConfigName name = NotificationConfigName.FromOrganizationLocationNotificationConfig("[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION_CONFIG]");
// Make the request
NotificationConfig response = await securityCenterClient.GetNotificationConfigAsync(name);

GetNotificationConfigAsync(string, CallSettings)

public virtual Task<NotificationConfig> GetNotificationConfigAsync(string name, CallSettings callSettings = null)

Gets a notification config.

Parameters
Name Description
name string

Required. Name of the notification config to get. The following list shows some examples of the format:

+ organizations/[organization_id]/locations/[location_id]/notificationConfigs/[config_id] + folders/[folder_id]/locations/[location_id]/notificationConfigs/[config_id] + projects/[project_id]/locations/[location_id]/notificationConfigs/[config_id]

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/locations/[LOCATION]/notificationConfigs/[NOTIFICATION_CONFIG]";
// Make the request
NotificationConfig response = await securityCenterClient.GetNotificationConfigAsync(name);

GetNotificationConfigAsync(string, CancellationToken)

public virtual Task<NotificationConfig> GetNotificationConfigAsync(string name, CancellationToken cancellationToken)

Gets a notification config.

Parameters
Name Description
name string

Required. Name of the notification config to get. The following list shows some examples of the format:

+ organizations/[organization_id]/locations/[location_id]/notificationConfigs/[config_id] + folders/[folder_id]/locations/[location_id]/notificationConfigs/[config_id] + projects/[project_id]/locations/[location_id]/notificationConfigs/[config_id]

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/locations/[LOCATION]/notificationConfigs/[NOTIFICATION_CONFIG]";
// Make the request
NotificationConfig response = await securityCenterClient.GetNotificationConfigAsync(name);

GetResourceValueConfig(GetResourceValueConfigRequest, CallSettings)

public virtual ResourceValueConfig GetResourceValueConfig(GetResourceValueConfigRequest request, CallSettings callSettings = null)

Gets a ResourceValueConfig.

Parameters
Name Description
request GetResourceValueConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
ResourceValueConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
GetResourceValueConfigRequest request = new GetResourceValueConfigRequest
{
    ResourceValueConfigName = ResourceValueConfigName.FromOrganizationResourceValueConfig("[ORGANIZATION]", "[RESOURCE_VALUE_CONFIG]"),
};
// Make the request
ResourceValueConfig response = securityCenterClient.GetResourceValueConfig(request);

GetResourceValueConfig(ResourceValueConfigName, CallSettings)

public virtual ResourceValueConfig GetResourceValueConfig(ResourceValueConfigName name, CallSettings callSettings = null)

Gets a ResourceValueConfig.

Parameters
Name Description
name ResourceValueConfigName

Required. Name of the resource value config to retrieve. Its format is organizations/{organization}/resourceValueConfigs/{config_id}.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
ResourceValueConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ResourceValueConfigName name = ResourceValueConfigName.FromOrganizationResourceValueConfig("[ORGANIZATION]", "[RESOURCE_VALUE_CONFIG]");
// Make the request
ResourceValueConfig response = securityCenterClient.GetResourceValueConfig(name);

GetResourceValueConfig(string, CallSettings)

public virtual ResourceValueConfig GetResourceValueConfig(string name, CallSettings callSettings = null)

Gets a ResourceValueConfig.

Parameters
Name Description
name string

Required. Name of the resource value config to retrieve. Its format is organizations/{organization}/resourceValueConfigs/{config_id}.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
ResourceValueConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/resourceValueConfigs/[RESOURCE_VALUE_CONFIG]";
// Make the request
ResourceValueConfig response = securityCenterClient.GetResourceValueConfig(name);

GetResourceValueConfigAsync(GetResourceValueConfigRequest, CallSettings)

public virtual Task<ResourceValueConfig> GetResourceValueConfigAsync(GetResourceValueConfigRequest request, CallSettings callSettings = null)

Gets a ResourceValueConfig.

Parameters
Name Description
request GetResourceValueConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskResourceValueConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetResourceValueConfigRequest request = new GetResourceValueConfigRequest
{
    ResourceValueConfigName = ResourceValueConfigName.FromOrganizationResourceValueConfig("[ORGANIZATION]", "[RESOURCE_VALUE_CONFIG]"),
};
// Make the request
ResourceValueConfig response = await securityCenterClient.GetResourceValueConfigAsync(request);

GetResourceValueConfigAsync(GetResourceValueConfigRequest, CancellationToken)

public virtual Task<ResourceValueConfig> GetResourceValueConfigAsync(GetResourceValueConfigRequest request, CancellationToken cancellationToken)

Gets a ResourceValueConfig.

Parameters
Name Description
request GetResourceValueConfigRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskResourceValueConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetResourceValueConfigRequest request = new GetResourceValueConfigRequest
{
    ResourceValueConfigName = ResourceValueConfigName.FromOrganizationResourceValueConfig("[ORGANIZATION]", "[RESOURCE_VALUE_CONFIG]"),
};
// Make the request
ResourceValueConfig response = await securityCenterClient.GetResourceValueConfigAsync(request);

GetResourceValueConfigAsync(ResourceValueConfigName, CallSettings)

public virtual Task<ResourceValueConfig> GetResourceValueConfigAsync(ResourceValueConfigName name, CallSettings callSettings = null)

Gets a ResourceValueConfig.

Parameters
Name Description
name ResourceValueConfigName

Required. Name of the resource value config to retrieve. Its format is organizations/{organization}/resourceValueConfigs/{config_id}.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskResourceValueConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ResourceValueConfigName name = ResourceValueConfigName.FromOrganizationResourceValueConfig("[ORGANIZATION]", "[RESOURCE_VALUE_CONFIG]");
// Make the request
ResourceValueConfig response = await securityCenterClient.GetResourceValueConfigAsync(name);

GetResourceValueConfigAsync(ResourceValueConfigName, CancellationToken)

public virtual Task<ResourceValueConfig> GetResourceValueConfigAsync(ResourceValueConfigName name, CancellationToken cancellationToken)

Gets a ResourceValueConfig.

Parameters
Name Description
name ResourceValueConfigName

Required. Name of the resource value config to retrieve. Its format is organizations/{organization}/resourceValueConfigs/{config_id}.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskResourceValueConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ResourceValueConfigName name = ResourceValueConfigName.FromOrganizationResourceValueConfig("[ORGANIZATION]", "[RESOURCE_VALUE_CONFIG]");
// Make the request
ResourceValueConfig response = await securityCenterClient.GetResourceValueConfigAsync(name);

GetResourceValueConfigAsync(string, CallSettings)

public virtual Task<ResourceValueConfig> GetResourceValueConfigAsync(string name, CallSettings callSettings = null)

Gets a ResourceValueConfig.

Parameters
Name Description
name string

Required. Name of the resource value config to retrieve. Its format is organizations/{organization}/resourceValueConfigs/{config_id}.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskResourceValueConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/resourceValueConfigs/[RESOURCE_VALUE_CONFIG]";
// Make the request
ResourceValueConfig response = await securityCenterClient.GetResourceValueConfigAsync(name);

GetResourceValueConfigAsync(string, CancellationToken)

public virtual Task<ResourceValueConfig> GetResourceValueConfigAsync(string name, CancellationToken cancellationToken)

Gets a ResourceValueConfig.

Parameters
Name Description
name string

Required. Name of the resource value config to retrieve. Its format is organizations/{organization}/resourceValueConfigs/{config_id}.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskResourceValueConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/resourceValueConfigs/[RESOURCE_VALUE_CONFIG]";
// Make the request
ResourceValueConfig response = await securityCenterClient.GetResourceValueConfigAsync(name);

GetSimulation(GetSimulationRequest, CallSettings)

public virtual Simulation GetSimulation(GetSimulationRequest request, CallSettings callSettings = null)

Get the simulation by name or the latest simulation for the given organization.

Parameters
Name Description
request GetSimulationRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Simulation

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
GetSimulationRequest request = new GetSimulationRequest
{
    SimulationName = SimulationName.FromOrganizationSimulation("[ORGANIZATION]", "[SIMULATION]"),
};
// Make the request
Simulation response = securityCenterClient.GetSimulation(request);

GetSimulation(SimulationName, CallSettings)

public virtual Simulation GetSimulation(SimulationName name, CallSettings callSettings = null)

Get the simulation by name or the latest simulation for the given organization.

Parameters
Name Description
name SimulationName

Required. The organization name or simulation name of this simulation

Valid format: "organizations/{organization}/simulations/latest" "organizations/{organization}/simulations/{simulation}"

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Simulation

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
SimulationName name = SimulationName.FromOrganizationSimulation("[ORGANIZATION]", "[SIMULATION]");
// Make the request
Simulation response = securityCenterClient.GetSimulation(name);

GetSimulation(string, CallSettings)

public virtual Simulation GetSimulation(string name, CallSettings callSettings = null)

Get the simulation by name or the latest simulation for the given organization.

Parameters
Name Description
name string

Required. The organization name or simulation name of this simulation

Valid format: "organizations/{organization}/simulations/latest" "organizations/{organization}/simulations/{simulation}"

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Simulation

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/simulations/[SIMULATION]";
// Make the request
Simulation response = securityCenterClient.GetSimulation(name);

GetSimulationAsync(GetSimulationRequest, CallSettings)

public virtual Task<Simulation> GetSimulationAsync(GetSimulationRequest request, CallSettings callSettings = null)

Get the simulation by name or the latest simulation for the given organization.

Parameters
Name Description
request GetSimulationRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskSimulation

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetSimulationRequest request = new GetSimulationRequest
{
    SimulationName = SimulationName.FromOrganizationSimulation("[ORGANIZATION]", "[SIMULATION]"),
};
// Make the request
Simulation response = await securityCenterClient.GetSimulationAsync(request);

GetSimulationAsync(GetSimulationRequest, CancellationToken)

public virtual Task<Simulation> GetSimulationAsync(GetSimulationRequest request, CancellationToken cancellationToken)

Get the simulation by name or the latest simulation for the given organization.

Parameters
Name Description
request GetSimulationRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskSimulation

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetSimulationRequest request = new GetSimulationRequest
{
    SimulationName = SimulationName.FromOrganizationSimulation("[ORGANIZATION]", "[SIMULATION]"),
};
// Make the request
Simulation response = await securityCenterClient.GetSimulationAsync(request);

GetSimulationAsync(SimulationName, CallSettings)

public virtual Task<Simulation> GetSimulationAsync(SimulationName name, CallSettings callSettings = null)

Get the simulation by name or the latest simulation for the given organization.

Parameters
Name Description
name SimulationName

Required. The organization name or simulation name of this simulation

Valid format: "organizations/{organization}/simulations/latest" "organizations/{organization}/simulations/{simulation}"

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskSimulation

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SimulationName name = SimulationName.FromOrganizationSimulation("[ORGANIZATION]", "[SIMULATION]");
// Make the request
Simulation response = await securityCenterClient.GetSimulationAsync(name);

GetSimulationAsync(SimulationName, CancellationToken)

public virtual Task<Simulation> GetSimulationAsync(SimulationName name, CancellationToken cancellationToken)

Get the simulation by name or the latest simulation for the given organization.

Parameters
Name Description
name SimulationName

Required. The organization name or simulation name of this simulation

Valid format: "organizations/{organization}/simulations/latest" "organizations/{organization}/simulations/{simulation}"

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskSimulation

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SimulationName name = SimulationName.FromOrganizationSimulation("[ORGANIZATION]", "[SIMULATION]");
// Make the request
Simulation response = await securityCenterClient.GetSimulationAsync(name);

GetSimulationAsync(string, CallSettings)

public virtual Task<Simulation> GetSimulationAsync(string name, CallSettings callSettings = null)

Get the simulation by name or the latest simulation for the given organization.

Parameters
Name Description
name string

Required. The organization name or simulation name of this simulation

Valid format: "organizations/{organization}/simulations/latest" "organizations/{organization}/simulations/{simulation}"

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskSimulation

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/simulations/[SIMULATION]";
// Make the request
Simulation response = await securityCenterClient.GetSimulationAsync(name);

GetSimulationAsync(string, CancellationToken)

public virtual Task<Simulation> GetSimulationAsync(string name, CancellationToken cancellationToken)

Get the simulation by name or the latest simulation for the given organization.

Parameters
Name Description
name string

Required. The organization name or simulation name of this simulation

Valid format: "organizations/{organization}/simulations/latest" "organizations/{organization}/simulations/{simulation}"

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskSimulation

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/simulations/[SIMULATION]";
// Make the request
Simulation response = await securityCenterClient.GetSimulationAsync(name);

GetSource(GetSourceRequest, CallSettings)

public virtual Source GetSource(GetSourceRequest request, CallSettings callSettings = null)

Gets a source.

Parameters
Name Description
request GetSourceRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Source

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
GetSourceRequest request = new GetSourceRequest
{
    SourceName = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]"),
};
// Make the request
Source response = securityCenterClient.GetSource(request);

GetSource(SourceName, CallSettings)

public virtual Source GetSource(SourceName name, CallSettings callSettings = null)

Gets a source.

Parameters
Name Description
name SourceName

Required. Relative resource name of the source. Its format is "organizations/[organization_id]/source/[source_id]".

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Source

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
SourceName name = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]");
// Make the request
Source response = securityCenterClient.GetSource(name);

GetSource(string, CallSettings)

public virtual Source GetSource(string name, CallSettings callSettings = null)

Gets a source.

Parameters
Name Description
name string

Required. Relative resource name of the source. Its format is "organizations/[organization_id]/source/[source_id]".

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Source

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/sources/[SOURCE]";
// Make the request
Source response = securityCenterClient.GetSource(name);

GetSourceAsync(GetSourceRequest, CallSettings)

public virtual Task<Source> GetSourceAsync(GetSourceRequest request, CallSettings callSettings = null)

Gets a source.

Parameters
Name Description
request GetSourceRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetSourceRequest request = new GetSourceRequest
{
    SourceName = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]"),
};
// Make the request
Source response = await securityCenterClient.GetSourceAsync(request);

GetSourceAsync(GetSourceRequest, CancellationToken)

public virtual Task<Source> GetSourceAsync(GetSourceRequest request, CancellationToken cancellationToken)

Gets a source.

Parameters
Name Description
request GetSourceRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetSourceRequest request = new GetSourceRequest
{
    SourceName = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]"),
};
// Make the request
Source response = await securityCenterClient.GetSourceAsync(request);

GetSourceAsync(SourceName, CallSettings)

public virtual Task<Source> GetSourceAsync(SourceName name, CallSettings callSettings = null)

Gets a source.

Parameters
Name Description
name SourceName

Required. Relative resource name of the source. Its format is "organizations/[organization_id]/source/[source_id]".

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SourceName name = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]");
// Make the request
Source response = await securityCenterClient.GetSourceAsync(name);

GetSourceAsync(SourceName, CancellationToken)

public virtual Task<Source> GetSourceAsync(SourceName name, CancellationToken cancellationToken)

Gets a source.

Parameters
Name Description
name SourceName

Required. Relative resource name of the source. Its format is "organizations/[organization_id]/source/[source_id]".

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SourceName name = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]");
// Make the request
Source response = await securityCenterClient.GetSourceAsync(name);

GetSourceAsync(string, CallSettings)

public virtual Task<Source> GetSourceAsync(string name, CallSettings callSettings = null)

Gets a source.

Parameters
Name Description
name string

Required. Relative resource name of the source. Its format is "organizations/[organization_id]/source/[source_id]".

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/sources/[SOURCE]";
// Make the request
Source response = await securityCenterClient.GetSourceAsync(name);

GetSourceAsync(string, CancellationToken)

public virtual Task<Source> GetSourceAsync(string name, CancellationToken cancellationToken)

Gets a source.

Parameters
Name Description
name string

Required. Relative resource name of the source. Its format is "organizations/[organization_id]/source/[source_id]".

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/sources/[SOURCE]";
// Make the request
Source response = await securityCenterClient.GetSourceAsync(name);

GetValuedResource(GetValuedResourceRequest, CallSettings)

public virtual ValuedResource GetValuedResource(GetValuedResourceRequest request, CallSettings callSettings = null)

Get the valued resource by name

Parameters
Name Description
request GetValuedResourceRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
ValuedResource

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
GetValuedResourceRequest request = new GetValuedResourceRequest
{
    ValuedResourceName = ValuedResourceName.FromOrganizationSimulationValuedResource("[ORGANIZATION]", "[SIMULATION]", "[VALUED_RESOURCE]"),
};
// Make the request
ValuedResource response = securityCenterClient.GetValuedResource(request);

GetValuedResource(ValuedResourceName, CallSettings)

public virtual ValuedResource GetValuedResource(ValuedResourceName name, CallSettings callSettings = null)

Get the valued resource by name

Parameters
Name Description
name ValuedResourceName

Required. The name of this valued resource

Valid format: "organizations/{organization}/simulations/{simulation}/valuedResources/{valued_resource}"

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
ValuedResource

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ValuedResourceName name = ValuedResourceName.FromOrganizationSimulationValuedResource("[ORGANIZATION]", "[SIMULATION]", "[VALUED_RESOURCE]");
// Make the request
ValuedResource response = securityCenterClient.GetValuedResource(name);

GetValuedResource(string, CallSettings)

public virtual ValuedResource GetValuedResource(string name, CallSettings callSettings = null)

Get the valued resource by name

Parameters
Name Description
name string

Required. The name of this valued resource

Valid format: "organizations/{organization}/simulations/{simulation}/valuedResources/{valued_resource}"

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
ValuedResource

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/simulations/[SIMULATION]/valuedResources/[VALUED_RESOURCE]";
// Make the request
ValuedResource response = securityCenterClient.GetValuedResource(name);

GetValuedResourceAsync(GetValuedResourceRequest, CallSettings)

public virtual Task<ValuedResource> GetValuedResourceAsync(GetValuedResourceRequest request, CallSettings callSettings = null)

Get the valued resource by name

Parameters
Name Description
request GetValuedResourceRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskValuedResource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetValuedResourceRequest request = new GetValuedResourceRequest
{
    ValuedResourceName = ValuedResourceName.FromOrganizationSimulationValuedResource("[ORGANIZATION]", "[SIMULATION]", "[VALUED_RESOURCE]"),
};
// Make the request
ValuedResource response = await securityCenterClient.GetValuedResourceAsync(request);

GetValuedResourceAsync(GetValuedResourceRequest, CancellationToken)

public virtual Task<ValuedResource> GetValuedResourceAsync(GetValuedResourceRequest request, CancellationToken cancellationToken)

Get the valued resource by name

Parameters
Name Description
request GetValuedResourceRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskValuedResource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GetValuedResourceRequest request = new GetValuedResourceRequest
{
    ValuedResourceName = ValuedResourceName.FromOrganizationSimulationValuedResource("[ORGANIZATION]", "[SIMULATION]", "[VALUED_RESOURCE]"),
};
// Make the request
ValuedResource response = await securityCenterClient.GetValuedResourceAsync(request);

GetValuedResourceAsync(ValuedResourceName, CallSettings)

public virtual Task<ValuedResource> GetValuedResourceAsync(ValuedResourceName name, CallSettings callSettings = null)

Get the valued resource by name

Parameters
Name Description
name ValuedResourceName

Required. The name of this valued resource

Valid format: "organizations/{organization}/simulations/{simulation}/valuedResources/{valued_resource}"

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskValuedResource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ValuedResourceName name = ValuedResourceName.FromOrganizationSimulationValuedResource("[ORGANIZATION]", "[SIMULATION]", "[VALUED_RESOURCE]");
// Make the request
ValuedResource response = await securityCenterClient.GetValuedResourceAsync(name);

GetValuedResourceAsync(ValuedResourceName, CancellationToken)

public virtual Task<ValuedResource> GetValuedResourceAsync(ValuedResourceName name, CancellationToken cancellationToken)

Get the valued resource by name

Parameters
Name Description
name ValuedResourceName

Required. The name of this valued resource

Valid format: "organizations/{organization}/simulations/{simulation}/valuedResources/{valued_resource}"

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskValuedResource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ValuedResourceName name = ValuedResourceName.FromOrganizationSimulationValuedResource("[ORGANIZATION]", "[SIMULATION]", "[VALUED_RESOURCE]");
// Make the request
ValuedResource response = await securityCenterClient.GetValuedResourceAsync(name);

GetValuedResourceAsync(string, CallSettings)

public virtual Task<ValuedResource> GetValuedResourceAsync(string name, CallSettings callSettings = null)

Get the valued resource by name

Parameters
Name Description
name string

Required. The name of this valued resource

Valid format: "organizations/{organization}/simulations/{simulation}/valuedResources/{valued_resource}"

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskValuedResource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/simulations/[SIMULATION]/valuedResources/[VALUED_RESOURCE]";
// Make the request
ValuedResource response = await securityCenterClient.GetValuedResourceAsync(name);

GetValuedResourceAsync(string, CancellationToken)

public virtual Task<ValuedResource> GetValuedResourceAsync(string name, CancellationToken cancellationToken)

Get the valued resource by name

Parameters
Name Description
name string

Required. The name of this valued resource

Valid format: "organizations/{organization}/simulations/{simulation}/valuedResources/{valued_resource}"

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskValuedResource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/simulations/[SIMULATION]/valuedResources/[VALUED_RESOURCE]";
// Make the request
ValuedResource response = await securityCenterClient.GetValuedResourceAsync(name);

GroupFindings(GroupFindingsRequest, CallSettings)

public virtual PagedEnumerable<GroupFindingsResponse, GroupResult> GroupFindings(GroupFindingsRequest request, CallSettings callSettings = null)

Filters an organization or source's findings and groups them by their specified properties in a location. If no location is specified, findings are assumed to be in global

To group across all sources provide a - as the source id. The following list shows some examples:

  • /v2/organizations/{organization_id}/sources/-/findings + /v2/organizations/{organization_id}/sources/-/locations/{location_id}/findings
  • /v2/folders/{folder_id}/sources/-/findings
  • /v2/folders/{folder_id}/sources/-/locations/{location_id}/findings
  • /v2/projects/{project_id}/sources/-/findings
  • /v2/projects/{project_id}/sources/-/locations/{location_id}/findings
Parameters
Name Description
request GroupFindingsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableGroupFindingsResponseGroupResult

A pageable sequence of GroupResult resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
GroupFindingsRequest request = new GroupFindingsRequest
{
    ParentAsSourceName = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]"),
    Filter = "",
    GroupBy = "",
};
// Make the request
PagedEnumerable<GroupFindingsResponse, GroupResult> response = securityCenterClient.GroupFindings(request);

// Iterate over all response items, lazily performing RPCs as required
foreach (GroupResult item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (GroupFindingsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (GroupResult item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<GroupResult> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (GroupResult item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

GroupFindings(SourceName, string, string, int?, CallSettings)

public virtual PagedEnumerable<GroupFindingsResponse, GroupResult> GroupFindings(SourceName parent, string groupBy, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Filters an organization or source's findings and groups them by their specified properties in a location. If no location is specified, findings are assumed to be in global

To group across all sources provide a - as the source id. The following list shows some examples:

  • /v2/organizations/{organization_id}/sources/-/findings + /v2/organizations/{organization_id}/sources/-/locations/{location_id}/findings
  • /v2/folders/{folder_id}/sources/-/findings
  • /v2/folders/{folder_id}/sources/-/locations/{location_id}/findings
  • /v2/projects/{project_id}/sources/-/findings
  • /v2/projects/{project_id}/sources/-/locations/{location_id}/findings
Parameters
Name Description
parent SourceName

Required. Name of the source to groupBy. If no location is specified, finding is assumed to be in global. The following list shows some examples:

  • organizations/[organization_id]/sources/[source_id] + organizations/[organization_id]/sources/[source_id]/locations/[location_id]
  • folders/[folder_id]/sources/[source_id]
  • folders/[folder_id]/sources/[source_id]/locations/[location_id]
  • projects/[project_id]/sources/[source_id]
  • projects/[project_id]/sources/[source_id]/locations/[location_id]

To groupBy across all sources provide a source_id of -. The following list shows some examples:

  • organizations/{organization_id}/sources/-
  • organizations/{organization_id}/sources/-/locations/[location_id]
  • folders/{folder_id}/sources/-
  • folders/{folder_id}/sources/-/locations/[location_id]
  • projects/{project_id}/sources/-
  • projects/{project_id}/sources/-/locations/[location_id]
groupBy string

Required. Expression that defines what assets fields to use for grouping. The string value should follow SQL syntax: comma separated list of fields. For example: "parent,resource_name".

The following fields are supported:

  • resource_name
  • category
  • state
  • parent
  • severity
pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableGroupFindingsResponseGroupResult

A pageable sequence of GroupResult resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
SourceName parent = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]");
string groupBy = "";
// Make the request
PagedEnumerable<GroupFindingsResponse, GroupResult> response = securityCenterClient.GroupFindings(parent, groupBy);

// Iterate over all response items, lazily performing RPCs as required
foreach (GroupResult item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (GroupFindingsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (GroupResult item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<GroupResult> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (GroupResult item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

GroupFindings(string, string, string, int?, CallSettings)

public virtual PagedEnumerable<GroupFindingsResponse, GroupResult> GroupFindings(string parent, string groupBy, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Filters an organization or source's findings and groups them by their specified properties in a location. If no location is specified, findings are assumed to be in global

To group across all sources provide a - as the source id. The following list shows some examples:

  • /v2/organizations/{organization_id}/sources/-/findings + /v2/organizations/{organization_id}/sources/-/locations/{location_id}/findings
  • /v2/folders/{folder_id}/sources/-/findings
  • /v2/folders/{folder_id}/sources/-/locations/{location_id}/findings
  • /v2/projects/{project_id}/sources/-/findings
  • /v2/projects/{project_id}/sources/-/locations/{location_id}/findings
Parameters
Name Description
parent string

Required. Name of the source to groupBy. If no location is specified, finding is assumed to be in global. The following list shows some examples:

  • organizations/[organization_id]/sources/[source_id] + organizations/[organization_id]/sources/[source_id]/locations/[location_id]
  • folders/[folder_id]/sources/[source_id]
  • folders/[folder_id]/sources/[source_id]/locations/[location_id]
  • projects/[project_id]/sources/[source_id]
  • projects/[project_id]/sources/[source_id]/locations/[location_id]

To groupBy across all sources provide a source_id of -. The following list shows some examples:

  • organizations/{organization_id}/sources/-
  • organizations/{organization_id}/sources/-/locations/[location_id]
  • folders/{folder_id}/sources/-
  • folders/{folder_id}/sources/-/locations/[location_id]
  • projects/{project_id}/sources/-
  • projects/{project_id}/sources/-/locations/[location_id]
groupBy string

Required. Expression that defines what assets fields to use for grouping. The string value should follow SQL syntax: comma separated list of fields. For example: "parent,resource_name".

The following fields are supported:

  • resource_name
  • category
  • state
  • parent
  • severity
pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableGroupFindingsResponseGroupResult

A pageable sequence of GroupResult resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/sources/[SOURCE]";
string groupBy = "";
// Make the request
PagedEnumerable<GroupFindingsResponse, GroupResult> response = securityCenterClient.GroupFindings(parent, groupBy);

// Iterate over all response items, lazily performing RPCs as required
foreach (GroupResult item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (GroupFindingsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (GroupResult item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<GroupResult> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (GroupResult item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

GroupFindingsAsync(GroupFindingsRequest, CallSettings)

public virtual PagedAsyncEnumerable<GroupFindingsResponse, GroupResult> GroupFindingsAsync(GroupFindingsRequest request, CallSettings callSettings = null)

Filters an organization or source's findings and groups them by their specified properties in a location. If no location is specified, findings are assumed to be in global

To group across all sources provide a - as the source id. The following list shows some examples:

  • /v2/organizations/{organization_id}/sources/-/findings + /v2/organizations/{organization_id}/sources/-/locations/{location_id}/findings
  • /v2/folders/{folder_id}/sources/-/findings
  • /v2/folders/{folder_id}/sources/-/locations/{location_id}/findings
  • /v2/projects/{project_id}/sources/-/findings
  • /v2/projects/{project_id}/sources/-/locations/{location_id}/findings
Parameters
Name Description
request GroupFindingsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableGroupFindingsResponseGroupResult

A pageable asynchronous sequence of GroupResult resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
GroupFindingsRequest request = new GroupFindingsRequest
{
    ParentAsSourceName = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]"),
    Filter = "",
    GroupBy = "",
};
// Make the request
PagedAsyncEnumerable<GroupFindingsResponse, GroupResult> response = securityCenterClient.GroupFindingsAsync(request);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((GroupResult item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((GroupFindingsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (GroupResult item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<GroupResult> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (GroupResult item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

GroupFindingsAsync(SourceName, string, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<GroupFindingsResponse, GroupResult> GroupFindingsAsync(SourceName parent, string groupBy, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Filters an organization or source's findings and groups them by their specified properties in a location. If no location is specified, findings are assumed to be in global

To group across all sources provide a - as the source id. The following list shows some examples:

  • /v2/organizations/{organization_id}/sources/-/findings + /v2/organizations/{organization_id}/sources/-/locations/{location_id}/findings
  • /v2/folders/{folder_id}/sources/-/findings
  • /v2/folders/{folder_id}/sources/-/locations/{location_id}/findings
  • /v2/projects/{project_id}/sources/-/findings
  • /v2/projects/{project_id}/sources/-/locations/{location_id}/findings
Parameters
Name Description
parent SourceName

Required. Name of the source to groupBy. If no location is specified, finding is assumed to be in global. The following list shows some examples:

  • organizations/[organization_id]/sources/[source_id] + organizations/[organization_id]/sources/[source_id]/locations/[location_id]
  • folders/[folder_id]/sources/[source_id]
  • folders/[folder_id]/sources/[source_id]/locations/[location_id]
  • projects/[project_id]/sources/[source_id]
  • projects/[project_id]/sources/[source_id]/locations/[location_id]

To groupBy across all sources provide a source_id of -. The following list shows some examples:

  • organizations/{organization_id}/sources/-
  • organizations/{organization_id}/sources/-/locations/[location_id]
  • folders/{folder_id}/sources/-
  • folders/{folder_id}/sources/-/locations/[location_id]
  • projects/{project_id}/sources/-
  • projects/{project_id}/sources/-/locations/[location_id]
groupBy string

Required. Expression that defines what assets fields to use for grouping. The string value should follow SQL syntax: comma separated list of fields. For example: "parent,resource_name".

The following fields are supported:

  • resource_name
  • category
  • state
  • parent
  • severity
pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableGroupFindingsResponseGroupResult

A pageable asynchronous sequence of GroupResult resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SourceName parent = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]");
string groupBy = "";
// Make the request
PagedAsyncEnumerable<GroupFindingsResponse, GroupResult> response = securityCenterClient.GroupFindingsAsync(parent, groupBy);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((GroupResult item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((GroupFindingsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (GroupResult item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<GroupResult> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (GroupResult item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

GroupFindingsAsync(string, string, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<GroupFindingsResponse, GroupResult> GroupFindingsAsync(string parent, string groupBy, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Filters an organization or source's findings and groups them by their specified properties in a location. If no location is specified, findings are assumed to be in global

To group across all sources provide a - as the source id. The following list shows some examples:

  • /v2/organizations/{organization_id}/sources/-/findings + /v2/organizations/{organization_id}/sources/-/locations/{location_id}/findings
  • /v2/folders/{folder_id}/sources/-/findings
  • /v2/folders/{folder_id}/sources/-/locations/{location_id}/findings
  • /v2/projects/{project_id}/sources/-/findings
  • /v2/projects/{project_id}/sources/-/locations/{location_id}/findings
Parameters
Name Description
parent string

Required. Name of the source to groupBy. If no location is specified, finding is assumed to be in global. The following list shows some examples:

  • organizations/[organization_id]/sources/[source_id] + organizations/[organization_id]/sources/[source_id]/locations/[location_id]
  • folders/[folder_id]/sources/[source_id]
  • folders/[folder_id]/sources/[source_id]/locations/[location_id]
  • projects/[project_id]/sources/[source_id]
  • projects/[project_id]/sources/[source_id]/locations/[location_id]

To groupBy across all sources provide a source_id of -. The following list shows some examples:

  • organizations/{organization_id}/sources/-
  • organizations/{organization_id}/sources/-/locations/[location_id]
  • folders/{folder_id}/sources/-
  • folders/{folder_id}/sources/-/locations/[location_id]
  • projects/{project_id}/sources/-
  • projects/{project_id}/sources/-/locations/[location_id]
groupBy string

Required. Expression that defines what assets fields to use for grouping. The string value should follow SQL syntax: comma separated list of fields. For example: "parent,resource_name".

The following fields are supported:

  • resource_name
  • category
  • state
  • parent
  • severity
pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableGroupFindingsResponseGroupResult

A pageable asynchronous sequence of GroupResult resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/sources/[SOURCE]";
string groupBy = "";
// Make the request
PagedAsyncEnumerable<GroupFindingsResponse, GroupResult> response = securityCenterClient.GroupFindingsAsync(parent, groupBy);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((GroupResult item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((GroupFindingsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (GroupResult item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<GroupResult> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (GroupResult item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListAttackPaths(ListAttackPathsRequest, CallSettings)

public virtual PagedEnumerable<ListAttackPathsResponse, AttackPath> ListAttackPaths(ListAttackPathsRequest request, CallSettings callSettings = null)

Lists the attack paths for a set of simulation results or valued resources and filter.

Parameters
Name Description
request ListAttackPathsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListAttackPathsResponseAttackPath

A pageable sequence of AttackPath resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ListAttackPathsRequest request = new ListAttackPathsRequest
{
    ParentAsValuedResourceName = ValuedResourceName.FromOrganizationSimulationValuedResource("[ORGANIZATION]", "[SIMULATION]", "[VALUED_RESOURCE]"),
    Filter = "",
};
// Make the request
PagedEnumerable<ListAttackPathsResponse, AttackPath> response = securityCenterClient.ListAttackPaths(request);

// Iterate over all response items, lazily performing RPCs as required
foreach (AttackPath item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListAttackPathsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (AttackPath item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<AttackPath> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (AttackPath item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListAttackPaths(ValuedResourceName, string, int?, CallSettings)

public virtual PagedEnumerable<ListAttackPathsResponse, AttackPath> ListAttackPaths(ValuedResourceName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists the attack paths for a set of simulation results or valued resources and filter.

Parameters
Name Description
parent ValuedResourceName

Required. Name of parent to list attack paths.

Valid formats: "organizations/{organization}", "organizations/{organization}/simulations/{simulation}" "organizations/{organization}/simulations/{simulation}/attackExposureResults/{attack_exposure_result_v2}" "organizations/{organization}/simulations/{simulation}/valuedResources/{valued_resource}"

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListAttackPathsResponseAttackPath

A pageable sequence of AttackPath resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ValuedResourceName parent = ValuedResourceName.FromOrganizationSimulationValuedResource("[ORGANIZATION]", "[SIMULATION]", "[VALUED_RESOURCE]");
// Make the request
PagedEnumerable<ListAttackPathsResponse, AttackPath> response = securityCenterClient.ListAttackPaths(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (AttackPath item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListAttackPathsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (AttackPath item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<AttackPath> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (AttackPath item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListAttackPaths(string, string, int?, CallSettings)

public virtual PagedEnumerable<ListAttackPathsResponse, AttackPath> ListAttackPaths(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists the attack paths for a set of simulation results or valued resources and filter.

Parameters
Name Description
parent string

Required. Name of parent to list attack paths.

Valid formats: "organizations/{organization}", "organizations/{organization}/simulations/{simulation}" "organizations/{organization}/simulations/{simulation}/attackExposureResults/{attack_exposure_result_v2}" "organizations/{organization}/simulations/{simulation}/valuedResources/{valued_resource}"

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListAttackPathsResponseAttackPath

A pageable sequence of AttackPath resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/simulations/[SIMULATION]/valuedResources/[VALUED_RESOURCE]";
// Make the request
PagedEnumerable<ListAttackPathsResponse, AttackPath> response = securityCenterClient.ListAttackPaths(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (AttackPath item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListAttackPathsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (AttackPath item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<AttackPath> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (AttackPath item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListAttackPathsAsync(ListAttackPathsRequest, CallSettings)

public virtual PagedAsyncEnumerable<ListAttackPathsResponse, AttackPath> ListAttackPathsAsync(ListAttackPathsRequest request, CallSettings callSettings = null)

Lists the attack paths for a set of simulation results or valued resources and filter.

Parameters
Name Description
request ListAttackPathsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListAttackPathsResponseAttackPath

A pageable asynchronous sequence of AttackPath resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ListAttackPathsRequest request = new ListAttackPathsRequest
{
    ParentAsValuedResourceName = ValuedResourceName.FromOrganizationSimulationValuedResource("[ORGANIZATION]", "[SIMULATION]", "[VALUED_RESOURCE]"),
    Filter = "",
};
// Make the request
PagedAsyncEnumerable<ListAttackPathsResponse, AttackPath> response = securityCenterClient.ListAttackPathsAsync(request);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((AttackPath item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListAttackPathsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (AttackPath item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<AttackPath> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (AttackPath item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListAttackPathsAsync(ValuedResourceName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListAttackPathsResponse, AttackPath> ListAttackPathsAsync(ValuedResourceName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists the attack paths for a set of simulation results or valued resources and filter.

Parameters
Name Description
parent ValuedResourceName

Required. Name of parent to list attack paths.

Valid formats: "organizations/{organization}", "organizations/{organization}/simulations/{simulation}" "organizations/{organization}/simulations/{simulation}/attackExposureResults/{attack_exposure_result_v2}" "organizations/{organization}/simulations/{simulation}/valuedResources/{valued_resource}"

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListAttackPathsResponseAttackPath

A pageable asynchronous sequence of AttackPath resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ValuedResourceName parent = ValuedResourceName.FromOrganizationSimulationValuedResource("[ORGANIZATION]", "[SIMULATION]", "[VALUED_RESOURCE]");
// Make the request
PagedAsyncEnumerable<ListAttackPathsResponse, AttackPath> response = securityCenterClient.ListAttackPathsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((AttackPath item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListAttackPathsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (AttackPath item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<AttackPath> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (AttackPath item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListAttackPathsAsync(string, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListAttackPathsResponse, AttackPath> ListAttackPathsAsync(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists the attack paths for a set of simulation results or valued resources and filter.

Parameters
Name Description
parent string

Required. Name of parent to list attack paths.

Valid formats: "organizations/{organization}", "organizations/{organization}/simulations/{simulation}" "organizations/{organization}/simulations/{simulation}/attackExposureResults/{attack_exposure_result_v2}" "organizations/{organization}/simulations/{simulation}/valuedResources/{valued_resource}"

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListAttackPathsResponseAttackPath

A pageable asynchronous sequence of AttackPath resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/simulations/[SIMULATION]/valuedResources/[VALUED_RESOURCE]";
// Make the request
PagedAsyncEnumerable<ListAttackPathsResponse, AttackPath> response = securityCenterClient.ListAttackPathsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((AttackPath item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListAttackPathsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (AttackPath item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<AttackPath> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (AttackPath item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListBigQueryExports(LocationName, string, int?, CallSettings)

public virtual PagedEnumerable<ListBigQueryExportsResponse, BigQueryExport> ListBigQueryExports(LocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists BigQuery exports. Note that when requesting BigQuery exports at a given level all exports under that level are also returned e.g. if requesting BigQuery exports under a folder, then all BigQuery exports immediately under the folder plus the ones created under the projects within the folder are returned.

Parameters
Name Description
parent LocationName

Required. The parent, which owns the collection of BigQuery exports. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListBigQueryExportsResponseBigQueryExport

A pageable sequence of BigQueryExport resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
// Make the request
PagedEnumerable<ListBigQueryExportsResponse, BigQueryExport> response = securityCenterClient.ListBigQueryExports(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (BigQueryExport item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListBigQueryExportsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (BigQueryExport item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<BigQueryExport> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (BigQueryExport item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListBigQueryExports(FolderLocationName, string, int?, CallSettings)

public virtual PagedEnumerable<ListBigQueryExportsResponse, BigQueryExport> ListBigQueryExports(FolderLocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists BigQuery exports. Note that when requesting BigQuery exports at a given level all exports under that level are also returned e.g. if requesting BigQuery exports under a folder, then all BigQuery exports immediately under the folder plus the ones created under the projects within the folder are returned.

Parameters
Name Description
parent FolderLocationName

Required. The parent, which owns the collection of BigQuery exports. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListBigQueryExportsResponseBigQueryExport

A pageable sequence of BigQueryExport resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
FolderLocationName parent = FolderLocationName.FromFolderLocation("[FOLDER]", "[LOCATION]");
// Make the request
PagedEnumerable<ListBigQueryExportsResponse, BigQueryExport> response = securityCenterClient.ListBigQueryExports(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (BigQueryExport item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListBigQueryExportsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (BigQueryExport item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<BigQueryExport> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (BigQueryExport item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListBigQueryExports(ListBigQueryExportsRequest, CallSettings)

public virtual PagedEnumerable<ListBigQueryExportsResponse, BigQueryExport> ListBigQueryExports(ListBigQueryExportsRequest request, CallSettings callSettings = null)

Lists BigQuery exports. Note that when requesting BigQuery exports at a given level all exports under that level are also returned e.g. if requesting BigQuery exports under a folder, then all BigQuery exports immediately under the folder plus the ones created under the projects within the folder are returned.

Parameters
Name Description
request ListBigQueryExportsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListBigQueryExportsResponseBigQueryExport

A pageable sequence of BigQueryExport resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ListBigQueryExportsRequest request = new ListBigQueryExportsRequest
{
    ParentAsOrganizationLocationName = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]"),
};
// Make the request
PagedEnumerable<ListBigQueryExportsResponse, BigQueryExport> response = securityCenterClient.ListBigQueryExports(request);

// Iterate over all response items, lazily performing RPCs as required
foreach (BigQueryExport item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListBigQueryExportsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (BigQueryExport item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<BigQueryExport> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (BigQueryExport item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListBigQueryExports(OrganizationLocationName, string, int?, CallSettings)

public virtual PagedEnumerable<ListBigQueryExportsResponse, BigQueryExport> ListBigQueryExports(OrganizationLocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists BigQuery exports. Note that when requesting BigQuery exports at a given level all exports under that level are also returned e.g. if requesting BigQuery exports under a folder, then all BigQuery exports immediately under the folder plus the ones created under the projects within the folder are returned.

Parameters
Name Description
parent OrganizationLocationName

Required. The parent, which owns the collection of BigQuery exports. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListBigQueryExportsResponseBigQueryExport

A pageable sequence of BigQueryExport resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
OrganizationLocationName parent = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
// Make the request
PagedEnumerable<ListBigQueryExportsResponse, BigQueryExport> response = securityCenterClient.ListBigQueryExports(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (BigQueryExport item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListBigQueryExportsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (BigQueryExport item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<BigQueryExport> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (BigQueryExport item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListBigQueryExports(string, string, int?, CallSettings)

public virtual PagedEnumerable<ListBigQueryExportsResponse, BigQueryExport> ListBigQueryExports(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists BigQuery exports. Note that when requesting BigQuery exports at a given level all exports under that level are also returned e.g. if requesting BigQuery exports under a folder, then all BigQuery exports immediately under the folder plus the ones created under the projects within the folder are returned.

Parameters
Name Description
parent string

Required. The parent, which owns the collection of BigQuery exports. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListBigQueryExportsResponseBigQueryExport

A pageable sequence of BigQueryExport resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/locations/[LOCATION]";
// Make the request
PagedEnumerable<ListBigQueryExportsResponse, BigQueryExport> response = securityCenterClient.ListBigQueryExports(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (BigQueryExport item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListBigQueryExportsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (BigQueryExport item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<BigQueryExport> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (BigQueryExport item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListBigQueryExportsAsync(LocationName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListBigQueryExportsResponse, BigQueryExport> ListBigQueryExportsAsync(LocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists BigQuery exports. Note that when requesting BigQuery exports at a given level all exports under that level are also returned e.g. if requesting BigQuery exports under a folder, then all BigQuery exports immediately under the folder plus the ones created under the projects within the folder are returned.

Parameters
Name Description
parent LocationName

Required. The parent, which owns the collection of BigQuery exports. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListBigQueryExportsResponseBigQueryExport

A pageable asynchronous sequence of BigQueryExport resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
// Make the request
PagedAsyncEnumerable<ListBigQueryExportsResponse, BigQueryExport> response = securityCenterClient.ListBigQueryExportsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((BigQueryExport item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListBigQueryExportsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (BigQueryExport item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<BigQueryExport> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (BigQueryExport item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListBigQueryExportsAsync(FolderLocationName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListBigQueryExportsResponse, BigQueryExport> ListBigQueryExportsAsync(FolderLocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists BigQuery exports. Note that when requesting BigQuery exports at a given level all exports under that level are also returned e.g. if requesting BigQuery exports under a folder, then all BigQuery exports immediately under the folder plus the ones created under the projects within the folder are returned.

Parameters
Name Description
parent FolderLocationName

Required. The parent, which owns the collection of BigQuery exports. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListBigQueryExportsResponseBigQueryExport

A pageable asynchronous sequence of BigQueryExport resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FolderLocationName parent = FolderLocationName.FromFolderLocation("[FOLDER]", "[LOCATION]");
// Make the request
PagedAsyncEnumerable<ListBigQueryExportsResponse, BigQueryExport> response = securityCenterClient.ListBigQueryExportsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((BigQueryExport item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListBigQueryExportsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (BigQueryExport item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<BigQueryExport> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (BigQueryExport item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListBigQueryExportsAsync(ListBigQueryExportsRequest, CallSettings)

public virtual PagedAsyncEnumerable<ListBigQueryExportsResponse, BigQueryExport> ListBigQueryExportsAsync(ListBigQueryExportsRequest request, CallSettings callSettings = null)

Lists BigQuery exports. Note that when requesting BigQuery exports at a given level all exports under that level are also returned e.g. if requesting BigQuery exports under a folder, then all BigQuery exports immediately under the folder plus the ones created under the projects within the folder are returned.

Parameters
Name Description
request ListBigQueryExportsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListBigQueryExportsResponseBigQueryExport

A pageable asynchronous sequence of BigQueryExport resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ListBigQueryExportsRequest request = new ListBigQueryExportsRequest
{
    ParentAsOrganizationLocationName = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]"),
};
// Make the request
PagedAsyncEnumerable<ListBigQueryExportsResponse, BigQueryExport> response = securityCenterClient.ListBigQueryExportsAsync(request);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((BigQueryExport item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListBigQueryExportsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (BigQueryExport item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<BigQueryExport> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (BigQueryExport item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListBigQueryExportsAsync(OrganizationLocationName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListBigQueryExportsResponse, BigQueryExport> ListBigQueryExportsAsync(OrganizationLocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists BigQuery exports. Note that when requesting BigQuery exports at a given level all exports under that level are also returned e.g. if requesting BigQuery exports under a folder, then all BigQuery exports immediately under the folder plus the ones created under the projects within the folder are returned.

Parameters
Name Description
parent OrganizationLocationName

Required. The parent, which owns the collection of BigQuery exports. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListBigQueryExportsResponseBigQueryExport

A pageable asynchronous sequence of BigQueryExport resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationLocationName parent = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
// Make the request
PagedAsyncEnumerable<ListBigQueryExportsResponse, BigQueryExport> response = securityCenterClient.ListBigQueryExportsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((BigQueryExport item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListBigQueryExportsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (BigQueryExport item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<BigQueryExport> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (BigQueryExport item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListBigQueryExportsAsync(string, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListBigQueryExportsResponse, BigQueryExport> ListBigQueryExportsAsync(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists BigQuery exports. Note that when requesting BigQuery exports at a given level all exports under that level are also returned e.g. if requesting BigQuery exports under a folder, then all BigQuery exports immediately under the folder plus the ones created under the projects within the folder are returned.

Parameters
Name Description
parent string

Required. The parent, which owns the collection of BigQuery exports. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListBigQueryExportsResponseBigQueryExport

A pageable asynchronous sequence of BigQueryExport resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/locations/[LOCATION]";
// Make the request
PagedAsyncEnumerable<ListBigQueryExportsResponse, BigQueryExport> response = securityCenterClient.ListBigQueryExportsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((BigQueryExport item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListBigQueryExportsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (BigQueryExport item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<BigQueryExport> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (BigQueryExport item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListFindings(ListFindingsRequest, CallSettings)

public virtual PagedEnumerable<ListFindingsResponse, ListFindingsResponse.Types.ListFindingsResult> ListFindings(ListFindingsRequest request, CallSettings callSettings = null)

Lists an organization or source's findings.

To list across all sources for a given location provide a - as the source id. If no location is specified, finding are assumed to be in global. The following list shows some examples:

  • /v2/organizations/{organization_id}/sources/-/findings + /v2/organizations/{organization_id}/sources/-/locations/{location_id}/findings
Parameters
Name Description
request ListFindingsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListFindingsResponseListFindingsResponseTypesListFindingsResult

A pageable sequence of ListFindingsResponse.Types.ListFindingsResult resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ListFindingsRequest request = new ListFindingsRequest
{
    ParentAsSourceName = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]"),
    Filter = "",
    OrderBy = "",
    FieldMask = new FieldMask(),
};
// Make the request
PagedEnumerable<ListFindingsResponse, ListFindingsResponse.Types.ListFindingsResult> response = securityCenterClient.ListFindings(request);

// Iterate over all response items, lazily performing RPCs as required
foreach (ListFindingsResponse.Types.ListFindingsResult item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListFindingsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ListFindingsResponse.Types.ListFindingsResult item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ListFindingsResponse.Types.ListFindingsResult> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ListFindingsResponse.Types.ListFindingsResult item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListFindings(SourceName, string, int?, CallSettings)

public virtual PagedEnumerable<ListFindingsResponse, ListFindingsResponse.Types.ListFindingsResult> ListFindings(SourceName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists an organization or source's findings.

To list across all sources for a given location provide a - as the source id. If no location is specified, finding are assumed to be in global. The following list shows some examples:

  • /v2/organizations/{organization_id}/sources/-/findings + /v2/organizations/{organization_id}/sources/-/locations/{location_id}/findings
Parameters
Name Description
parent SourceName

Required. Name of the source the findings belong to. If no location is specified, the default is global. The following list shows some examples:

  • organizations/[organization_id]/sources/[source_id] + organizations/[organization_id]/sources/[source_id]/locations/[location_id]
  • folders/[folder_id]/sources/[source_id]
  • folders/[folder_id]/sources/[source_id]/locations/[location_id]
  • projects/[project_id]/sources/[source_id]
  • projects/[project_id]/sources/[source_id]/locations/[location_id]

To list across all sources provide a source_id of -. The following list shows some examples:

  • organizations/{organization_id}/sources/-
  • organizations/{organization_id}/sources/-/locations/{location_id}
  • folders/{folder_id}/sources/-
  • folders/{folder_id}/sources/-locations/{location_id}
  • projects/{projects_id}/sources/-
  • projects/{projects_id}/sources/-/locations/{location_id}
pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListFindingsResponseListFindingsResponseTypesListFindingsResult

A pageable sequence of ListFindingsResponse.Types.ListFindingsResult resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
SourceName parent = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]");
// Make the request
PagedEnumerable<ListFindingsResponse, ListFindingsResponse.Types.ListFindingsResult> response = securityCenterClient.ListFindings(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (ListFindingsResponse.Types.ListFindingsResult item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListFindingsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ListFindingsResponse.Types.ListFindingsResult item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ListFindingsResponse.Types.ListFindingsResult> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ListFindingsResponse.Types.ListFindingsResult item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListFindings(string, string, int?, CallSettings)

public virtual PagedEnumerable<ListFindingsResponse, ListFindingsResponse.Types.ListFindingsResult> ListFindings(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists an organization or source's findings.

To list across all sources for a given location provide a - as the source id. If no location is specified, finding are assumed to be in global. The following list shows some examples:

  • /v2/organizations/{organization_id}/sources/-/findings + /v2/organizations/{organization_id}/sources/-/locations/{location_id}/findings
Parameters
Name Description
parent string

Required. Name of the source the findings belong to. If no location is specified, the default is global. The following list shows some examples:

  • organizations/[organization_id]/sources/[source_id] + organizations/[organization_id]/sources/[source_id]/locations/[location_id]
  • folders/[folder_id]/sources/[source_id]
  • folders/[folder_id]/sources/[source_id]/locations/[location_id]
  • projects/[project_id]/sources/[source_id]
  • projects/[project_id]/sources/[source_id]/locations/[location_id]

To list across all sources provide a source_id of -. The following list shows some examples:

  • organizations/{organization_id}/sources/-
  • organizations/{organization_id}/sources/-/locations/{location_id}
  • folders/{folder_id}/sources/-
  • folders/{folder_id}/sources/-locations/{location_id}
  • projects/{projects_id}/sources/-
  • projects/{projects_id}/sources/-/locations/{location_id}
pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListFindingsResponseListFindingsResponseTypesListFindingsResult

A pageable sequence of ListFindingsResponse.Types.ListFindingsResult resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/sources/[SOURCE]";
// Make the request
PagedEnumerable<ListFindingsResponse, ListFindingsResponse.Types.ListFindingsResult> response = securityCenterClient.ListFindings(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (ListFindingsResponse.Types.ListFindingsResult item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListFindingsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ListFindingsResponse.Types.ListFindingsResult item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ListFindingsResponse.Types.ListFindingsResult> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ListFindingsResponse.Types.ListFindingsResult item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListFindingsAsync(ListFindingsRequest, CallSettings)

public virtual PagedAsyncEnumerable<ListFindingsResponse, ListFindingsResponse.Types.ListFindingsResult> ListFindingsAsync(ListFindingsRequest request, CallSettings callSettings = null)

Lists an organization or source's findings.

To list across all sources for a given location provide a - as the source id. If no location is specified, finding are assumed to be in global. The following list shows some examples:

  • /v2/organizations/{organization_id}/sources/-/findings + /v2/organizations/{organization_id}/sources/-/locations/{location_id}/findings
Parameters
Name Description
request ListFindingsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListFindingsResponseListFindingsResponseTypesListFindingsResult

A pageable asynchronous sequence of ListFindingsResponse.Types.ListFindingsResult resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ListFindingsRequest request = new ListFindingsRequest
{
    ParentAsSourceName = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]"),
    Filter = "",
    OrderBy = "",
    FieldMask = new FieldMask(),
};
// Make the request
PagedAsyncEnumerable<ListFindingsResponse, ListFindingsResponse.Types.ListFindingsResult> response = securityCenterClient.ListFindingsAsync(request);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((ListFindingsResponse.Types.ListFindingsResult item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListFindingsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ListFindingsResponse.Types.ListFindingsResult item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ListFindingsResponse.Types.ListFindingsResult> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ListFindingsResponse.Types.ListFindingsResult item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListFindingsAsync(SourceName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListFindingsResponse, ListFindingsResponse.Types.ListFindingsResult> ListFindingsAsync(SourceName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists an organization or source's findings.

To list across all sources for a given location provide a - as the source id. If no location is specified, finding are assumed to be in global. The following list shows some examples:

  • /v2/organizations/{organization_id}/sources/-/findings + /v2/organizations/{organization_id}/sources/-/locations/{location_id}/findings
Parameters
Name Description
parent SourceName

Required. Name of the source the findings belong to. If no location is specified, the default is global. The following list shows some examples:

  • organizations/[organization_id]/sources/[source_id] + organizations/[organization_id]/sources/[source_id]/locations/[location_id]
  • folders/[folder_id]/sources/[source_id]
  • folders/[folder_id]/sources/[source_id]/locations/[location_id]
  • projects/[project_id]/sources/[source_id]
  • projects/[project_id]/sources/[source_id]/locations/[location_id]

To list across all sources provide a source_id of -. The following list shows some examples:

  • organizations/{organization_id}/sources/-
  • organizations/{organization_id}/sources/-/locations/{location_id}
  • folders/{folder_id}/sources/-
  • folders/{folder_id}/sources/-locations/{location_id}
  • projects/{projects_id}/sources/-
  • projects/{projects_id}/sources/-/locations/{location_id}
pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListFindingsResponseListFindingsResponseTypesListFindingsResult

A pageable asynchronous sequence of ListFindingsResponse.Types.ListFindingsResult resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SourceName parent = SourceName.FromOrganizationSource("[ORGANIZATION]", "[SOURCE]");
// Make the request
PagedAsyncEnumerable<ListFindingsResponse, ListFindingsResponse.Types.ListFindingsResult> response = securityCenterClient.ListFindingsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((ListFindingsResponse.Types.ListFindingsResult item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListFindingsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ListFindingsResponse.Types.ListFindingsResult item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ListFindingsResponse.Types.ListFindingsResult> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ListFindingsResponse.Types.ListFindingsResult item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListFindingsAsync(string, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListFindingsResponse, ListFindingsResponse.Types.ListFindingsResult> ListFindingsAsync(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists an organization or source's findings.

To list across all sources for a given location provide a - as the source id. If no location is specified, finding are assumed to be in global. The following list shows some examples:

  • /v2/organizations/{organization_id}/sources/-/findings + /v2/organizations/{organization_id}/sources/-/locations/{location_id}/findings
Parameters
Name Description
parent string

Required. Name of the source the findings belong to. If no location is specified, the default is global. The following list shows some examples:

  • organizations/[organization_id]/sources/[source_id] + organizations/[organization_id]/sources/[source_id]/locations/[location_id]
  • folders/[folder_id]/sources/[source_id]
  • folders/[folder_id]/sources/[source_id]/locations/[location_id]
  • projects/[project_id]/sources/[source_id]
  • projects/[project_id]/sources/[source_id]/locations/[location_id]

To list across all sources provide a source_id of -. The following list shows some examples:

  • organizations/{organization_id}/sources/-
  • organizations/{organization_id}/sources/-/locations/{location_id}
  • folders/{folder_id}/sources/-
  • folders/{folder_id}/sources/-locations/{location_id}
  • projects/{projects_id}/sources/-
  • projects/{projects_id}/sources/-/locations/{location_id}
pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListFindingsResponseListFindingsResponseTypesListFindingsResult

A pageable asynchronous sequence of ListFindingsResponse.Types.ListFindingsResult resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/sources/[SOURCE]";
// Make the request
PagedAsyncEnumerable<ListFindingsResponse, ListFindingsResponse.Types.ListFindingsResult> response = securityCenterClient.ListFindingsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((ListFindingsResponse.Types.ListFindingsResult item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListFindingsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ListFindingsResponse.Types.ListFindingsResult item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ListFindingsResponse.Types.ListFindingsResult> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ListFindingsResponse.Types.ListFindingsResult item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigs(FolderName, string, int?, CallSettings)

public virtual PagedEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigs(FolderName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
parent FolderName

Required. The parent, which owns the collection of mute configs. Its format is "organizations/[organization_id]", "folders/[folder_id]", "projects/[project_id]", "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListMuteConfigsResponseMuteConfig

A pageable sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
FolderName parent = FolderName.FromFolder("[FOLDER]");
// Make the request
PagedEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigs(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (MuteConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListMuteConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigs(LocationName, string, int?, CallSettings)

public virtual PagedEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigs(LocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
parent LocationName

Required. The parent, which owns the collection of mute configs. Its format is "organizations/[organization_id]", "folders/[folder_id]", "projects/[project_id]", "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListMuteConfigsResponseMuteConfig

A pageable sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
// Make the request
PagedEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigs(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (MuteConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListMuteConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigs(OrganizationName, string, int?, CallSettings)

public virtual PagedEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigs(OrganizationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
parent OrganizationName

Required. The parent, which owns the collection of mute configs. Its format is "organizations/[organization_id]", "folders/[folder_id]", "projects/[project_id]", "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListMuteConfigsResponseMuteConfig

A pageable sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
// Make the request
PagedEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigs(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (MuteConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListMuteConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigs(ProjectName, string, int?, CallSettings)

public virtual PagedEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigs(ProjectName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
parent ProjectName

Required. The parent, which owns the collection of mute configs. Its format is "organizations/[organization_id]", "folders/[folder_id]", "projects/[project_id]", "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListMuteConfigsResponseMuteConfig

A pageable sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ProjectName parent = ProjectName.FromProject("[PROJECT]");
// Make the request
PagedEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigs(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (MuteConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListMuteConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigs(FolderLocationName, string, int?, CallSettings)

public virtual PagedEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigs(FolderLocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
parent FolderLocationName

Required. The parent, which owns the collection of mute configs. Its format is "organizations/[organization_id]", "folders/[folder_id]", "projects/[project_id]", "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListMuteConfigsResponseMuteConfig

A pageable sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
FolderLocationName parent = FolderLocationName.FromFolderLocation("[FOLDER]", "[LOCATION]");
// Make the request
PagedEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigs(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (MuteConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListMuteConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigs(ListMuteConfigsRequest, CallSettings)

public virtual PagedEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigs(ListMuteConfigsRequest request, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
request ListMuteConfigsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListMuteConfigsResponseMuteConfig

A pageable sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ListMuteConfigsRequest request = new ListMuteConfigsRequest
{
    ParentAsOrganizationName = OrganizationName.FromOrganization("[ORGANIZATION]"),
};
// Make the request
PagedEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigs(request);

// Iterate over all response items, lazily performing RPCs as required
foreach (MuteConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListMuteConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigs(OrganizationLocationName, string, int?, CallSettings)

public virtual PagedEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigs(OrganizationLocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
parent OrganizationLocationName

Required. The parent, which owns the collection of mute configs. Its format is "organizations/[organization_id]", "folders/[folder_id]", "projects/[project_id]", "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListMuteConfigsResponseMuteConfig

A pageable sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
OrganizationLocationName parent = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
// Make the request
PagedEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigs(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (MuteConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListMuteConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigs(string, string, int?, CallSettings)

public virtual PagedEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigs(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
parent string

Required. The parent, which owns the collection of mute configs. Its format is "organizations/[organization_id]", "folders/[folder_id]", "projects/[project_id]", "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListMuteConfigsResponseMuteConfig

A pageable sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]";
// Make the request
PagedEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigs(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (MuteConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListMuteConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigsAsync(FolderName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigsAsync(FolderName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
parent FolderName

Required. The parent, which owns the collection of mute configs. Its format is "organizations/[organization_id]", "folders/[folder_id]", "projects/[project_id]", "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListMuteConfigsResponseMuteConfig

A pageable asynchronous sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FolderName parent = FolderName.FromFolder("[FOLDER]");
// Make the request
PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((MuteConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListMuteConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigsAsync(LocationName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigsAsync(LocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
parent LocationName

Required. The parent, which owns the collection of mute configs. Its format is "organizations/[organization_id]", "folders/[folder_id]", "projects/[project_id]", "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListMuteConfigsResponseMuteConfig

A pageable asynchronous sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
// Make the request
PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((MuteConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListMuteConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigsAsync(OrganizationName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigsAsync(OrganizationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
parent OrganizationName

Required. The parent, which owns the collection of mute configs. Its format is "organizations/[organization_id]", "folders/[folder_id]", "projects/[project_id]", "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListMuteConfigsResponseMuteConfig

A pageable asynchronous sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
// Make the request
PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((MuteConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListMuteConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigsAsync(ProjectName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigsAsync(ProjectName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
parent ProjectName

Required. The parent, which owns the collection of mute configs. Its format is "organizations/[organization_id]", "folders/[folder_id]", "projects/[project_id]", "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListMuteConfigsResponseMuteConfig

A pageable asynchronous sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ProjectName parent = ProjectName.FromProject("[PROJECT]");
// Make the request
PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((MuteConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListMuteConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigsAsync(FolderLocationName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigsAsync(FolderLocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
parent FolderLocationName

Required. The parent, which owns the collection of mute configs. Its format is "organizations/[organization_id]", "folders/[folder_id]", "projects/[project_id]", "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListMuteConfigsResponseMuteConfig

A pageable asynchronous sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FolderLocationName parent = FolderLocationName.FromFolderLocation("[FOLDER]", "[LOCATION]");
// Make the request
PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((MuteConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListMuteConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigsAsync(ListMuteConfigsRequest, CallSettings)

public virtual PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigsAsync(ListMuteConfigsRequest request, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
request ListMuteConfigsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListMuteConfigsResponseMuteConfig

A pageable asynchronous sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ListMuteConfigsRequest request = new ListMuteConfigsRequest
{
    ParentAsOrganizationName = OrganizationName.FromOrganization("[ORGANIZATION]"),
};
// Make the request
PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigsAsync(request);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((MuteConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListMuteConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigsAsync(OrganizationLocationName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigsAsync(OrganizationLocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
parent OrganizationLocationName

Required. The parent, which owns the collection of mute configs. Its format is "organizations/[organization_id]", "folders/[folder_id]", "projects/[project_id]", "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListMuteConfigsResponseMuteConfig

A pageable asynchronous sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationLocationName parent = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
// Make the request
PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((MuteConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListMuteConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListMuteConfigsAsync(string, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> ListMuteConfigsAsync(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists mute configs. If no location is specified, default is global.

Parameters
Name Description
parent string

Required. The parent, which owns the collection of mute configs. Its format is "organizations/[organization_id]", "folders/[folder_id]", "projects/[project_id]", "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListMuteConfigsResponseMuteConfig

A pageable asynchronous sequence of MuteConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]";
// Make the request
PagedAsyncEnumerable<ListMuteConfigsResponse, MuteConfig> response = securityCenterClient.ListMuteConfigsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((MuteConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListMuteConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MuteConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MuteConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MuteConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListNotificationConfigs(LocationName, string, int?, CallSettings)

public virtual PagedEnumerable<ListNotificationConfigsResponse, NotificationConfig> ListNotificationConfigs(LocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists notification configs.

Parameters
Name Description
parent LocationName

Required. The name of the parent in which to list the notification configurations. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListNotificationConfigsResponseNotificationConfig

A pageable sequence of NotificationConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
// Make the request
PagedEnumerable<ListNotificationConfigsResponse, NotificationConfig> response = securityCenterClient.ListNotificationConfigs(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (NotificationConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListNotificationConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NotificationConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<NotificationConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (NotificationConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListNotificationConfigs(FolderLocationName, string, int?, CallSettings)

public virtual PagedEnumerable<ListNotificationConfigsResponse, NotificationConfig> ListNotificationConfigs(FolderLocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists notification configs.

Parameters
Name Description
parent FolderLocationName

Required. The name of the parent in which to list the notification configurations. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListNotificationConfigsResponseNotificationConfig

A pageable sequence of NotificationConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
FolderLocationName parent = FolderLocationName.FromFolderLocation("[FOLDER]", "[LOCATION]");
// Make the request
PagedEnumerable<ListNotificationConfigsResponse, NotificationConfig> response = securityCenterClient.ListNotificationConfigs(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (NotificationConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListNotificationConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NotificationConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<NotificationConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (NotificationConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListNotificationConfigs(ListNotificationConfigsRequest, CallSettings)

public virtual PagedEnumerable<ListNotificationConfigsResponse, NotificationConfig> ListNotificationConfigs(ListNotificationConfigsRequest request, CallSettings callSettings = null)

Lists notification configs.

Parameters
Name Description
request ListNotificationConfigsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListNotificationConfigsResponseNotificationConfig

A pageable sequence of NotificationConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ListNotificationConfigsRequest request = new ListNotificationConfigsRequest
{
    ParentAsOrganizationLocationName = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]"),
};
// Make the request
PagedEnumerable<ListNotificationConfigsResponse, NotificationConfig> response = securityCenterClient.ListNotificationConfigs(request);

// Iterate over all response items, lazily performing RPCs as required
foreach (NotificationConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListNotificationConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NotificationConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<NotificationConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (NotificationConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListNotificationConfigs(OrganizationLocationName, string, int?, CallSettings)

public virtual PagedEnumerable<ListNotificationConfigsResponse, NotificationConfig> ListNotificationConfigs(OrganizationLocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists notification configs.

Parameters
Name Description
parent OrganizationLocationName

Required. The name of the parent in which to list the notification configurations. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListNotificationConfigsResponseNotificationConfig

A pageable sequence of NotificationConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
OrganizationLocationName parent = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
// Make the request
PagedEnumerable<ListNotificationConfigsResponse, NotificationConfig> response = securityCenterClient.ListNotificationConfigs(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (NotificationConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListNotificationConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NotificationConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<NotificationConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (NotificationConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListNotificationConfigs(string, string, int?, CallSettings)

public virtual PagedEnumerable<ListNotificationConfigsResponse, NotificationConfig> ListNotificationConfigs(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists notification configs.

Parameters
Name Description
parent string

Required. The name of the parent in which to list the notification configurations. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListNotificationConfigsResponseNotificationConfig

A pageable sequence of NotificationConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/locations/[LOCATION]";
// Make the request
PagedEnumerable<ListNotificationConfigsResponse, NotificationConfig> response = securityCenterClient.ListNotificationConfigs(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (NotificationConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListNotificationConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NotificationConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<NotificationConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (NotificationConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListNotificationConfigsAsync(LocationName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListNotificationConfigsResponse, NotificationConfig> ListNotificationConfigsAsync(LocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists notification configs.

Parameters
Name Description
parent LocationName

Required. The name of the parent in which to list the notification configurations. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListNotificationConfigsResponseNotificationConfig

A pageable asynchronous sequence of NotificationConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
// Make the request
PagedAsyncEnumerable<ListNotificationConfigsResponse, NotificationConfig> response = securityCenterClient.ListNotificationConfigsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((NotificationConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListNotificationConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NotificationConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<NotificationConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (NotificationConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListNotificationConfigsAsync(FolderLocationName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListNotificationConfigsResponse, NotificationConfig> ListNotificationConfigsAsync(FolderLocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists notification configs.

Parameters
Name Description
parent FolderLocationName

Required. The name of the parent in which to list the notification configurations. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListNotificationConfigsResponseNotificationConfig

A pageable asynchronous sequence of NotificationConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FolderLocationName parent = FolderLocationName.FromFolderLocation("[FOLDER]", "[LOCATION]");
// Make the request
PagedAsyncEnumerable<ListNotificationConfigsResponse, NotificationConfig> response = securityCenterClient.ListNotificationConfigsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((NotificationConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListNotificationConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NotificationConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<NotificationConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (NotificationConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListNotificationConfigsAsync(ListNotificationConfigsRequest, CallSettings)

public virtual PagedAsyncEnumerable<ListNotificationConfigsResponse, NotificationConfig> ListNotificationConfigsAsync(ListNotificationConfigsRequest request, CallSettings callSettings = null)

Lists notification configs.

Parameters
Name Description
request ListNotificationConfigsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListNotificationConfigsResponseNotificationConfig

A pageable asynchronous sequence of NotificationConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ListNotificationConfigsRequest request = new ListNotificationConfigsRequest
{
    ParentAsOrganizationLocationName = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]"),
};
// Make the request
PagedAsyncEnumerable<ListNotificationConfigsResponse, NotificationConfig> response = securityCenterClient.ListNotificationConfigsAsync(request);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((NotificationConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListNotificationConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NotificationConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<NotificationConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (NotificationConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListNotificationConfigsAsync(OrganizationLocationName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListNotificationConfigsResponse, NotificationConfig> ListNotificationConfigsAsync(OrganizationLocationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists notification configs.

Parameters
Name Description
parent OrganizationLocationName

Required. The name of the parent in which to list the notification configurations. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListNotificationConfigsResponseNotificationConfig

A pageable asynchronous sequence of NotificationConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationLocationName parent = OrganizationLocationName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
// Make the request
PagedAsyncEnumerable<ListNotificationConfigsResponse, NotificationConfig> response = securityCenterClient.ListNotificationConfigsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((NotificationConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListNotificationConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NotificationConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<NotificationConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (NotificationConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListNotificationConfigsAsync(string, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListNotificationConfigsResponse, NotificationConfig> ListNotificationConfigsAsync(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists notification configs.

Parameters
Name Description
parent string

Required. The name of the parent in which to list the notification configurations. Its format is "organizations/[organization_id]/locations/[location_id]", "folders/[folder_id]/locations/[location_id]", or "projects/[project_id]/locations/[location_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListNotificationConfigsResponseNotificationConfig

A pageable asynchronous sequence of NotificationConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/locations/[LOCATION]";
// Make the request
PagedAsyncEnumerable<ListNotificationConfigsResponse, NotificationConfig> response = securityCenterClient.ListNotificationConfigsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((NotificationConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListNotificationConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NotificationConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<NotificationConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (NotificationConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListResourceValueConfigs(OrganizationName, string, int?, CallSettings)

public virtual PagedEnumerable<ListResourceValueConfigsResponse, ResourceValueConfig> ListResourceValueConfigs(OrganizationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists all ResourceValueConfigs.

Parameters
Name Description
parent OrganizationName

Required. The parent, which owns the collection of resource value configs. Its format is "organizations/[organization_id]"

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListResourceValueConfigsResponseResourceValueConfig

A pageable sequence of ResourceValueConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
// Make the request
PagedEnumerable<ListResourceValueConfigsResponse, ResourceValueConfig> response = securityCenterClient.ListResourceValueConfigs(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (ResourceValueConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListResourceValueConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ResourceValueConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ResourceValueConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ResourceValueConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListResourceValueConfigs(ListResourceValueConfigsRequest, CallSettings)

public virtual PagedEnumerable<ListResourceValueConfigsResponse, ResourceValueConfig> ListResourceValueConfigs(ListResourceValueConfigsRequest request, CallSettings callSettings = null)

Lists all ResourceValueConfigs.

Parameters
Name Description
request ListResourceValueConfigsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListResourceValueConfigsResponseResourceValueConfig

A pageable sequence of ResourceValueConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ListResourceValueConfigsRequest request = new ListResourceValueConfigsRequest
{
    ParentAsOrganizationName = OrganizationName.FromOrganization("[ORGANIZATION]"),
};
// Make the request
PagedEnumerable<ListResourceValueConfigsResponse, ResourceValueConfig> response = securityCenterClient.ListResourceValueConfigs(request);

// Iterate over all response items, lazily performing RPCs as required
foreach (ResourceValueConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListResourceValueConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ResourceValueConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ResourceValueConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ResourceValueConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListResourceValueConfigs(string, string, int?, CallSettings)

public virtual PagedEnumerable<ListResourceValueConfigsResponse, ResourceValueConfig> ListResourceValueConfigs(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists all ResourceValueConfigs.

Parameters
Name Description
parent string

Required. The parent, which owns the collection of resource value configs. Its format is "organizations/[organization_id]"

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListResourceValueConfigsResponseResourceValueConfig

A pageable sequence of ResourceValueConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]";
// Make the request
PagedEnumerable<ListResourceValueConfigsResponse, ResourceValueConfig> response = securityCenterClient.ListResourceValueConfigs(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (ResourceValueConfig item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListResourceValueConfigsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ResourceValueConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ResourceValueConfig> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ResourceValueConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListResourceValueConfigsAsync(OrganizationName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListResourceValueConfigsResponse, ResourceValueConfig> ListResourceValueConfigsAsync(OrganizationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists all ResourceValueConfigs.

Parameters
Name Description
parent OrganizationName

Required. The parent, which owns the collection of resource value configs. Its format is "organizations/[organization_id]"

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListResourceValueConfigsResponseResourceValueConfig

A pageable asynchronous sequence of ResourceValueConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
// Make the request
PagedAsyncEnumerable<ListResourceValueConfigsResponse, ResourceValueConfig> response = securityCenterClient.ListResourceValueConfigsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((ResourceValueConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListResourceValueConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ResourceValueConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ResourceValueConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ResourceValueConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListResourceValueConfigsAsync(ListResourceValueConfigsRequest, CallSettings)

public virtual PagedAsyncEnumerable<ListResourceValueConfigsResponse, ResourceValueConfig> ListResourceValueConfigsAsync(ListResourceValueConfigsRequest request, CallSettings callSettings = null)

Lists all ResourceValueConfigs.

Parameters
Name Description
request ListResourceValueConfigsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListResourceValueConfigsResponseResourceValueConfig

A pageable asynchronous sequence of ResourceValueConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ListResourceValueConfigsRequest request = new ListResourceValueConfigsRequest
{
    ParentAsOrganizationName = OrganizationName.FromOrganization("[ORGANIZATION]"),
};
// Make the request
PagedAsyncEnumerable<ListResourceValueConfigsResponse, ResourceValueConfig> response = securityCenterClient.ListResourceValueConfigsAsync(request);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((ResourceValueConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListResourceValueConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ResourceValueConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ResourceValueConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ResourceValueConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListResourceValueConfigsAsync(string, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListResourceValueConfigsResponse, ResourceValueConfig> ListResourceValueConfigsAsync(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists all ResourceValueConfigs.

Parameters
Name Description
parent string

Required. The parent, which owns the collection of resource value configs. Its format is "organizations/[organization_id]"

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListResourceValueConfigsResponseResourceValueConfig

A pageable asynchronous sequence of ResourceValueConfig resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]";
// Make the request
PagedAsyncEnumerable<ListResourceValueConfigsResponse, ResourceValueConfig> response = securityCenterClient.ListResourceValueConfigsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((ResourceValueConfig item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListResourceValueConfigsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ResourceValueConfig item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ResourceValueConfig> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ResourceValueConfig item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListSources(FolderName, string, int?, CallSettings)

public virtual PagedEnumerable<ListSourcesResponse, Source> ListSources(FolderName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists all sources belonging to an organization.

Parameters
Name Description
parent FolderName

Required. Resource name of the parent of sources to list. Its format should be "organizations/[organization_id]", "folders/[folder_id]", or "projects/[project_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListSourcesResponseSource

A pageable sequence of Source resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
FolderName parent = FolderName.FromFolder("[FOLDER]");
// Make the request
PagedEnumerable<ListSourcesResponse, Source> response = securityCenterClient.ListSources(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (Source item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListSourcesResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Source item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Source> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Source item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListSources(OrganizationName, string, int?, CallSettings)

public virtual PagedEnumerable<ListSourcesResponse, Source> ListSources(OrganizationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists all sources belonging to an organization.

Parameters
Name Description
parent OrganizationName

Required. Resource name of the parent of sources to list. Its format should be "organizations/[organization_id]", "folders/[folder_id]", or "projects/[project_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListSourcesResponseSource

A pageable sequence of Source resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
// Make the request
PagedEnumerable<ListSourcesResponse, Source> response = securityCenterClient.ListSources(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (Source item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListSourcesResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Source item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Source> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Source item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListSources(ProjectName, string, int?, CallSettings)

public virtual PagedEnumerable<ListSourcesResponse, Source> ListSources(ProjectName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists all sources belonging to an organization.

Parameters
Name Description
parent ProjectName

Required. Resource name of the parent of sources to list. Its format should be "organizations/[organization_id]", "folders/[folder_id]", or "projects/[project_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListSourcesResponseSource

A pageable sequence of Source resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ProjectName parent = ProjectName.FromProject("[PROJECT]");
// Make the request
PagedEnumerable<ListSourcesResponse, Source> response = securityCenterClient.ListSources(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (Source item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListSourcesResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Source item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Source> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Source item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListSources(ListSourcesRequest, CallSettings)

public virtual PagedEnumerable<ListSourcesResponse, Source> ListSources(ListSourcesRequest request, CallSettings callSettings = null)

Lists all sources belonging to an organization.

Parameters
Name Description
request ListSourcesRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListSourcesResponseSource

A pageable sequence of Source resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ListSourcesRequest request = new ListSourcesRequest
{
    ParentAsOrganizationName = OrganizationName.FromOrganization("[ORGANIZATION]"),
};
// Make the request
PagedEnumerable<ListSourcesResponse, Source> response = securityCenterClient.ListSources(request);

// Iterate over all response items, lazily performing RPCs as required
foreach (Source item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListSourcesResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Source item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Source> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Source item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListSources(string, string, int?, CallSettings)

public virtual PagedEnumerable<ListSourcesResponse, Source> ListSources(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists all sources belonging to an organization.

Parameters
Name Description
parent string

Required. Resource name of the parent of sources to list. Its format should be "organizations/[organization_id]", "folders/[folder_id]", or "projects/[project_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListSourcesResponseSource

A pageable sequence of Source resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]";
// Make the request
PagedEnumerable<ListSourcesResponse, Source> response = securityCenterClient.ListSources(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (Source item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListSourcesResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Source item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Source> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Source item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListSourcesAsync(FolderName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListSourcesResponse, Source> ListSourcesAsync(FolderName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists all sources belonging to an organization.

Parameters
Name Description
parent FolderName

Required. Resource name of the parent of sources to list. Its format should be "organizations/[organization_id]", "folders/[folder_id]", or "projects/[project_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListSourcesResponseSource

A pageable asynchronous sequence of Source resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FolderName parent = FolderName.FromFolder("[FOLDER]");
// Make the request
PagedAsyncEnumerable<ListSourcesResponse, Source> response = securityCenterClient.ListSourcesAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Source item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListSourcesResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Source item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Source> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Source item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListSourcesAsync(OrganizationName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListSourcesResponse, Source> ListSourcesAsync(OrganizationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists all sources belonging to an organization.

Parameters
Name Description
parent OrganizationName

Required. Resource name of the parent of sources to list. Its format should be "organizations/[organization_id]", "folders/[folder_id]", or "projects/[project_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListSourcesResponseSource

A pageable asynchronous sequence of Source resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
// Make the request
PagedAsyncEnumerable<ListSourcesResponse, Source> response = securityCenterClient.ListSourcesAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Source item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListSourcesResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Source item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Source> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Source item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListSourcesAsync(ProjectName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListSourcesResponse, Source> ListSourcesAsync(ProjectName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists all sources belonging to an organization.

Parameters
Name Description
parent ProjectName

Required. Resource name of the parent of sources to list. Its format should be "organizations/[organization_id]", "folders/[folder_id]", or "projects/[project_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListSourcesResponseSource

A pageable asynchronous sequence of Source resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ProjectName parent = ProjectName.FromProject("[PROJECT]");
// Make the request
PagedAsyncEnumerable<ListSourcesResponse, Source> response = securityCenterClient.ListSourcesAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Source item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListSourcesResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Source item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Source> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Source item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListSourcesAsync(ListSourcesRequest, CallSettings)

public virtual PagedAsyncEnumerable<ListSourcesResponse, Source> ListSourcesAsync(ListSourcesRequest request, CallSettings callSettings = null)

Lists all sources belonging to an organization.

Parameters
Name Description
request ListSourcesRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListSourcesResponseSource

A pageable asynchronous sequence of Source resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ListSourcesRequest request = new ListSourcesRequest
{
    ParentAsOrganizationName = OrganizationName.FromOrganization("[ORGANIZATION]"),
};
// Make the request
PagedAsyncEnumerable<ListSourcesResponse, Source> response = securityCenterClient.ListSourcesAsync(request);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Source item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListSourcesResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Source item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Source> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Source item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListSourcesAsync(string, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListSourcesResponse, Source> ListSourcesAsync(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists all sources belonging to an organization.

Parameters
Name Description
parent string

Required. Resource name of the parent of sources to list. Its format should be "organizations/[organization_id]", "folders/[folder_id]", or "projects/[project_id]".

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListSourcesResponseSource

A pageable asynchronous sequence of Source resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]";
// Make the request
PagedAsyncEnumerable<ListSourcesResponse, Source> response = securityCenterClient.ListSourcesAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Source item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListSourcesResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Source item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Source> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Source item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListValuedResources(ListValuedResourcesRequest, CallSettings)

public virtual PagedEnumerable<ListValuedResourcesResponse, ValuedResource> ListValuedResources(ListValuedResourcesRequest request, CallSettings callSettings = null)

Lists the valued resources for a set of simulation results and filter.

Parameters
Name Description
request ListValuedResourcesRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListValuedResourcesResponseValuedResource

A pageable sequence of ValuedResource resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ListValuedResourcesRequest request = new ListValuedResourcesRequest
{
    ParentAsSimulationName = SimulationName.FromOrganizationSimulation("[ORGANIZATION]", "[SIMULATION]"),
    Filter = "",
    OrderBy = "",
};
// Make the request
PagedEnumerable<ListValuedResourcesResponse, ValuedResource> response = securityCenterClient.ListValuedResources(request);

// Iterate over all response items, lazily performing RPCs as required
foreach (ValuedResource item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListValuedResourcesResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ValuedResource item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ValuedResource> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ValuedResource item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListValuedResources(SimulationName, string, int?, CallSettings)

public virtual PagedEnumerable<ListValuedResourcesResponse, ValuedResource> ListValuedResources(SimulationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists the valued resources for a set of simulation results and filter.

Parameters
Name Description
parent SimulationName

Required. Name of parent to list exposed resources.

Valid formats: "organizations/{organization}", "organizations/{organization}/simulations/{simulation}" "organizations/{organization}/simulations/{simulation}/attackExposureResults/{attack_exposure_result_v2}"

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListValuedResourcesResponseValuedResource

A pageable sequence of ValuedResource resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
SimulationName parent = SimulationName.FromOrganizationSimulation("[ORGANIZATION]", "[SIMULATION]");
// Make the request
PagedEnumerable<ListValuedResourcesResponse, ValuedResource> response = securityCenterClient.ListValuedResources(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (ValuedResource item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListValuedResourcesResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ValuedResource item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ValuedResource> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ValuedResource item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListValuedResources(string, string, int?, CallSettings)

public virtual PagedEnumerable<ListValuedResourcesResponse, ValuedResource> ListValuedResources(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists the valued resources for a set of simulation results and filter.

Parameters
Name Description
parent string

Required. Name of parent to list exposed resources.

Valid formats: "organizations/{organization}", "organizations/{organization}/simulations/{simulation}" "organizations/{organization}/simulations/{simulation}/attackExposureResults/{attack_exposure_result_v2}"

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListValuedResourcesResponseValuedResource

A pageable sequence of ValuedResource resources.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/simulations/[SIMULATION]";
// Make the request
PagedEnumerable<ListValuedResourcesResponse, ValuedResource> response = securityCenterClient.ListValuedResources(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (ValuedResource item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListValuedResourcesResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ValuedResource item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ValuedResource> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ValuedResource item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListValuedResourcesAsync(ListValuedResourcesRequest, CallSettings)

public virtual PagedAsyncEnumerable<ListValuedResourcesResponse, ValuedResource> ListValuedResourcesAsync(ListValuedResourcesRequest request, CallSettings callSettings = null)

Lists the valued resources for a set of simulation results and filter.

Parameters
Name Description
request ListValuedResourcesRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListValuedResourcesResponseValuedResource

A pageable asynchronous sequence of ValuedResource resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ListValuedResourcesRequest request = new ListValuedResourcesRequest
{
    ParentAsSimulationName = SimulationName.FromOrganizationSimulation("[ORGANIZATION]", "[SIMULATION]"),
    Filter = "",
    OrderBy = "",
};
// Make the request
PagedAsyncEnumerable<ListValuedResourcesResponse, ValuedResource> response = securityCenterClient.ListValuedResourcesAsync(request);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((ValuedResource item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListValuedResourcesResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ValuedResource item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ValuedResource> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ValuedResource item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListValuedResourcesAsync(SimulationName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListValuedResourcesResponse, ValuedResource> ListValuedResourcesAsync(SimulationName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists the valued resources for a set of simulation results and filter.

Parameters
Name Description
parent SimulationName

Required. Name of parent to list exposed resources.

Valid formats: "organizations/{organization}", "organizations/{organization}/simulations/{simulation}" "organizations/{organization}/simulations/{simulation}/attackExposureResults/{attack_exposure_result_v2}"

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListValuedResourcesResponseValuedResource

A pageable asynchronous sequence of ValuedResource resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SimulationName parent = SimulationName.FromOrganizationSimulation("[ORGANIZATION]", "[SIMULATION]");
// Make the request
PagedAsyncEnumerable<ListValuedResourcesResponse, ValuedResource> response = securityCenterClient.ListValuedResourcesAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((ValuedResource item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListValuedResourcesResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ValuedResource item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ValuedResource> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ValuedResource item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListValuedResourcesAsync(string, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListValuedResourcesResponse, ValuedResource> ListValuedResourcesAsync(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists the valued resources for a set of simulation results and filter.

Parameters
Name Description
parent string

Required. Name of parent to list exposed resources.

Valid formats: "organizations/{organization}", "organizations/{organization}/simulations/{simulation}" "organizations/{organization}/simulations/{simulation}/attackExposureResults/{attack_exposure_result_v2}"

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListValuedResourcesResponseValuedResource

A pageable asynchronous sequence of ValuedResource resources.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string parent = "organizations/[ORGANIZATION]/simulations/[SIMULATION]";
// Make the request
PagedAsyncEnumerable<ListValuedResourcesResponse, ValuedResource> response = securityCenterClient.ListValuedResourcesAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((ValuedResource item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListValuedResourcesResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (ValuedResource item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<ValuedResource> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (ValuedResource item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

PollOnceBulkMuteFindings(string, CallSettings)

public virtual Operation<BulkMuteFindingsResponse, Empty> PollOnceBulkMuteFindings(string operationName, CallSettings callSettings = null)

Poll an operation once, using an operationName from a previous invocation of BulkMuteFindings.

Parameters
Name Description
operationName string

The name of a previously invoked operation. Must not be null or empty.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationBulkMuteFindingsResponseEmpty

The result of polling the operation.

PollOnceBulkMuteFindingsAsync(string, CallSettings)

public virtual Task<Operation<BulkMuteFindingsResponse, Empty>> PollOnceBulkMuteFindingsAsync(string operationName, CallSettings callSettings = null)

Asynchronously poll an operation once, using an operationName from a previous invocation of BulkMuteFindings.

Parameters
Name Description
operationName string

The name of a previously invoked operation. Must not be null or empty.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationBulkMuteFindingsResponseEmpty

A task representing the result of polling the operation.

SetFindingState(FindingName, State, CallSettings)

public virtual Finding SetFindingState(FindingName name, Finding.Types.State state, CallSettings callSettings = null)

Updates the state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
name FindingName

Required. The relative resource name of the finding. If no location is specified, finding is assumed to be in global. The following list shows some examples:

+ organizations/{organization_id}/sources/{source_id}/findings/{finding_id} + organizations/{organization_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}

  • folders/{folder_id}/sources/{source_id}/findings/{finding_id} + folders/{folder_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
  • projects/{project_id}/sources/{source_id}/findings/{finding_id} + projects/{project_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
state FindingTypesState

Required. The desired State of the finding.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Finding

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
FindingName name = FindingName.FromOrganizationSourceFinding("[ORGANIZATION]", "[SOURCE]", "[FINDING]");
Finding.Types.State state = Finding.Types.State.Unspecified;
// Make the request
Finding response = securityCenterClient.SetFindingState(name, state);

SetFindingState(SetFindingStateRequest, CallSettings)

public virtual Finding SetFindingState(SetFindingStateRequest request, CallSettings callSettings = null)

Updates the state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
request SetFindingStateRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Finding

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
SetFindingStateRequest request = new SetFindingStateRequest
{
    FindingName = FindingName.FromOrganizationSourceFinding("[ORGANIZATION]", "[SOURCE]", "[FINDING]"),
    State = Finding.Types.State.Unspecified,
};
// Make the request
Finding response = securityCenterClient.SetFindingState(request);

SetFindingState(string, State, CallSettings)

public virtual Finding SetFindingState(string name, Finding.Types.State state, CallSettings callSettings = null)

Updates the state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
name string

Required. The relative resource name of the finding. If no location is specified, finding is assumed to be in global. The following list shows some examples:

+ organizations/{organization_id}/sources/{source_id}/findings/{finding_id} + organizations/{organization_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}

  • folders/{folder_id}/sources/{source_id}/findings/{finding_id} + folders/{folder_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
  • projects/{project_id}/sources/{source_id}/findings/{finding_id} + projects/{project_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
state FindingTypesState

Required. The desired State of the finding.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Finding

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/sources/[SOURCE]/findings/[FINDING]";
Finding.Types.State state = Finding.Types.State.Unspecified;
// Make the request
Finding response = securityCenterClient.SetFindingState(name, state);

SetFindingStateAsync(FindingName, State, CallSettings)

public virtual Task<Finding> SetFindingStateAsync(FindingName name, Finding.Types.State state, CallSettings callSettings = null)

Updates the state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
name FindingName

Required. The relative resource name of the finding. If no location is specified, finding is assumed to be in global. The following list shows some examples:

+ organizations/{organization_id}/sources/{source_id}/findings/{finding_id} + organizations/{organization_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}

  • folders/{folder_id}/sources/{source_id}/findings/{finding_id} + folders/{folder_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
  • projects/{project_id}/sources/{source_id}/findings/{finding_id} + projects/{project_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
state FindingTypesState

Required. The desired State of the finding.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FindingName name = FindingName.FromOrganizationSourceFinding("[ORGANIZATION]", "[SOURCE]", "[FINDING]");
Finding.Types.State state = Finding.Types.State.Unspecified;
// Make the request
Finding response = await securityCenterClient.SetFindingStateAsync(name, state);

SetFindingStateAsync(FindingName, State, CancellationToken)

public virtual Task<Finding> SetFindingStateAsync(FindingName name, Finding.Types.State state, CancellationToken cancellationToken)

Updates the state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
name FindingName

Required. The relative resource name of the finding. If no location is specified, finding is assumed to be in global. The following list shows some examples:

+ organizations/{organization_id}/sources/{source_id}/findings/{finding_id} + organizations/{organization_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}

  • folders/{folder_id}/sources/{source_id}/findings/{finding_id} + folders/{folder_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
  • projects/{project_id}/sources/{source_id}/findings/{finding_id} + projects/{project_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
state FindingTypesState

Required. The desired State of the finding.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FindingName name = FindingName.FromOrganizationSourceFinding("[ORGANIZATION]", "[SOURCE]", "[FINDING]");
Finding.Types.State state = Finding.Types.State.Unspecified;
// Make the request
Finding response = await securityCenterClient.SetFindingStateAsync(name, state);

SetFindingStateAsync(SetFindingStateRequest, CallSettings)

public virtual Task<Finding> SetFindingStateAsync(SetFindingStateRequest request, CallSettings callSettings = null)

Updates the state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
request SetFindingStateRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SetFindingStateRequest request = new SetFindingStateRequest
{
    FindingName = FindingName.FromOrganizationSourceFinding("[ORGANIZATION]", "[SOURCE]", "[FINDING]"),
    State = Finding.Types.State.Unspecified,
};
// Make the request
Finding response = await securityCenterClient.SetFindingStateAsync(request);

SetFindingStateAsync(SetFindingStateRequest, CancellationToken)

public virtual Task<Finding> SetFindingStateAsync(SetFindingStateRequest request, CancellationToken cancellationToken)

Updates the state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
request SetFindingStateRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SetFindingStateRequest request = new SetFindingStateRequest
{
    FindingName = FindingName.FromOrganizationSourceFinding("[ORGANIZATION]", "[SOURCE]", "[FINDING]"),
    State = Finding.Types.State.Unspecified,
};
// Make the request
Finding response = await securityCenterClient.SetFindingStateAsync(request);

SetFindingStateAsync(string, State, CallSettings)

public virtual Task<Finding> SetFindingStateAsync(string name, Finding.Types.State state, CallSettings callSettings = null)

Updates the state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
name string

Required. The relative resource name of the finding. If no location is specified, finding is assumed to be in global. The following list shows some examples:

+ organizations/{organization_id}/sources/{source_id}/findings/{finding_id} + organizations/{organization_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}

  • folders/{folder_id}/sources/{source_id}/findings/{finding_id} + folders/{folder_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
  • projects/{project_id}/sources/{source_id}/findings/{finding_id} + projects/{project_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
state FindingTypesState

Required. The desired State of the finding.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/sources/[SOURCE]/findings/[FINDING]";
Finding.Types.State state = Finding.Types.State.Unspecified;
// Make the request
Finding response = await securityCenterClient.SetFindingStateAsync(name, state);

SetFindingStateAsync(string, State, CancellationToken)

public virtual Task<Finding> SetFindingStateAsync(string name, Finding.Types.State state, CancellationToken cancellationToken)

Updates the state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
name string

Required. The relative resource name of the finding. If no location is specified, finding is assumed to be in global. The following list shows some examples:

+ organizations/{organization_id}/sources/{source_id}/findings/{finding_id} + organizations/{organization_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}

  • folders/{folder_id}/sources/{source_id}/findings/{finding_id} + folders/{folder_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
  • projects/{project_id}/sources/{source_id}/findings/{finding_id} + projects/{project_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
state FindingTypesState

Required. The desired State of the finding.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/sources/[SOURCE]/findings/[FINDING]";
Finding.Types.State state = Finding.Types.State.Unspecified;
// Make the request
Finding response = await securityCenterClient.SetFindingStateAsync(name, state);

SetIamPolicy(IResourceName, Policy, CallSettings)

public virtual Policy SetIamPolicy(IResourceName resource, Policy policy, CallSettings callSettings = null)

Sets the access control policy on the specified Source.

Parameters
Name Description
resource IResourceName

REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.

policy Policy

REQUIRED: The complete policy to be applied to the resource. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud Platform services (such as Projects) might reject them.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Policy

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
IResourceName resource = new UnparsedResourceName("a/wildcard/resource");
Policy policy = new Policy();
// Make the request
Policy response = securityCenterClient.SetIamPolicy(resource, policy);

SetIamPolicy(SetIamPolicyRequest, CallSettings)

public virtual Policy SetIamPolicy(SetIamPolicyRequest request, CallSettings callSettings = null)

Sets the access control policy on the specified Source.

Parameters
Name Description
request SetIamPolicyRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Policy

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
SetIamPolicyRequest request = new SetIamPolicyRequest
{
    ResourceAsResourceName = new UnparsedResourceName("a/wildcard/resource"),
    Policy = new Policy(),
    UpdateMask = new FieldMask(),
};
// Make the request
Policy response = securityCenterClient.SetIamPolicy(request);

SetIamPolicy(string, Policy, CallSettings)

public virtual Policy SetIamPolicy(string resource, Policy policy, CallSettings callSettings = null)

Sets the access control policy on the specified Source.

Parameters
Name Description
resource string

REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.

policy Policy

REQUIRED: The complete policy to be applied to the resource. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud Platform services (such as Projects) might reject them.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Policy

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string resource = "a/wildcard/resource";
Policy policy = new Policy();
// Make the request
Policy response = securityCenterClient.SetIamPolicy(resource, policy);

SetIamPolicyAsync(IResourceName, Policy, CallSettings)

public virtual Task<Policy> SetIamPolicyAsync(IResourceName resource, Policy policy, CallSettings callSettings = null)

Sets the access control policy on the specified Source.

Parameters
Name Description
resource IResourceName

REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.

policy Policy

REQUIRED: The complete policy to be applied to the resource. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud Platform services (such as Projects) might reject them.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
IResourceName resource = new UnparsedResourceName("a/wildcard/resource");
Policy policy = new Policy();
// Make the request
Policy response = await securityCenterClient.SetIamPolicyAsync(resource, policy);

SetIamPolicyAsync(IResourceName, Policy, CancellationToken)

public virtual Task<Policy> SetIamPolicyAsync(IResourceName resource, Policy policy, CancellationToken cancellationToken)

Sets the access control policy on the specified Source.

Parameters
Name Description
resource IResourceName

REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.

policy Policy

REQUIRED: The complete policy to be applied to the resource. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud Platform services (such as Projects) might reject them.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
IResourceName resource = new UnparsedResourceName("a/wildcard/resource");
Policy policy = new Policy();
// Make the request
Policy response = await securityCenterClient.SetIamPolicyAsync(resource, policy);

SetIamPolicyAsync(SetIamPolicyRequest, CallSettings)

public virtual Task<Policy> SetIamPolicyAsync(SetIamPolicyRequest request, CallSettings callSettings = null)

Sets the access control policy on the specified Source.

Parameters
Name Description
request SetIamPolicyRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SetIamPolicyRequest request = new SetIamPolicyRequest
{
    ResourceAsResourceName = new UnparsedResourceName("a/wildcard/resource"),
    Policy = new Policy(),
    UpdateMask = new FieldMask(),
};
// Make the request
Policy response = await securityCenterClient.SetIamPolicyAsync(request);

SetIamPolicyAsync(SetIamPolicyRequest, CancellationToken)

public virtual Task<Policy> SetIamPolicyAsync(SetIamPolicyRequest request, CancellationToken cancellationToken)

Sets the access control policy on the specified Source.

Parameters
Name Description
request SetIamPolicyRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SetIamPolicyRequest request = new SetIamPolicyRequest
{
    ResourceAsResourceName = new UnparsedResourceName("a/wildcard/resource"),
    Policy = new Policy(),
    UpdateMask = new FieldMask(),
};
// Make the request
Policy response = await securityCenterClient.SetIamPolicyAsync(request);

SetIamPolicyAsync(string, Policy, CallSettings)

public virtual Task<Policy> SetIamPolicyAsync(string resource, Policy policy, CallSettings callSettings = null)

Sets the access control policy on the specified Source.

Parameters
Name Description
resource string

REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.

policy Policy

REQUIRED: The complete policy to be applied to the resource. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud Platform services (such as Projects) might reject them.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string resource = "a/wildcard/resource";
Policy policy = new Policy();
// Make the request
Policy response = await securityCenterClient.SetIamPolicyAsync(resource, policy);

SetIamPolicyAsync(string, Policy, CancellationToken)

public virtual Task<Policy> SetIamPolicyAsync(string resource, Policy policy, CancellationToken cancellationToken)

Sets the access control policy on the specified Source.

Parameters
Name Description
resource string

REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.

policy Policy

REQUIRED: The complete policy to be applied to the resource. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud Platform services (such as Projects) might reject them.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string resource = "a/wildcard/resource";
Policy policy = new Policy();
// Make the request
Policy response = await securityCenterClient.SetIamPolicyAsync(resource, policy);

SetMute(FindingName, Mute, CallSettings)

public virtual Finding SetMute(FindingName name, Finding.Types.Mute mute, CallSettings callSettings = null)

Updates the mute state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
name FindingName

Required. The relative resource name of the finding. If no location is specified, finding is assumed to be in global. The following list shows some examples:

+ organizations/{organization_id}/sources/{source_id}/findings/{finding_id} + organizations/{organization_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}

  • folders/{folder_id}/sources/{source_id}/findings/{finding_id} + folders/{folder_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
  • projects/{project_id}/sources/{source_id}/findings/{finding_id} + projects/{project_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
mute FindingTypesMute

Required. The desired state of the Mute.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Finding

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
FindingName name = FindingName.FromOrganizationSourceFinding("[ORGANIZATION]", "[SOURCE]", "[FINDING]");
Finding.Types.Mute mute = Finding.Types.Mute.Unspecified;
// Make the request
Finding response = securityCenterClient.SetMute(name, mute);

SetMute(SetMuteRequest, CallSettings)

public virtual Finding SetMute(SetMuteRequest request, CallSettings callSettings = null)

Updates the mute state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
request SetMuteRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Finding

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
SetMuteRequest request = new SetMuteRequest
{
    FindingName = FindingName.FromOrganizationSourceFinding("[ORGANIZATION]", "[SOURCE]", "[FINDING]"),
    Mute = Finding.Types.Mute.Unspecified,
};
// Make the request
Finding response = securityCenterClient.SetMute(request);

SetMute(string, Mute, CallSettings)

public virtual Finding SetMute(string name, Finding.Types.Mute mute, CallSettings callSettings = null)

Updates the mute state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
name string

Required. The relative resource name of the finding. If no location is specified, finding is assumed to be in global. The following list shows some examples:

+ organizations/{organization_id}/sources/{source_id}/findings/{finding_id} + organizations/{organization_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}

  • folders/{folder_id}/sources/{source_id}/findings/{finding_id} + folders/{folder_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
  • projects/{project_id}/sources/{source_id}/findings/{finding_id} + projects/{project_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
mute FindingTypesMute

Required. The desired state of the Mute.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Finding

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/sources/[SOURCE]/findings/[FINDING]";
Finding.Types.Mute mute = Finding.Types.Mute.Unspecified;
// Make the request
Finding response = securityCenterClient.SetMute(name, mute);

SetMuteAsync(FindingName, Mute, CallSettings)

public virtual Task<Finding> SetMuteAsync(FindingName name, Finding.Types.Mute mute, CallSettings callSettings = null)

Updates the mute state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
name FindingName

Required. The relative resource name of the finding. If no location is specified, finding is assumed to be in global. The following list shows some examples:

+ organizations/{organization_id}/sources/{source_id}/findings/{finding_id} + organizations/{organization_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}

  • folders/{folder_id}/sources/{source_id}/findings/{finding_id} + folders/{folder_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
  • projects/{project_id}/sources/{source_id}/findings/{finding_id} + projects/{project_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
mute FindingTypesMute

Required. The desired state of the Mute.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FindingName name = FindingName.FromOrganizationSourceFinding("[ORGANIZATION]", "[SOURCE]", "[FINDING]");
Finding.Types.Mute mute = Finding.Types.Mute.Unspecified;
// Make the request
Finding response = await securityCenterClient.SetMuteAsync(name, mute);

SetMuteAsync(FindingName, Mute, CancellationToken)

public virtual Task<Finding> SetMuteAsync(FindingName name, Finding.Types.Mute mute, CancellationToken cancellationToken)

Updates the mute state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
name FindingName

Required. The relative resource name of the finding. If no location is specified, finding is assumed to be in global. The following list shows some examples:

+ organizations/{organization_id}/sources/{source_id}/findings/{finding_id} + organizations/{organization_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}

  • folders/{folder_id}/sources/{source_id}/findings/{finding_id} + folders/{folder_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
  • projects/{project_id}/sources/{source_id}/findings/{finding_id} + projects/{project_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
mute FindingTypesMute

Required. The desired state of the Mute.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
FindingName name = FindingName.FromOrganizationSourceFinding("[ORGANIZATION]", "[SOURCE]", "[FINDING]");
Finding.Types.Mute mute = Finding.Types.Mute.Unspecified;
// Make the request
Finding response = await securityCenterClient.SetMuteAsync(name, mute);

SetMuteAsync(SetMuteRequest, CallSettings)

public virtual Task<Finding> SetMuteAsync(SetMuteRequest request, CallSettings callSettings = null)

Updates the mute state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
request SetMuteRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SetMuteRequest request = new SetMuteRequest
{
    FindingName = FindingName.FromOrganizationSourceFinding("[ORGANIZATION]", "[SOURCE]", "[FINDING]"),
    Mute = Finding.Types.Mute.Unspecified,
};
// Make the request
Finding response = await securityCenterClient.SetMuteAsync(request);

SetMuteAsync(SetMuteRequest, CancellationToken)

public virtual Task<Finding> SetMuteAsync(SetMuteRequest request, CancellationToken cancellationToken)

Updates the mute state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
request SetMuteRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SetMuteRequest request = new SetMuteRequest
{
    FindingName = FindingName.FromOrganizationSourceFinding("[ORGANIZATION]", "[SOURCE]", "[FINDING]"),
    Mute = Finding.Types.Mute.Unspecified,
};
// Make the request
Finding response = await securityCenterClient.SetMuteAsync(request);

SetMuteAsync(string, Mute, CallSettings)

public virtual Task<Finding> SetMuteAsync(string name, Finding.Types.Mute mute, CallSettings callSettings = null)

Updates the mute state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
name string

Required. The relative resource name of the finding. If no location is specified, finding is assumed to be in global. The following list shows some examples:

+ organizations/{organization_id}/sources/{source_id}/findings/{finding_id} + organizations/{organization_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}

  • folders/{folder_id}/sources/{source_id}/findings/{finding_id} + folders/{folder_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
  • projects/{project_id}/sources/{source_id}/findings/{finding_id} + projects/{project_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
mute FindingTypesMute

Required. The desired state of the Mute.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/sources/[SOURCE]/findings/[FINDING]";
Finding.Types.Mute mute = Finding.Types.Mute.Unspecified;
// Make the request
Finding response = await securityCenterClient.SetMuteAsync(name, mute);

SetMuteAsync(string, Mute, CancellationToken)

public virtual Task<Finding> SetMuteAsync(string name, Finding.Types.Mute mute, CancellationToken cancellationToken)

Updates the mute state of a finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
name string

Required. The relative resource name of the finding. If no location is specified, finding is assumed to be in global. The following list shows some examples:

+ organizations/{organization_id}/sources/{source_id}/findings/{finding_id} + organizations/{organization_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}

  • folders/{folder_id}/sources/{source_id}/findings/{finding_id} + folders/{folder_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
  • projects/{project_id}/sources/{source_id}/findings/{finding_id} + projects/{project_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}
mute FindingTypesMute

Required. The desired state of the Mute.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/sources/[SOURCE]/findings/[FINDING]";
Finding.Types.Mute mute = Finding.Types.Mute.Unspecified;
// Make the request
Finding response = await securityCenterClient.SetMuteAsync(name, mute);

ShutdownDefaultChannelsAsync()

public static Task ShutdownDefaultChannelsAsync()

Shuts down any channels automatically created by Create() and CreateAsync(CancellationToken). Channels which weren't automatically created are not affected.

Returns
Type Description
Task

A task representing the asynchronous shutdown operation.

Remarks

After calling this method, further calls to Create() and CreateAsync(CancellationToken) will create new channels, which could in turn be shut down by another call to this method.

TestIamPermissions(IResourceName, IEnumerable<string>, CallSettings)

public virtual TestIamPermissionsResponse TestIamPermissions(IResourceName resource, IEnumerable<string> permissions, CallSettings callSettings = null)

Returns the permissions that a caller has on the specified source.

Parameters
Name Description
resource IResourceName

REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.

permissions IEnumerablestring

The set of permissions to check for the resource. Permissions with wildcards (such as '' or 'storage.') are not allowed. For more information see IAM Overview.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TestIamPermissionsResponse

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
IResourceName resource = new UnparsedResourceName("a/wildcard/resource");
IEnumerable<string> permissions = new string[] { "", };
// Make the request
TestIamPermissionsResponse response = securityCenterClient.TestIamPermissions(resource, permissions);

TestIamPermissions(TestIamPermissionsRequest, CallSettings)

public virtual TestIamPermissionsResponse TestIamPermissions(TestIamPermissionsRequest request, CallSettings callSettings = null)

Returns the permissions that a caller has on the specified source.

Parameters
Name Description
request TestIamPermissionsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TestIamPermissionsResponse

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
TestIamPermissionsRequest request = new TestIamPermissionsRequest
{
    ResourceAsResourceName = new UnparsedResourceName("a/wildcard/resource"),
    Permissions = { "", },
};
// Make the request
TestIamPermissionsResponse response = securityCenterClient.TestIamPermissions(request);

TestIamPermissions(string, IEnumerable<string>, CallSettings)

public virtual TestIamPermissionsResponse TestIamPermissions(string resource, IEnumerable<string> permissions, CallSettings callSettings = null)

Returns the permissions that a caller has on the specified source.

Parameters
Name Description
resource string

REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.

permissions IEnumerablestring

The set of permissions to check for the resource. Permissions with wildcards (such as '' or 'storage.') are not allowed. For more information see IAM Overview.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TestIamPermissionsResponse

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
string resource = "a/wildcard/resource";
IEnumerable<string> permissions = new string[] { "", };
// Make the request
TestIamPermissionsResponse response = securityCenterClient.TestIamPermissions(resource, permissions);

TestIamPermissionsAsync(IResourceName, IEnumerable<string>, CallSettings)

public virtual Task<TestIamPermissionsResponse> TestIamPermissionsAsync(IResourceName resource, IEnumerable<string> permissions, CallSettings callSettings = null)

Returns the permissions that a caller has on the specified source.

Parameters
Name Description
resource IResourceName

REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.

permissions IEnumerablestring

The set of permissions to check for the resource. Permissions with wildcards (such as '' or 'storage.') are not allowed. For more information see IAM Overview.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskTestIamPermissionsResponse

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
IResourceName resource = new UnparsedResourceName("a/wildcard/resource");
IEnumerable<string> permissions = new string[] { "", };
// Make the request
TestIamPermissionsResponse response = await securityCenterClient.TestIamPermissionsAsync(resource, permissions);

TestIamPermissionsAsync(IResourceName, IEnumerable<string>, CancellationToken)

public virtual Task<TestIamPermissionsResponse> TestIamPermissionsAsync(IResourceName resource, IEnumerable<string> permissions, CancellationToken cancellationToken)

Returns the permissions that a caller has on the specified source.

Parameters
Name Description
resource IResourceName

REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.

permissions IEnumerablestring

The set of permissions to check for the resource. Permissions with wildcards (such as '' or 'storage.') are not allowed. For more information see IAM Overview.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskTestIamPermissionsResponse

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
IResourceName resource = new UnparsedResourceName("a/wildcard/resource");
IEnumerable<string> permissions = new string[] { "", };
// Make the request
TestIamPermissionsResponse response = await securityCenterClient.TestIamPermissionsAsync(resource, permissions);

TestIamPermissionsAsync(TestIamPermissionsRequest, CallSettings)

public virtual Task<TestIamPermissionsResponse> TestIamPermissionsAsync(TestIamPermissionsRequest request, CallSettings callSettings = null)

Returns the permissions that a caller has on the specified source.

Parameters
Name Description
request TestIamPermissionsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskTestIamPermissionsResponse

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
TestIamPermissionsRequest request = new TestIamPermissionsRequest
{
    ResourceAsResourceName = new UnparsedResourceName("a/wildcard/resource"),
    Permissions = { "", },
};
// Make the request
TestIamPermissionsResponse response = await securityCenterClient.TestIamPermissionsAsync(request);

TestIamPermissionsAsync(TestIamPermissionsRequest, CancellationToken)

public virtual Task<TestIamPermissionsResponse> TestIamPermissionsAsync(TestIamPermissionsRequest request, CancellationToken cancellationToken)

Returns the permissions that a caller has on the specified source.

Parameters
Name Description
request TestIamPermissionsRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskTestIamPermissionsResponse

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
TestIamPermissionsRequest request = new TestIamPermissionsRequest
{
    ResourceAsResourceName = new UnparsedResourceName("a/wildcard/resource"),
    Permissions = { "", },
};
// Make the request
TestIamPermissionsResponse response = await securityCenterClient.TestIamPermissionsAsync(request);

TestIamPermissionsAsync(string, IEnumerable<string>, CallSettings)

public virtual Task<TestIamPermissionsResponse> TestIamPermissionsAsync(string resource, IEnumerable<string> permissions, CallSettings callSettings = null)

Returns the permissions that a caller has on the specified source.

Parameters
Name Description
resource string

REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.

permissions IEnumerablestring

The set of permissions to check for the resource. Permissions with wildcards (such as '' or 'storage.') are not allowed. For more information see IAM Overview.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskTestIamPermissionsResponse

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string resource = "a/wildcard/resource";
IEnumerable<string> permissions = new string[] { "", };
// Make the request
TestIamPermissionsResponse response = await securityCenterClient.TestIamPermissionsAsync(resource, permissions);

TestIamPermissionsAsync(string, IEnumerable<string>, CancellationToken)

public virtual Task<TestIamPermissionsResponse> TestIamPermissionsAsync(string resource, IEnumerable<string> permissions, CancellationToken cancellationToken)

Returns the permissions that a caller has on the specified source.

Parameters
Name Description
resource string

REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.

permissions IEnumerablestring

The set of permissions to check for the resource. Permissions with wildcards (such as '' or 'storage.') are not allowed. For more information see IAM Overview.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskTestIamPermissionsResponse

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
string resource = "a/wildcard/resource";
IEnumerable<string> permissions = new string[] { "", };
// Make the request
TestIamPermissionsResponse response = await securityCenterClient.TestIamPermissionsAsync(resource, permissions);

UpdateBigQueryExport(BigQueryExport, FieldMask, CallSettings)

public virtual BigQueryExport UpdateBigQueryExport(BigQueryExport bigQueryExport, FieldMask updateMask, CallSettings callSettings = null)

Updates a BigQuery export.

Parameters
Name Description
bigQueryExport BigQueryExport

Required. The BigQuery export being updated.

updateMask FieldMask

The list of fields to be updated. If empty all mutable fields will be updated.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
BigQueryExport

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
BigQueryExport bigQueryExport = new BigQueryExport();
FieldMask updateMask = new FieldMask();
// Make the request
BigQueryExport response = securityCenterClient.UpdateBigQueryExport(bigQueryExport, updateMask);

UpdateBigQueryExport(UpdateBigQueryExportRequest, CallSettings)

public virtual BigQueryExport UpdateBigQueryExport(UpdateBigQueryExportRequest request, CallSettings callSettings = null)

Updates a BigQuery export.

Parameters
Name Description
request UpdateBigQueryExportRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
BigQueryExport

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
UpdateBigQueryExportRequest request = new UpdateBigQueryExportRequest
{
    BigQueryExport = new BigQueryExport(),
    UpdateMask = new FieldMask(),
};
// Make the request
BigQueryExport response = securityCenterClient.UpdateBigQueryExport(request);

UpdateBigQueryExportAsync(BigQueryExport, FieldMask, CallSettings)

public virtual Task<BigQueryExport> UpdateBigQueryExportAsync(BigQueryExport bigQueryExport, FieldMask updateMask, CallSettings callSettings = null)

Updates a BigQuery export.

Parameters
Name Description
bigQueryExport BigQueryExport

Required. The BigQuery export being updated.

updateMask FieldMask

The list of fields to be updated. If empty all mutable fields will be updated.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
BigQueryExport bigQueryExport = new BigQueryExport();
FieldMask updateMask = new FieldMask();
// Make the request
BigQueryExport response = await securityCenterClient.UpdateBigQueryExportAsync(bigQueryExport, updateMask);

UpdateBigQueryExportAsync(BigQueryExport, FieldMask, CancellationToken)

public virtual Task<BigQueryExport> UpdateBigQueryExportAsync(BigQueryExport bigQueryExport, FieldMask updateMask, CancellationToken cancellationToken)

Updates a BigQuery export.

Parameters
Name Description
bigQueryExport BigQueryExport

Required. The BigQuery export being updated.

updateMask FieldMask

The list of fields to be updated. If empty all mutable fields will be updated.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
BigQueryExport bigQueryExport = new BigQueryExport();
FieldMask updateMask = new FieldMask();
// Make the request
BigQueryExport response = await securityCenterClient.UpdateBigQueryExportAsync(bigQueryExport, updateMask);

UpdateBigQueryExportAsync(UpdateBigQueryExportRequest, CallSettings)

public virtual Task<BigQueryExport> UpdateBigQueryExportAsync(UpdateBigQueryExportRequest request, CallSettings callSettings = null)

Updates a BigQuery export.

Parameters
Name Description
request UpdateBigQueryExportRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateBigQueryExportRequest request = new UpdateBigQueryExportRequest
{
    BigQueryExport = new BigQueryExport(),
    UpdateMask = new FieldMask(),
};
// Make the request
BigQueryExport response = await securityCenterClient.UpdateBigQueryExportAsync(request);

UpdateBigQueryExportAsync(UpdateBigQueryExportRequest, CancellationToken)

public virtual Task<BigQueryExport> UpdateBigQueryExportAsync(UpdateBigQueryExportRequest request, CancellationToken cancellationToken)

Updates a BigQuery export.

Parameters
Name Description
request UpdateBigQueryExportRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskBigQueryExport

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateBigQueryExportRequest request = new UpdateBigQueryExportRequest
{
    BigQueryExport = new BigQueryExport(),
    UpdateMask = new FieldMask(),
};
// Make the request
BigQueryExport response = await securityCenterClient.UpdateBigQueryExportAsync(request);

UpdateExternalSystem(ExternalSystem, FieldMask, CallSettings)

public virtual ExternalSystem UpdateExternalSystem(ExternalSystem externalSystem, FieldMask updateMask, CallSettings callSettings = null)

Updates external system. This is for a given finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
externalSystem ExternalSystem

Required. The external system resource to update.

updateMask FieldMask

The FieldMask to use when updating the external system resource.

If empty all mutable fields will be updated.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
ExternalSystem

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ExternalSystem externalSystem = new ExternalSystem();
FieldMask updateMask = new FieldMask();
// Make the request
ExternalSystem response = securityCenterClient.UpdateExternalSystem(externalSystem, updateMask);

UpdateExternalSystem(UpdateExternalSystemRequest, CallSettings)

public virtual ExternalSystem UpdateExternalSystem(UpdateExternalSystemRequest request, CallSettings callSettings = null)

Updates external system. This is for a given finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
request UpdateExternalSystemRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
ExternalSystem

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
UpdateExternalSystemRequest request = new UpdateExternalSystemRequest
{
    ExternalSystem = new ExternalSystem(),
    UpdateMask = new FieldMask(),
};
// Make the request
ExternalSystem response = securityCenterClient.UpdateExternalSystem(request);

UpdateExternalSystemAsync(ExternalSystem, FieldMask, CallSettings)

public virtual Task<ExternalSystem> UpdateExternalSystemAsync(ExternalSystem externalSystem, FieldMask updateMask, CallSettings callSettings = null)

Updates external system. This is for a given finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
externalSystem ExternalSystem

Required. The external system resource to update.

updateMask FieldMask

The FieldMask to use when updating the external system resource.

If empty all mutable fields will be updated.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskExternalSystem

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ExternalSystem externalSystem = new ExternalSystem();
FieldMask updateMask = new FieldMask();
// Make the request
ExternalSystem response = await securityCenterClient.UpdateExternalSystemAsync(externalSystem, updateMask);

UpdateExternalSystemAsync(ExternalSystem, FieldMask, CancellationToken)

public virtual Task<ExternalSystem> UpdateExternalSystemAsync(ExternalSystem externalSystem, FieldMask updateMask, CancellationToken cancellationToken)

Updates external system. This is for a given finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
externalSystem ExternalSystem

Required. The external system resource to update.

updateMask FieldMask

The FieldMask to use when updating the external system resource.

If empty all mutable fields will be updated.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskExternalSystem

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ExternalSystem externalSystem = new ExternalSystem();
FieldMask updateMask = new FieldMask();
// Make the request
ExternalSystem response = await securityCenterClient.UpdateExternalSystemAsync(externalSystem, updateMask);

UpdateExternalSystemAsync(UpdateExternalSystemRequest, CallSettings)

public virtual Task<ExternalSystem> UpdateExternalSystemAsync(UpdateExternalSystemRequest request, CallSettings callSettings = null)

Updates external system. This is for a given finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
request UpdateExternalSystemRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskExternalSystem

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateExternalSystemRequest request = new UpdateExternalSystemRequest
{
    ExternalSystem = new ExternalSystem(),
    UpdateMask = new FieldMask(),
};
// Make the request
ExternalSystem response = await securityCenterClient.UpdateExternalSystemAsync(request);

UpdateExternalSystemAsync(UpdateExternalSystemRequest, CancellationToken)

public virtual Task<ExternalSystem> UpdateExternalSystemAsync(UpdateExternalSystemRequest request, CancellationToken cancellationToken)

Updates external system. This is for a given finding. If no location is specified, finding is assumed to be in global

Parameters
Name Description
request UpdateExternalSystemRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskExternalSystem

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateExternalSystemRequest request = new UpdateExternalSystemRequest
{
    ExternalSystem = new ExternalSystem(),
    UpdateMask = new FieldMask(),
};
// Make the request
ExternalSystem response = await securityCenterClient.UpdateExternalSystemAsync(request);

UpdateFinding(Finding, FieldMask, CallSettings)

public virtual Finding UpdateFinding(Finding finding, FieldMask updateMask, CallSettings callSettings = null)

Creates or updates a finding. If no location is specified, finding is assumed to be in global. The corresponding source must exist for a finding creation to succeed.

Parameters
Name Description
finding Finding

Required. The finding resource to update or create if it does not already exist. parent, security_marks, and update_time will be ignored.

In the case of creation, the finding id portion of the name must be alphanumeric and less than or equal to 32 characters and greater than 0 characters in length.

updateMask FieldMask

The FieldMask to use when updating the finding resource. This field should not be specified when creating a finding.

When updating a finding, an empty mask is treated as updating all mutable fields and replacing source_properties. Individual source_properties can be added/updated by using "source_properties.<property key>" in the field mask.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Finding

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
Finding finding = new Finding();
FieldMask updateMask = new FieldMask();
// Make the request
Finding response = securityCenterClient.UpdateFinding(finding, updateMask);

UpdateFinding(UpdateFindingRequest, CallSettings)

public virtual Finding UpdateFinding(UpdateFindingRequest request, CallSettings callSettings = null)

Creates or updates a finding. If no location is specified, finding is assumed to be in global. The corresponding source must exist for a finding creation to succeed.

Parameters
Name Description
request UpdateFindingRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Finding

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
UpdateFindingRequest request = new UpdateFindingRequest
{
    Finding = new Finding(),
    UpdateMask = new FieldMask(),
};
// Make the request
Finding response = securityCenterClient.UpdateFinding(request);

UpdateFindingAsync(Finding, FieldMask, CallSettings)

public virtual Task<Finding> UpdateFindingAsync(Finding finding, FieldMask updateMask, CallSettings callSettings = null)

Creates or updates a finding. If no location is specified, finding is assumed to be in global. The corresponding source must exist for a finding creation to succeed.

Parameters
Name Description
finding Finding

Required. The finding resource to update or create if it does not already exist. parent, security_marks, and update_time will be ignored.

In the case of creation, the finding id portion of the name must be alphanumeric and less than or equal to 32 characters and greater than 0 characters in length.

updateMask FieldMask

The FieldMask to use when updating the finding resource. This field should not be specified when creating a finding.

When updating a finding, an empty mask is treated as updating all mutable fields and replacing source_properties. Individual source_properties can be added/updated by using "source_properties.<property key>" in the field mask.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
Finding finding = new Finding();
FieldMask updateMask = new FieldMask();
// Make the request
Finding response = await securityCenterClient.UpdateFindingAsync(finding, updateMask);

UpdateFindingAsync(Finding, FieldMask, CancellationToken)

public virtual Task<Finding> UpdateFindingAsync(Finding finding, FieldMask updateMask, CancellationToken cancellationToken)

Creates or updates a finding. If no location is specified, finding is assumed to be in global. The corresponding source must exist for a finding creation to succeed.

Parameters
Name Description
finding Finding

Required. The finding resource to update or create if it does not already exist. parent, security_marks, and update_time will be ignored.

In the case of creation, the finding id portion of the name must be alphanumeric and less than or equal to 32 characters and greater than 0 characters in length.

updateMask FieldMask

The FieldMask to use when updating the finding resource. This field should not be specified when creating a finding.

When updating a finding, an empty mask is treated as updating all mutable fields and replacing source_properties. Individual source_properties can be added/updated by using "source_properties.<property key>" in the field mask.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
Finding finding = new Finding();
FieldMask updateMask = new FieldMask();
// Make the request
Finding response = await securityCenterClient.UpdateFindingAsync(finding, updateMask);

UpdateFindingAsync(UpdateFindingRequest, CallSettings)

public virtual Task<Finding> UpdateFindingAsync(UpdateFindingRequest request, CallSettings callSettings = null)

Creates or updates a finding. If no location is specified, finding is assumed to be in global. The corresponding source must exist for a finding creation to succeed.

Parameters
Name Description
request UpdateFindingRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateFindingRequest request = new UpdateFindingRequest
{
    Finding = new Finding(),
    UpdateMask = new FieldMask(),
};
// Make the request
Finding response = await securityCenterClient.UpdateFindingAsync(request);

UpdateFindingAsync(UpdateFindingRequest, CancellationToken)

public virtual Task<Finding> UpdateFindingAsync(UpdateFindingRequest request, CancellationToken cancellationToken)

Creates or updates a finding. If no location is specified, finding is assumed to be in global. The corresponding source must exist for a finding creation to succeed.

Parameters
Name Description
request UpdateFindingRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskFinding

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateFindingRequest request = new UpdateFindingRequest
{
    Finding = new Finding(),
    UpdateMask = new FieldMask(),
};
// Make the request
Finding response = await securityCenterClient.UpdateFindingAsync(request);

UpdateMuteConfig(MuteConfig, FieldMask, CallSettings)

public virtual MuteConfig UpdateMuteConfig(MuteConfig muteConfig, FieldMask updateMask, CallSettings callSettings = null)

Updates a mute config. If no location is specified, default is global.

Parameters
Name Description
muteConfig MuteConfig

Required. The mute config being updated.

updateMask FieldMask

The list of fields to be updated. If empty all mutable fields will be updated.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
MuteConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
MuteConfig muteConfig = new MuteConfig();
FieldMask updateMask = new FieldMask();
// Make the request
MuteConfig response = securityCenterClient.UpdateMuteConfig(muteConfig, updateMask);

UpdateMuteConfig(UpdateMuteConfigRequest, CallSettings)

public virtual MuteConfig UpdateMuteConfig(UpdateMuteConfigRequest request, CallSettings callSettings = null)

Updates a mute config. If no location is specified, default is global.

Parameters
Name Description
request UpdateMuteConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
MuteConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
UpdateMuteConfigRequest request = new UpdateMuteConfigRequest
{
    MuteConfig = new MuteConfig(),
    UpdateMask = new FieldMask(),
};
// Make the request
MuteConfig response = securityCenterClient.UpdateMuteConfig(request);

UpdateMuteConfigAsync(MuteConfig, FieldMask, CallSettings)

public virtual Task<MuteConfig> UpdateMuteConfigAsync(MuteConfig muteConfig, FieldMask updateMask, CallSettings callSettings = null)

Updates a mute config. If no location is specified, default is global.

Parameters
Name Description
muteConfig MuteConfig

Required. The mute config being updated.

updateMask FieldMask

The list of fields to be updated. If empty all mutable fields will be updated.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
MuteConfig muteConfig = new MuteConfig();
FieldMask updateMask = new FieldMask();
// Make the request
MuteConfig response = await securityCenterClient.UpdateMuteConfigAsync(muteConfig, updateMask);

UpdateMuteConfigAsync(MuteConfig, FieldMask, CancellationToken)

public virtual Task<MuteConfig> UpdateMuteConfigAsync(MuteConfig muteConfig, FieldMask updateMask, CancellationToken cancellationToken)

Updates a mute config. If no location is specified, default is global.

Parameters
Name Description
muteConfig MuteConfig

Required. The mute config being updated.

updateMask FieldMask

The list of fields to be updated. If empty all mutable fields will be updated.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
MuteConfig muteConfig = new MuteConfig();
FieldMask updateMask = new FieldMask();
// Make the request
MuteConfig response = await securityCenterClient.UpdateMuteConfigAsync(muteConfig, updateMask);

UpdateMuteConfigAsync(UpdateMuteConfigRequest, CallSettings)

public virtual Task<MuteConfig> UpdateMuteConfigAsync(UpdateMuteConfigRequest request, CallSettings callSettings = null)

Updates a mute config. If no location is specified, default is global.

Parameters
Name Description
request UpdateMuteConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateMuteConfigRequest request = new UpdateMuteConfigRequest
{
    MuteConfig = new MuteConfig(),
    UpdateMask = new FieldMask(),
};
// Make the request
MuteConfig response = await securityCenterClient.UpdateMuteConfigAsync(request);

UpdateMuteConfigAsync(UpdateMuteConfigRequest, CancellationToken)

public virtual Task<MuteConfig> UpdateMuteConfigAsync(UpdateMuteConfigRequest request, CancellationToken cancellationToken)

Updates a mute config. If no location is specified, default is global.

Parameters
Name Description
request UpdateMuteConfigRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskMuteConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateMuteConfigRequest request = new UpdateMuteConfigRequest
{
    MuteConfig = new MuteConfig(),
    UpdateMask = new FieldMask(),
};
// Make the request
MuteConfig response = await securityCenterClient.UpdateMuteConfigAsync(request);

UpdateNotificationConfig(NotificationConfig, FieldMask, CallSettings)

public virtual NotificationConfig UpdateNotificationConfig(NotificationConfig notificationConfig, FieldMask updateMask, CallSettings callSettings = null)

Updates a notification config. The following update fields are allowed: description, pubsub_topic, streaming_config.filter

Parameters
Name Description
notificationConfig NotificationConfig

Required. The notification config to update.

updateMask FieldMask

The FieldMask to use when updating the notification config.

If empty all mutable fields will be updated.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
NotificationConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
NotificationConfig notificationConfig = new NotificationConfig();
FieldMask updateMask = new FieldMask();
// Make the request
NotificationConfig response = securityCenterClient.UpdateNotificationConfig(notificationConfig, updateMask);

UpdateNotificationConfig(UpdateNotificationConfigRequest, CallSettings)

public virtual NotificationConfig UpdateNotificationConfig(UpdateNotificationConfigRequest request, CallSettings callSettings = null)

Updates a notification config. The following update fields are allowed: description, pubsub_topic, streaming_config.filter

Parameters
Name Description
request UpdateNotificationConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
NotificationConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
UpdateNotificationConfigRequest request = new UpdateNotificationConfigRequest
{
    NotificationConfig = new NotificationConfig(),
    UpdateMask = new FieldMask(),
};
// Make the request
NotificationConfig response = securityCenterClient.UpdateNotificationConfig(request);

UpdateNotificationConfigAsync(NotificationConfig, FieldMask, CallSettings)

public virtual Task<NotificationConfig> UpdateNotificationConfigAsync(NotificationConfig notificationConfig, FieldMask updateMask, CallSettings callSettings = null)

Updates a notification config. The following update fields are allowed: description, pubsub_topic, streaming_config.filter

Parameters
Name Description
notificationConfig NotificationConfig

Required. The notification config to update.

updateMask FieldMask

The FieldMask to use when updating the notification config.

If empty all mutable fields will be updated.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
NotificationConfig notificationConfig = new NotificationConfig();
FieldMask updateMask = new FieldMask();
// Make the request
NotificationConfig response = await securityCenterClient.UpdateNotificationConfigAsync(notificationConfig, updateMask);

UpdateNotificationConfigAsync(NotificationConfig, FieldMask, CancellationToken)

public virtual Task<NotificationConfig> UpdateNotificationConfigAsync(NotificationConfig notificationConfig, FieldMask updateMask, CancellationToken cancellationToken)

Updates a notification config. The following update fields are allowed: description, pubsub_topic, streaming_config.filter

Parameters
Name Description
notificationConfig NotificationConfig

Required. The notification config to update.

updateMask FieldMask

The FieldMask to use when updating the notification config.

If empty all mutable fields will be updated.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
NotificationConfig notificationConfig = new NotificationConfig();
FieldMask updateMask = new FieldMask();
// Make the request
NotificationConfig response = await securityCenterClient.UpdateNotificationConfigAsync(notificationConfig, updateMask);

UpdateNotificationConfigAsync(UpdateNotificationConfigRequest, CallSettings)

public virtual Task<NotificationConfig> UpdateNotificationConfigAsync(UpdateNotificationConfigRequest request, CallSettings callSettings = null)

Updates a notification config. The following update fields are allowed: description, pubsub_topic, streaming_config.filter

Parameters
Name Description
request UpdateNotificationConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateNotificationConfigRequest request = new UpdateNotificationConfigRequest
{
    NotificationConfig = new NotificationConfig(),
    UpdateMask = new FieldMask(),
};
// Make the request
NotificationConfig response = await securityCenterClient.UpdateNotificationConfigAsync(request);

UpdateNotificationConfigAsync(UpdateNotificationConfigRequest, CancellationToken)

public virtual Task<NotificationConfig> UpdateNotificationConfigAsync(UpdateNotificationConfigRequest request, CancellationToken cancellationToken)

Updates a notification config. The following update fields are allowed: description, pubsub_topic, streaming_config.filter

Parameters
Name Description
request UpdateNotificationConfigRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskNotificationConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateNotificationConfigRequest request = new UpdateNotificationConfigRequest
{
    NotificationConfig = new NotificationConfig(),
    UpdateMask = new FieldMask(),
};
// Make the request
NotificationConfig response = await securityCenterClient.UpdateNotificationConfigAsync(request);

UpdateResourceValueConfig(ResourceValueConfig, FieldMask, CallSettings)

public virtual ResourceValueConfig UpdateResourceValueConfig(ResourceValueConfig resourceValueConfig, FieldMask updateMask, CallSettings callSettings = null)

Updates an existing ResourceValueConfigs with new rules.

Parameters
Name Description
resourceValueConfig ResourceValueConfig

Required. The resource value config being updated.

updateMask FieldMask

The list of fields to be updated. If empty all mutable fields will be updated.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
ResourceValueConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
ResourceValueConfig resourceValueConfig = new ResourceValueConfig();
FieldMask updateMask = new FieldMask();
// Make the request
ResourceValueConfig response = securityCenterClient.UpdateResourceValueConfig(resourceValueConfig, updateMask);

UpdateResourceValueConfig(UpdateResourceValueConfigRequest, CallSettings)

public virtual ResourceValueConfig UpdateResourceValueConfig(UpdateResourceValueConfigRequest request, CallSettings callSettings = null)

Updates an existing ResourceValueConfigs with new rules.

Parameters
Name Description
request UpdateResourceValueConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
ResourceValueConfig

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
UpdateResourceValueConfigRequest request = new UpdateResourceValueConfigRequest
{
    ResourceValueConfig = new ResourceValueConfig(),
    UpdateMask = new FieldMask(),
};
// Make the request
ResourceValueConfig response = securityCenterClient.UpdateResourceValueConfig(request);

UpdateResourceValueConfigAsync(ResourceValueConfig, FieldMask, CallSettings)

public virtual Task<ResourceValueConfig> UpdateResourceValueConfigAsync(ResourceValueConfig resourceValueConfig, FieldMask updateMask, CallSettings callSettings = null)

Updates an existing ResourceValueConfigs with new rules.

Parameters
Name Description
resourceValueConfig ResourceValueConfig

Required. The resource value config being updated.

updateMask FieldMask

The list of fields to be updated. If empty all mutable fields will be updated.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskResourceValueConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ResourceValueConfig resourceValueConfig = new ResourceValueConfig();
FieldMask updateMask = new FieldMask();
// Make the request
ResourceValueConfig response = await securityCenterClient.UpdateResourceValueConfigAsync(resourceValueConfig, updateMask);

UpdateResourceValueConfigAsync(ResourceValueConfig, FieldMask, CancellationToken)

public virtual Task<ResourceValueConfig> UpdateResourceValueConfigAsync(ResourceValueConfig resourceValueConfig, FieldMask updateMask, CancellationToken cancellationToken)

Updates an existing ResourceValueConfigs with new rules.

Parameters
Name Description
resourceValueConfig ResourceValueConfig

Required. The resource value config being updated.

updateMask FieldMask

The list of fields to be updated. If empty all mutable fields will be updated.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskResourceValueConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
ResourceValueConfig resourceValueConfig = new ResourceValueConfig();
FieldMask updateMask = new FieldMask();
// Make the request
ResourceValueConfig response = await securityCenterClient.UpdateResourceValueConfigAsync(resourceValueConfig, updateMask);

UpdateResourceValueConfigAsync(UpdateResourceValueConfigRequest, CallSettings)

public virtual Task<ResourceValueConfig> UpdateResourceValueConfigAsync(UpdateResourceValueConfigRequest request, CallSettings callSettings = null)

Updates an existing ResourceValueConfigs with new rules.

Parameters
Name Description
request UpdateResourceValueConfigRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskResourceValueConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateResourceValueConfigRequest request = new UpdateResourceValueConfigRequest
{
    ResourceValueConfig = new ResourceValueConfig(),
    UpdateMask = new FieldMask(),
};
// Make the request
ResourceValueConfig response = await securityCenterClient.UpdateResourceValueConfigAsync(request);

UpdateResourceValueConfigAsync(UpdateResourceValueConfigRequest, CancellationToken)

public virtual Task<ResourceValueConfig> UpdateResourceValueConfigAsync(UpdateResourceValueConfigRequest request, CancellationToken cancellationToken)

Updates an existing ResourceValueConfigs with new rules.

Parameters
Name Description
request UpdateResourceValueConfigRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskResourceValueConfig

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateResourceValueConfigRequest request = new UpdateResourceValueConfigRequest
{
    ResourceValueConfig = new ResourceValueConfig(),
    UpdateMask = new FieldMask(),
};
// Make the request
ResourceValueConfig response = await securityCenterClient.UpdateResourceValueConfigAsync(request);

UpdateSecurityMarks(SecurityMarks, FieldMask, CallSettings)

public virtual SecurityMarks UpdateSecurityMarks(SecurityMarks securityMarks, FieldMask updateMask, CallSettings callSettings = null)

Updates security marks. For Finding Security marks, if no location is specified, finding is assumed to be in global. Assets Security Marks can only be accessed through global endpoint.

Parameters
Name Description
securityMarks SecurityMarks

Required. The security marks resource to update.

updateMask FieldMask

The FieldMask to use when updating the security marks resource.

The field mask must not contain duplicate fields. If empty or set to "marks", all marks will be replaced. Individual marks can be updated using "marks.<mark_key>".

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
SecurityMarks

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
SecurityMarks securityMarks = new SecurityMarks();
FieldMask updateMask = new FieldMask();
// Make the request
SecurityMarks response = securityCenterClient.UpdateSecurityMarks(securityMarks, updateMask);

UpdateSecurityMarks(UpdateSecurityMarksRequest, CallSettings)

public virtual SecurityMarks UpdateSecurityMarks(UpdateSecurityMarksRequest request, CallSettings callSettings = null)

Updates security marks. For Finding Security marks, if no location is specified, finding is assumed to be in global. Assets Security Marks can only be accessed through global endpoint.

Parameters
Name Description
request UpdateSecurityMarksRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
SecurityMarks

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
UpdateSecurityMarksRequest request = new UpdateSecurityMarksRequest
{
    SecurityMarks = new SecurityMarks(),
    UpdateMask = new FieldMask(),
};
// Make the request
SecurityMarks response = securityCenterClient.UpdateSecurityMarks(request);

UpdateSecurityMarksAsync(SecurityMarks, FieldMask, CallSettings)

public virtual Task<SecurityMarks> UpdateSecurityMarksAsync(SecurityMarks securityMarks, FieldMask updateMask, CallSettings callSettings = null)

Updates security marks. For Finding Security marks, if no location is specified, finding is assumed to be in global. Assets Security Marks can only be accessed through global endpoint.

Parameters
Name Description
securityMarks SecurityMarks

Required. The security marks resource to update.

updateMask FieldMask

The FieldMask to use when updating the security marks resource.

The field mask must not contain duplicate fields. If empty or set to "marks", all marks will be replaced. Individual marks can be updated using "marks.<mark_key>".

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskSecurityMarks

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SecurityMarks securityMarks = new SecurityMarks();
FieldMask updateMask = new FieldMask();
// Make the request
SecurityMarks response = await securityCenterClient.UpdateSecurityMarksAsync(securityMarks, updateMask);

UpdateSecurityMarksAsync(SecurityMarks, FieldMask, CancellationToken)

public virtual Task<SecurityMarks> UpdateSecurityMarksAsync(SecurityMarks securityMarks, FieldMask updateMask, CancellationToken cancellationToken)

Updates security marks. For Finding Security marks, if no location is specified, finding is assumed to be in global. Assets Security Marks can only be accessed through global endpoint.

Parameters
Name Description
securityMarks SecurityMarks

Required. The security marks resource to update.

updateMask FieldMask

The FieldMask to use when updating the security marks resource.

The field mask must not contain duplicate fields. If empty or set to "marks", all marks will be replaced. Individual marks can be updated using "marks.<mark_key>".

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskSecurityMarks

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
SecurityMarks securityMarks = new SecurityMarks();
FieldMask updateMask = new FieldMask();
// Make the request
SecurityMarks response = await securityCenterClient.UpdateSecurityMarksAsync(securityMarks, updateMask);

UpdateSecurityMarksAsync(UpdateSecurityMarksRequest, CallSettings)

public virtual Task<SecurityMarks> UpdateSecurityMarksAsync(UpdateSecurityMarksRequest request, CallSettings callSettings = null)

Updates security marks. For Finding Security marks, if no location is specified, finding is assumed to be in global. Assets Security Marks can only be accessed through global endpoint.

Parameters
Name Description
request UpdateSecurityMarksRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskSecurityMarks

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateSecurityMarksRequest request = new UpdateSecurityMarksRequest
{
    SecurityMarks = new SecurityMarks(),
    UpdateMask = new FieldMask(),
};
// Make the request
SecurityMarks response = await securityCenterClient.UpdateSecurityMarksAsync(request);

UpdateSecurityMarksAsync(UpdateSecurityMarksRequest, CancellationToken)

public virtual Task<SecurityMarks> UpdateSecurityMarksAsync(UpdateSecurityMarksRequest request, CancellationToken cancellationToken)

Updates security marks. For Finding Security marks, if no location is specified, finding is assumed to be in global. Assets Security Marks can only be accessed through global endpoint.

Parameters
Name Description
request UpdateSecurityMarksRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskSecurityMarks

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateSecurityMarksRequest request = new UpdateSecurityMarksRequest
{
    SecurityMarks = new SecurityMarks(),
    UpdateMask = new FieldMask(),
};
// Make the request
SecurityMarks response = await securityCenterClient.UpdateSecurityMarksAsync(request);

UpdateSource(Source, FieldMask, CallSettings)

public virtual Source UpdateSource(Source source, FieldMask updateMask, CallSettings callSettings = null)

Updates a source.

Parameters
Name Description
source Source

Required. The source resource to update.

updateMask FieldMask

The FieldMask to use when updating the source resource.

If empty all mutable fields will be updated.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Source

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
Source source = new Source();
FieldMask updateMask = new FieldMask();
// Make the request
Source response = securityCenterClient.UpdateSource(source, updateMask);

UpdateSource(UpdateSourceRequest, CallSettings)

public virtual Source UpdateSource(UpdateSourceRequest request, CallSettings callSettings = null)

Updates a source.

Parameters
Name Description
request UpdateSourceRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Source

The RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = SecurityCenterClient.Create();
// Initialize request argument(s)
UpdateSourceRequest request = new UpdateSourceRequest
{
    Source = new Source(),
    UpdateMask = new FieldMask(),
};
// Make the request
Source response = securityCenterClient.UpdateSource(request);

UpdateSourceAsync(Source, FieldMask, CallSettings)

public virtual Task<Source> UpdateSourceAsync(Source source, FieldMask updateMask, CallSettings callSettings = null)

Updates a source.

Parameters
Name Description
source Source

Required. The source resource to update.

updateMask FieldMask

The FieldMask to use when updating the source resource.

If empty all mutable fields will be updated.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
Source source = new Source();
FieldMask updateMask = new FieldMask();
// Make the request
Source response = await securityCenterClient.UpdateSourceAsync(source, updateMask);

UpdateSourceAsync(Source, FieldMask, CancellationToken)

public virtual Task<Source> UpdateSourceAsync(Source source, FieldMask updateMask, CancellationToken cancellationToken)

Updates a source.

Parameters
Name Description
source Source

Required. The source resource to update.

updateMask FieldMask

The FieldMask to use when updating the source resource.

If empty all mutable fields will be updated.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
Source source = new Source();
FieldMask updateMask = new FieldMask();
// Make the request
Source response = await securityCenterClient.UpdateSourceAsync(source, updateMask);

UpdateSourceAsync(UpdateSourceRequest, CallSettings)

public virtual Task<Source> UpdateSourceAsync(UpdateSourceRequest request, CallSettings callSettings = null)

Updates a source.

Parameters
Name Description
request UpdateSourceRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateSourceRequest request = new UpdateSourceRequest
{
    Source = new Source(),
    UpdateMask = new FieldMask(),
};
// Make the request
Source response = await securityCenterClient.UpdateSourceAsync(request);

UpdateSourceAsync(UpdateSourceRequest, CancellationToken)

public virtual Task<Source> UpdateSourceAsync(UpdateSourceRequest request, CancellationToken cancellationToken)

Updates a source.

Parameters
Name Description
request UpdateSourceRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskSource

A Task containing the RPC response.

Example
// Create client
SecurityCenterClient securityCenterClient = await SecurityCenterClient.CreateAsync();
// Initialize request argument(s)
UpdateSourceRequest request = new UpdateSourceRequest
{
    Source = new Source(),
    UpdateMask = new FieldMask(),
};
// Make the request
Source response = await securityCenterClient.UpdateSourceAsync(request);