Class GitHubEnterpriseConfig
Configuration for connections to an instance of GitHub Enterprise.
Implements
Inherited Members
Namespace: Google.Apis.DeveloperConnect.v1.Data
Assembly: Google.Apis.DeveloperConnect.v1.dll
Syntax
public class GitHubEnterpriseConfig : IDirectResponseSchema
Properties
AppId
Optional. ID of the GitHub App created from the manifest.
Declaration
[JsonProperty("appId")]
public virtual long? AppId { get; set; }
Property Value
Type | Description |
---|---|
long? |
AppInstallationId
Optional. ID of the installation of the GitHub App.
Declaration
[JsonProperty("appInstallationId")]
public virtual long? AppInstallationId { get; set; }
Property Value
Type | Description |
---|---|
long? |
AppSlug
Output only. The URL-friendly name of the GitHub App.
Declaration
[JsonProperty("appSlug")]
public virtual string AppSlug { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
HostUri
Required. The URI of the GitHub Enterprise host this connection is for.
Declaration
[JsonProperty("hostUri")]
public virtual string HostUri { get; set; }
Property Value
Type | Description |
---|---|
string |
InstallationUri
Output only. The URI to navigate to in order to manage the installation associated with this GitHubEnterpriseConfig.
Declaration
[JsonProperty("installationUri")]
public virtual string InstallationUri { get; set; }
Property Value
Type | Description |
---|---|
string |
PrivateKeySecretVersion
Optional. SecretManager resource containing the private key of the GitHub App, formatted as
projects/*/secrets/*/versions/*
.
Declaration
[JsonProperty("privateKeySecretVersion")]
public virtual string PrivateKeySecretVersion { get; set; }
Property Value
Type | Description |
---|---|
string |
ServerVersion
Output only. GitHub Enterprise version installed at the host_uri.
Declaration
[JsonProperty("serverVersion")]
public virtual string ServerVersion { get; set; }
Property Value
Type | Description |
---|---|
string |
ServiceDirectoryConfig
Optional. Configuration for using Service Directory to privately connect to a GitHub Enterprise server. This should only be set if the GitHub Enterprise server is hosted on-premises and not reachable by public internet. If this field is left empty, calls to the GitHub Enterprise server will be made over the public internet.
Declaration
[JsonProperty("serviceDirectoryConfig")]
public virtual ServiceDirectoryConfig ServiceDirectoryConfig { get; set; }
Property Value
Type | Description |
---|---|
ServiceDirectoryConfig |
SslCaCertificate
Optional. SSL certificate to use for requests to GitHub Enterprise.
Declaration
[JsonProperty("sslCaCertificate")]
public virtual string SslCaCertificate { get; set; }
Property Value
Type | Description |
---|---|
string |
WebhookSecretSecretVersion
Optional. SecretManager resource containing the webhook secret of the GitHub App, formatted as
projects/*/secrets/*/versions/*
.
Declaration
[JsonProperty("webhookSecretSecretVersion")]
public virtual string WebhookSecretSecretVersion { get; set; }
Property Value
Type | Description |
---|---|
string |