checkpoint.ManagementOutboundInspectionCertificate
Explore with Pulumi AI
This resource allows you to execute Check Point Outbound Inspection Certificate.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.ManagementOutboundInspectionCertificate("example", {
base64Password: "bXlfcGFzc3dvcmQ=",
issuedBy: "www.checkpoint.com",
validFrom: "2021-04-17",
validTo: "2028-04-17",
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.ManagementOutboundInspectionCertificate("example",
base64_password="bXlfcGFzc3dvcmQ=",
issued_by="www.checkpoint.com",
valid_from="2021-04-17",
valid_to="2028-04-17")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v2/checkpoint"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := checkpoint.NewManagementOutboundInspectionCertificate(ctx, "example", &checkpoint.ManagementOutboundInspectionCertificateArgs{
Base64Password: pulumi.String("bXlfcGFzc3dvcmQ="),
IssuedBy: pulumi.String("www.checkpoint.com"),
ValidFrom: pulumi.String("2021-04-17"),
ValidTo: pulumi.String("2028-04-17"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var example = new Checkpoint.ManagementOutboundInspectionCertificate("example", new()
{
Base64Password = "bXlfcGFzc3dvcmQ=",
IssuedBy = "www.checkpoint.com",
ValidFrom = "2021-04-17",
ValidTo = "2028-04-17",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementOutboundInspectionCertificate;
import com.pulumi.checkpoint.ManagementOutboundInspectionCertificateArgs;
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 example = new ManagementOutboundInspectionCertificate("example", ManagementOutboundInspectionCertificateArgs.builder()
.base64Password("bXlfcGFzc3dvcmQ=")
.issuedBy("www.checkpoint.com")
.validFrom("2021-04-17")
.validTo("2028-04-17")
.build());
}
}
resources:
example:
type: checkpoint:ManagementOutboundInspectionCertificate
properties:
base64Password: bXlfcGFzc3dvcmQ=
issuedBy: www.checkpoint.com
validFrom: 2021-04-17
validTo: 2028-04-17
Create ManagementOutboundInspectionCertificate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementOutboundInspectionCertificate(name: string, args: ManagementOutboundInspectionCertificateArgs, opts?: CustomResourceOptions);
@overload
def ManagementOutboundInspectionCertificate(resource_name: str,
args: ManagementOutboundInspectionCertificateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementOutboundInspectionCertificate(resource_name: str,
opts: Optional[ResourceOptions] = None,
base64_password: Optional[str] = None,
issued_by: Optional[str] = None,
valid_from: Optional[str] = None,
valid_to: Optional[str] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
is_default: Optional[bool] = None,
management_outbound_inspection_certificate_id: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Sequence[str]] = None)
func NewManagementOutboundInspectionCertificate(ctx *Context, name string, args ManagementOutboundInspectionCertificateArgs, opts ...ResourceOption) (*ManagementOutboundInspectionCertificate, error)
public ManagementOutboundInspectionCertificate(string name, ManagementOutboundInspectionCertificateArgs args, CustomResourceOptions? opts = null)
public ManagementOutboundInspectionCertificate(String name, ManagementOutboundInspectionCertificateArgs args)
public ManagementOutboundInspectionCertificate(String name, ManagementOutboundInspectionCertificateArgs args, CustomResourceOptions options)
type: checkpoint:ManagementOutboundInspectionCertificate
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 ManagementOutboundInspectionCertificateArgs
- 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 ManagementOutboundInspectionCertificateArgs
- 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 ManagementOutboundInspectionCertificateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementOutboundInspectionCertificateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementOutboundInspectionCertificateArgs
- 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 managementOutboundInspectionCertificateResource = new Checkpoint.ManagementOutboundInspectionCertificate("managementOutboundInspectionCertificateResource", new()
{
Base64Password = "string",
IssuedBy = "string",
ValidFrom = "string",
ValidTo = "string",
Color = "string",
Comments = "string",
IgnoreErrors = false,
IgnoreWarnings = false,
IsDefault = false,
ManagementOutboundInspectionCertificateId = "string",
Name = "string",
Tags = new[]
{
"string",
},
});
example, err := checkpoint.NewManagementOutboundInspectionCertificate(ctx, "managementOutboundInspectionCertificateResource", &checkpoint.ManagementOutboundInspectionCertificateArgs{
Base64Password: pulumi.String("string"),
IssuedBy: pulumi.String("string"),
ValidFrom: pulumi.String("string"),
ValidTo: pulumi.String("string"),
Color: pulumi.String("string"),
Comments: pulumi.String("string"),
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
IsDefault: pulumi.Bool(false),
ManagementOutboundInspectionCertificateId: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
var managementOutboundInspectionCertificateResource = new ManagementOutboundInspectionCertificate("managementOutboundInspectionCertificateResource", ManagementOutboundInspectionCertificateArgs.builder()
.base64Password("string")
.issuedBy("string")
.validFrom("string")
.validTo("string")
.color("string")
.comments("string")
.ignoreErrors(false)
.ignoreWarnings(false)
.isDefault(false)
.managementOutboundInspectionCertificateId("string")
.name("string")
.tags("string")
.build());
management_outbound_inspection_certificate_resource = checkpoint.ManagementOutboundInspectionCertificate("managementOutboundInspectionCertificateResource",
base64_password="string",
issued_by="string",
valid_from="string",
valid_to="string",
color="string",
comments="string",
ignore_errors=False,
ignore_warnings=False,
is_default=False,
management_outbound_inspection_certificate_id="string",
name="string",
tags=["string"])
const managementOutboundInspectionCertificateResource = new checkpoint.ManagementOutboundInspectionCertificate("managementOutboundInspectionCertificateResource", {
base64Password: "string",
issuedBy: "string",
validFrom: "string",
validTo: "string",
color: "string",
comments: "string",
ignoreErrors: false,
ignoreWarnings: false,
isDefault: false,
managementOutboundInspectionCertificateId: "string",
name: "string",
tags: ["string"],
});
type: checkpoint:ManagementOutboundInspectionCertificate
properties:
base64Password: string
color: string
comments: string
ignoreErrors: false
ignoreWarnings: false
isDefault: false
issuedBy: string
managementOutboundInspectionCertificateId: string
name: string
tags:
- string
validFrom: string
validTo: string
ManagementOutboundInspectionCertificate 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 ManagementOutboundInspectionCertificate resource accepts the following input properties:
- Base64Password string
- Password (encoded in Base64 with padding) for the certificate file.
- Issued
By string - The DN (Distinguished Name) of the certificate.
- Valid
From string - The date, from which the certificate is valid. Format: YYYY-MM-DD.
- Valid
To string - The certificate expiration date. Format: YYYY-MM-DD.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Is
Default bool - Is the certificate the default certificate.
- Management
Outbound stringInspection Certificate Id - Name string
- Object name.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Base64Password string
- Password (encoded in Base64 with padding) for the certificate file.
- Issued
By string - The DN (Distinguished Name) of the certificate.
- Valid
From string - The date, from which the certificate is valid. Format: YYYY-MM-DD.
- Valid
To string - The certificate expiration date. Format: YYYY-MM-DD.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Is
Default bool - Is the certificate the default certificate.
- Management
Outbound stringInspection Certificate Id - Name string
- Object name.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- base64Password String
- Password (encoded in Base64 with padding) for the certificate file.
- issued
By String - The DN (Distinguished Name) of the certificate.
- valid
From String - The date, from which the certificate is valid. Format: YYYY-MM-DD.
- valid
To String - The certificate expiration date. Format: YYYY-MM-DD.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- is
Default Boolean - Is the certificate the default certificate.
- management
Outbound StringInspection Certificate Id - name String
- Object name.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- base64Password string
- Password (encoded in Base64 with padding) for the certificate file.
- issued
By string - The DN (Distinguished Name) of the certificate.
- valid
From string - The date, from which the certificate is valid. Format: YYYY-MM-DD.
- valid
To string - The certificate expiration date. Format: YYYY-MM-DD.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- ignore
Errors boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- is
Default boolean - Is the certificate the default certificate.
- management
Outbound stringInspection Certificate Id - name string
- Object name.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- base64_
password str - Password (encoded in Base64 with padding) for the certificate file.
- issued_
by str - The DN (Distinguished Name) of the certificate.
- valid_
from str - The date, from which the certificate is valid. Format: YYYY-MM-DD.
- valid_
to str - The certificate expiration date. Format: YYYY-MM-DD.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- ignore_
errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore_
warnings bool - Apply changes ignoring warnings.
- is_
default bool - Is the certificate the default certificate.
- management_
outbound_ strinspection_ certificate_ id - name str
- Object name.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- base64Password String
- Password (encoded in Base64 with padding) for the certificate file.
- issued
By String - The DN (Distinguished Name) of the certificate.
- valid
From String - The date, from which the certificate is valid. Format: YYYY-MM-DD.
- valid
To String - The certificate expiration date. Format: YYYY-MM-DD.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- is
Default Boolean - Is the certificate the default certificate.
- management
Outbound StringInspection Certificate Id - name String
- Object name.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementOutboundInspectionCertificate resource produces the following output properties:
- Base64Certificate string
- Certificate file encoded in base64.
- Base64Public
Certificate string - Public Certificate file encoded in base64 (pem format).
- Id string
- The provider-assigned unique ID for this managed resource.
- Base64Certificate string
- Certificate file encoded in base64.
- Base64Public
Certificate string - Public Certificate file encoded in base64 (pem format).
- Id string
- The provider-assigned unique ID for this managed resource.
- base64Certificate String
- Certificate file encoded in base64.
- base64Public
Certificate String - Public Certificate file encoded in base64 (pem format).
- id String
- The provider-assigned unique ID for this managed resource.
- base64Certificate string
- Certificate file encoded in base64.
- base64Public
Certificate string - Public Certificate file encoded in base64 (pem format).
- id string
- The provider-assigned unique ID for this managed resource.
- base64_
certificate str - Certificate file encoded in base64.
- base64_
public_ strcertificate - Public Certificate file encoded in base64 (pem format).
- id str
- The provider-assigned unique ID for this managed resource.
- base64Certificate String
- Certificate file encoded in base64.
- base64Public
Certificate String - Public Certificate file encoded in base64 (pem format).
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ManagementOutboundInspectionCertificate Resource
Get an existing ManagementOutboundInspectionCertificate 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?: ManagementOutboundInspectionCertificateState, opts?: CustomResourceOptions): ManagementOutboundInspectionCertificate
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
base64_certificate: Optional[str] = None,
base64_password: Optional[str] = None,
base64_public_certificate: Optional[str] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
is_default: Optional[bool] = None,
issued_by: Optional[str] = None,
management_outbound_inspection_certificate_id: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
valid_from: Optional[str] = None,
valid_to: Optional[str] = None) -> ManagementOutboundInspectionCertificate
func GetManagementOutboundInspectionCertificate(ctx *Context, name string, id IDInput, state *ManagementOutboundInspectionCertificateState, opts ...ResourceOption) (*ManagementOutboundInspectionCertificate, error)
public static ManagementOutboundInspectionCertificate Get(string name, Input<string> id, ManagementOutboundInspectionCertificateState? state, CustomResourceOptions? opts = null)
public static ManagementOutboundInspectionCertificate get(String name, Output<String> id, ManagementOutboundInspectionCertificateState state, CustomResourceOptions options)
resources: _: type: checkpoint:ManagementOutboundInspectionCertificate 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.
- Base64Certificate string
- Certificate file encoded in base64.
- Base64Password string
- Password (encoded in Base64 with padding) for the certificate file.
- Base64Public
Certificate string - Public Certificate file encoded in base64 (pem format).
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Is
Default bool - Is the certificate the default certificate.
- Issued
By string - The DN (Distinguished Name) of the certificate.
- Management
Outbound stringInspection Certificate Id - Name string
- Object name.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Valid
From string - The date, from which the certificate is valid. Format: YYYY-MM-DD.
- Valid
To string - The certificate expiration date. Format: YYYY-MM-DD.
- Base64Certificate string
- Certificate file encoded in base64.
- Base64Password string
- Password (encoded in Base64 with padding) for the certificate file.
- Base64Public
Certificate string - Public Certificate file encoded in base64 (pem format).
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Is
Default bool - Is the certificate the default certificate.
- Issued
By string - The DN (Distinguished Name) of the certificate.
- Management
Outbound stringInspection Certificate Id - Name string
- Object name.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- Valid
From string - The date, from which the certificate is valid. Format: YYYY-MM-DD.
- Valid
To string - The certificate expiration date. Format: YYYY-MM-DD.
- base64Certificate String
- Certificate file encoded in base64.
- base64Password String
- Password (encoded in Base64 with padding) for the certificate file.
- base64Public
Certificate String - Public Certificate file encoded in base64 (pem format).
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- is
Default Boolean - Is the certificate the default certificate.
- issued
By String - The DN (Distinguished Name) of the certificate.
- management
Outbound StringInspection Certificate Id - name String
- Object name.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- valid
From String - The date, from which the certificate is valid. Format: YYYY-MM-DD.
- valid
To String - The certificate expiration date. Format: YYYY-MM-DD.
- base64Certificate string
- Certificate file encoded in base64.
- base64Password string
- Password (encoded in Base64 with padding) for the certificate file.
- base64Public
Certificate string - Public Certificate file encoded in base64 (pem format).
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- ignore
Errors boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- is
Default boolean - Is the certificate the default certificate.
- issued
By string - The DN (Distinguished Name) of the certificate.
- management
Outbound stringInspection Certificate Id - name string
- Object name.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- valid
From string - The date, from which the certificate is valid. Format: YYYY-MM-DD.
- valid
To string - The certificate expiration date. Format: YYYY-MM-DD.
- base64_
certificate str - Certificate file encoded in base64.
- base64_
password str - Password (encoded in Base64 with padding) for the certificate file.
- base64_
public_ strcertificate - Public Certificate file encoded in base64 (pem format).
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- ignore_
errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore_
warnings bool - Apply changes ignoring warnings.
- is_
default bool - Is the certificate the default certificate.
- issued_
by str - The DN (Distinguished Name) of the certificate.
- management_
outbound_ strinspection_ certificate_ id - name str
- Object name.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- valid_
from str - The date, from which the certificate is valid. Format: YYYY-MM-DD.
- valid_
to str - The certificate expiration date. Format: YYYY-MM-DD.
- base64Certificate String
- Certificate file encoded in base64.
- base64Password String
- Password (encoded in Base64 with padding) for the certificate file.
- base64Public
Certificate String - Public Certificate file encoded in base64 (pem format).
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- is
Default Boolean - Is the certificate the default certificate.
- issued
By String - The DN (Distinguished Name) of the certificate.
- management
Outbound StringInspection Certificate Id - name String
- Object name.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- valid
From String - The date, from which the certificate is valid. Format: YYYY-MM-DD.
- valid
To String - The certificate expiration date. Format: YYYY-MM-DD.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.