fortimanager.DvmdbRevision
Explore with Pulumi AI
ADOM revision table.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.DvmdbRevision("trname", {
createdBy: "admin",
createdTime: 1619027731,
desc: "This is a Terraform example",
version: 1,
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.DvmdbRevision("trname",
created_by="admin",
created_time=1619027731,
desc="This is a Terraform example",
version=1)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fortimanager.NewDvmdbRevision(ctx, "trname", &fortimanager.DvmdbRevisionArgs{
CreatedBy: pulumi.String("admin"),
CreatedTime: pulumi.Float64(1619027731),
Desc: pulumi.String("This is a Terraform example"),
Version: pulumi.Float64(1),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname = new Fortimanager.DvmdbRevision("trname", new()
{
CreatedBy = "admin",
CreatedTime = 1619027731,
Desc = "This is a Terraform example",
Version = 1,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.DvmdbRevision;
import com.pulumi.fortimanager.DvmdbRevisionArgs;
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 trname = new DvmdbRevision("trname", DvmdbRevisionArgs.builder()
.createdBy("admin")
.createdTime(1619027731)
.desc("This is a Terraform example")
.version(1)
.build());
}
}
resources:
trname:
type: fortimanager:DvmdbRevision
properties:
createdBy: admin
createdTime: 1.619027731e+09
desc: This is a Terraform example
version: 1
Create DvmdbRevision Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DvmdbRevision(name: string, args?: DvmdbRevisionArgs, opts?: CustomResourceOptions);
@overload
def DvmdbRevision(resource_name: str,
args: Optional[DvmdbRevisionArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def DvmdbRevision(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
created_by: Optional[str] = None,
created_time: Optional[float] = None,
desc: Optional[str] = None,
dvmdb_revision_id: Optional[str] = None,
locked: Optional[float] = None,
name: Optional[str] = None,
scopetype: Optional[str] = None,
version: Optional[float] = None)
func NewDvmdbRevision(ctx *Context, name string, args *DvmdbRevisionArgs, opts ...ResourceOption) (*DvmdbRevision, error)
public DvmdbRevision(string name, DvmdbRevisionArgs? args = null, CustomResourceOptions? opts = null)
public DvmdbRevision(String name, DvmdbRevisionArgs args)
public DvmdbRevision(String name, DvmdbRevisionArgs args, CustomResourceOptions options)
type: fortimanager:DvmdbRevision
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 DvmdbRevisionArgs
- 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 DvmdbRevisionArgs
- 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 DvmdbRevisionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DvmdbRevisionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DvmdbRevisionArgs
- 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 dvmdbRevisionResource = new Fortimanager.DvmdbRevision("dvmdbRevisionResource", new()
{
Adom = "string",
CreatedBy = "string",
CreatedTime = 0,
Desc = "string",
DvmdbRevisionId = "string",
Locked = 0,
Name = "string",
Scopetype = "string",
Version = 0,
});
example, err := fortimanager.NewDvmdbRevision(ctx, "dvmdbRevisionResource", &fortimanager.DvmdbRevisionArgs{
Adom: pulumi.String("string"),
CreatedBy: pulumi.String("string"),
CreatedTime: pulumi.Float64(0),
Desc: pulumi.String("string"),
DvmdbRevisionId: pulumi.String("string"),
Locked: pulumi.Float64(0),
Name: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Version: pulumi.Float64(0),
})
var dvmdbRevisionResource = new DvmdbRevision("dvmdbRevisionResource", DvmdbRevisionArgs.builder()
.adom("string")
.createdBy("string")
.createdTime(0)
.desc("string")
.dvmdbRevisionId("string")
.locked(0)
.name("string")
.scopetype("string")
.version(0)
.build());
dvmdb_revision_resource = fortimanager.DvmdbRevision("dvmdbRevisionResource",
adom="string",
created_by="string",
created_time=0,
desc="string",
dvmdb_revision_id="string",
locked=0,
name="string",
scopetype="string",
version=0)
const dvmdbRevisionResource = new fortimanager.DvmdbRevision("dvmdbRevisionResource", {
adom: "string",
createdBy: "string",
createdTime: 0,
desc: "string",
dvmdbRevisionId: "string",
locked: 0,
name: "string",
scopetype: "string",
version: 0,
});
type: fortimanager:DvmdbRevision
properties:
adom: string
createdBy: string
createdTime: 0
desc: string
dvmdbRevisionId: string
locked: 0
name: string
scopetype: string
version: 0
DvmdbRevision 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 DvmdbRevision resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Created
By string - Created_By.
- Created
Time double - Created_Time.
- Desc string
- Desc.
- Dvmdb
Revision stringId - an identifier for the resource with format {{version}}.
- Locked double
- Locked.
- Name string
- Name.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Version double
- Version.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Created
By string - Created_By.
- Created
Time float64 - Created_Time.
- Desc string
- Desc.
- Dvmdb
Revision stringId - an identifier for the resource with format {{version}}.
- Locked float64
- Locked.
- Name string
- Name.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Version float64
- Version.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - created
By String - Created_By.
- created
Time Double - Created_Time.
- desc String
- Desc.
- dvmdb
Revision StringId - an identifier for the resource with format {{version}}.
- locked Double
- Locked.
- name String
- Name.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - version Double
- Version.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - created
By string - Created_By.
- created
Time number - Created_Time.
- desc string
- Desc.
- dvmdb
Revision stringId - an identifier for the resource with format {{version}}.
- locked number
- Locked.
- name string
- Name.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - version number
- Version.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - created_
by str - Created_By.
- created_
time float - Created_Time.
- desc str
- Desc.
- dvmdb_
revision_ strid - an identifier for the resource with format {{version}}.
- locked float
- Locked.
- name str
- Name.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - version float
- Version.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - created
By String - Created_By.
- created
Time Number - Created_Time.
- desc String
- Desc.
- dvmdb
Revision StringId - an identifier for the resource with format {{version}}.
- locked Number
- Locked.
- name String
- Name.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - version Number
- Version.
Outputs
All input properties are implicitly available as output properties. Additionally, the DvmdbRevision resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing DvmdbRevision Resource
Get an existing DvmdbRevision 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?: DvmdbRevisionState, opts?: CustomResourceOptions): DvmdbRevision
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
created_by: Optional[str] = None,
created_time: Optional[float] = None,
desc: Optional[str] = None,
dvmdb_revision_id: Optional[str] = None,
locked: Optional[float] = None,
name: Optional[str] = None,
scopetype: Optional[str] = None,
version: Optional[float] = None) -> DvmdbRevision
func GetDvmdbRevision(ctx *Context, name string, id IDInput, state *DvmdbRevisionState, opts ...ResourceOption) (*DvmdbRevision, error)
public static DvmdbRevision Get(string name, Input<string> id, DvmdbRevisionState? state, CustomResourceOptions? opts = null)
public static DvmdbRevision get(String name, Output<String> id, DvmdbRevisionState state, CustomResourceOptions options)
resources: _: type: fortimanager:DvmdbRevision 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Created
By string - Created_By.
- Created
Time double - Created_Time.
- Desc string
- Desc.
- Dvmdb
Revision stringId - an identifier for the resource with format {{version}}.
- Locked double
- Locked.
- Name string
- Name.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Version double
- Version.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Created
By string - Created_By.
- Created
Time float64 - Created_Time.
- Desc string
- Desc.
- Dvmdb
Revision stringId - an identifier for the resource with format {{version}}.
- Locked float64
- Locked.
- Name string
- Name.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Version float64
- Version.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - created
By String - Created_By.
- created
Time Double - Created_Time.
- desc String
- Desc.
- dvmdb
Revision StringId - an identifier for the resource with format {{version}}.
- locked Double
- Locked.
- name String
- Name.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - version Double
- Version.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - created
By string - Created_By.
- created
Time number - Created_Time.
- desc string
- Desc.
- dvmdb
Revision stringId - an identifier for the resource with format {{version}}.
- locked number
- Locked.
- name string
- Name.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - version number
- Version.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - created_
by str - Created_By.
- created_
time float - Created_Time.
- desc str
- Desc.
- dvmdb_
revision_ strid - an identifier for the resource with format {{version}}.
- locked float
- Locked.
- name str
- Name.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - version float
- Version.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - created
By String - Created_By.
- created
Time Number - Created_Time.
- desc String
- Desc.
- dvmdb
Revision StringId - an identifier for the resource with format {{version}}.
- locked Number
- Locked.
- name String
- Name.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - version Number
- Version.
Import
Dvmdb Revision can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/dvmdbRevision:DvmdbRevision labelname {{version}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.