qovery-typescript-axios 1.1.899 → 1.1.902
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 +76 -14
- package/dist/api.d.ts +70 -14
- package/dist/api.js +17 -10
- package/dist/esm/api.d.ts +70 -14
- package/dist/esm/api.js +6 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -7116,11 +7116,41 @@ 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_provider_resource'?: string;
|
|
7148
|
+
/**
|
|
7149
|
+
* Optional if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
7150
|
+
* @type {number}
|
|
7151
|
+
* @memberof ContainerRegistryRequestConfig
|
|
7152
|
+
*/
|
|
7153
|
+
'token_lifetime_seconds'?: number;
|
|
7124
7154
|
/**
|
|
7125
7155
|
* optional, for kind `DOCKER_HUB` We encourage you to set credentials for Docker Hub due to the limits on the pull rate
|
|
7126
7156
|
* @type {string}
|
|
@@ -7152,6 +7182,13 @@ export interface ContainerRegistryRequestConfig {
|
|
|
7152
7182
|
*/
|
|
7153
7183
|
'azure_subscription_id'?: string;
|
|
7154
7184
|
}
|
|
7185
|
+
|
|
7186
|
+
export const ContainerRegistryRequestConfigGcpCredentialsTypeEnum = {
|
|
7187
|
+
WORKLOAD_IDENTITY_FEDERATION: 'workload_identity_federation'
|
|
7188
|
+
} as const;
|
|
7189
|
+
|
|
7190
|
+
export type ContainerRegistryRequestConfigGcpCredentialsTypeEnum = typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum];
|
|
7191
|
+
|
|
7155
7192
|
/**
|
|
7156
7193
|
*
|
|
7157
7194
|
* @export
|
|
@@ -7282,6 +7319,36 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7282
7319
|
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7283
7320
|
*/
|
|
7284
7321
|
'role_arn'?: string;
|
|
7322
|
+
/**
|
|
7323
|
+
*
|
|
7324
|
+
* @type {string}
|
|
7325
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7326
|
+
*/
|
|
7327
|
+
'gcp_credentials_type'?: ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum;
|
|
7328
|
+
/**
|
|
7329
|
+
*
|
|
7330
|
+
* @type {string}
|
|
7331
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7332
|
+
*/
|
|
7333
|
+
'project_id'?: string;
|
|
7334
|
+
/**
|
|
7335
|
+
*
|
|
7336
|
+
* @type {string}
|
|
7337
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7338
|
+
*/
|
|
7339
|
+
'service_account_email'?: string;
|
|
7340
|
+
/**
|
|
7341
|
+
*
|
|
7342
|
+
* @type {string}
|
|
7343
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7344
|
+
*/
|
|
7345
|
+
'workload_identity_provider_resource'?: string;
|
|
7346
|
+
/**
|
|
7347
|
+
*
|
|
7348
|
+
* @type {number}
|
|
7349
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7350
|
+
*/
|
|
7351
|
+
'token_lifetime_seconds'?: number;
|
|
7285
7352
|
/**
|
|
7286
7353
|
*
|
|
7287
7354
|
* @type {string}
|
|
@@ -7307,6 +7374,13 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7307
7374
|
*/
|
|
7308
7375
|
'azure_application_object_id'?: string;
|
|
7309
7376
|
}
|
|
7377
|
+
|
|
7378
|
+
export const ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = {
|
|
7379
|
+
WORKLOAD_IDENTITY_FEDERATION: 'workload_identity_federation'
|
|
7380
|
+
} as const;
|
|
7381
|
+
|
|
7382
|
+
export type ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum];
|
|
7383
|
+
|
|
7310
7384
|
/**
|
|
7311
7385
|
*
|
|
7312
7386
|
* @export
|
|
@@ -12367,19 +12441,7 @@ export interface GcpWorkloadIdentityFederationClusterCredentials {
|
|
|
12367
12441
|
* @type {string}
|
|
12368
12442
|
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12369
12443
|
*/
|
|
12370
|
-
'
|
|
12371
|
-
/**
|
|
12372
|
-
*
|
|
12373
|
-
* @type {string}
|
|
12374
|
-
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12375
|
-
*/
|
|
12376
|
-
'workload_identity_pool_id': string;
|
|
12377
|
-
/**
|
|
12378
|
-
*
|
|
12379
|
-
* @type {string}
|
|
12380
|
-
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12381
|
-
*/
|
|
12382
|
-
'workload_identity_provider_id': string;
|
|
12444
|
+
'workload_identity_provider_resource': string;
|
|
12383
12445
|
/**
|
|
12384
12446
|
*
|
|
12385
12447
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -6919,11 +6919,41 @@ 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_provider_resource'?: string;
|
|
6951
|
+
/**
|
|
6952
|
+
* Optional if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6953
|
+
* @type {number}
|
|
6954
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6955
|
+
*/
|
|
6956
|
+
'token_lifetime_seconds'?: number;
|
|
6927
6957
|
/**
|
|
6928
6958
|
* optional, for kind `DOCKER_HUB` We encourage you to set credentials for Docker Hub due to the limits on the pull rate
|
|
6929
6959
|
* @type {string}
|
|
@@ -6955,6 +6985,10 @@ export interface ContainerRegistryRequestConfig {
|
|
|
6955
6985
|
*/
|
|
6956
6986
|
'azure_subscription_id'?: string;
|
|
6957
6987
|
}
|
|
6988
|
+
export declare const ContainerRegistryRequestConfigGcpCredentialsTypeEnum: {
|
|
6989
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "workload_identity_federation";
|
|
6990
|
+
};
|
|
6991
|
+
export type ContainerRegistryRequestConfigGcpCredentialsTypeEnum = typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum];
|
|
6958
6992
|
/**
|
|
6959
6993
|
*
|
|
6960
6994
|
* @export
|
|
@@ -7083,6 +7117,36 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7083
7117
|
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7084
7118
|
*/
|
|
7085
7119
|
'role_arn'?: string;
|
|
7120
|
+
/**
|
|
7121
|
+
*
|
|
7122
|
+
* @type {string}
|
|
7123
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7124
|
+
*/
|
|
7125
|
+
'gcp_credentials_type'?: ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum;
|
|
7126
|
+
/**
|
|
7127
|
+
*
|
|
7128
|
+
* @type {string}
|
|
7129
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7130
|
+
*/
|
|
7131
|
+
'project_id'?: string;
|
|
7132
|
+
/**
|
|
7133
|
+
*
|
|
7134
|
+
* @type {string}
|
|
7135
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7136
|
+
*/
|
|
7137
|
+
'service_account_email'?: string;
|
|
7138
|
+
/**
|
|
7139
|
+
*
|
|
7140
|
+
* @type {string}
|
|
7141
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7142
|
+
*/
|
|
7143
|
+
'workload_identity_provider_resource'?: string;
|
|
7144
|
+
/**
|
|
7145
|
+
*
|
|
7146
|
+
* @type {number}
|
|
7147
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7148
|
+
*/
|
|
7149
|
+
'token_lifetime_seconds'?: number;
|
|
7086
7150
|
/**
|
|
7087
7151
|
*
|
|
7088
7152
|
* @type {string}
|
|
@@ -7108,6 +7172,10 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7108
7172
|
*/
|
|
7109
7173
|
'azure_application_object_id'?: string;
|
|
7110
7174
|
}
|
|
7175
|
+
export declare const ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum: {
|
|
7176
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "workload_identity_federation";
|
|
7177
|
+
};
|
|
7178
|
+
export type ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum];
|
|
7111
7179
|
/**
|
|
7112
7180
|
*
|
|
7113
7181
|
* @export
|
|
@@ -11985,19 +12053,7 @@ export interface GcpWorkloadIdentityFederationClusterCredentials {
|
|
|
11985
12053
|
* @type {string}
|
|
11986
12054
|
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11987
12055
|
*/
|
|
11988
|
-
'
|
|
11989
|
-
/**
|
|
11990
|
-
*
|
|
11991
|
-
* @type {string}
|
|
11992
|
-
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11993
|
-
*/
|
|
11994
|
-
'workload_identity_pool_id': string;
|
|
11995
|
-
/**
|
|
11996
|
-
*
|
|
11997
|
-
* @type {string}
|
|
11998
|
-
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11999
|
-
*/
|
|
12000
|
-
'workload_identity_provider_id': string;
|
|
12056
|
+
'workload_identity_provider_resource': string;
|
|
12001
12057
|
/**
|
|
12002
12058
|
*
|
|
12003
12059
|
* @type {number}
|
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,41 @@ 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_provider_resource'?: string;
|
|
6951
|
+
/**
|
|
6952
|
+
* Optional if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6953
|
+
* @type {number}
|
|
6954
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6955
|
+
*/
|
|
6956
|
+
'token_lifetime_seconds'?: number;
|
|
6927
6957
|
/**
|
|
6928
6958
|
* optional, for kind `DOCKER_HUB` We encourage you to set credentials for Docker Hub due to the limits on the pull rate
|
|
6929
6959
|
* @type {string}
|
|
@@ -6955,6 +6985,10 @@ export interface ContainerRegistryRequestConfig {
|
|
|
6955
6985
|
*/
|
|
6956
6986
|
'azure_subscription_id'?: string;
|
|
6957
6987
|
}
|
|
6988
|
+
export declare const ContainerRegistryRequestConfigGcpCredentialsTypeEnum: {
|
|
6989
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "workload_identity_federation";
|
|
6990
|
+
};
|
|
6991
|
+
export type ContainerRegistryRequestConfigGcpCredentialsTypeEnum = typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum];
|
|
6958
6992
|
/**
|
|
6959
6993
|
*
|
|
6960
6994
|
* @export
|
|
@@ -7083,6 +7117,36 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7083
7117
|
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7084
7118
|
*/
|
|
7085
7119
|
'role_arn'?: string;
|
|
7120
|
+
/**
|
|
7121
|
+
*
|
|
7122
|
+
* @type {string}
|
|
7123
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7124
|
+
*/
|
|
7125
|
+
'gcp_credentials_type'?: ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum;
|
|
7126
|
+
/**
|
|
7127
|
+
*
|
|
7128
|
+
* @type {string}
|
|
7129
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7130
|
+
*/
|
|
7131
|
+
'project_id'?: string;
|
|
7132
|
+
/**
|
|
7133
|
+
*
|
|
7134
|
+
* @type {string}
|
|
7135
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7136
|
+
*/
|
|
7137
|
+
'service_account_email'?: string;
|
|
7138
|
+
/**
|
|
7139
|
+
*
|
|
7140
|
+
* @type {string}
|
|
7141
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7142
|
+
*/
|
|
7143
|
+
'workload_identity_provider_resource'?: string;
|
|
7144
|
+
/**
|
|
7145
|
+
*
|
|
7146
|
+
* @type {number}
|
|
7147
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7148
|
+
*/
|
|
7149
|
+
'token_lifetime_seconds'?: number;
|
|
7086
7150
|
/**
|
|
7087
7151
|
*
|
|
7088
7152
|
* @type {string}
|
|
@@ -7108,6 +7172,10 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7108
7172
|
*/
|
|
7109
7173
|
'azure_application_object_id'?: string;
|
|
7110
7174
|
}
|
|
7175
|
+
export declare const ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum: {
|
|
7176
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "workload_identity_federation";
|
|
7177
|
+
};
|
|
7178
|
+
export type ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum];
|
|
7111
7179
|
/**
|
|
7112
7180
|
*
|
|
7113
7181
|
* @export
|
|
@@ -11985,19 +12053,7 @@ export interface GcpWorkloadIdentityFederationClusterCredentials {
|
|
|
11985
12053
|
* @type {string}
|
|
11986
12054
|
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11987
12055
|
*/
|
|
11988
|
-
'
|
|
11989
|
-
/**
|
|
11990
|
-
*
|
|
11991
|
-
* @type {string}
|
|
11992
|
-
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11993
|
-
*/
|
|
11994
|
-
'workload_identity_pool_id': string;
|
|
11995
|
-
/**
|
|
11996
|
-
*
|
|
11997
|
-
* @type {string}
|
|
11998
|
-
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11999
|
-
*/
|
|
12000
|
-
'workload_identity_provider_id': string;
|
|
12056
|
+
'workload_identity_provider_resource': string;
|
|
12001
12057
|
/**
|
|
12002
12058
|
*
|
|
12003
12059
|
* @type {number}
|
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
|