ibm.getSccLatestReports
Explore with Pulumi AI
Retrieve information about the latest reports 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 sccLatestReports = ibm.getSccLatestReports({
instanceId: "00000000-1111-2222-3333-444444444444",
sort: "profile_name",
});
import pulumi
import pulumi_ibm as ibm
scc_latest_reports = ibm.get_scc_latest_reports(instance_id="00000000-1111-2222-3333-444444444444",
sort="profile_name")
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.GetSccLatestReports(ctx, &ibm.GetSccLatestReportsArgs{
InstanceId: "00000000-1111-2222-3333-444444444444",
Sort: pulumi.StringRef("profile_name"),
}, 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 sccLatestReports = Ibm.GetSccLatestReports.Invoke(new()
{
InstanceId = "00000000-1111-2222-3333-444444444444",
Sort = "profile_name",
});
});
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.GetSccLatestReportsArgs;
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 sccLatestReports = IbmFunctions.getSccLatestReports(GetSccLatestReportsArgs.builder()
.instanceId("00000000-1111-2222-3333-444444444444")
.sort("profile_name")
.build());
}
}
variables:
sccLatestReports:
fn::invoke:
function: ibm:getSccLatestReports
arguments:
instanceId: 00000000-1111-2222-3333-444444444444
sort: profile_name
Using getSccLatestReports
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 getSccLatestReports(args: GetSccLatestReportsArgs, opts?: InvokeOptions): Promise<GetSccLatestReportsResult>
function getSccLatestReportsOutput(args: GetSccLatestReportsOutputArgs, opts?: InvokeOptions): Output<GetSccLatestReportsResult>
def get_scc_latest_reports(id: Optional[str] = None,
instance_id: Optional[str] = None,
sort: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSccLatestReportsResult
def get_scc_latest_reports_output(id: Optional[pulumi.Input[str]] = None,
instance_id: Optional[pulumi.Input[str]] = None,
sort: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSccLatestReportsResult]
func GetSccLatestReports(ctx *Context, args *GetSccLatestReportsArgs, opts ...InvokeOption) (*GetSccLatestReportsResult, error)
func GetSccLatestReportsOutput(ctx *Context, args *GetSccLatestReportsOutputArgs, opts ...InvokeOption) GetSccLatestReportsResultOutput
> Note: This function is named GetSccLatestReports
in the Go SDK.
public static class GetSccLatestReports
{
public static Task<GetSccLatestReportsResult> InvokeAsync(GetSccLatestReportsArgs args, InvokeOptions? opts = null)
public static Output<GetSccLatestReportsResult> Invoke(GetSccLatestReportsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSccLatestReportsResult> getSccLatestReports(GetSccLatestReportsArgs args, InvokeOptions options)
public static Output<GetSccLatestReportsResult> getSccLatestReports(GetSccLatestReportsArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getSccLatestReports:getSccLatestReports
arguments:
# arguments dictionary
The following arguments are supported:
- Instance
Id string - The ID of the SCC instance in a particular region.
- Id string
- (String) The profile ID.
- Sort string
- This field sorts results by using a valid sort field. To learn more, see Sorting.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[\\-]?[a-z0-9_]+$/
.
- Constraints: The maximum length is
- Instance
Id string - The ID of the SCC instance in a particular region.
- Id string
- (String) The profile ID.
- Sort string
- This field sorts results by using a valid sort field. To learn more, see Sorting.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[\\-]?[a-z0-9_]+$/
.
- Constraints: The maximum length is
- instance
Id String - The ID of the SCC instance in a particular region.
- id String
- (String) The profile ID.
- sort String
- This field sorts results by using a valid sort field. To learn more, see Sorting.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[\\-]?[a-z0-9_]+$/
.
- Constraints: The maximum length is
- instance
Id string - The ID of the SCC instance in a particular region.
- id string
- (String) The profile ID.
- sort string
- This field sorts results by using a valid sort field. To learn more, see Sorting.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[\\-]?[a-z0-9_]+$/
.
- Constraints: The maximum length is
- instance_
id str - The ID of the SCC instance in a particular region.
- id str
- (String) The profile ID.
- sort str
- This field sorts results by using a valid sort field. To learn more, see Sorting.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[\\-]?[a-z0-9_]+$/
.
- Constraints: The maximum length is
- instance
Id String - The ID of the SCC instance in a particular region.
- id String
- (String) The profile ID.
- sort String
- This field sorts results by using a valid sort field. To learn more, see Sorting.
- Constraints: The maximum length is
32
characters. The minimum length is1
character. The value must match regular expression/^[\\-]?[a-z0-9_]+$/
.
- Constraints: The maximum length is
getSccLatestReports Result
The following output properties are available:
- Controls
Summaries List<GetScc Latest Reports Controls Summary> - (List) The compliance stats. Nested schema for controls_summary:
- Evaluations
Summaries List<GetScc Latest Reports Evaluations Summary> - (List) The evaluation stats. Nested schema for evaluations_summary:
- Home
Account stringId - (String) The ID of the home account.
- Id string
- (String) The profile ID.
- Instance
Id string - (String) Instance ID.
- Reports
List<Get
Scc Latest Reports Report> - (List) The list of reports.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for reports:
- Constraints: The maximum length is
- Scores
List<Get
Scc Latest Reports Score> - (List) The compliance score. Nested schema for score:
- Sort string
- Controls
Summaries []GetScc Latest Reports Controls Summary - (List) The compliance stats. Nested schema for controls_summary:
- Evaluations
Summaries []GetScc Latest Reports Evaluations Summary - (List) The evaluation stats. Nested schema for evaluations_summary:
- Home
Account stringId - (String) The ID of the home account.
- Id string
- (String) The profile ID.
- Instance
Id string - (String) Instance ID.
- Reports
[]Get
Scc Latest Reports Report - (List) The list of reports.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for reports:
- Constraints: The maximum length is
- Scores
[]Get
Scc Latest Reports Score - (List) The compliance score. Nested schema for score:
- Sort string
- controls
Summaries List<GetScc Latest Reports Controls Summary> - (List) The compliance stats. Nested schema for controls_summary:
- evaluations
Summaries List<GetScc Latest Reports Evaluations Summary> - (List) The evaluation stats. Nested schema for evaluations_summary:
- home
Account StringId - (String) The ID of the home account.
- id String
- (String) The profile ID.
- instance
Id String - (String) Instance ID.
- reports
List<Get
Scc Latest Reports Report> - (List) The list of reports.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for reports:
- Constraints: The maximum length is
- scores
List<Get
Scc Latest Reports Score> - (List) The compliance score. Nested schema for score:
- sort String
- controls
Summaries GetScc Latest Reports Controls Summary[] - (List) The compliance stats. Nested schema for controls_summary:
- evaluations
Summaries GetScc Latest Reports Evaluations Summary[] - (List) The evaluation stats. Nested schema for evaluations_summary:
- home
Account stringId - (String) The ID of the home account.
- id string
- (String) The profile ID.
- instance
Id string - (String) Instance ID.
- reports
Get
Scc Latest Reports Report[] - (List) The list of reports.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for reports:
- Constraints: The maximum length is
- scores
Get
Scc Latest Reports Score[] - (List) The compliance score. Nested schema for score:
- sort string
- controls_
summaries Sequence[GetScc Latest Reports Controls Summary] - (List) The compliance stats. Nested schema for controls_summary:
- evaluations_
summaries Sequence[GetScc Latest Reports Evaluations Summary] - (List) The evaluation stats. Nested schema for evaluations_summary:
- home_
account_ strid - (String) The ID of the home account.
- id str
- (String) The profile ID.
- instance_
id str - (String) Instance ID.
- reports
Sequence[Get
Scc Latest Reports Report] - (List) The list of reports.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for reports:
- Constraints: The maximum length is
- scores
Sequence[Get
Scc Latest Reports Score] - (List) The compliance score. Nested schema for score:
- sort str
- controls
Summaries List<Property Map> - (List) The compliance stats. Nested schema for controls_summary:
- evaluations
Summaries List<Property Map> - (List) The evaluation stats. Nested schema for evaluations_summary:
- home
Account StringId - (String) The ID of the home account.
- id String
- (String) The profile ID.
- instance
Id String - (String) Instance ID.
- reports List<Property Map>
- (List) The list of reports.
- Constraints: The maximum length is
1000
items. The minimum length is0
items. Nested schema for reports:
- Constraints: The maximum length is
- scores List<Property Map>
- (List) The compliance score. Nested schema for score:
- sort String
Supporting Types
GetSccLatestReportsControlsSummary
- 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.
GetSccLatestReportsEvaluationsSummary
- 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.
GetSccLatestReportsReport
- Accounts
List<Get
Scc Latest Reports Report Account> - (List) The account that is associated with a report. Nested schema for account:
- Attachments
List<Get
Scc Latest Reports Report Attachment> - (List) The attachment that is associated with a report. Nested schema for attachment:
- Cos
Object string - (String) The Cloud Object Storage object that is associated with the report.
- Created
On string - (String) The date when the report was created.
- Group
Id string - (String) The group ID that is associated with the report. The group ID combines profile, scope, and attachment IDs.
- Id string
- (String) The profile ID.
- Instance
Id string - The ID of the SCC instance in a particular region.
- Profiles
List<Get
Scc Latest Reports Report Profile> - (List) The profile information. Nested schema for profile:
- Scan
Time string - (String) The date when the scan was run.
- Type string
- (String) The type of the scan.
- Accounts
[]Get
Scc Latest Reports Report Account - (List) The account that is associated with a report. Nested schema for account:
- Attachments
[]Get
Scc Latest Reports Report Attachment - (List) The attachment that is associated with a report. Nested schema for attachment:
- Cos
Object string - (String) The Cloud Object Storage object that is associated with the report.
- Created
On string - (String) The date when the report was created.
- Group
Id string - (String) The group ID that is associated with the report. The group ID combines profile, scope, and attachment IDs.
- Id string
- (String) The profile ID.
- Instance
Id string - The ID of the SCC instance in a particular region.
- Profiles
[]Get
Scc Latest Reports Report Profile - (List) The profile information. Nested schema for profile:
- Scan
Time string - (String) The date when the scan was run.
- Type string
- (String) The type of the scan.
- accounts
List<Get
Scc Latest Reports Report Account> - (List) The account that is associated with a report. Nested schema for account:
- attachments
List<Get
Scc Latest Reports Report Attachment> - (List) The attachment that is associated with a report. Nested schema for attachment:
- cos
Object String - (String) The Cloud Object Storage object that is associated with the report.
- created
On String - (String) The date when the report was created.
- group
Id String - (String) The group ID that is associated with the report. The group ID combines profile, scope, and attachment IDs.
- id String
- (String) The profile ID.
- instance
Id String - The ID of the SCC instance in a particular region.
- profiles
List<Get
Scc Latest Reports Report Profile> - (List) The profile information. Nested schema for profile:
- scan
Time String - (String) The date when the scan was run.
- type String
- (String) The type of the scan.
- accounts
Get
Scc Latest Reports Report Account[] - (List) The account that is associated with a report. Nested schema for account:
- attachments
Get
Scc Latest Reports Report Attachment[] - (List) The attachment that is associated with a report. Nested schema for attachment:
- cos
Object string - (String) The Cloud Object Storage object that is associated with the report.
- created
On string - (String) The date when the report was created.
- group
Id string - (String) The group ID that is associated with the report. The group ID combines profile, scope, and attachment IDs.
- id string
- (String) The profile ID.
- instance
Id string - The ID of the SCC instance in a particular region.
- profiles
Get
Scc Latest Reports Report Profile[] - (List) The profile information. Nested schema for profile:
- scan
Time string - (String) The date when the scan was run.
- type string
- (String) The type of the scan.
- accounts
Sequence[Get
Scc Latest Reports Report Account] - (List) The account that is associated with a report. Nested schema for account:
- attachments
Sequence[Get
Scc Latest Reports Report Attachment] - (List) The attachment that is associated with a report. Nested schema for attachment:
- cos_
object str - (String) The Cloud Object Storage object that is associated with the report.
- created_
on str - (String) The date when the report was created.
- group_
id str - (String) The group ID that is associated with the report. The group ID combines profile, scope, and attachment IDs.
- id str
- (String) The profile ID.
- instance_
id str - The ID of the SCC instance in a particular region.
- profiles
Sequence[Get
Scc Latest Reports Report Profile] - (List) The profile information. Nested schema for profile:
- scan_
time str - (String) The date when the scan was run.
- type str
- (String) The type of the scan.
- accounts List<Property Map>
- (List) The account that is associated with a report. Nested schema for account:
- attachments List<Property Map>
- (List) The attachment that is associated with a report. Nested schema for attachment:
- cos
Object String - (String) The Cloud Object Storage object that is associated with the report.
- created
On String - (String) The date when the report was created.
- group
Id String - (String) The group ID that is associated with the report. The group ID combines profile, scope, and attachment IDs.
- id String
- (String) The profile ID.
- instance
Id String - The ID of the SCC instance in a particular region.
- profiles List<Property Map>
- (List) The profile information. Nested schema for profile:
- scan
Time String - (String) The date when the scan was run.
- type String
- (String) The type of the scan.
GetSccLatestReportsReportAccount
GetSccLatestReportsReportAttachment
- Description string
- (String) The description of the attachment.
- Id string
- (String) The profile ID.
- Name string
- (String) The profile name.
- Schedule string
- (String) The attachment schedule.
- Scopes
List<Get
Scc Latest Reports Report Attachment Scope> - (List) The scope of the attachment.
- Constraints: The maximum length is
8
items. The minimum length is0
items. Nested schema for scope:
- Constraints: The maximum length is
- Description string
- (String) The description of the attachment.
- Id string
- (String) The profile ID.
- Name string
- (String) The profile name.
- Schedule string
- (String) The attachment schedule.
- Scopes
[]Get
Scc Latest Reports Report Attachment Scope - (List) The scope of the attachment.
- Constraints: The maximum length is
8
items. The minimum length is0
items. Nested schema for scope:
- Constraints: The maximum length is
- description String
- (String) The description of the attachment.
- id String
- (String) The profile ID.
- name String
- (String) The profile name.
- schedule String
- (String) The attachment schedule.
- scopes
List<Get
Scc Latest Reports Report Attachment Scope> - (List) The scope of the attachment.
- Constraints: The maximum length is
8
items. The minimum length is0
items. Nested schema for scope:
- Constraints: The maximum length is
- description string
- (String) The description of the attachment.
- id string
- (String) The profile ID.
- name string
- (String) The profile name.
- schedule string
- (String) The attachment schedule.
- scopes
Get
Scc Latest Reports Report Attachment Scope[] - (List) The scope of the attachment.
- Constraints: The maximum length is
8
items. The minimum length is0
items. Nested schema for scope:
- Constraints: The maximum length is
- description str
- (String) The description of the attachment.
- id str
- (String) The profile ID.
- name str
- (String) The profile name.
- schedule str
- (String) The attachment schedule.
- scopes
Sequence[Get
Scc Latest Reports Report Attachment Scope] - (List) The scope of the attachment.
- Constraints: The maximum length is
8
items. The minimum length is0
items. Nested schema for scope:
- Constraints: The maximum length is
- description String
- (String) The description of the attachment.
- id String
- (String) The profile ID.
- name String
- (String) The profile name.
- schedule String
- (String) The attachment schedule.
- scopes List<Property Map>
- (List) The scope of the attachment.
- Constraints: The maximum length is
8
items. The minimum length is0
items. Nested schema for scope:
- Constraints: The maximum length is
GetSccLatestReportsReportAttachmentScope
- Environment string
- (String) The environment that relates to this scope.
- Id string
- (String) The profile ID.
- Properties
List<Get
Scc Latest Reports Report Attachment Scope Property> - (List) The properties that are supported for scoping by this environment.
- Constraints: The maximum length is
99999
items. The minimum length is0
items. Nested schema for properties:
- Constraints: The maximum length is
- Environment string
- (String) The environment that relates to this scope.
- Id string
- (String) The profile ID.
- Properties
[]Get
Scc Latest Reports Report Attachment Scope Property - (List) The properties that are supported for scoping by this environment.
- Constraints: The maximum length is
99999
items. The minimum length is0
items. Nested schema for properties:
- Constraints: The maximum length is
- environment String
- (String) The environment that relates to this scope.
- id String
- (String) The profile ID.
- properties
List<Get
Scc Latest Reports Report Attachment Scope Property> - (List) The properties that are supported for scoping by this environment.
- Constraints: The maximum length is
99999
items. The minimum length is0
items. Nested schema for properties:
- Constraints: The maximum length is
- environment string
- (String) The environment that relates to this scope.
- id string
- (String) The profile ID.
- properties
Get
Scc Latest Reports Report Attachment Scope Property[] - (List) The properties that are supported for scoping by this environment.
- Constraints: The maximum length is
99999
items. The minimum length is0
items. Nested schema for properties:
- Constraints: The maximum length is
- environment str
- (String) The environment that relates to this scope.
- id str
- (String) The profile ID.
- properties
Sequence[Get
Scc Latest Reports Report Attachment Scope Property] - (List) The properties that are supported for scoping by this environment.
- Constraints: The maximum length is
99999
items. The minimum length is0
items. Nested schema for properties:
- Constraints: The maximum length is
- environment String
- (String) The environment that relates to this scope.
- id String
- (String) The profile ID.
- properties List<Property Map>
- (List) The properties that are supported for scoping by this environment.
- Constraints: The maximum length is
99999
items. The minimum length is0
items. Nested schema for properties:
- Constraints: The maximum length is
GetSccLatestReportsReportAttachmentScopeProperty
GetSccLatestReportsReportProfile
GetSccLatestReportsScore
- 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.