Show / Hide Table of Contents

Class RegisterPackageRequest

Inheritance
object
RegisterPackageRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Pulumi
Assembly: Pulumi.dll
Syntax
public sealed class RegisterPackageRequest

Constructors

View Source

RegisterPackageRequest(string, string, string?, Dictionary<string, byte[]>?, PackageParameterization?)

Declaration
public RegisterPackageRequest(string name, string version, string? downloadUrl, Dictionary<string, byte[]>? checksums = null, RegisterPackageRequest.PackageParameterization? parameterization = null)
Parameters
Type Name Description
string name
string version
string downloadUrl
Dictionary<string, byte[]> checksums
RegisterPackageRequest.PackageParameterization parameterization

Properties

View Source

Checksums

the optional plugin checksums

Declaration
public Dictionary<string, byte[]> Checksums { get; }
Property Value
Type Description
Dictionary<string, byte[]>
View Source

DownloadUrl

the optional plugin download url.

Declaration
public string DownloadUrl { get; }
Property Value
Type Description
string
View Source

Name

The plugin name

Declaration
public string Name { get; }
Property Value
Type Description
string
View Source

Parameterization

Declaration
public RegisterPackageRequest.PackageParameterization? Parameterization { get; }
Property Value
Type Description
RegisterPackageRequest.PackageParameterization
View Source

Version

The plugin version

Declaration
public string Version { get; }
Property Value
Type Description
string
  • View Source
Back to top Copyright 2016-2023, Pulumi Corporation.