Show / Hide Table of Contents

Class CryptoKeyArgs

Inheritance
System.Object
InputArgs
ResourceArgs
CryptoKeyArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.Kms
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class CryptoKeyArgs : ResourceArgs

Constructors

View Source

CryptoKeyArgs()

Declaration
public CryptoKeyArgs()

Properties

View Source

KeyRing

The KeyRing that this key belongs to. Format: 'projects/{{project}}/locations/{{location}}/keyRings/{{keyRing}}'.

Declaration
public Input<string> KeyRing { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Labels

Labels with user-defined metadata to apply to this resource.

Declaration
public InputMap<string> Labels { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

Name

The resource name for the CryptoKey.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Purpose

The immutable purpose of this CryptoKey. See the purpose reference for possible inputs.

Declaration
public Input<string> Purpose { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RotationPeriod

Every time this period passes, generate a new CryptoKeyVersion and set it as the primary. The first rotation will take place after the specified period. The rotation period has the format of a decimal number with up to 9 fractional digits, followed by the letter s (seconds). It must be greater than a day (ie, 86400).

Declaration
public Input<string> RotationPeriod { get; set; }
Property Value
Type Description
Input<System.String>
View Source

VersionTemplate

A template describing settings for new crypto key versions. Structure is documented below.

Declaration
public Input<CryptoKeyVersionTemplateArgs> VersionTemplate { get; set; }
Property Value
Type Description
Input<CryptoKeyVersionTemplateArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.