Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.apigee/v1.Keystore
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a keystore or truststore. - Keystore: Contains certificates and their associated keys. - Truststore: Contains trusted certificates used to validate a server’s certificate. These certificates are typically self-signed certificates or certificates that are not signed by a trusted CA.
Create Keystore Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Keystore(name: string, args: KeystoreArgs, opts?: CustomResourceOptions);
@overload
def Keystore(resource_name: str,
args: KeystoreArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Keystore(resource_name: str,
opts: Optional[ResourceOptions] = None,
environment_id: Optional[str] = None,
organization_id: Optional[str] = None,
name: Optional[str] = None)
func NewKeystore(ctx *Context, name string, args KeystoreArgs, opts ...ResourceOption) (*Keystore, error)
public Keystore(string name, KeystoreArgs args, CustomResourceOptions? opts = null)
public Keystore(String name, KeystoreArgs args)
public Keystore(String name, KeystoreArgs args, CustomResourceOptions options)
type: google-native:apigee/v1:Keystore
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 KeystoreArgs
- 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 KeystoreArgs
- 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 KeystoreArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KeystoreArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KeystoreArgs
- 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 keystoreResource = new GoogleNative.Apigee.V1.Keystore("keystoreResource", new()
{
EnvironmentId = "string",
OrganizationId = "string",
Name = "string",
});
example, err := apigee.NewKeystore(ctx, "keystoreResource", &apigee.KeystoreArgs{
EnvironmentId: pulumi.String("string"),
OrganizationId: pulumi.String("string"),
Name: pulumi.String("string"),
})
var keystoreResource = new Keystore("keystoreResource", KeystoreArgs.builder()
.environmentId("string")
.organizationId("string")
.name("string")
.build());
keystore_resource = google_native.apigee.v1.Keystore("keystoreResource",
environment_id="string",
organization_id="string",
name="string")
const keystoreResource = new google_native.apigee.v1.Keystore("keystoreResource", {
environmentId: "string",
organizationId: "string",
name: "string",
});
type: google-native:apigee/v1:Keystore
properties:
environmentId: string
name: string
organizationId: string
Keystore Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Keystore resource accepts the following input properties:
- Environment
Id string - Organization
Id string - Name string
- Resource ID for this keystore. Values must match the regular expression
[\w[:space:].-]{1,255}
.
- Environment
Id string - Organization
Id string - Name string
- Resource ID for this keystore. Values must match the regular expression
[\w[:space:].-]{1,255}
.
- environment
Id String - organization
Id String - name String
- Resource ID for this keystore. Values must match the regular expression
[\w[:space:].-]{1,255}
.
- environment
Id string - organization
Id string - name string
- Resource ID for this keystore. Values must match the regular expression
[\w[:space:].-]{1,255}
.
- environment_
id str - organization_
id str - name str
- Resource ID for this keystore. Values must match the regular expression
[\w[:space:].-]{1,255}
.
- environment
Id String - organization
Id String - name String
- Resource ID for this keystore. Values must match the regular expression
[\w[:space:].-]{1,255}
.
Outputs
All input properties are implicitly available as output properties. Additionally, the Keystore resource produces the following output properties:
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.