ibm.getSccReportSummary
Explore with Pulumi AI
Retrieve information about a report summary from a read-only data source. Then, you can reference the fields of the data source in other resources within the same configuration by using interpolation syntax.
NOTE: Security Compliance Center is a regional service. Please specify the IBM Cloud Provider attribute
region
to target another region. Else, exporting the environmental variable IBMCLOUD_SCC_API_ENDPOINT will also override which region is being targeted for all ibm providers(ex.export IBMCLOUD_SCC_API_ENDPOINT=https://eu-es.compliance.cloud.ibm.com
).
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const sccReportSummary = ibm.getSccReportSummary({
instanceId: "00000000-1111-2222-3333-444444444444",
reportId: "report_id",
});
import pulumi
import pulumi_ibm as ibm
scc_report_summary = ibm.get_scc_report_summary(instance_id="00000000-1111-2222-3333-444444444444",
report_id="report_id")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.GetSccReportSummary(ctx, &ibm.GetSccReportSummaryArgs{
InstanceId: "00000000-1111-2222-3333-444444444444",
ReportId: "report_id",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var sccReportSummary = Ibm.GetSccReportSummary.Invoke(new()
{
InstanceId = "00000000-1111-2222-3333-444444444444",
ReportId = "report_id",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetSccReportSummaryArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var sccReportSummary = IbmFunctions.getSccReportSummary(GetSccReportSummaryArgs.builder()
.instanceId("00000000-1111-2222-3333-444444444444")
.reportId("report_id")
.build());
}
}
variables:
sccReportSummary:
fn::invoke:
function: ibm:getSccReportSummary
arguments:
instanceId: 00000000-1111-2222-3333-444444444444
reportId: report_id
Using getSccReportSummary
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getSccReportSummary(args: GetSccReportSummaryArgs, opts?: InvokeOptions): Promise<GetSccReportSummaryResult>
function getSccReportSummaryOutput(args: GetSccReportSummaryOutputArgs, opts?: InvokeOptions): Output<GetSccReportSummaryResult>
def get_scc_report_summary(id: Optional[str] = None,
instance_id: Optional[str] = None,
report_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSccReportSummaryResult
def get_scc_report_summary_output(id: Optional[pulumi.Input[str]] = None,
instance_id: Optional[pulumi.Input[str]] = None,
report_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSccReportSummaryResult]
func GetSccReportSummary(ctx *Context, args *GetSccReportSummaryArgs, opts ...InvokeOption) (*GetSccReportSummaryResult, error)
func GetSccReportSummaryOutput(ctx *Context, args *GetSccReportSummaryOutputArgs, opts ...InvokeOption) GetSccReportSummaryResultOutput
> Note: This function is named GetSccReportSummary
in the Go SDK.
public static class GetSccReportSummary
{
public static Task<GetSccReportSummaryResult> InvokeAsync(GetSccReportSummaryArgs args, InvokeOptions? opts = null)
public static Output<GetSccReportSummaryResult> Invoke(GetSccReportSummaryInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSccReportSummaryResult> getSccReportSummary(GetSccReportSummaryArgs args, InvokeOptions options)
public static Output<GetSccReportSummaryResult> getSccReportSummary(GetSccReportSummaryArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getSccReportSummary:getSccReportSummary
arguments:
# arguments dictionary
The following arguments are supported:
- Instance
Id string - The ID of the SCC instance in a particular region.
- Report
Id string - The ID of the scan that is associated with a report.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- Id string
- (String) The resource ID.
- Instance
Id string - The ID of the SCC instance in a particular region.
- Report
Id string - The ID of the scan that is associated with a report.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- Id string
- (String) The resource ID.
- instance
Id String - The ID of the SCC instance in a particular region.
- report
Id String - The ID of the scan that is associated with a report.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- id String
- (String) The resource ID.
- instance
Id string - The ID of the SCC instance in a particular region.
- report
Id string - The ID of the scan that is associated with a report.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- id string
- (String) The resource ID.
- instance_
id str - The ID of the SCC instance in a particular region.
- report_
id str - The ID of the scan that is associated with a report.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- id str
- (String) The resource ID.
- instance
Id String - The ID of the SCC instance in a particular region.
- report
Id String - The ID of the scan that is associated with a report.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- id String
- (String) The resource ID.
getSccReportSummary Result
The following output properties are available:
- Accounts
List<Get
Scc Report Summary Account> - (String) The account that owns the resource.
- Controls
List<Get
Scc Report Summary Control> - (List) The compliance stats. Nested schema for controls:
- Evaluations
List<Get
Scc Report Summary Evaluation> - (List) The evaluation stats. Nested schema for evaluations:
- Id string
- (String) The resource ID.
- Instance
Id string - Isntance
Id string - (String) Instance ID.
- Report
Id string - Resources
List<Get
Scc Report Summary Resource> - (List) The resource summary. Nested schema for resources:
- Scores
List<Get
Scc Report Summary Score> - (List) The compliance score. Nested schema for score:
- Accounts
[]Get
Scc Report Summary Account - (String) The account that owns the resource.
- Controls
[]Get
Scc Report Summary Control - (List) The compliance stats. Nested schema for controls:
- Evaluations
[]Get
Scc Report Summary Evaluation - (List) The evaluation stats. Nested schema for evaluations:
- Id string
- (String) The resource ID.
- Instance
Id string - Isntance
Id string - (String) Instance ID.
- Report
Id string - Resources
[]Get
Scc Report Summary Resource - (List) The resource summary. Nested schema for resources:
- Scores
[]Get
Scc Report Summary Score - (List) The compliance score. Nested schema for score:
- accounts
List<Get
Scc Report Summary Account> - (String) The account that owns the resource.
- controls
List<Get
Scc Report Summary Control> - (List) The compliance stats. Nested schema for controls:
- evaluations
List<Get
Scc Report Summary Evaluation> - (List) The evaluation stats. Nested schema for evaluations:
- id String
- (String) The resource ID.
- instance
Id String - isntance
Id String - (String) Instance ID.
- report
Id String - resources
List<Get
Scc Report Summary Resource> - (List) The resource summary. Nested schema for resources:
- scores
List<Get
Scc Report Summary Score> - (List) The compliance score. Nested schema for score:
- accounts
Get
Scc Report Summary Account[] - (String) The account that owns the resource.
- controls
Get
Scc Report Summary Control[] - (List) The compliance stats. Nested schema for controls:
- evaluations
Get
Scc Report Summary Evaluation[] - (List) The evaluation stats. Nested schema for evaluations:
- id string
- (String) The resource ID.
- instance
Id string - isntance
Id string - (String) Instance ID.
- report
Id string - resources
Get
Scc Report Summary Resource[] - (List) The resource summary. Nested schema for resources:
- scores
Get
Scc Report Summary Score[] - (List) The compliance score. Nested schema for score:
- accounts
Sequence[Get
Scc Report Summary Account] - (String) The account that owns the resource.
- controls
Sequence[Get
Scc Report Summary Control] - (List) The compliance stats. Nested schema for controls:
- evaluations
Sequence[Get
Scc Report Summary Evaluation] - (List) The evaluation stats. Nested schema for evaluations:
- id str
- (String) The resource ID.
- instance_
id str - isntance_
id str - (String) Instance ID.
- report_
id str - resources
Sequence[Get
Scc Report Summary Resource] - (List) The resource summary. Nested schema for resources:
- scores
Sequence[Get
Scc Report Summary Score] - (List) The compliance score. Nested schema for score:
- accounts List<Property Map>
- (String) The account that owns the resource.
- controls List<Property Map>
- (List) The compliance stats. Nested schema for controls:
- evaluations List<Property Map>
- (List) The evaluation stats. Nested schema for evaluations:
- id String
- (String) The resource ID.
- instance
Id String - isntance
Id String - (String) Instance ID.
- report
Id String - resources List<Property Map>
- (List) The resource summary. Nested schema for resources:
- scores List<Property Map>
- (List) The compliance score. Nested schema for score:
Supporting Types
GetSccReportSummaryAccount
GetSccReportSummaryControl
- Compliant
Count double - (Integer) The number of compliant checks.
- Not
Compliant doubleCount - (Integer) The number of checks that are not compliant.
- Status string
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- Total
Count double - (Integer) The total number of evaluations.
- Unable
To doublePerform Count - (Integer) The number of checks that are unable to perform.
- User
Evaluation doubleRequired Count - (Integer) The number of checks that require a user evaluation.
- Compliant
Count float64 - (Integer) The number of compliant checks.
- Not
Compliant float64Count - (Integer) The number of checks that are not compliant.
- Status string
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- Total
Count float64 - (Integer) The total number of evaluations.
- Unable
To float64Perform Count - (Integer) The number of checks that are unable to perform.
- User
Evaluation float64Required Count - (Integer) The number of checks that require a user evaluation.
- compliant
Count Double - (Integer) The number of compliant checks.
- not
Compliant DoubleCount - (Integer) The number of checks that are not compliant.
- status String
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- total
Count Double - (Integer) The total number of evaluations.
- unable
To DoublePerform Count - (Integer) The number of checks that are unable to perform.
- user
Evaluation DoubleRequired Count - (Integer) The number of checks that require a user evaluation.
- compliant
Count number - (Integer) The number of compliant checks.
- not
Compliant numberCount - (Integer) The number of checks that are not compliant.
- status string
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- total
Count number - (Integer) The total number of evaluations.
- unable
To numberPerform Count - (Integer) The number of checks that are unable to perform.
- user
Evaluation numberRequired Count - (Integer) The number of checks that require a user evaluation.
- compliant_
count float - (Integer) The number of compliant checks.
- not_
compliant_ floatcount - (Integer) The number of checks that are not compliant.
- status str
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- total_
count float - (Integer) The total number of evaluations.
- unable_
to_ floatperform_ count - (Integer) The number of checks that are unable to perform.
- user_
evaluation_ floatrequired_ count - (Integer) The number of checks that require a user evaluation.
- compliant
Count Number - (Integer) The number of compliant checks.
- not
Compliant NumberCount - (Integer) The number of checks that are not compliant.
- status String
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- total
Count Number - (Integer) The total number of evaluations.
- unable
To NumberPerform Count - (Integer) The number of checks that are unable to perform.
- user
Evaluation NumberRequired Count - (Integer) The number of checks that require a user evaluation.
GetSccReportSummaryEvaluation
- Completed
Count double - (Integer) The total number of completed evaluations.
- Error
Count double - (Integer) The number of evaluations that started, but did not finish, and ended with errors.
- Failure
Count double - (Integer) The number of failed evaluations.
- Pass
Count double - (Integer) The number of passed evaluations.
- Status string
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- Total
Count double - (Integer) The total number of evaluations.
- Completed
Count float64 - (Integer) The total number of completed evaluations.
- Error
Count float64 - (Integer) The number of evaluations that started, but did not finish, and ended with errors.
- Failure
Count float64 - (Integer) The number of failed evaluations.
- Pass
Count float64 - (Integer) The number of passed evaluations.
- Status string
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- Total
Count float64 - (Integer) The total number of evaluations.
- completed
Count Double - (Integer) The total number of completed evaluations.
- error
Count Double - (Integer) The number of evaluations that started, but did not finish, and ended with errors.
- failure
Count Double - (Integer) The number of failed evaluations.
- pass
Count Double - (Integer) The number of passed evaluations.
- status String
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- total
Count Double - (Integer) The total number of evaluations.
- completed
Count number - (Integer) The total number of completed evaluations.
- error
Count number - (Integer) The number of evaluations that started, but did not finish, and ended with errors.
- failure
Count number - (Integer) The number of failed evaluations.
- pass
Count number - (Integer) The number of passed evaluations.
- status string
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- total
Count number - (Integer) The total number of evaluations.
- completed_
count float - (Integer) The total number of completed evaluations.
- error_
count float - (Integer) The number of evaluations that started, but did not finish, and ended with errors.
- failure_
count float - (Integer) The number of failed evaluations.
- pass_
count float - (Integer) The number of passed evaluations.
- status str
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- total_
count float - (Integer) The total number of evaluations.
- completed
Count Number - (Integer) The total number of completed evaluations.
- error
Count Number - (Integer) The number of evaluations that started, but did not finish, and ended with errors.
- failure
Count Number - (Integer) The number of failed evaluations.
- pass
Count Number - (Integer) The number of passed evaluations.
- status String
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- total
Count Number - (Integer) The total number of evaluations.
GetSccReportSummaryResource
- Compliant
Count double - (Integer) The number of compliant checks.
- Not
Compliant doubleCount - (Integer) The number of checks that are not compliant.
- Status string
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- Top
Faileds List<GetScc Report Summary Resource Top Failed> - (List) The top 10 resources that have the most failures.
- Constraints: The maximum length is
10
items. The minimum length is0
items. Nested schema for top_failed:
- Constraints: The maximum length is
- Total
Count double - (Integer) The total number of evaluations.
- Unable
To doublePerform Count - (Integer) The number of checks that are unable to perform.
- User
Evaluation doubleRequired Count - (Integer) The number of checks that require a user evaluation.
- Compliant
Count float64 - (Integer) The number of compliant checks.
- Not
Compliant float64Count - (Integer) The number of checks that are not compliant.
- Status string
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- Top
Faileds []GetScc Report Summary Resource Top Failed - (List) The top 10 resources that have the most failures.
- Constraints: The maximum length is
10
items. The minimum length is0
items. Nested schema for top_failed:
- Constraints: The maximum length is
- Total
Count float64 - (Integer) The total number of evaluations.
- Unable
To float64Perform Count - (Integer) The number of checks that are unable to perform.
- User
Evaluation float64Required Count - (Integer) The number of checks that require a user evaluation.
- compliant
Count Double - (Integer) The number of compliant checks.
- not
Compliant DoubleCount - (Integer) The number of checks that are not compliant.
- status String
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- top
Faileds List<GetScc Report Summary Resource Top Failed> - (List) The top 10 resources that have the most failures.
- Constraints: The maximum length is
10
items. The minimum length is0
items. Nested schema for top_failed:
- Constraints: The maximum length is
- total
Count Double - (Integer) The total number of evaluations.
- unable
To DoublePerform Count - (Integer) The number of checks that are unable to perform.
- user
Evaluation DoubleRequired Count - (Integer) The number of checks that require a user evaluation.
- compliant
Count number - (Integer) The number of compliant checks.
- not
Compliant numberCount - (Integer) The number of checks that are not compliant.
- status string
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- top
Faileds GetScc Report Summary Resource Top Failed[] - (List) The top 10 resources that have the most failures.
- Constraints: The maximum length is
10
items. The minimum length is0
items. Nested schema for top_failed:
- Constraints: The maximum length is
- total
Count number - (Integer) The total number of evaluations.
- unable
To numberPerform Count - (Integer) The number of checks that are unable to perform.
- user
Evaluation numberRequired Count - (Integer) The number of checks that require a user evaluation.
- compliant_
count float - (Integer) The number of compliant checks.
- not_
compliant_ floatcount - (Integer) The number of checks that are not compliant.
- status str
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- top_
faileds Sequence[GetScc Report Summary Resource Top Failed] - (List) The top 10 resources that have the most failures.
- Constraints: The maximum length is
10
items. The minimum length is0
items. Nested schema for top_failed:
- Constraints: The maximum length is
- total_
count float - (Integer) The total number of evaluations.
- unable_
to_ floatperform_ count - (Integer) The number of checks that are unable to perform.
- user_
evaluation_ floatrequired_ count - (Integer) The number of checks that require a user evaluation.
- compliant
Count Number - (Integer) The number of compliant checks.
- not
Compliant NumberCount - (Integer) The number of checks that are not compliant.
- status String
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- top
Faileds List<Property Map> - (List) The top 10 resources that have the most failures.
- Constraints: The maximum length is
10
items. The minimum length is0
items. Nested schema for top_failed:
- Constraints: The maximum length is
- total
Count Number - (Integer) The total number of evaluations.
- unable
To NumberPerform Count - (Integer) The number of checks that are unable to perform.
- user
Evaluation NumberRequired Count - (Integer) The number of checks that require a user evaluation.
GetSccReportSummaryResourceTopFailed
- Account string
- (String) The account that owns the resource.
- Completed
Count double - (Integer) The total number of completed evaluations.
- Error
Count double - (Integer) The number of evaluations that started, but did not finish, and ended with errors.
- Failure
Count double - (Integer) The number of failed evaluations.
- Id string
- (String) The resource ID.
- Name string
- (String) The resource name.
- Pass
Count double - (Integer) The number of passed evaluations.
- Service string
- (List) The collection of service tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- Status string
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- List<Get
Scc Report Summary Resource Top Failed Tag> - (List) The collection of different types of tags. Nested schema for tags:
- Total
Count double - (Integer) The total number of evaluations.
- Account string
- (String) The account that owns the resource.
- Completed
Count float64 - (Integer) The total number of completed evaluations.
- Error
Count float64 - (Integer) The number of evaluations that started, but did not finish, and ended with errors.
- Failure
Count float64 - (Integer) The number of failed evaluations.
- Id string
- (String) The resource ID.
- Name string
- (String) The resource name.
- Pass
Count float64 - (Integer) The number of passed evaluations.
- Service string
- (List) The collection of service tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- Status string
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- []Get
Scc Report Summary Resource Top Failed Tag - (List) The collection of different types of tags. Nested schema for tags:
- Total
Count float64 - (Integer) The total number of evaluations.
- account String
- (String) The account that owns the resource.
- completed
Count Double - (Integer) The total number of completed evaluations.
- error
Count Double - (Integer) The number of evaluations that started, but did not finish, and ended with errors.
- failure
Count Double - (Integer) The number of failed evaluations.
- id String
- (String) The resource ID.
- name String
- (String) The resource name.
- pass
Count Double - (Integer) The number of passed evaluations.
- service String
- (List) The collection of service tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- status String
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- List<Get
Scc Report Summary Resource Top Failed Tag> - (List) The collection of different types of tags. Nested schema for tags:
- total
Count Double - (Integer) The total number of evaluations.
- account string
- (String) The account that owns the resource.
- completed
Count number - (Integer) The total number of completed evaluations.
- error
Count number - (Integer) The number of evaluations that started, but did not finish, and ended with errors.
- failure
Count number - (Integer) The number of failed evaluations.
- id string
- (String) The resource ID.
- name string
- (String) The resource name.
- pass
Count number - (Integer) The number of passed evaluations.
- service string
- (List) The collection of service tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- status string
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- Get
Scc Report Summary Resource Top Failed Tag[] - (List) The collection of different types of tags. Nested schema for tags:
- total
Count number - (Integer) The total number of evaluations.
- account str
- (String) The account that owns the resource.
- completed_
count float - (Integer) The total number of completed evaluations.
- error_
count float - (Integer) The number of evaluations that started, but did not finish, and ended with errors.
- failure_
count float - (Integer) The number of failed evaluations.
- id str
- (String) The resource ID.
- name str
- (String) The resource name.
- pass_
count float - (Integer) The number of passed evaluations.
- service str
- (List) The collection of service tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- status str
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- Sequence[Get
Scc Report Summary Resource Top Failed Tag] - (List) The collection of different types of tags. Nested schema for tags:
- total_
count float - (Integer) The total number of evaluations.
- account String
- (String) The account that owns the resource.
- completed
Count Number - (Integer) The total number of completed evaluations.
- error
Count Number - (Integer) The number of evaluations that started, but did not finish, and ended with errors.
- failure
Count Number - (Integer) The number of failed evaluations.
- id String
- (String) The resource ID.
- name String
- (String) The resource name.
- pass
Count Number - (Integer) The number of passed evaluations.
- service String
- (List) The collection of service tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- status String
- (String) The allowed values of an aggregated status for controls, specifications, assessments, and resources.
- Constraints: Allowable values are:
compliant
,not_compliant
,unable_to_perform
,user_evaluation_required
.
- Constraints: Allowable values are:
- List<Property Map>
- (List) The collection of different types of tags. Nested schema for tags:
- total
Count Number - (Integer) The total number of evaluations.
GetSccReportSummaryResourceTopFailedTag
- Accesses List<string>
- (List) The collection of access tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- Services List<string>
- (List) The collection of service tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- Users List<string>
- (List) The collection of user tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- Accesses []string
- (List) The collection of access tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- Services []string
- (List) The collection of service tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- Users []string
- (List) The collection of user tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- accesses List<String>
- (List) The collection of access tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- services List<String>
- (List) The collection of service tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- users List<String>
- (List) The collection of user tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- accesses string[]
- (List) The collection of access tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- services string[]
- (List) The collection of service tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- users string[]
- (List) The collection of user tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- accesses Sequence[str]
- (List) The collection of access tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- services Sequence[str]
- (List) The collection of service tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- users Sequence[str]
- (List) The collection of user tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- accesses List<String>
- (List) The collection of access tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- services List<String>
- (List) The collection of service tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
- users List<String>
- (List) The collection of user tags.
- Constraints: The maximum length is
100
items. The minimum length is0
items.
- Constraints: The maximum length is
GetSccReportSummaryScore
- Passed double
- (Integer) The number of successful evaluations.
- Percent double
- (Integer) The percentage of successful evaluations.
- Total
Count double - (Integer) The total number of evaluations.
- Passed float64
- (Integer) The number of successful evaluations.
- Percent float64
- (Integer) The percentage of successful evaluations.
- Total
Count float64 - (Integer) The total number of evaluations.
- passed Double
- (Integer) The number of successful evaluations.
- percent Double
- (Integer) The percentage of successful evaluations.
- total
Count Double - (Integer) The total number of evaluations.
- passed number
- (Integer) The number of successful evaluations.
- percent number
- (Integer) The percentage of successful evaluations.
- total
Count number - (Integer) The total number of evaluations.
- passed float
- (Integer) The number of successful evaluations.
- percent float
- (Integer) The percentage of successful evaluations.
- total_
count float - (Integer) The total number of evaluations.
- passed Number
- (Integer) The number of successful evaluations.
- percent Number
- (Integer) The percentage of successful evaluations.
- total
Count Number - (Integer) The total number of evaluations.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.