qovery-typescript-axios 1.1.899 → 1.1.901
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.ts +99 -1
- package/dist/api.d.ts +93 -1
- package/dist/api.js +17 -10
- package/dist/esm/api.d.ts +93 -1
- package/dist/esm/api.js +6 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -7116,11 +7116,53 @@ export interface ContainerRegistryRequestConfig {
|
|
|
7116
7116
|
*/
|
|
7117
7117
|
'scaleway_project_id'?: string;
|
|
7118
7118
|
/**
|
|
7119
|
-
* Required if kind is `GCP_ARTIFACT_REGISTRY
|
|
7119
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY`. For GCP Artifact Registry, you can either set a service account JSON key with json_credentials or use Workload Identity Federation with gcp_credentials_type.
|
|
7120
7120
|
* @type {string}
|
|
7121
7121
|
* @memberof ContainerRegistryRequestConfig
|
|
7122
7122
|
*/
|
|
7123
7123
|
'json_credentials'?: string;
|
|
7124
|
+
/**
|
|
7125
|
+
* For GCP Artifact Registry, you can either set a service account JSON key with json_credentials or use Workload Identity Federation with gcp_credentials_type.
|
|
7126
|
+
* @type {string}
|
|
7127
|
+
* @memberof ContainerRegistryRequestConfig
|
|
7128
|
+
*/
|
|
7129
|
+
'gcp_credentials_type'?: ContainerRegistryRequestConfigGcpCredentialsTypeEnum;
|
|
7130
|
+
/**
|
|
7131
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
7132
|
+
* @type {string}
|
|
7133
|
+
* @memberof ContainerRegistryRequestConfig
|
|
7134
|
+
*/
|
|
7135
|
+
'project_id'?: string;
|
|
7136
|
+
/**
|
|
7137
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
7138
|
+
* @type {string}
|
|
7139
|
+
* @memberof ContainerRegistryRequestConfig
|
|
7140
|
+
*/
|
|
7141
|
+
'service_account_email'?: string;
|
|
7142
|
+
/**
|
|
7143
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
7144
|
+
* @type {string}
|
|
7145
|
+
* @memberof ContainerRegistryRequestConfig
|
|
7146
|
+
*/
|
|
7147
|
+
'workload_identity_project_number'?: string;
|
|
7148
|
+
/**
|
|
7149
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
7150
|
+
* @type {string}
|
|
7151
|
+
* @memberof ContainerRegistryRequestConfig
|
|
7152
|
+
*/
|
|
7153
|
+
'workload_identity_pool_id'?: string;
|
|
7154
|
+
/**
|
|
7155
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
7156
|
+
* @type {string}
|
|
7157
|
+
* @memberof ContainerRegistryRequestConfig
|
|
7158
|
+
*/
|
|
7159
|
+
'workload_identity_provider_id'?: string;
|
|
7160
|
+
/**
|
|
7161
|
+
* Optional if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
7162
|
+
* @type {number}
|
|
7163
|
+
* @memberof ContainerRegistryRequestConfig
|
|
7164
|
+
*/
|
|
7165
|
+
'token_lifetime_seconds'?: number;
|
|
7124
7166
|
/**
|
|
7125
7167
|
* optional, for kind `DOCKER_HUB` We encourage you to set credentials for Docker Hub due to the limits on the pull rate
|
|
7126
7168
|
* @type {string}
|
|
@@ -7152,6 +7194,13 @@ export interface ContainerRegistryRequestConfig {
|
|
|
7152
7194
|
*/
|
|
7153
7195
|
'azure_subscription_id'?: string;
|
|
7154
7196
|
}
|
|
7197
|
+
|
|
7198
|
+
export const ContainerRegistryRequestConfigGcpCredentialsTypeEnum = {
|
|
7199
|
+
WORKLOAD_IDENTITY_FEDERATION: 'workload_identity_federation'
|
|
7200
|
+
} as const;
|
|
7201
|
+
|
|
7202
|
+
export type ContainerRegistryRequestConfigGcpCredentialsTypeEnum = typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum];
|
|
7203
|
+
|
|
7155
7204
|
/**
|
|
7156
7205
|
*
|
|
7157
7206
|
* @export
|
|
@@ -7282,6 +7331,48 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7282
7331
|
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7283
7332
|
*/
|
|
7284
7333
|
'role_arn'?: string;
|
|
7334
|
+
/**
|
|
7335
|
+
*
|
|
7336
|
+
* @type {string}
|
|
7337
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7338
|
+
*/
|
|
7339
|
+
'gcp_credentials_type'?: ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum;
|
|
7340
|
+
/**
|
|
7341
|
+
*
|
|
7342
|
+
* @type {string}
|
|
7343
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7344
|
+
*/
|
|
7345
|
+
'project_id'?: string;
|
|
7346
|
+
/**
|
|
7347
|
+
*
|
|
7348
|
+
* @type {string}
|
|
7349
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7350
|
+
*/
|
|
7351
|
+
'service_account_email'?: string;
|
|
7352
|
+
/**
|
|
7353
|
+
*
|
|
7354
|
+
* @type {string}
|
|
7355
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7356
|
+
*/
|
|
7357
|
+
'workload_identity_project_number'?: string;
|
|
7358
|
+
/**
|
|
7359
|
+
*
|
|
7360
|
+
* @type {string}
|
|
7361
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7362
|
+
*/
|
|
7363
|
+
'workload_identity_pool_id'?: string;
|
|
7364
|
+
/**
|
|
7365
|
+
*
|
|
7366
|
+
* @type {string}
|
|
7367
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7368
|
+
*/
|
|
7369
|
+
'workload_identity_provider_id'?: string;
|
|
7370
|
+
/**
|
|
7371
|
+
*
|
|
7372
|
+
* @type {number}
|
|
7373
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7374
|
+
*/
|
|
7375
|
+
'token_lifetime_seconds'?: number;
|
|
7285
7376
|
/**
|
|
7286
7377
|
*
|
|
7287
7378
|
* @type {string}
|
|
@@ -7307,6 +7398,13 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7307
7398
|
*/
|
|
7308
7399
|
'azure_application_object_id'?: string;
|
|
7309
7400
|
}
|
|
7401
|
+
|
|
7402
|
+
export const ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = {
|
|
7403
|
+
WORKLOAD_IDENTITY_FEDERATION: 'workload_identity_federation'
|
|
7404
|
+
} as const;
|
|
7405
|
+
|
|
7406
|
+
export type ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum];
|
|
7407
|
+
|
|
7310
7408
|
/**
|
|
7311
7409
|
*
|
|
7312
7410
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -6919,11 +6919,53 @@ export interface ContainerRegistryRequestConfig {
|
|
|
6919
6919
|
*/
|
|
6920
6920
|
'scaleway_project_id'?: string;
|
|
6921
6921
|
/**
|
|
6922
|
-
* Required if kind is `GCP_ARTIFACT_REGISTRY
|
|
6922
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY`. For GCP Artifact Registry, you can either set a service account JSON key with json_credentials or use Workload Identity Federation with gcp_credentials_type.
|
|
6923
6923
|
* @type {string}
|
|
6924
6924
|
* @memberof ContainerRegistryRequestConfig
|
|
6925
6925
|
*/
|
|
6926
6926
|
'json_credentials'?: string;
|
|
6927
|
+
/**
|
|
6928
|
+
* For GCP Artifact Registry, you can either set a service account JSON key with json_credentials or use Workload Identity Federation with gcp_credentials_type.
|
|
6929
|
+
* @type {string}
|
|
6930
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6931
|
+
*/
|
|
6932
|
+
'gcp_credentials_type'?: ContainerRegistryRequestConfigGcpCredentialsTypeEnum;
|
|
6933
|
+
/**
|
|
6934
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6935
|
+
* @type {string}
|
|
6936
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6937
|
+
*/
|
|
6938
|
+
'project_id'?: string;
|
|
6939
|
+
/**
|
|
6940
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6941
|
+
* @type {string}
|
|
6942
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6943
|
+
*/
|
|
6944
|
+
'service_account_email'?: string;
|
|
6945
|
+
/**
|
|
6946
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6947
|
+
* @type {string}
|
|
6948
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6949
|
+
*/
|
|
6950
|
+
'workload_identity_project_number'?: string;
|
|
6951
|
+
/**
|
|
6952
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6953
|
+
* @type {string}
|
|
6954
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6955
|
+
*/
|
|
6956
|
+
'workload_identity_pool_id'?: string;
|
|
6957
|
+
/**
|
|
6958
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6959
|
+
* @type {string}
|
|
6960
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6961
|
+
*/
|
|
6962
|
+
'workload_identity_provider_id'?: string;
|
|
6963
|
+
/**
|
|
6964
|
+
* Optional if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6965
|
+
* @type {number}
|
|
6966
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6967
|
+
*/
|
|
6968
|
+
'token_lifetime_seconds'?: number;
|
|
6927
6969
|
/**
|
|
6928
6970
|
* optional, for kind `DOCKER_HUB` We encourage you to set credentials for Docker Hub due to the limits on the pull rate
|
|
6929
6971
|
* @type {string}
|
|
@@ -6955,6 +6997,10 @@ export interface ContainerRegistryRequestConfig {
|
|
|
6955
6997
|
*/
|
|
6956
6998
|
'azure_subscription_id'?: string;
|
|
6957
6999
|
}
|
|
7000
|
+
export declare const ContainerRegistryRequestConfigGcpCredentialsTypeEnum: {
|
|
7001
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "workload_identity_federation";
|
|
7002
|
+
};
|
|
7003
|
+
export type ContainerRegistryRequestConfigGcpCredentialsTypeEnum = typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum];
|
|
6958
7004
|
/**
|
|
6959
7005
|
*
|
|
6960
7006
|
* @export
|
|
@@ -7083,6 +7129,48 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7083
7129
|
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7084
7130
|
*/
|
|
7085
7131
|
'role_arn'?: string;
|
|
7132
|
+
/**
|
|
7133
|
+
*
|
|
7134
|
+
* @type {string}
|
|
7135
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7136
|
+
*/
|
|
7137
|
+
'gcp_credentials_type'?: ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum;
|
|
7138
|
+
/**
|
|
7139
|
+
*
|
|
7140
|
+
* @type {string}
|
|
7141
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7142
|
+
*/
|
|
7143
|
+
'project_id'?: string;
|
|
7144
|
+
/**
|
|
7145
|
+
*
|
|
7146
|
+
* @type {string}
|
|
7147
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7148
|
+
*/
|
|
7149
|
+
'service_account_email'?: string;
|
|
7150
|
+
/**
|
|
7151
|
+
*
|
|
7152
|
+
* @type {string}
|
|
7153
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7154
|
+
*/
|
|
7155
|
+
'workload_identity_project_number'?: string;
|
|
7156
|
+
/**
|
|
7157
|
+
*
|
|
7158
|
+
* @type {string}
|
|
7159
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7160
|
+
*/
|
|
7161
|
+
'workload_identity_pool_id'?: string;
|
|
7162
|
+
/**
|
|
7163
|
+
*
|
|
7164
|
+
* @type {string}
|
|
7165
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7166
|
+
*/
|
|
7167
|
+
'workload_identity_provider_id'?: string;
|
|
7168
|
+
/**
|
|
7169
|
+
*
|
|
7170
|
+
* @type {number}
|
|
7171
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7172
|
+
*/
|
|
7173
|
+
'token_lifetime_seconds'?: number;
|
|
7086
7174
|
/**
|
|
7087
7175
|
*
|
|
7088
7176
|
* @type {string}
|
|
@@ -7108,6 +7196,10 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7108
7196
|
*/
|
|
7109
7197
|
'azure_application_object_id'?: string;
|
|
7110
7198
|
}
|
|
7199
|
+
export declare const ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum: {
|
|
7200
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "workload_identity_federation";
|
|
7201
|
+
};
|
|
7202
|
+
export type ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum];
|
|
7111
7203
|
/**
|
|
7112
7204
|
*
|
|
7113
7205
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -23,16 +23,17 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
25
|
exports.CompanySizeEnum = exports.ClusterStateEnum = exports.ClusterLogsStepEnum = exports.ClusterFeatureResponseTypeEnum = exports.ClusterFeatureResponseValueTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayProviderEnum = exports.ClusterFeatureNatGatewayTypeGcpProviderEnum = exports.ClusterDeploymentStatusEnum = exports.ClusterDeleteMode = exports.ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum = exports.ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum = exports.ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum = exports.ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = exports.ClusterAdvancedSettingsLokiDeploymentModeEnum = exports.CloudflareDnsProviderResponseProviderEnum = exports.CloudflareDnsProviderRequestProviderEnum = exports.CloudVendorEnum = exports.CloudProviderEnum = exports.CheckedCustomDomainStatus = exports.BuildModeEnum = exports.AzureStaticClusterCredentialsObjectTypeEnum = exports.AwsStaticCredentialsRequestTypeEnum = exports.AwsStaticCredentialsAuthDtoModeEnum = exports.AwsStaticClusterCredentialsObjectTypeEnum = exports.AwsSecretManagerEndpointDtoModeEnum = exports.AwsRoleCredentialsRequestTypeEnum = exports.AwsRoleClusterCredentialsObjectTypeEnum = exports.AwsRoleArnAuthDtoModeEnum = exports.AwsParameterStoreEndpointDtoModeEnum = exports.AutoscalingMode = exports.AutomaticallyConfiguredAuthDtoModeEnum = exports.ArgocdAssociatedServiceType = exports.ArgoCdConnectionStatusEnum = exports.ArgoCdConnectionCheckResponseReasonEnum = exports.ApplicationAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ApplicationAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ApplicationAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.AnnotationsGroupAssociatedItemType = exports.AlertTargetType = exports.AlertSeverity = exports.AlertRuleState = exports.AlertRuleSource = exports.AlertRuleConditionOperator = exports.AlertRuleConditionKind = exports.AlertRuleConditionFunction = exports.AlertReceiverType = exports.AksInfrastructureOutputsKindEnum = exports.APIVariableTypeEnum = exports.APIVariableScopeEnum = void 0;
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.
|
|
31
|
-
exports.
|
|
32
|
-
exports.
|
|
33
|
-
exports.
|
|
34
|
-
exports.
|
|
35
|
-
exports.
|
|
26
|
+
exports.InviteMemberRoleEnum = exports.HelmRepositoryKindEnum = exports.HelmRepositoryAssociatedServiceType = exports.HelmPortProtocolEnum = exports.HelmForceEvent = exports.GkeInfrastructureOutputsKindEnum = exports.GitWebhookStatusResponseProviderEnum = exports.GitWebhookStatusResponseStatusEnum = exports.GitTokenAssociatedServiceType = exports.GitProviderEnum = exports.GenericClusterCredentialsObjectTypeEnum = exports.GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = exports.GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = exports.GcpStaticClusterCredentialsObjectTypeEnum = exports.GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = exports.GcpSecretManagerEndpointDtoModeEnum = exports.GcpJsonCredentialsAuthDtoModeEnum = exports.EnvironmentStatusEventOriginEnum = exports.EnvironmentModeEnum = exports.EnvironmentLogTypeEnum = exports.EnvironmentDeploymentStatusEnum = exports.EksInfrastructureOutputsKindEnum = exports.EksAnywhereVsphereStaticCredentialsRequestTypeEnum = exports.EksAnywhereVsphereRoleCredentialsRequestTypeEnum = exports.EksAnywhereVsphereClusterCredentialsObjectTypeEnum = exports.DockerfileFragmentInlineTypeEnum = exports.DockerfileFragmentFileTypeEnum = exports.DeploymentRestrictionTypeEnum = exports.DeploymentRestrictionModeEnum = exports.DeploymentInfraReason = exports.DeploymentHistoryTriggerAction = exports.DeploymentHistoryStatusEnum = exports.DeploymentHistoryServiceDetailsOneOf2JobTypeEnum = exports.DeploymentHistoryActionStatus = exports.DeleteTerraformAction = exports.DatabaseTypeEnum = exports.DatabaseModeEnum = exports.DatabaseEditRequestDiskTypeEnum = exports.DatabaseAccessibilityEnum = exports.DatabaseDiskTypeEnum = exports.CustomDomainStatusEnum = exports.CreateEnvironmentModeEnum = exports.CpuArchitectureEnum = exports.ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = exports.ContainerRegistryRequestConfigGcpCredentialsTypeEnum = exports.ContainerRegistryKindEnum = exports.ContainerRegistryAssociatedServiceType = exports.ContainerAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ContainerAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ContainerAdvancedSettingsDeploymentAntiaffinityPodEnum = void 0;
|
|
27
|
+
exports.StateEnum = exports.StageStepMetricNameEnum = exports.StageStatusEnum = exports.ServicesOverviewResponseManagedByEnum = exports.ServiceTypeForVariableEnum = exports.ServiceTypeEnum = exports.ServiceSubActionEnum = exports.ServiceStepMetricNameEnum = exports.ServiceLightResponseJobTypeEnum = exports.ServiceDeploymentStatusEnum = exports.ServiceActionStatusEnum = exports.ServiceActionEnum = exports.ScalewayClusterCredentialsObjectTypeEnum = exports.Route53StaticCredentialsResponseTypeEnum = exports.Route53StaticCredentialsRequestTypeEnum = exports.Route53DnsProviderResponseProviderEnum = exports.Route53DnsProviderRequestProviderEnum = exports.RewardClaimTypeEnum = exports.RegistryMirroringModeEnum = exports.QueuedDeploymentRequestWithStagesStagesInnerServicesInnerDetailsOneOfJobTypeEnum = exports.QoveryDnsProviderResponseProviderEnum = exports.QoveryDnsProviderRequestProviderEnum = exports.PortProtocolEnum = exports.PlanEnum = exports.OrganizationWebhookKindEnum = exports.OrganizationWebhookEventEnum = exports.OrganizationEventType = exports.OrganizationEventTargetType = exports.OrganizationEventTargetLevel = exports.OrganizationEventSubTargetType = exports.OrganizationEventOrigin = exports.OrganizationCustomRoleProjectPermission = exports.OrganizationCustomRoleClusterPermission = exports.OrganizationApiTokenScope = exports.OrganizationAnnotationsGroupScopeEnum = exports.ObservabilityResourceProfile = exports.MetricsConfigurationManagedByQoveryKindEnum = exports.LinkedServiceTypeEnum = exports.LabelsGroupAssociatedItemType = exports.KubernetesEnum = exports.KedaScalerRole = exports.KarpenterNodePoolRequirementOperator = exports.KarpenterNodePoolRequirementKey = exports.KapsuleInfrastructureOutputsKindEnum = exports.JobTypeEnum = exports.JobScheduleEvent = exports.JobLifecycleTypeEnum = exports.JobForceEvent = exports.InvoiceStatusEnum = exports.InviteStatusEnum = void 0;
|
|
28
|
+
exports.ApplicationLogsApiFactory = exports.ApplicationLogsApiFp = exports.ApplicationLogsApiAxiosParamCreator = exports.ApplicationEnvironmentVariableApi = exports.ApplicationEnvironmentVariableApiFactory = exports.ApplicationEnvironmentVariableApiFp = exports.ApplicationEnvironmentVariableApiAxiosParamCreator = exports.ApplicationDeploymentRestrictionApi = exports.ApplicationDeploymentRestrictionApiFactory = exports.ApplicationDeploymentRestrictionApiFp = exports.ApplicationDeploymentRestrictionApiAxiosParamCreator = exports.ApplicationDeploymentHistoryApi = exports.ApplicationDeploymentHistoryApiFactory = exports.ApplicationDeploymentHistoryApiFp = exports.ApplicationDeploymentHistoryApiAxiosParamCreator = exports.ApplicationCustomDomainApi = exports.ApplicationCustomDomainApiFactory = exports.ApplicationCustomDomainApiFp = exports.ApplicationCustomDomainApiAxiosParamCreator = exports.ApplicationConfigurationApi = exports.ApplicationConfigurationApiFactory = exports.ApplicationConfigurationApiFp = exports.ApplicationConfigurationApiAxiosParamCreator = exports.ApplicationActionsApi = exports.ApplicationActionsApiFactory = exports.ApplicationActionsApiFp = exports.ApplicationActionsApiAxiosParamCreator = exports.AlertRulesApi = exports.AlertRulesApiFactory = exports.AlertRulesApiFp = exports.AlertRulesApiAxiosParamCreator = exports.AlertReceiversApi = exports.AlertReceiversApiFactory = exports.AlertReceiversApiFp = exports.AlertReceiversApiAxiosParamCreator = exports.AccountInfoApi = exports.AccountInfoApiFactory = exports.AccountInfoApiFp = exports.AccountInfoApiAxiosParamCreator = exports.WeekdayEnum = exports.TypeOfUseEnum = exports.TfVarsDiscoveryModeSpecificPathsTypeEnum = exports.TfVarsDiscoveryModeAutoDiscoverTypeEnum = exports.TerraformResourceResponseModeEnum = exports.TerraformEngineEnum = exports.TerraformDeployRequestActionEnum = exports.TerraformAutoDeployConfigTerraformActionEnum = exports.StorageTypeEnum = exports.StepMetricStatusEnum = exports.StatusKindEnum = void 0;
|
|
29
|
+
exports.ContainerActionsApiFactory = exports.ContainerActionsApiFp = exports.ContainerActionsApiAxiosParamCreator = exports.ClustersApi = exports.ClustersApiFactory = exports.ClustersApiFp = exports.ClustersApiAxiosParamCreator = exports.CloudProviderCredentialsApi = exports.CloudProviderCredentialsApiFactory = exports.CloudProviderCredentialsApiFp = exports.CloudProviderCredentialsApiAxiosParamCreator = exports.ListAzureAKSInstanceTypeGpuEnum = exports.ListAWSEKSInstanceTypeGpuEnum = exports.CloudProviderApi = exports.CloudProviderApiFactory = exports.CloudProviderApiFp = exports.CloudProviderApiAxiosParamCreator = exports.BlueprintMainCallsApi = exports.BlueprintMainCallsApiFactory = exports.BlueprintMainCallsApiFp = exports.BlueprintMainCallsApiAxiosParamCreator = exports.BlueprintCatalogApi = exports.BlueprintCatalogApiFactory = exports.BlueprintCatalogApiFp = exports.BlueprintCatalogApiAxiosParamCreator = exports.BillingApi = exports.BillingApiFactory = exports.BillingApiFp = exports.BillingApiAxiosParamCreator = exports.BackupsApi = exports.BackupsApiFactory = exports.BackupsApiFp = exports.BackupsApiAxiosParamCreator = exports.ArgoCDApi = exports.ArgoCDApiFactory = exports.ArgoCDApiFp = exports.ArgoCDApiAxiosParamCreator = exports.ApplicationsApi = exports.ApplicationsApiFactory = exports.ApplicationsApiFp = exports.ApplicationsApiAxiosParamCreator = exports.ApplicationSecretApi = exports.ApplicationSecretApiFactory = exports.ApplicationSecretApiFp = exports.ApplicationSecretApiAxiosParamCreator = exports.ApplicationMainCallsApi = exports.ApplicationMainCallsApiFactory = exports.ApplicationMainCallsApiFp = exports.ApplicationMainCallsApiAxiosParamCreator = exports.ApplicationLogsApi = void 0;
|
|
30
|
+
exports.DatabaseMainCallsApiAxiosParamCreator = exports.DatabaseDeploymentHistoryApi = exports.DatabaseDeploymentHistoryApiFactory = exports.DatabaseDeploymentHistoryApiFp = exports.DatabaseDeploymentHistoryApiAxiosParamCreator = exports.DatabaseApplicationApi = exports.DatabaseApplicationApiFactory = exports.DatabaseApplicationApiFp = exports.DatabaseApplicationApiAxiosParamCreator = exports.DatabaseActionsApi = exports.DatabaseActionsApiFactory = exports.DatabaseActionsApiFp = exports.DatabaseActionsApiAxiosParamCreator = exports.ContainersApi = exports.ContainersApiFactory = exports.ContainersApiFp = exports.ContainersApiAxiosParamCreator = exports.ContainerSecretApi = exports.ContainerSecretApiFactory = exports.ContainerSecretApiFp = exports.ContainerSecretApiAxiosParamCreator = exports.ContainerRegistriesApi = exports.ContainerRegistriesApiFactory = exports.ContainerRegistriesApiFp = exports.ContainerRegistriesApiAxiosParamCreator = exports.ContainerMainCallsApi = exports.ContainerMainCallsApiFactory = exports.ContainerMainCallsApiFp = exports.ContainerMainCallsApiAxiosParamCreator = exports.ContainerLogsApi = exports.ContainerLogsApiFactory = exports.ContainerLogsApiFp = exports.ContainerLogsApiAxiosParamCreator = exports.ContainerEnvironmentVariableApi = exports.ContainerEnvironmentVariableApiFactory = exports.ContainerEnvironmentVariableApiFp = exports.ContainerEnvironmentVariableApiAxiosParamCreator = exports.ContainerDeploymentHistoryApi = exports.ContainerDeploymentHistoryApiFactory = exports.ContainerDeploymentHistoryApiFp = exports.ContainerDeploymentHistoryApiAxiosParamCreator = exports.ContainerCustomDomainApi = exports.ContainerCustomDomainApiFactory = exports.ContainerCustomDomainApiFp = exports.ContainerCustomDomainApiAxiosParamCreator = exports.ContainerConfigurationApi = exports.ContainerConfigurationApiFactory = exports.ContainerConfigurationApiFp = exports.ContainerConfigurationApiAxiosParamCreator = exports.ContainerActionsApi = void 0;
|
|
31
|
+
exports.EnvironmentSecretApiFactory = exports.EnvironmentSecretApiFp = exports.EnvironmentSecretApiAxiosParamCreator = exports.EnvironmentMainCallsApi = exports.EnvironmentMainCallsApiFactory = exports.EnvironmentMainCallsApiFp = exports.EnvironmentMainCallsApiAxiosParamCreator = exports.EnvironmentLogsApi = exports.EnvironmentLogsApiFactory = exports.EnvironmentLogsApiFp = exports.EnvironmentLogsApiAxiosParamCreator = exports.EnvironmentExportApi = exports.EnvironmentExportApiFactory = exports.EnvironmentExportApiFp = exports.EnvironmentExportApiAxiosParamCreator = exports.EnvironmentDeploymentRuleApi = exports.EnvironmentDeploymentRuleApiFactory = exports.EnvironmentDeploymentRuleApiFp = exports.EnvironmentDeploymentRuleApiAxiosParamCreator = exports.EnvironmentDeploymentHistoryApi = exports.EnvironmentDeploymentHistoryApiFactory = exports.EnvironmentDeploymentHistoryApiFp = exports.EnvironmentDeploymentHistoryApiAxiosParamCreator = exports.EnvironmentActionsApi = exports.EnvironmentActionsApiFactory = exports.EnvironmentActionsApiFp = exports.EnvironmentActionsApiAxiosParamCreator = exports.EnvironmentApi = exports.EnvironmentApiFactory = exports.EnvironmentApiFp = exports.EnvironmentApiAxiosParamCreator = exports.DeploymentStageMainCallsApi = exports.DeploymentStageMainCallsApiFactory = exports.DeploymentStageMainCallsApiFp = exports.DeploymentStageMainCallsApiAxiosParamCreator = exports.DeploymentQueueActionsApi = exports.DeploymentQueueActionsApiFactory = exports.DeploymentQueueActionsApiFp = exports.DeploymentQueueActionsApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.DatabasesApi = exports.DatabasesApiFactory = exports.DatabasesApiFp = exports.DatabasesApiAxiosParamCreator = exports.DatabaseMainCallsApi = exports.DatabaseMainCallsApiFactory = exports.DatabaseMainCallsApiFp = void 0;
|
|
32
|
+
exports.JobActionsApiAxiosParamCreator = exports.HelmsApi = exports.HelmsApiFactory = exports.HelmsApiFp = exports.HelmsApiAxiosParamCreator = exports.HelmRepositoriesApi = exports.HelmRepositoriesApiFactory = exports.HelmRepositoriesApiFp = exports.HelmRepositoriesApiAxiosParamCreator = exports.HelmMainCallsApi = exports.HelmMainCallsApiFactory = exports.HelmMainCallsApiFp = exports.HelmMainCallsApiAxiosParamCreator = exports.HelmDeploymentRestrictionApi = exports.HelmDeploymentRestrictionApiFactory = exports.HelmDeploymentRestrictionApiFp = exports.HelmDeploymentRestrictionApiAxiosParamCreator = exports.HelmDeploymentHistoryApi = exports.HelmDeploymentHistoryApiFactory = exports.HelmDeploymentHistoryApiFp = exports.HelmDeploymentHistoryApiAxiosParamCreator = exports.HelmCustomDomainApi = exports.HelmCustomDomainApiFactory = exports.HelmCustomDomainApiFp = exports.HelmCustomDomainApiAxiosParamCreator = exports.HelmConfigurationApi = exports.HelmConfigurationApiFactory = exports.HelmConfigurationApiFp = exports.HelmConfigurationApiAxiosParamCreator = exports.HelmActionsApi = exports.HelmActionsApiFactory = exports.HelmActionsApiFp = exports.HelmActionsApiAxiosParamCreator = exports.GithubAppApi = exports.GithubAppApiFactory = exports.GithubAppApiFp = exports.GithubAppApiAxiosParamCreator = exports.GitRepositoriesApi = exports.GitRepositoriesApiFactory = exports.GitRepositoriesApiFp = exports.GitRepositoriesApiAxiosParamCreator = exports.EnvironmentsApi = exports.EnvironmentsApiFactory = exports.EnvironmentsApiFp = exports.EnvironmentsApiAxiosParamCreator = exports.EnvironmentVariableApi = exports.EnvironmentVariableApiFactory = exports.EnvironmentVariableApiFp = exports.EnvironmentVariableApiAxiosParamCreator = exports.EnvironmentSecretApi = void 0;
|
|
33
|
+
exports.OrganizationApiTokenApiFactory = exports.OrganizationApiTokenApiFp = exports.OrganizationApiTokenApiAxiosParamCreator = exports.OrganizationAnnotationsGroupApi = exports.OrganizationAnnotationsGroupApiFactory = exports.OrganizationAnnotationsGroupApiFp = exports.OrganizationAnnotationsGroupApiAxiosParamCreator = exports.OrganizationAccountGitRepositoriesApi = exports.OrganizationAccountGitRepositoriesApiFactory = exports.OrganizationAccountGitRepositoriesApiFp = exports.OrganizationAccountGitRepositoriesApiAxiosParamCreator = exports.MembersApi = exports.MembersApiFactory = exports.MembersApiFp = exports.MembersApiAxiosParamCreator = exports.LifecycleTemplateMainCallsApi = exports.LifecycleTemplateMainCallsApiFactory = exports.LifecycleTemplateMainCallsApiFp = exports.LifecycleTemplateMainCallsApiAxiosParamCreator = exports.JobsApi = exports.JobsApiFactory = exports.JobsApiFp = exports.JobsApiAxiosParamCreator = exports.JobSecretApi = exports.JobSecretApiFactory = exports.JobSecretApiFp = exports.JobSecretApiAxiosParamCreator = exports.JobMainCallsApi = exports.JobMainCallsApiFactory = exports.JobMainCallsApiFp = exports.JobMainCallsApiAxiosParamCreator = exports.JobEnvironmentVariableApi = exports.JobEnvironmentVariableApiFactory = exports.JobEnvironmentVariableApiFp = exports.JobEnvironmentVariableApiAxiosParamCreator = exports.JobDeploymentRestrictionApi = exports.JobDeploymentRestrictionApiFactory = exports.JobDeploymentRestrictionApiFp = exports.JobDeploymentRestrictionApiAxiosParamCreator = exports.JobDeploymentHistoryApi = exports.JobDeploymentHistoryApiFactory = exports.JobDeploymentHistoryApiFp = exports.JobDeploymentHistoryApiAxiosParamCreator = exports.JobConfigurationApi = exports.JobConfigurationApiFactory = exports.JobConfigurationApiFp = exports.JobConfigurationApiAxiosParamCreator = exports.JobActionsApi = exports.JobActionsApiFactory = exports.JobActionsApiFp = void 0;
|
|
34
|
+
exports.ReferralRewardsApiAxiosParamCreator = exports.ProjectsApi = exports.ProjectsApiFactory = exports.ProjectsApiFp = exports.ProjectsApiAxiosParamCreator = exports.ProjectSecretApi = exports.ProjectSecretApiFactory = exports.ProjectSecretApiFp = exports.ProjectSecretApiAxiosParamCreator = exports.ProjectMainCallsApi = exports.ProjectMainCallsApiFactory = exports.ProjectMainCallsApiFp = exports.ProjectMainCallsApiAxiosParamCreator = exports.ProjectEnvironmentVariableApi = exports.ProjectEnvironmentVariableApiFactory = exports.ProjectEnvironmentVariableApiFp = exports.ProjectEnvironmentVariableApiAxiosParamCreator = exports.ProjectDeploymentRuleApi = exports.ProjectDeploymentRuleApiFactory = exports.ProjectDeploymentRuleApiFp = exports.ProjectDeploymentRuleApiAxiosParamCreator = exports.OrganizationWebhookApi = exports.OrganizationWebhookApiFactory = exports.OrganizationWebhookApiFp = exports.OrganizationWebhookApiAxiosParamCreator = exports.OrganizationMainCallsApi = exports.OrganizationMainCallsApiFactory = exports.OrganizationMainCallsApiFp = exports.OrganizationMainCallsApiAxiosParamCreator = exports.OrganizationLabelsGroupApi = exports.OrganizationLabelsGroupApiFactory = exports.OrganizationLabelsGroupApiFp = exports.OrganizationLabelsGroupApiAxiosParamCreator = exports.OrganizationEventApi = exports.OrganizationEventApiFactory = exports.OrganizationEventApiFp = exports.OrganizationEventApiAxiosParamCreator = exports.OrganizationEnterpriseConnectionApi = exports.OrganizationEnterpriseConnectionApiFactory = exports.OrganizationEnterpriseConnectionApiFp = exports.OrganizationEnterpriseConnectionApiAxiosParamCreator = exports.OrganizationCustomRoleApi = exports.OrganizationCustomRoleApiFactory = exports.OrganizationCustomRoleApiFp = exports.OrganizationCustomRoleApiAxiosParamCreator = exports.OrganizationClusterLockApi = exports.OrganizationClusterLockApiFactory = exports.OrganizationClusterLockApiFp = exports.OrganizationClusterLockApiAxiosParamCreator = exports.OrganizationApiTokenApi = void 0;
|
|
35
|
+
exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = exports.TerraformsApiFp = exports.TerraformsApiAxiosParamCreator = exports.TerraformResourcesApi = exports.TerraformResourcesApiFactory = exports.TerraformResourcesApiFp = exports.TerraformResourcesApiAxiosParamCreator = exports.TerraformMainCallsApi = exports.TerraformMainCallsApiFactory = exports.TerraformMainCallsApiFp = exports.TerraformMainCallsApiAxiosParamCreator = exports.TerraformDeploymentRestrictionApi = exports.TerraformDeploymentRestrictionApiFactory = exports.TerraformDeploymentRestrictionApiFp = exports.TerraformDeploymentRestrictionApiAxiosParamCreator = exports.TerraformDeploymentHistoryApi = exports.TerraformDeploymentHistoryApiFactory = exports.TerraformDeploymentHistoryApiFp = exports.TerraformDeploymentHistoryApiAxiosParamCreator = exports.TerraformConfigurationApi = exports.TerraformConfigurationApiFactory = exports.TerraformConfigurationApiFp = exports.TerraformConfigurationApiAxiosParamCreator = exports.TerraformActionsApi = exports.TerraformActionsApiFactory = exports.TerraformActionsApiFp = exports.TerraformActionsApiAxiosParamCreator = exports.GetIngressDeploymentStatusServiceTypeEnum = exports.ServiceStatusApi = exports.ServiceStatusApiFactory = exports.ServiceStatusApiFp = exports.ServiceStatusApiAxiosParamCreator = exports.ServiceMainCallsApi = exports.ServiceMainCallsApiFactory = exports.ServiceMainCallsApiFp = exports.ServiceMainCallsApiAxiosParamCreator = exports.SecretManagerAccessApi = exports.SecretManagerAccessApiFactory = exports.SecretManagerAccessApiFp = exports.SecretManagerAccessApiAxiosParamCreator = exports.ReferralRewardsApi = exports.ReferralRewardsApiFactory = exports.ReferralRewardsApiFp = void 0;
|
|
36
|
+
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = void 0;
|
|
36
37
|
const axios_1 = require("axios");
|
|
37
38
|
// Some imports not used depending on template conditions
|
|
38
39
|
// @ts-ignore
|
|
@@ -481,6 +482,12 @@ exports.ContainerRegistryKindEnum = {
|
|
|
481
482
|
GCP_ARTIFACT_REGISTRY: 'GCP_ARTIFACT_REGISTRY',
|
|
482
483
|
AZURE_CR: 'AZURE_CR'
|
|
483
484
|
};
|
|
485
|
+
exports.ContainerRegistryRequestConfigGcpCredentialsTypeEnum = {
|
|
486
|
+
WORKLOAD_IDENTITY_FEDERATION: 'workload_identity_federation'
|
|
487
|
+
};
|
|
488
|
+
exports.ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = {
|
|
489
|
+
WORKLOAD_IDENTITY_FEDERATION: 'workload_identity_federation'
|
|
490
|
+
};
|
|
484
491
|
/**
|
|
485
492
|
*
|
|
486
493
|
* @export
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -6919,11 +6919,53 @@ export interface ContainerRegistryRequestConfig {
|
|
|
6919
6919
|
*/
|
|
6920
6920
|
'scaleway_project_id'?: string;
|
|
6921
6921
|
/**
|
|
6922
|
-
* Required if kind is `GCP_ARTIFACT_REGISTRY
|
|
6922
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY`. For GCP Artifact Registry, you can either set a service account JSON key with json_credentials or use Workload Identity Federation with gcp_credentials_type.
|
|
6923
6923
|
* @type {string}
|
|
6924
6924
|
* @memberof ContainerRegistryRequestConfig
|
|
6925
6925
|
*/
|
|
6926
6926
|
'json_credentials'?: string;
|
|
6927
|
+
/**
|
|
6928
|
+
* For GCP Artifact Registry, you can either set a service account JSON key with json_credentials or use Workload Identity Federation with gcp_credentials_type.
|
|
6929
|
+
* @type {string}
|
|
6930
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6931
|
+
*/
|
|
6932
|
+
'gcp_credentials_type'?: ContainerRegistryRequestConfigGcpCredentialsTypeEnum;
|
|
6933
|
+
/**
|
|
6934
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6935
|
+
* @type {string}
|
|
6936
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6937
|
+
*/
|
|
6938
|
+
'project_id'?: string;
|
|
6939
|
+
/**
|
|
6940
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6941
|
+
* @type {string}
|
|
6942
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6943
|
+
*/
|
|
6944
|
+
'service_account_email'?: string;
|
|
6945
|
+
/**
|
|
6946
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6947
|
+
* @type {string}
|
|
6948
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6949
|
+
*/
|
|
6950
|
+
'workload_identity_project_number'?: string;
|
|
6951
|
+
/**
|
|
6952
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6953
|
+
* @type {string}
|
|
6954
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6955
|
+
*/
|
|
6956
|
+
'workload_identity_pool_id'?: string;
|
|
6957
|
+
/**
|
|
6958
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6959
|
+
* @type {string}
|
|
6960
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6961
|
+
*/
|
|
6962
|
+
'workload_identity_provider_id'?: string;
|
|
6963
|
+
/**
|
|
6964
|
+
* Optional if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6965
|
+
* @type {number}
|
|
6966
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6967
|
+
*/
|
|
6968
|
+
'token_lifetime_seconds'?: number;
|
|
6927
6969
|
/**
|
|
6928
6970
|
* optional, for kind `DOCKER_HUB` We encourage you to set credentials for Docker Hub due to the limits on the pull rate
|
|
6929
6971
|
* @type {string}
|
|
@@ -6955,6 +6997,10 @@ export interface ContainerRegistryRequestConfig {
|
|
|
6955
6997
|
*/
|
|
6956
6998
|
'azure_subscription_id'?: string;
|
|
6957
6999
|
}
|
|
7000
|
+
export declare const ContainerRegistryRequestConfigGcpCredentialsTypeEnum: {
|
|
7001
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "workload_identity_federation";
|
|
7002
|
+
};
|
|
7003
|
+
export type ContainerRegistryRequestConfigGcpCredentialsTypeEnum = typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum];
|
|
6958
7004
|
/**
|
|
6959
7005
|
*
|
|
6960
7006
|
* @export
|
|
@@ -7083,6 +7129,48 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7083
7129
|
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7084
7130
|
*/
|
|
7085
7131
|
'role_arn'?: string;
|
|
7132
|
+
/**
|
|
7133
|
+
*
|
|
7134
|
+
* @type {string}
|
|
7135
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7136
|
+
*/
|
|
7137
|
+
'gcp_credentials_type'?: ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum;
|
|
7138
|
+
/**
|
|
7139
|
+
*
|
|
7140
|
+
* @type {string}
|
|
7141
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7142
|
+
*/
|
|
7143
|
+
'project_id'?: string;
|
|
7144
|
+
/**
|
|
7145
|
+
*
|
|
7146
|
+
* @type {string}
|
|
7147
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7148
|
+
*/
|
|
7149
|
+
'service_account_email'?: string;
|
|
7150
|
+
/**
|
|
7151
|
+
*
|
|
7152
|
+
* @type {string}
|
|
7153
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7154
|
+
*/
|
|
7155
|
+
'workload_identity_project_number'?: string;
|
|
7156
|
+
/**
|
|
7157
|
+
*
|
|
7158
|
+
* @type {string}
|
|
7159
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7160
|
+
*/
|
|
7161
|
+
'workload_identity_pool_id'?: string;
|
|
7162
|
+
/**
|
|
7163
|
+
*
|
|
7164
|
+
* @type {string}
|
|
7165
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7166
|
+
*/
|
|
7167
|
+
'workload_identity_provider_id'?: string;
|
|
7168
|
+
/**
|
|
7169
|
+
*
|
|
7170
|
+
* @type {number}
|
|
7171
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7172
|
+
*/
|
|
7173
|
+
'token_lifetime_seconds'?: number;
|
|
7086
7174
|
/**
|
|
7087
7175
|
*
|
|
7088
7176
|
* @type {string}
|
|
@@ -7108,6 +7196,10 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7108
7196
|
*/
|
|
7109
7197
|
'azure_application_object_id'?: string;
|
|
7110
7198
|
}
|
|
7199
|
+
export declare const ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum: {
|
|
7200
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "workload_identity_federation";
|
|
7201
|
+
};
|
|
7202
|
+
export type ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum];
|
|
7111
7203
|
/**
|
|
7112
7204
|
*
|
|
7113
7205
|
* @export
|
package/dist/esm/api.js
CHANGED
|
@@ -468,6 +468,12 @@ export const ContainerRegistryKindEnum = {
|
|
|
468
468
|
GCP_ARTIFACT_REGISTRY: 'GCP_ARTIFACT_REGISTRY',
|
|
469
469
|
AZURE_CR: 'AZURE_CR'
|
|
470
470
|
};
|
|
471
|
+
export const ContainerRegistryRequestConfigGcpCredentialsTypeEnum = {
|
|
472
|
+
WORKLOAD_IDENTITY_FEDERATION: 'workload_identity_federation'
|
|
473
|
+
};
|
|
474
|
+
export const ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = {
|
|
475
|
+
WORKLOAD_IDENTITY_FEDERATION: 'workload_identity_federation'
|
|
476
|
+
};
|
|
471
477
|
/**
|
|
472
478
|
*
|
|
473
479
|
* @export
|