ibm.getSccReportEvaluations
Explore with Pulumi AI
Retrieve information about report evaluations 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 sccReportEvaluations = ibm.getSccReportEvaluations({
instanceId: "00000000-1111-2222-3333-444444444444",
reportId: "report_id",
status: "failure",
});
import pulumi
import pulumi_ibm as ibm
scc_report_evaluations = ibm.get_scc_report_evaluations(instance_id="00000000-1111-2222-3333-444444444444",
report_id="report_id",
status="failure")
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.GetSccReportEvaluations(ctx, &ibm.GetSccReportEvaluationsArgs{
InstanceId: "00000000-1111-2222-3333-444444444444",
ReportId: "report_id",
Status: pulumi.StringRef("failure"),
}, 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 sccReportEvaluations = Ibm.GetSccReportEvaluations.Invoke(new()
{
InstanceId = "00000000-1111-2222-3333-444444444444",
ReportId = "report_id",
Status = "failure",
});
});
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.GetSccReportEvaluationsArgs;
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 sccReportEvaluations = IbmFunctions.getSccReportEvaluations(GetSccReportEvaluationsArgs.builder()
.instanceId("00000000-1111-2222-3333-444444444444")
.reportId("report_id")
.status("failure")
.build());
}
}
variables:
sccReportEvaluations:
fn::invoke:
function: ibm:getSccReportEvaluations
arguments:
instanceId: 00000000-1111-2222-3333-444444444444
reportId: report_id
status: failure
Using getSccReportEvaluations
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 getSccReportEvaluations(args: GetSccReportEvaluationsArgs, opts?: InvokeOptions): Promise<GetSccReportEvaluationsResult>
function getSccReportEvaluationsOutput(args: GetSccReportEvaluationsOutputArgs, opts?: InvokeOptions): Output<GetSccReportEvaluationsResult>
def get_scc_report_evaluations(assessment_id: Optional[str] = None,
component_id: Optional[str] = None,
id: Optional[str] = None,
instance_id: Optional[str] = None,
report_id: Optional[str] = None,
status: Optional[str] = None,
target_id: Optional[str] = None,
target_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSccReportEvaluationsResult
def get_scc_report_evaluations_output(assessment_id: Optional[pulumi.Input[str]] = None,
component_id: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
instance_id: Optional[pulumi.Input[str]] = None,
report_id: Optional[pulumi.Input[str]] = None,
status: Optional[pulumi.Input[str]] = None,
target_id: Optional[pulumi.Input[str]] = None,
target_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSccReportEvaluationsResult]
func GetSccReportEvaluations(ctx *Context, args *GetSccReportEvaluationsArgs, opts ...InvokeOption) (*GetSccReportEvaluationsResult, error)
func GetSccReportEvaluationsOutput(ctx *Context, args *GetSccReportEvaluationsOutputArgs, opts ...InvokeOption) GetSccReportEvaluationsResultOutput
> Note: This function is named GetSccReportEvaluations
in the Go SDK.
public static class GetSccReportEvaluations
{
public static Task<GetSccReportEvaluationsResult> InvokeAsync(GetSccReportEvaluationsArgs args, InvokeOptions? opts = null)
public static Output<GetSccReportEvaluationsResult> Invoke(GetSccReportEvaluationsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSccReportEvaluationsResult> getSccReportEvaluations(GetSccReportEvaluationsArgs args, InvokeOptions options)
public static Output<GetSccReportEvaluationsResult> getSccReportEvaluations(GetSccReportEvaluationsArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getSccReportEvaluations:getSccReportEvaluations
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
- Assessment
Id string - The ID of the assessment.
- 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
- Component
Id string - The ID of component.
- 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 target ID.
- Status string
- The evaluation status value.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- Target
Id string - The ID of the evaluation target.
- Constraints: The maximum length is
1024
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- Target
Name string - The name of the evaluation target.
- Constraints: The maximum length is
1024
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- 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
- Assessment
Id string - The ID of the assessment.
- 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
- Component
Id string - The ID of component.
- 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 target ID.
- Status string
- The evaluation status value.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- Target
Id string - The ID of the evaluation target.
- Constraints: The maximum length is
1024
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- Target
Name string - The name of the evaluation target.
- Constraints: The maximum length is
1024
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- 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
- assessment
Id String - The ID of the assessment.
- 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
- component
Id String - The ID of component.
- 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 target ID.
- status String
- The evaluation status value.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- target
Id String - The ID of the evaluation target.
- Constraints: The maximum length is
1024
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- target
Name String - The name of the evaluation target.
- Constraints: The maximum length is
1024
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- 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
- assessment
Id string - The ID of the assessment.
- 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
- component
Id string - The ID of component.
- 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 target ID.
- status string
- The evaluation status value.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- target
Id string - The ID of the evaluation target.
- Constraints: The maximum length is
1024
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- target
Name string - The name of the evaluation target.
- Constraints: The maximum length is
1024
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- 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
- assessment_
id str - The ID of the assessment.
- 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
- component_
id str - The ID of component.
- 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 target ID.
- status str
- The evaluation status value.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- target_
id str - The ID of the evaluation target.
- Constraints: The maximum length is
1024
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- target_
name str - The name of the evaluation target.
- Constraints: The maximum length is
1024
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- 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
- assessment
Id String - The ID of the assessment.
- 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
- component
Id String - The ID of component.
- 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 target ID.
- status String
- The evaluation status value.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- target
Id String - The ID of the evaluation target.
- Constraints: The maximum length is
1024
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
- target
Name String - The name of the evaluation target.
- Constraints: The maximum length is
1024
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9\\-]+$/
.
- Constraints: The maximum length is
getSccReportEvaluations Result
The following output properties are available:
- Evaluations
List<Get
Scc Report Evaluations Evaluation> - (List) The list of evaluations that are on the page.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for evaluations:
- Constraints: The maximum length is
- Firsts
List<Get
Scc Report Evaluations First> - (List) The page reference. Nested schema for first:
- Home
Account stringId - (String) The ID of the home account.
- Id string
- (String) The target ID.
- Instance
Id string - Report
Id string - (String) The ID of the report that is associated to the evaluation.
- Assessment
Id string - (String) The assessment ID.
- Component
Id string - (String) The component ID.
- Status string
- (String) The allowed values of an evaluation status.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- Target
Id string - Target
Name string
- Evaluations
[]Get
Scc Report Evaluations Evaluation - (List) The list of evaluations that are on the page.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for evaluations:
- Constraints: The maximum length is
- Firsts
[]Get
Scc Report Evaluations First - (List) The page reference. Nested schema for first:
- Home
Account stringId - (String) The ID of the home account.
- Id string
- (String) The target ID.
- Instance
Id string - Report
Id string - (String) The ID of the report that is associated to the evaluation.
- Assessment
Id string - (String) The assessment ID.
- Component
Id string - (String) The component ID.
- Status string
- (String) The allowed values of an evaluation status.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- Target
Id string - Target
Name string
- evaluations
List<Get
Scc Report Evaluations Evaluation> - (List) The list of evaluations that are on the page.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for evaluations:
- Constraints: The maximum length is
- firsts
List<Get
Scc Report Evaluations First> - (List) The page reference. Nested schema for first:
- home
Account StringId - (String) The ID of the home account.
- id String
- (String) The target ID.
- instance
Id String - report
Id String - (String) The ID of the report that is associated to the evaluation.
- assessment
Id String - (String) The assessment ID.
- component
Id String - (String) The component ID.
- status String
- (String) The allowed values of an evaluation status.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- target
Id String - target
Name String
- evaluations
Get
Scc Report Evaluations Evaluation[] - (List) The list of evaluations that are on the page.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for evaluations:
- Constraints: The maximum length is
- firsts
Get
Scc Report Evaluations First[] - (List) The page reference. Nested schema for first:
- home
Account stringId - (String) The ID of the home account.
- id string
- (String) The target ID.
- instance
Id string - report
Id string - (String) The ID of the report that is associated to the evaluation.
- assessment
Id string - (String) The assessment ID.
- component
Id string - (String) The component ID.
- status string
- (String) The allowed values of an evaluation status.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- target
Id string - target
Name string
- evaluations
Sequence[Get
Scc Report Evaluations Evaluation] - (List) The list of evaluations that are on the page.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for evaluations:
- Constraints: The maximum length is
- firsts
Sequence[Get
Scc Report Evaluations First] - (List) The page reference. Nested schema for first:
- home_
account_ strid - (String) The ID of the home account.
- id str
- (String) The target ID.
- instance_
id str - report_
id str - (String) The ID of the report that is associated to the evaluation.
- assessment_
id str - (String) The assessment ID.
- component_
id str - (String) The component ID.
- status str
- (String) The allowed values of an evaluation status.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- target_
id str - target_
name str
- evaluations List<Property Map>
- (List) The list of evaluations that are on the page.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for evaluations:
- Constraints: The maximum length is
- firsts List<Property Map>
- (List) The page reference. Nested schema for first:
- home
Account StringId - (String) The ID of the home account.
- id String
- (String) The target ID.
- instance
Id String - report
Id String - (String) The ID of the report that is associated to the evaluation.
- assessment
Id String - (String) The assessment ID.
- component
Id String - (String) The component ID.
- status String
- (String) The allowed values of an evaluation status.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- target
Id String - target
Name String
Supporting Types
GetSccReportEvaluationsEvaluation
- Assessments
List<Get
Scc Report Evaluations Evaluation Assessment> - (List) The control specification assessment. Nested schema for assessment:
- Component
Id string - The ID of component.
- 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
- Component
Name string - Control
Id string - (String) The control ID. Deprecated
- Details
List<Get
Scc Report Evaluations Evaluation Detail> - (List) The evaluation details. Nested schema for details:
- Evaluate
Time string - (String) The time when the evaluation was made.
- Home
Account stringId - (String) The ID of the home account.
- Reason string
- (String) The reason for the evaluation failure.
- 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
- Status string
- The evaluation status value.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- Targets
List<Get
Scc Report Evaluations Evaluation Target> - (List) The evaluation target. Nested schema for target:
- Assessments
[]Get
Scc Report Evaluations Evaluation Assessment - (List) The control specification assessment. Nested schema for assessment:
- Component
Id string - The ID of component.
- 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
- Component
Name string - Control
Id string - (String) The control ID. Deprecated
- Details
[]Get
Scc Report Evaluations Evaluation Detail - (List) The evaluation details. Nested schema for details:
- Evaluate
Time string - (String) The time when the evaluation was made.
- Home
Account stringId - (String) The ID of the home account.
- Reason string
- (String) The reason for the evaluation failure.
- 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
- Status string
- The evaluation status value.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- Targets
[]Get
Scc Report Evaluations Evaluation Target - (List) The evaluation target. Nested schema for target:
- assessments
List<Get
Scc Report Evaluations Evaluation Assessment> - (List) The control specification assessment. Nested schema for assessment:
- component
Id String - The ID of component.
- 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
- component
Name String - control
Id String - (String) The control ID. Deprecated
- details
List<Get
Scc Report Evaluations Evaluation Detail> - (List) The evaluation details. Nested schema for details:
- evaluate
Time String - (String) The time when the evaluation was made.
- home
Account StringId - (String) The ID of the home account.
- reason String
- (String) The reason for the evaluation failure.
- 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
- status String
- The evaluation status value.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- targets
List<Get
Scc Report Evaluations Evaluation Target> - (List) The evaluation target. Nested schema for target:
- assessments
Get
Scc Report Evaluations Evaluation Assessment[] - (List) The control specification assessment. Nested schema for assessment:
- component
Id string - The ID of component.
- 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
- component
Name string - control
Id string - (String) The control ID. Deprecated
- details
Get
Scc Report Evaluations Evaluation Detail[] - (List) The evaluation details. Nested schema for details:
- evaluate
Time string - (String) The time when the evaluation was made.
- home
Account stringId - (String) The ID of the home account.
- reason string
- (String) The reason for the evaluation failure.
- 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
- status string
- The evaluation status value.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- targets
Get
Scc Report Evaluations Evaluation Target[] - (List) The evaluation target. Nested schema for target:
- assessments
Sequence[Get
Scc Report Evaluations Evaluation Assessment] - (List) The control specification assessment. Nested schema for assessment:
- component_
id str - The ID of component.
- 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
- component_
name str - control_
id str - (String) The control ID. Deprecated
- details
Sequence[Get
Scc Report Evaluations Evaluation Detail] - (List) The evaluation details. Nested schema for details:
- evaluate_
time str - (String) The time when the evaluation was made.
- home_
account_ strid - (String) The ID of the home account.
- reason str
- (String) The reason for the evaluation failure.
- 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
- status str
- The evaluation status value.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- targets
Sequence[Get
Scc Report Evaluations Evaluation Target] - (List) The evaluation target. Nested schema for target:
- assessments List<Property Map>
- (List) The control specification assessment. Nested schema for assessment:
- component
Id String - The ID of component.
- 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
- component
Name String - control
Id String - (String) The control ID. Deprecated
- details List<Property Map>
- (List) The evaluation details. Nested schema for details:
- evaluate
Time String - (String) The time when the evaluation was made.
- home
Account StringId - (String) The ID of the home account.
- reason String
- (String) The reason for the evaluation failure.
- 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
- status String
- The evaluation status value.
- Constraints: Allowable values are:
pass
,failure
,error
,skipped
.
- Constraints: Allowable values are:
- targets List<Property Map>
- (List) The evaluation target. Nested schema for target:
GetSccReportEvaluationsEvaluationAssessment
- Assessment
Description string - (String) The assessment description.
- Assessment
Id string - The ID of the assessment.
- 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
- Assessment
Method string - (String) The assessment method.
- Assessment
Type string - (String) The assessment type.
- Parameter
Count double - (Integer) The number of parameters of this assessment.
- Parameters
List<Get
Scc Report Evaluations Evaluation Assessment Parameter> - (List) The list of parameters of this assessment.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for parameters:
- Constraints: The maximum length is
- Assessment
Description string - (String) The assessment description.
- Assessment
Id string - The ID of the assessment.
- 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
- Assessment
Method string - (String) The assessment method.
- Assessment
Type string - (String) The assessment type.
- Parameter
Count float64 - (Integer) The number of parameters of this assessment.
- Parameters
[]Get
Scc Report Evaluations Evaluation Assessment Parameter - (List) The list of parameters of this assessment.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for parameters:
- Constraints: The maximum length is
- assessment
Description String - (String) The assessment description.
- assessment
Id String - The ID of the assessment.
- 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
- assessment
Method String - (String) The assessment method.
- assessment
Type String - (String) The assessment type.
- parameter
Count Double - (Integer) The number of parameters of this assessment.
- parameters
List<Get
Scc Report Evaluations Evaluation Assessment Parameter> - (List) The list of parameters of this assessment.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for parameters:
- Constraints: The maximum length is
- assessment
Description string - (String) The assessment description.
- assessment
Id string - The ID of the assessment.
- 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
- assessment
Method string - (String) The assessment method.
- assessment
Type string - (String) The assessment type.
- parameter
Count number - (Integer) The number of parameters of this assessment.
- parameters
Get
Scc Report Evaluations Evaluation Assessment Parameter[] - (List) The list of parameters of this assessment.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for parameters:
- Constraints: The maximum length is
- assessment_
description str - (String) The assessment description.
- assessment_
id str - The ID of the assessment.
- 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
- assessment_
method str - (String) The assessment method.
- assessment_
type str - (String) The assessment type.
- parameter_
count float - (Integer) The number of parameters of this assessment.
- parameters
Sequence[Get
Scc Report Evaluations Evaluation Assessment Parameter] - (List) The list of parameters of this assessment.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for parameters:
- Constraints: The maximum length is
- assessment
Description String - (String) The assessment description.
- assessment
Id String - The ID of the assessment.
- 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
- assessment
Method String - (String) The assessment method.
- assessment
Type String - (String) The assessment type.
- parameter
Count Number - (Integer) The number of parameters of this assessment.
- parameters List<Property Map>
- (List) The list of parameters of this assessment.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for parameters:
- Constraints: The maximum length is
GetSccReportEvaluationsEvaluationAssessmentParameter
- Parameter
Display stringName - (String) The parameter display name.
- Parameter
Name string - (String) The parameter name.
- Parameter
Type string - (String) The parameter type.
- Parameter
Value string - (String) The property value.
- Parameter
Display stringName - (String) The parameter display name.
- Parameter
Name string - (String) The parameter name.
- Parameter
Type string - (String) The parameter type.
- Parameter
Value string - (String) The property value.
- parameter
Display StringName - (String) The parameter display name.
- parameter
Name String - (String) The parameter name.
- parameter
Type String - (String) The parameter type.
- parameter
Value String - (String) The property value.
- parameter
Display stringName - (String) The parameter display name.
- parameter
Name string - (String) The parameter name.
- parameter
Type string - (String) The parameter type.
- parameter
Value string - (String) The property value.
- parameter_
display_ strname - (String) The parameter display name.
- parameter_
name str - (String) The parameter name.
- parameter_
type str - (String) The parameter type.
- parameter_
value str - (String) The property value.
- parameter
Display StringName - (String) The parameter display name.
- parameter
Name String - (String) The parameter name.
- parameter
Type String - (String) The parameter type.
- parameter
Value String - (String) The property value.
GetSccReportEvaluationsEvaluationDetail
- Properties
List<Get
Scc Report Evaluations Evaluation Detail Property> - (List) The evaluation properties.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for properties:
- Constraints: The maximum length is
- Properties
[]Get
Scc Report Evaluations Evaluation Detail Property - (List) The evaluation properties.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for properties:
- Constraints: The maximum length is
- properties
List<Get
Scc Report Evaluations Evaluation Detail Property> - (List) The evaluation properties.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for properties:
- Constraints: The maximum length is
- properties
Get
Scc Report Evaluations Evaluation Detail Property[] - (List) The evaluation properties.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for properties:
- Constraints: The maximum length is
- properties
Sequence[Get
Scc Report Evaluations Evaluation Detail Property] - (List) The evaluation properties.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for properties:
- Constraints: The maximum length is
- properties List<Property Map>
- (List) The evaluation properties.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for properties:
- Constraints: The maximum length is
GetSccReportEvaluationsEvaluationDetailProperty
- Expected
Value string - (String) The property value.
- Found
Value string - (String) The property value.
- Operator string
- (String) The property operator.
- Property string
- (String) The property name.
- Property
Description string - (String) The property description.
- Expected
Value string - (String) The property value.
- Found
Value string - (String) The property value.
- Operator string
- (String) The property operator.
- Property string
- (String) The property name.
- Property
Description string - (String) The property description.
- expected
Value String - (String) The property value.
- found
Value String - (String) The property value.
- operator String
- (String) The property operator.
- property String
- (String) The property name.
- property
Description String - (String) The property description.
- expected
Value string - (String) The property value.
- found
Value string - (String) The property value.
- operator string
- (String) The property operator.
- property string
- (String) The property name.
- property
Description string - (String) The property description.
- expected_
value str - (String) The property value.
- found_
value str - (String) The property value.
- operator str
- (String) The property operator.
- property str
- (String) The property name.
- property_
description str - (String) The property description.
- expected
Value String - (String) The property value.
- found
Value String - (String) The property value.
- operator String
- (String) The property operator.
- property String
- (String) The property name.
- property
Description String - (String) The property description.
GetSccReportEvaluationsEvaluationTarget
- Account
Id string - (String) The target account ID.
- Id string
- (String) The target ID.
- Resource
Crn string - (String) The target resource CRN.
- Resource
Name string - (String) The target resource name.
- Service
Name string - (String) The target service name.
- Account
Id string - (String) The target account ID.
- Id string
- (String) The target ID.
- Resource
Crn string - (String) The target resource CRN.
- Resource
Name string - (String) The target resource name.
- Service
Name string - (String) The target service name.
- account
Id String - (String) The target account ID.
- id String
- (String) The target ID.
- resource
Crn String - (String) The target resource CRN.
- resource
Name String - (String) The target resource name.
- service
Name String - (String) The target service name.
- account
Id string - (String) The target account ID.
- id string
- (String) The target ID.
- resource
Crn string - (String) The target resource CRN.
- resource
Name string - (String) The target resource name.
- service
Name string - (String) The target service name.
- account_
id str - (String) The target account ID.
- id str
- (String) The target ID.
- resource_
crn str - (String) The target resource CRN.
- resource_
name str - (String) The target resource name.
- service_
name str - (String) The target service name.
- account
Id String - (String) The target account ID.
- id String
- (String) The target ID.
- resource
Crn String - (String) The target resource CRN.
- resource
Name String - (String) The target resource name.
- service
Name String - (String) The target service name.
GetSccReportEvaluationsFirst
- Href string
- (String) The URL for the first and next page.
- Href string
- (String) The URL for the first and next page.
- href String
- (String) The URL for the first and next page.
- href string
- (String) The URL for the first and next page.
- href str
- (String) The URL for the first and next page.
- href String
- (String) The URL for the first and next page.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.