published on Friday, Mar 6, 2026 by Pulumi
published on Friday, Mar 6, 2026 by Pulumi
This resource provides the Job Advisor Report Check resource in Oracle Cloud Infrastructure Database Migration service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/database-migration/latest/AdvisorReportCheck
Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/databasemigration
Update the premigration extended Advisor report check.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testJobAdvisorReportCheck = new oci.databasemigration.JobAdvisorReportCheck("test_job_advisor_report_check", {
advisorReportCheckId: testAdvisorReportCheck.id,
isReviewed: jobAdvisorReportCheckIsReviewed,
jobId: testJob.id,
});
import pulumi
import pulumi_oci as oci
test_job_advisor_report_check = oci.databasemigration.JobAdvisorReportCheck("test_job_advisor_report_check",
advisor_report_check_id=test_advisor_report_check["id"],
is_reviewed=job_advisor_report_check_is_reviewed,
job_id=test_job["id"])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/databasemigration"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := databasemigration.NewJobAdvisorReportCheck(ctx, "test_job_advisor_report_check", &databasemigration.JobAdvisorReportCheckArgs{
AdvisorReportCheckId: pulumi.Any(testAdvisorReportCheck.Id),
IsReviewed: pulumi.Any(jobAdvisorReportCheckIsReviewed),
JobId: pulumi.Any(testJob.Id),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testJobAdvisorReportCheck = new Oci.DatabaseMigration.JobAdvisorReportCheck("test_job_advisor_report_check", new()
{
AdvisorReportCheckId = testAdvisorReportCheck.Id,
IsReviewed = jobAdvisorReportCheckIsReviewed,
JobId = testJob.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseMigration.JobAdvisorReportCheck;
import com.pulumi.oci.DatabaseMigration.JobAdvisorReportCheckArgs;
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) {
var testJobAdvisorReportCheck = new JobAdvisorReportCheck("testJobAdvisorReportCheck", JobAdvisorReportCheckArgs.builder()
.advisorReportCheckId(testAdvisorReportCheck.id())
.isReviewed(jobAdvisorReportCheckIsReviewed)
.jobId(testJob.id())
.build());
}
}
resources:
testJobAdvisorReportCheck:
type: oci:DatabaseMigration:JobAdvisorReportCheck
name: test_job_advisor_report_check
properties:
advisorReportCheckId: ${testAdvisorReportCheck.id}
isReviewed: ${jobAdvisorReportCheckIsReviewed}
jobId: ${testJob.id}
Create JobAdvisorReportCheck Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new JobAdvisorReportCheck(name: string, args: JobAdvisorReportCheckArgs, opts?: CustomResourceOptions);@overload
def JobAdvisorReportCheck(resource_name: str,
args: JobAdvisorReportCheckArgs,
opts: Optional[ResourceOptions] = None)
@overload
def JobAdvisorReportCheck(resource_name: str,
opts: Optional[ResourceOptions] = None,
advisor_report_check_id: Optional[str] = None,
is_reviewed: Optional[bool] = None,
job_id: Optional[str] = None)func NewJobAdvisorReportCheck(ctx *Context, name string, args JobAdvisorReportCheckArgs, opts ...ResourceOption) (*JobAdvisorReportCheck, error)public JobAdvisorReportCheck(string name, JobAdvisorReportCheckArgs args, CustomResourceOptions? opts = null)
public JobAdvisorReportCheck(String name, JobAdvisorReportCheckArgs args)
public JobAdvisorReportCheck(String name, JobAdvisorReportCheckArgs args, CustomResourceOptions options)
type: oci:DatabaseMigration:JobAdvisorReportCheck
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args JobAdvisorReportCheckArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args JobAdvisorReportCheckArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args JobAdvisorReportCheckArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args JobAdvisorReportCheckArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args JobAdvisorReportCheckArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var jobAdvisorReportCheckResource = new Oci.DatabaseMigration.JobAdvisorReportCheck("jobAdvisorReportCheckResource", new()
{
AdvisorReportCheckId = "string",
IsReviewed = false,
JobId = "string",
});
example, err := databasemigration.NewJobAdvisorReportCheck(ctx, "jobAdvisorReportCheckResource", &databasemigration.JobAdvisorReportCheckArgs{
AdvisorReportCheckId: pulumi.String("string"),
IsReviewed: pulumi.Bool(false),
JobId: pulumi.String("string"),
})
var jobAdvisorReportCheckResource = new JobAdvisorReportCheck("jobAdvisorReportCheckResource", JobAdvisorReportCheckArgs.builder()
.advisorReportCheckId("string")
.isReviewed(false)
.jobId("string")
.build());
job_advisor_report_check_resource = oci.databasemigration.JobAdvisorReportCheck("jobAdvisorReportCheckResource",
advisor_report_check_id="string",
is_reviewed=False,
job_id="string")
const jobAdvisorReportCheckResource = new oci.databasemigration.JobAdvisorReportCheck("jobAdvisorReportCheckResource", {
advisorReportCheckId: "string",
isReviewed: false,
jobId: "string",
});
type: oci:DatabaseMigration:JobAdvisorReportCheck
properties:
advisorReportCheckId: string
isReviewed: false
jobId: string
JobAdvisorReportCheck Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The JobAdvisorReportCheck resource accepts the following input properties:
- Advisor
Report stringCheck Id - The ID of the advisor check
- Is
Reviewed bool - (Updatable) User flag for advisor report check.
- Job
Id string The OCID of the job
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Advisor
Report stringCheck Id - The ID of the advisor check
- Is
Reviewed bool - (Updatable) User flag for advisor report check.
- Job
Id string The OCID of the job
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- advisor
Report StringCheck Id - The ID of the advisor check
- is
Reviewed Boolean - (Updatable) User flag for advisor report check.
- job
Id String The OCID of the job
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- advisor
Report stringCheck Id - The ID of the advisor check
- is
Reviewed boolean - (Updatable) User flag for advisor report check.
- job
Id string The OCID of the job
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- advisor_
report_ strcheck_ id - The ID of the advisor check
- is_
reviewed bool - (Updatable) User flag for advisor report check.
- job_
id str The OCID of the job
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- advisor
Report StringCheck Id - The ID of the advisor check
- is
Reviewed Boolean - (Updatable) User flag for advisor report check.
- job
Id String The OCID of the job
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the JobAdvisorReportCheck resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<Job
Advisor Report Check Item> - Array of advisor check items.
- Summaries
List<Job
Advisor Report Check Summary> - Pre-Migration extended advisor report summary.
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]Job
Advisor Report Check Item - Array of advisor check items.
- Summaries
[]Job
Advisor Report Check Summary - Pre-Migration extended advisor report summary.
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<Job
Advisor Report Check Item> - Array of advisor check items.
- summaries
List<Job
Advisor Report Check Summary> - Pre-Migration extended advisor report summary.
- id string
- The provider-assigned unique ID for this managed resource.
- items
Job
Advisor Report Check Item[] - Array of advisor check items.
- summaries
Job
Advisor Report Check Summary[] - Pre-Migration extended advisor report summary.
- id str
- The provider-assigned unique ID for this managed resource.
- items
Sequence[Job
Advisor Report Check Item] - Array of advisor check items.
- summaries
Sequence[Job
Advisor Report Check Summary] - Pre-Migration extended advisor report summary.
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
- Array of advisor check items.
- summaries List<Property Map>
- Pre-Migration extended advisor report summary.
Look up Existing JobAdvisorReportCheck Resource
Get an existing JobAdvisorReportCheck resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: JobAdvisorReportCheckState, opts?: CustomResourceOptions): JobAdvisorReportCheck@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
advisor_report_check_id: Optional[str] = None,
is_reviewed: Optional[bool] = None,
items: Optional[Sequence[JobAdvisorReportCheckItemArgs]] = None,
job_id: Optional[str] = None,
summaries: Optional[Sequence[JobAdvisorReportCheckSummaryArgs]] = None) -> JobAdvisorReportCheckfunc GetJobAdvisorReportCheck(ctx *Context, name string, id IDInput, state *JobAdvisorReportCheckState, opts ...ResourceOption) (*JobAdvisorReportCheck, error)public static JobAdvisorReportCheck Get(string name, Input<string> id, JobAdvisorReportCheckState? state, CustomResourceOptions? opts = null)public static JobAdvisorReportCheck get(String name, Output<String> id, JobAdvisorReportCheckState state, CustomResourceOptions options)resources: _: type: oci:DatabaseMigration:JobAdvisorReportCheck get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Advisor
Report stringCheck Id - The ID of the advisor check
- Is
Reviewed bool - (Updatable) User flag for advisor report check.
- Items
List<Job
Advisor Report Check Item> - Array of advisor check items.
- Job
Id string The OCID of the job
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Summaries
List<Job
Advisor Report Check Summary> - Pre-Migration extended advisor report summary.
- Advisor
Report stringCheck Id - The ID of the advisor check
- Is
Reviewed bool - (Updatable) User flag for advisor report check.
- Items
[]Job
Advisor Report Check Item Args - Array of advisor check items.
- Job
Id string The OCID of the job
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Summaries
[]Job
Advisor Report Check Summary Args - Pre-Migration extended advisor report summary.
- advisor
Report StringCheck Id - The ID of the advisor check
- is
Reviewed Boolean - (Updatable) User flag for advisor report check.
- items
List<Job
Advisor Report Check Item> - Array of advisor check items.
- job
Id String The OCID of the job
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- summaries
List<Job
Advisor Report Check Summary> - Pre-Migration extended advisor report summary.
- advisor
Report stringCheck Id - The ID of the advisor check
- is
Reviewed boolean - (Updatable) User flag for advisor report check.
- items
Job
Advisor Report Check Item[] - Array of advisor check items.
- job
Id string The OCID of the job
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- summaries
Job
Advisor Report Check Summary[] - Pre-Migration extended advisor report summary.
- advisor_
report_ strcheck_ id - The ID of the advisor check
- is_
reviewed bool - (Updatable) User flag for advisor report check.
- items
Sequence[Job
Advisor Report Check Item Args] - Array of advisor check items.
- job_
id str The OCID of the job
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- summaries
Sequence[Job
Advisor Report Check Summary Args] - Pre-Migration extended advisor report summary.
- advisor
Report StringCheck Id - The ID of the advisor check
- is
Reviewed Boolean - (Updatable) User flag for advisor report check.
- items List<Property Map>
- Array of advisor check items.
- job
Id String The OCID of the job
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- summaries List<Property Map>
- Pre-Migration extended advisor report summary.
Supporting Types
JobAdvisorReportCheckItem, JobAdvisorReportCheckItemArgs
- Action string
- Fixing the issue.
- Columns
List<Job
Advisor Report Check Item Column> - Array of the column of the objects table.
- Display
Name string - Pre-Migration сheck display name.
- Fixup
Script stringLocation - The path to the fixup script for this check.
- Impact string
- Impact of the issue on data migration.
- Is
Exclusion boolAllowed - If false, objects cannot be excluded from migration.
- Is
Reviewed bool - (Updatable) User flag for advisor report check.
- Issue string
- Description of the issue.
- Key string
- Pre-Migration сheck id.
- Metadatas
List<Job
Advisor Report Check Item Metadata> - Metadata of object.
- Object
Count int - Number of database objects to migrate.
- Result
Type string - Pre-Migration advisor result.
- Action string
- Fixing the issue.
- Columns
[]Job
Advisor Report Check Item Column - Array of the column of the objects table.
- Display
Name string - Pre-Migration сheck display name.
- Fixup
Script stringLocation - The path to the fixup script for this check.
- Impact string
- Impact of the issue on data migration.
- Is
Exclusion boolAllowed - If false, objects cannot be excluded from migration.
- Is
Reviewed bool - (Updatable) User flag for advisor report check.
- Issue string
- Description of the issue.
- Key string
- Pre-Migration сheck id.
- Metadatas
[]Job
Advisor Report Check Item Metadata - Metadata of object.
- Object
Count int - Number of database objects to migrate.
- Result
Type string - Pre-Migration advisor result.
- action String
- Fixing the issue.
- columns
List<Job
Advisor Report Check Item Column> - Array of the column of the objects table.
- display
Name String - Pre-Migration сheck display name.
- fixup
Script StringLocation - The path to the fixup script for this check.
- impact String
- Impact of the issue on data migration.
- is
Exclusion BooleanAllowed - If false, objects cannot be excluded from migration.
- is
Reviewed Boolean - (Updatable) User flag for advisor report check.
- issue String
- Description of the issue.
- key String
- Pre-Migration сheck id.
- metadatas
List<Job
Advisor Report Check Item Metadata> - Metadata of object.
- object
Count Integer - Number of database objects to migrate.
- result
Type String - Pre-Migration advisor result.
- action string
- Fixing the issue.
- columns
Job
Advisor Report Check Item Column[] - Array of the column of the objects table.
- display
Name string - Pre-Migration сheck display name.
- fixup
Script stringLocation - The path to the fixup script for this check.
- impact string
- Impact of the issue on data migration.
- is
Exclusion booleanAllowed - If false, objects cannot be excluded from migration.
- is
Reviewed boolean - (Updatable) User flag for advisor report check.
- issue string
- Description of the issue.
- key string
- Pre-Migration сheck id.
- metadatas
Job
Advisor Report Check Item Metadata[] - Metadata of object.
- object
Count number - Number of database objects to migrate.
- result
Type string - Pre-Migration advisor result.
- action str
- Fixing the issue.
- columns
Sequence[Job
Advisor Report Check Item Column] - Array of the column of the objects table.
- display_
name str - Pre-Migration сheck display name.
- fixup_
script_ strlocation - The path to the fixup script for this check.
- impact str
- Impact of the issue on data migration.
- is_
exclusion_ boolallowed - If false, objects cannot be excluded from migration.
- is_
reviewed bool - (Updatable) User flag for advisor report check.
- issue str
- Description of the issue.
- key str
- Pre-Migration сheck id.
- metadatas
Sequence[Job
Advisor Report Check Item Metadata] - Metadata of object.
- object_
count int - Number of database objects to migrate.
- result_
type str - Pre-Migration advisor result.
- action String
- Fixing the issue.
- columns List<Property Map>
- Array of the column of the objects table.
- display
Name String - Pre-Migration сheck display name.
- fixup
Script StringLocation - The path to the fixup script for this check.
- impact String
- Impact of the issue on data migration.
- is
Exclusion BooleanAllowed - If false, objects cannot be excluded from migration.
- is
Reviewed Boolean - (Updatable) User flag for advisor report check.
- issue String
- Description of the issue.
- key String
- Pre-Migration сheck id.
- metadatas List<Property Map>
- Metadata of object.
- object
Count Number - Number of database objects to migrate.
- result
Type String - Pre-Migration advisor result.
JobAdvisorReportCheckItemColumn, JobAdvisorReportCheckItemColumnArgs
- Display
Name string - Pre-Migration сheck display name.
- Key string
- Pre-Migration сheck id.
- Display
Name string - Pre-Migration сheck display name.
- Key string
- Pre-Migration сheck id.
- display
Name String - Pre-Migration сheck display name.
- key String
- Pre-Migration сheck id.
- display
Name string - Pre-Migration сheck display name.
- key string
- Pre-Migration сheck id.
- display_
name str - Pre-Migration сheck display name.
- key str
- Pre-Migration сheck id.
- display
Name String - Pre-Migration сheck display name.
- key String
- Pre-Migration сheck id.
JobAdvisorReportCheckItemMetadata, JobAdvisorReportCheckItemMetadataArgs
- Object
Name stringColumn - The field that stores the name of the object.
- Object
Type stringColumn - The field that stores the type of the object.
- Object
Type stringFixed - The field that stores the fixed type of the object.
- Schema
Owner stringColumn - The field that stores the owner of the object.
- Object
Name stringColumn - The field that stores the name of the object.
- Object
Type stringColumn - The field that stores the type of the object.
- Object
Type stringFixed - The field that stores the fixed type of the object.
- Schema
Owner stringColumn - The field that stores the owner of the object.
- object
Name StringColumn - The field that stores the name of the object.
- object
Type StringColumn - The field that stores the type of the object.
- object
Type StringFixed - The field that stores the fixed type of the object.
- schema
Owner StringColumn - The field that stores the owner of the object.
- object
Name stringColumn - The field that stores the name of the object.
- object
Type stringColumn - The field that stores the type of the object.
- object
Type stringFixed - The field that stores the fixed type of the object.
- schema
Owner stringColumn - The field that stores the owner of the object.
- object_
name_ strcolumn - The field that stores the name of the object.
- object_
type_ strcolumn - The field that stores the type of the object.
- object_
type_ strfixed - The field that stores the fixed type of the object.
- schema_
owner_ strcolumn - The field that stores the owner of the object.
- object
Name StringColumn - The field that stores the name of the object.
- object
Type StringColumn - The field that stores the type of the object.
- object
Type StringFixed - The field that stores the fixed type of the object.
- schema
Owner StringColumn - The field that stores the owner of the object.
JobAdvisorReportCheckSummary, JobAdvisorReportCheckSummaryArgs
- Blocker
Results intTotal Count - Number of BLOCKER results in the extended advisor report.
- Fatal
Results intTotal Count - Number of FATAL results in the extended advisor report.
- Informational
Results intTotal Count - Number of INFORMATIONAL results in the extended advisor report.
- Pass
Results intTotal Count - Number of PASS results in the extended advisor report.
- Warning
Results intTotal Count - Number of WARNING results in the extended advisor report.
- Blocker
Results intTotal Count - Number of BLOCKER results in the extended advisor report.
- Fatal
Results intTotal Count - Number of FATAL results in the extended advisor report.
- Informational
Results intTotal Count - Number of INFORMATIONAL results in the extended advisor report.
- Pass
Results intTotal Count - Number of PASS results in the extended advisor report.
- Warning
Results intTotal Count - Number of WARNING results in the extended advisor report.
- blocker
Results IntegerTotal Count - Number of BLOCKER results in the extended advisor report.
- fatal
Results IntegerTotal Count - Number of FATAL results in the extended advisor report.
- informational
Results IntegerTotal Count - Number of INFORMATIONAL results in the extended advisor report.
- pass
Results IntegerTotal Count - Number of PASS results in the extended advisor report.
- warning
Results IntegerTotal Count - Number of WARNING results in the extended advisor report.
- blocker
Results numberTotal Count - Number of BLOCKER results in the extended advisor report.
- fatal
Results numberTotal Count - Number of FATAL results in the extended advisor report.
- informational
Results numberTotal Count - Number of INFORMATIONAL results in the extended advisor report.
- pass
Results numberTotal Count - Number of PASS results in the extended advisor report.
- warning
Results numberTotal Count - Number of WARNING results in the extended advisor report.
- blocker_
results_ inttotal_ count - Number of BLOCKER results in the extended advisor report.
- fatal_
results_ inttotal_ count - Number of FATAL results in the extended advisor report.
- informational_
results_ inttotal_ count - Number of INFORMATIONAL results in the extended advisor report.
- pass_
results_ inttotal_ count - Number of PASS results in the extended advisor report.
- warning_
results_ inttotal_ count - Number of WARNING results in the extended advisor report.
- blocker
Results NumberTotal Count - Number of BLOCKER results in the extended advisor report.
- fatal
Results NumberTotal Count - Number of FATAL results in the extended advisor report.
- informational
Results NumberTotal Count - Number of INFORMATIONAL results in the extended advisor report.
- pass
Results NumberTotal Count - Number of PASS results in the extended advisor report.
- warning
Results NumberTotal Count - Number of WARNING results in the extended advisor report.
Import
JobAdvisorReportChecks can be imported using the id, e.g.
$ pulumi import oci:DatabaseMigration/jobAdvisorReportCheck:JobAdvisorReportCheck test_job_advisor_report_check "jobs/{jobId}/advisorReportChecks/{advisorReportCheckId}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
published on Friday, Mar 6, 2026 by Pulumi
