mirror of https://github.com/pulumi/pulumi.git
53 lines
1.4 KiB
C#
53 lines
1.4 KiB
C#
// *** WARNING: this file was generated by test. ***
|
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Immutable;
|
|
using System.Threading.Tasks;
|
|
using Pulumi.Serialization;
|
|
|
|
namespace Pulumi.Mypkg.Outputs
|
|
{
|
|
|
|
/// <summary>
|
|
/// An access key for the storage account.
|
|
/// </summary>
|
|
[OutputType]
|
|
public sealed class StorageAccountKeyResponseResult
|
|
{
|
|
/// <summary>
|
|
/// Creation time of the key, in round trip date format.
|
|
/// </summary>
|
|
public readonly string CreationTime;
|
|
/// <summary>
|
|
/// Name of the key.
|
|
/// </summary>
|
|
public readonly string KeyName;
|
|
/// <summary>
|
|
/// Permissions for the key -- read-only or full permissions.
|
|
/// </summary>
|
|
public readonly string Permissions;
|
|
/// <summary>
|
|
/// Base 64-encoded value of the key.
|
|
/// </summary>
|
|
public readonly string Value;
|
|
|
|
[OutputConstructor]
|
|
private StorageAccountKeyResponseResult(
|
|
string creationTime,
|
|
|
|
string keyName,
|
|
|
|
string permissions,
|
|
|
|
string value)
|
|
{
|
|
CreationTime = creationTime;
|
|
KeyName = keyName;
|
|
Permissions = permissions;
|
|
Value = value;
|
|
}
|
|
}
|
|
}
|