mirror of
https://github.com/rancher/types.git
synced 2025-09-16 14:59:16 +00:00
generated
This commit is contained in:
committed by
Alena Prokharchyk
parent
a0165b14ba
commit
b2cf716a27
@@ -0,0 +1,20 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
BitbucketCloudApplyInputType = "bitbucketCloudApplyInput"
|
||||
BitbucketCloudApplyInputFieldClientID = "clientId"
|
||||
BitbucketCloudApplyInputFieldClientSecret = "clientSecret"
|
||||
BitbucketCloudApplyInputFieldCode = "code"
|
||||
BitbucketCloudApplyInputFieldHostname = "hostname"
|
||||
BitbucketCloudApplyInputFieldRedirectURL = "redirectUrl"
|
||||
BitbucketCloudApplyInputFieldTLS = "tls"
|
||||
)
|
||||
|
||||
type BitbucketCloudApplyInput struct {
|
||||
ClientID string `json:"clientId,omitempty" yaml:"clientId,omitempty"`
|
||||
ClientSecret string `json:"clientSecret,omitempty" yaml:"clientSecret,omitempty"`
|
||||
Code string `json:"code,omitempty" yaml:"code,omitempty"`
|
||||
Hostname string `json:"hostname,omitempty" yaml:"hostname,omitempty"`
|
||||
RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"`
|
||||
TLS bool `json:"tls,omitempty" yaml:"tls,omitempty"`
|
||||
}
|
@@ -0,0 +1,38 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
BitbucketCloudPipelineConfigType = "bitbucketCloudPipelineConfig"
|
||||
BitbucketCloudPipelineConfigFieldAnnotations = "annotations"
|
||||
BitbucketCloudPipelineConfigFieldClientID = "clientId"
|
||||
BitbucketCloudPipelineConfigFieldClientSecret = "clientSecret"
|
||||
BitbucketCloudPipelineConfigFieldCreated = "created"
|
||||
BitbucketCloudPipelineConfigFieldCreatorID = "creatorId"
|
||||
BitbucketCloudPipelineConfigFieldEnabled = "enabled"
|
||||
BitbucketCloudPipelineConfigFieldLabels = "labels"
|
||||
BitbucketCloudPipelineConfigFieldName = "name"
|
||||
BitbucketCloudPipelineConfigFieldNamespaceId = "namespaceId"
|
||||
BitbucketCloudPipelineConfigFieldOwnerReferences = "ownerReferences"
|
||||
BitbucketCloudPipelineConfigFieldProjectID = "projectId"
|
||||
BitbucketCloudPipelineConfigFieldRedirectURL = "redirectUrl"
|
||||
BitbucketCloudPipelineConfigFieldRemoved = "removed"
|
||||
BitbucketCloudPipelineConfigFieldType = "type"
|
||||
BitbucketCloudPipelineConfigFieldUUID = "uuid"
|
||||
)
|
||||
|
||||
type BitbucketCloudPipelineConfig struct {
|
||||
Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"`
|
||||
ClientID string `json:"clientId,omitempty" yaml:"clientId,omitempty"`
|
||||
ClientSecret string `json:"clientSecret,omitempty" yaml:"clientSecret,omitempty"`
|
||||
Created string `json:"created,omitempty" yaml:"created,omitempty"`
|
||||
CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"`
|
||||
Enabled bool `json:"enabled,omitempty" yaml:"enabled,omitempty"`
|
||||
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`
|
||||
Name string `json:"name,omitempty" yaml:"name,omitempty"`
|
||||
NamespaceId string `json:"namespaceId,omitempty" yaml:"namespaceId,omitempty"`
|
||||
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"`
|
||||
ProjectID string `json:"projectId,omitempty" yaml:"projectId,omitempty"`
|
||||
RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"`
|
||||
Removed string `json:"removed,omitempty" yaml:"removed,omitempty"`
|
||||
Type string `json:"type,omitempty" yaml:"type,omitempty"`
|
||||
UUID string `json:"uuid,omitempty" yaml:"uuid,omitempty"`
|
||||
}
|
30
client/project/v3/zz_generated_bitbucket_cloud_provider.go
Normal file
30
client/project/v3/zz_generated_bitbucket_cloud_provider.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
BitbucketCloudProviderType = "bitbucketCloudProvider"
|
||||
BitbucketCloudProviderFieldAnnotations = "annotations"
|
||||
BitbucketCloudProviderFieldCreated = "created"
|
||||
BitbucketCloudProviderFieldCreatorID = "creatorId"
|
||||
BitbucketCloudProviderFieldLabels = "labels"
|
||||
BitbucketCloudProviderFieldName = "name"
|
||||
BitbucketCloudProviderFieldOwnerReferences = "ownerReferences"
|
||||
BitbucketCloudProviderFieldProjectID = "projectId"
|
||||
BitbucketCloudProviderFieldRedirectURL = "redirectUrl"
|
||||
BitbucketCloudProviderFieldRemoved = "removed"
|
||||
BitbucketCloudProviderFieldType = "type"
|
||||
BitbucketCloudProviderFieldUUID = "uuid"
|
||||
)
|
||||
|
||||
type BitbucketCloudProvider struct {
|
||||
Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"`
|
||||
Created string `json:"created,omitempty" yaml:"created,omitempty"`
|
||||
CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"`
|
||||
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`
|
||||
Name string `json:"name,omitempty" yaml:"name,omitempty"`
|
||||
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"`
|
||||
ProjectID string `json:"projectId,omitempty" yaml:"projectId,omitempty"`
|
||||
RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"`
|
||||
Removed string `json:"removed,omitempty" yaml:"removed,omitempty"`
|
||||
Type string `json:"type,omitempty" yaml:"type,omitempty"`
|
||||
UUID string `json:"uuid,omitempty" yaml:"uuid,omitempty"`
|
||||
}
|
@@ -0,0 +1,18 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
BitbucketServerApplyInputType = "bitbucketServerApplyInput"
|
||||
BitbucketServerApplyInputFieldHostname = "hostname"
|
||||
BitbucketServerApplyInputFieldOAuthToken = "oauthToken"
|
||||
BitbucketServerApplyInputFieldOAuthVerifier = "oauthVerifier"
|
||||
BitbucketServerApplyInputFieldRedirectURL = "redirectUrl"
|
||||
BitbucketServerApplyInputFieldTLS = "tls"
|
||||
)
|
||||
|
||||
type BitbucketServerApplyInput struct {
|
||||
Hostname string `json:"hostname,omitempty" yaml:"hostname,omitempty"`
|
||||
OAuthToken string `json:"oauthToken,omitempty" yaml:"oauthToken,omitempty"`
|
||||
OAuthVerifier string `json:"oauthVerifier,omitempty" yaml:"oauthVerifier,omitempty"`
|
||||
RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"`
|
||||
TLS bool `json:"tls,omitempty" yaml:"tls,omitempty"`
|
||||
}
|
@@ -0,0 +1,44 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
BitbucketServerPipelineConfigType = "bitbucketServerPipelineConfig"
|
||||
BitbucketServerPipelineConfigFieldAnnotations = "annotations"
|
||||
BitbucketServerPipelineConfigFieldConsumerKey = "consumerKey"
|
||||
BitbucketServerPipelineConfigFieldCreated = "created"
|
||||
BitbucketServerPipelineConfigFieldCreatorID = "creatorId"
|
||||
BitbucketServerPipelineConfigFieldEnabled = "enabled"
|
||||
BitbucketServerPipelineConfigFieldHostname = "hostname"
|
||||
BitbucketServerPipelineConfigFieldLabels = "labels"
|
||||
BitbucketServerPipelineConfigFieldName = "name"
|
||||
BitbucketServerPipelineConfigFieldNamespaceId = "namespaceId"
|
||||
BitbucketServerPipelineConfigFieldOwnerReferences = "ownerReferences"
|
||||
BitbucketServerPipelineConfigFieldPrivateKey = "privateKey"
|
||||
BitbucketServerPipelineConfigFieldProjectID = "projectId"
|
||||
BitbucketServerPipelineConfigFieldPublicKey = "publicKey"
|
||||
BitbucketServerPipelineConfigFieldRedirectURL = "redirectUrl"
|
||||
BitbucketServerPipelineConfigFieldRemoved = "removed"
|
||||
BitbucketServerPipelineConfigFieldTLS = "tls"
|
||||
BitbucketServerPipelineConfigFieldType = "type"
|
||||
BitbucketServerPipelineConfigFieldUUID = "uuid"
|
||||
)
|
||||
|
||||
type BitbucketServerPipelineConfig struct {
|
||||
Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"`
|
||||
ConsumerKey string `json:"consumerKey,omitempty" yaml:"consumerKey,omitempty"`
|
||||
Created string `json:"created,omitempty" yaml:"created,omitempty"`
|
||||
CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"`
|
||||
Enabled bool `json:"enabled,omitempty" yaml:"enabled,omitempty"`
|
||||
Hostname string `json:"hostname,omitempty" yaml:"hostname,omitempty"`
|
||||
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`
|
||||
Name string `json:"name,omitempty" yaml:"name,omitempty"`
|
||||
NamespaceId string `json:"namespaceId,omitempty" yaml:"namespaceId,omitempty"`
|
||||
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"`
|
||||
PrivateKey string `json:"privateKey,omitempty" yaml:"privateKey,omitempty"`
|
||||
ProjectID string `json:"projectId,omitempty" yaml:"projectId,omitempty"`
|
||||
PublicKey string `json:"publicKey,omitempty" yaml:"publicKey,omitempty"`
|
||||
RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"`
|
||||
Removed string `json:"removed,omitempty" yaml:"removed,omitempty"`
|
||||
TLS bool `json:"tls,omitempty" yaml:"tls,omitempty"`
|
||||
Type string `json:"type,omitempty" yaml:"type,omitempty"`
|
||||
UUID string `json:"uuid,omitempty" yaml:"uuid,omitempty"`
|
||||
}
|
30
client/project/v3/zz_generated_bitbucket_server_provider.go
Normal file
30
client/project/v3/zz_generated_bitbucket_server_provider.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
BitbucketServerProviderType = "bitbucketServerProvider"
|
||||
BitbucketServerProviderFieldAnnotations = "annotations"
|
||||
BitbucketServerProviderFieldCreated = "created"
|
||||
BitbucketServerProviderFieldCreatorID = "creatorId"
|
||||
BitbucketServerProviderFieldLabels = "labels"
|
||||
BitbucketServerProviderFieldName = "name"
|
||||
BitbucketServerProviderFieldOwnerReferences = "ownerReferences"
|
||||
BitbucketServerProviderFieldProjectID = "projectId"
|
||||
BitbucketServerProviderFieldRedirectURL = "redirectUrl"
|
||||
BitbucketServerProviderFieldRemoved = "removed"
|
||||
BitbucketServerProviderFieldType = "type"
|
||||
BitbucketServerProviderFieldUUID = "uuid"
|
||||
)
|
||||
|
||||
type BitbucketServerProvider struct {
|
||||
Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"`
|
||||
Created string `json:"created,omitempty" yaml:"created,omitempty"`
|
||||
CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"`
|
||||
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`
|
||||
Name string `json:"name,omitempty" yaml:"name,omitempty"`
|
||||
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"`
|
||||
ProjectID string `json:"projectId,omitempty" yaml:"projectId,omitempty"`
|
||||
RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"`
|
||||
Removed string `json:"removed,omitempty" yaml:"removed,omitempty"`
|
||||
Type string `json:"type,omitempty" yaml:"type,omitempty"`
|
||||
UUID string `json:"uuid,omitempty" yaml:"uuid,omitempty"`
|
||||
}
|
@@ -0,0 +1,14 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
BitbucketServerRequestLoginInputType = "bitbucketServerRequestLoginInput"
|
||||
BitbucketServerRequestLoginInputFieldHostname = "hostname"
|
||||
BitbucketServerRequestLoginInputFieldRedirectURL = "redirectUrl"
|
||||
BitbucketServerRequestLoginInputFieldTLS = "tls"
|
||||
)
|
||||
|
||||
type BitbucketServerRequestLoginInput struct {
|
||||
Hostname string `json:"hostname,omitempty" yaml:"hostname,omitempty"`
|
||||
RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"`
|
||||
TLS bool `json:"tls,omitempty" yaml:"tls,omitempty"`
|
||||
}
|
@@ -0,0 +1,10 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
BitbucketServerRequestLoginOutputType = "bitbucketServerRequestLoginOutput"
|
||||
BitbucketServerRequestLoginOutputFieldLoginURL = "loginUrl"
|
||||
)
|
||||
|
||||
type BitbucketServerRequestLoginOutput struct {
|
||||
LoginURL string `json:"loginUrl,omitempty" yaml:"loginUrl,omitempty"`
|
||||
}
|
22
client/project/v3/zz_generated_github_apply_input.go
Normal file
22
client/project/v3/zz_generated_github_apply_input.go
Normal file
@@ -0,0 +1,22 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
GithubApplyInputType = "githubApplyInput"
|
||||
GithubApplyInputFieldClientID = "clientId"
|
||||
GithubApplyInputFieldClientSecret = "clientSecret"
|
||||
GithubApplyInputFieldCode = "code"
|
||||
GithubApplyInputFieldHostname = "hostname"
|
||||
GithubApplyInputFieldInheritAuth = "inheritAuth"
|
||||
GithubApplyInputFieldRedirectURL = "redirectUrl"
|
||||
GithubApplyInputFieldTLS = "tls"
|
||||
)
|
||||
|
||||
type GithubApplyInput struct {
|
||||
ClientID string `json:"clientId,omitempty" yaml:"clientId,omitempty"`
|
||||
ClientSecret string `json:"clientSecret,omitempty" yaml:"clientSecret,omitempty"`
|
||||
Code string `json:"code,omitempty" yaml:"code,omitempty"`
|
||||
Hostname string `json:"hostname,omitempty" yaml:"hostname,omitempty"`
|
||||
InheritAuth bool `json:"inheritAuth,omitempty" yaml:"inheritAuth,omitempty"`
|
||||
RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"`
|
||||
TLS bool `json:"tls,omitempty" yaml:"tls,omitempty"`
|
||||
}
|
@@ -1,10 +0,0 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
GithubLoginInputType = "githubLoginInput"
|
||||
GithubLoginInputFieldCode = "code"
|
||||
)
|
||||
|
||||
type GithubLoginInput struct {
|
||||
Code string `json:"code,omitempty" yaml:"code,omitempty"`
|
||||
}
|
@@ -1,14 +0,0 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
GithubPipelineConfigApplyInputType = "githubPipelineConfigApplyInput"
|
||||
GithubPipelineConfigApplyInputFieldCode = "code"
|
||||
GithubPipelineConfigApplyInputFieldGithubConfig = "githubConfig"
|
||||
GithubPipelineConfigApplyInputFieldInheritAuth = "inheritAuth"
|
||||
)
|
||||
|
||||
type GithubPipelineConfigApplyInput struct {
|
||||
Code string `json:"code,omitempty" yaml:"code,omitempty"`
|
||||
GithubConfig *GithubPipelineConfig `json:"githubConfig,omitempty" yaml:"githubConfig,omitempty"`
|
||||
InheritAuth bool `json:"inheritAuth,omitempty" yaml:"inheritAuth,omitempty"`
|
||||
}
|
20
client/project/v3/zz_generated_gitlab_apply_input.go
Normal file
20
client/project/v3/zz_generated_gitlab_apply_input.go
Normal file
@@ -0,0 +1,20 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
GitlabApplyInputType = "gitlabApplyInput"
|
||||
GitlabApplyInputFieldClientID = "clientId"
|
||||
GitlabApplyInputFieldClientSecret = "clientSecret"
|
||||
GitlabApplyInputFieldCode = "code"
|
||||
GitlabApplyInputFieldHostname = "hostname"
|
||||
GitlabApplyInputFieldRedirectURL = "redirectUrl"
|
||||
GitlabApplyInputFieldTLS = "tls"
|
||||
)
|
||||
|
||||
type GitlabApplyInput struct {
|
||||
ClientID string `json:"clientId,omitempty" yaml:"clientId,omitempty"`
|
||||
ClientSecret string `json:"clientSecret,omitempty" yaml:"clientSecret,omitempty"`
|
||||
Code string `json:"code,omitempty" yaml:"code,omitempty"`
|
||||
Hostname string `json:"hostname,omitempty" yaml:"hostname,omitempty"`
|
||||
RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"`
|
||||
TLS bool `json:"tls,omitempty" yaml:"tls,omitempty"`
|
||||
}
|
@@ -1,10 +0,0 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
GitlabLoginInputType = "gitlabLoginInput"
|
||||
GitlabLoginInputFieldCode = "code"
|
||||
)
|
||||
|
||||
type GitlabLoginInput struct {
|
||||
Code string `json:"code,omitempty" yaml:"code,omitempty"`
|
||||
}
|
@@ -1,12 +0,0 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
GitlabPipelineConfigApplyInputType = "gitlabPipelineConfigApplyInput"
|
||||
GitlabPipelineConfigApplyInputFieldCode = "code"
|
||||
GitlabPipelineConfigApplyInputFieldGitlabConfig = "gitlabConfig"
|
||||
)
|
||||
|
||||
type GitlabPipelineConfigApplyInput struct {
|
||||
Code string `json:"code,omitempty" yaml:"code,omitempty"`
|
||||
GitlabConfig *GitlabPipelineConfig `json:"gitlabConfig,omitempty" yaml:"gitlabConfig,omitempty"`
|
||||
}
|
@@ -12,6 +12,8 @@ const (
|
||||
SourceCodeCredentialFieldCreated = "created"
|
||||
SourceCodeCredentialFieldCreatorID = "creatorId"
|
||||
SourceCodeCredentialFieldDisplayName = "displayName"
|
||||
SourceCodeCredentialFieldExpiry = "expiry"
|
||||
SourceCodeCredentialFieldGitCloneToken = "gitCloneToken"
|
||||
SourceCodeCredentialFieldGitLoginName = "gitLoginName"
|
||||
SourceCodeCredentialFieldHTMLURL = "htmlUrl"
|
||||
SourceCodeCredentialFieldLabels = "labels"
|
||||
@@ -20,6 +22,7 @@ const (
|
||||
SourceCodeCredentialFieldName = "name"
|
||||
SourceCodeCredentialFieldOwnerReferences = "ownerReferences"
|
||||
SourceCodeCredentialFieldProjectID = "projectId"
|
||||
SourceCodeCredentialFieldRefreshToken = "refreshToken"
|
||||
SourceCodeCredentialFieldRemoved = "removed"
|
||||
SourceCodeCredentialFieldSourceCodeType = "sourceCodeType"
|
||||
SourceCodeCredentialFieldState = "state"
|
||||
@@ -37,6 +40,8 @@ type SourceCodeCredential struct {
|
||||
Created string `json:"created,omitempty" yaml:"created,omitempty"`
|
||||
CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"`
|
||||
DisplayName string `json:"displayName,omitempty" yaml:"displayName,omitempty"`
|
||||
Expiry string `json:"expiry,omitempty" yaml:"expiry,omitempty"`
|
||||
GitCloneToken string `json:"gitCloneToken,omitempty" yaml:"gitCloneToken,omitempty"`
|
||||
GitLoginName string `json:"gitLoginName,omitempty" yaml:"gitLoginName,omitempty"`
|
||||
HTMLURL string `json:"htmlUrl,omitempty" yaml:"htmlUrl,omitempty"`
|
||||
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`
|
||||
@@ -45,6 +50,7 @@ type SourceCodeCredential struct {
|
||||
Name string `json:"name,omitempty" yaml:"name,omitempty"`
|
||||
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"`
|
||||
ProjectID string `json:"projectId,omitempty" yaml:"projectId,omitempty"`
|
||||
RefreshToken string `json:"refreshToken,omitempty" yaml:"refreshToken,omitempty"`
|
||||
Removed string `json:"removed,omitempty" yaml:"removed,omitempty"`
|
||||
SourceCodeType string `json:"sourceCodeType,omitempty" yaml:"sourceCodeType,omitempty"`
|
||||
State string `json:"state,omitempty" yaml:"state,omitempty"`
|
||||
|
@@ -5,10 +5,13 @@ const (
|
||||
SourceCodeCredentialSpecFieldAccessToken = "accessToken"
|
||||
SourceCodeCredentialSpecFieldAvatarURL = "avatarUrl"
|
||||
SourceCodeCredentialSpecFieldDisplayName = "displayName"
|
||||
SourceCodeCredentialSpecFieldExpiry = "expiry"
|
||||
SourceCodeCredentialSpecFieldGitCloneToken = "gitCloneToken"
|
||||
SourceCodeCredentialSpecFieldGitLoginName = "gitLoginName"
|
||||
SourceCodeCredentialSpecFieldHTMLURL = "htmlUrl"
|
||||
SourceCodeCredentialSpecFieldLoginName = "loginName"
|
||||
SourceCodeCredentialSpecFieldProjectID = "projectId"
|
||||
SourceCodeCredentialSpecFieldRefreshToken = "refreshToken"
|
||||
SourceCodeCredentialSpecFieldSourceCodeType = "sourceCodeType"
|
||||
SourceCodeCredentialSpecFieldUserID = "userId"
|
||||
)
|
||||
@@ -17,10 +20,13 @@ type SourceCodeCredentialSpec struct {
|
||||
AccessToken string `json:"accessToken,omitempty" yaml:"accessToken,omitempty"`
|
||||
AvatarURL string `json:"avatarUrl,omitempty" yaml:"avatarUrl,omitempty"`
|
||||
DisplayName string `json:"displayName,omitempty" yaml:"displayName,omitempty"`
|
||||
Expiry string `json:"expiry,omitempty" yaml:"expiry,omitempty"`
|
||||
GitCloneToken string `json:"gitCloneToken,omitempty" yaml:"gitCloneToken,omitempty"`
|
||||
GitLoginName string `json:"gitLoginName,omitempty" yaml:"gitLoginName,omitempty"`
|
||||
HTMLURL string `json:"htmlUrl,omitempty" yaml:"htmlUrl,omitempty"`
|
||||
LoginName string `json:"loginName,omitempty" yaml:"loginName,omitempty"`
|
||||
ProjectID string `json:"projectId,omitempty" yaml:"projectId,omitempty"`
|
||||
RefreshToken string `json:"refreshToken,omitempty" yaml:"refreshToken,omitempty"`
|
||||
SourceCodeType string `json:"sourceCodeType,omitempty" yaml:"sourceCodeType,omitempty"`
|
||||
UserID string `json:"userId,omitempty" yaml:"userId,omitempty"`
|
||||
}
|
||||
|
Reference in New Issue
Block a user