@ibm-cloud/secrets-manager 2.0.4 → 2.0.6
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/CHANGELOG.md +4 -0
- package/README.md +1 -3
- package/examples/secrets-manager.v2.test.js +13 -26
- package/package.json +2 -2
- package/secrets-manager/v2.d.ts +762 -270
- package/secrets-manager/v2.js +110 -82
- package/secrets-manager/v2.js.map +1 -1
package/secrets-manager/v2.js
CHANGED
|
@@ -77,7 +77,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
77
77
|
}
|
|
78
78
|
};
|
|
79
79
|
/**
|
|
80
|
-
* IBM OpenAPI SDK Code Generator Version: 3.
|
|
80
|
+
* IBM OpenAPI SDK Code Generator Version: 3.94.1-71478489-20240820-161623
|
|
81
81
|
*/
|
|
82
82
|
/* eslint-disable max-classes-per-file */
|
|
83
83
|
/* eslint-disable no-await-in-loop */
|
|
@@ -329,7 +329,7 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
329
329
|
* Delete a secret group by specifying the ID of the secret group.
|
|
330
330
|
*
|
|
331
331
|
* **Note:** To delete a secret group, it must be empty. If you need to remove a secret group that contains secrets,
|
|
332
|
-
* you must first
|
|
332
|
+
* you must first delete the secrets that are associated with the group.
|
|
333
333
|
*
|
|
334
334
|
* @param {Object} params - The parameters to send to the service.
|
|
335
335
|
* @param {string} params.id - The v4 UUID that uniquely identifies your secret group.
|
|
@@ -497,8 +497,7 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
497
497
|
* Get a secret and its details by specifying the ID of the secret.
|
|
498
498
|
*
|
|
499
499
|
* A successful request returns the secret data that is associated with your secret, along with other metadata. To
|
|
500
|
-
* view only the details of a specified secret without retrieving its value, use the
|
|
501
|
-
* metadata](#get-secret-metadata) operation.
|
|
500
|
+
* view only the details of a specified secret without retrieving its value, use the Get secret metadata operation.
|
|
502
501
|
*
|
|
503
502
|
* @param {Object} params - The parameters to send to the service.
|
|
504
503
|
* @param {string} params.id - The v4 UUID that uniquely identifies your secret.
|
|
@@ -687,8 +686,7 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
687
686
|
* Get a secret and its details by specifying the Name and Type of the secret.
|
|
688
687
|
*
|
|
689
688
|
* A successful request returns the secret data that is associated with your secret, along with other metadata. To
|
|
690
|
-
* view only the details of a specified secret without retrieving its value, use the
|
|
691
|
-
* metadata](#get-secret-metadata) operation.
|
|
689
|
+
* view only the details of a specified secret without retrieving its value, use the Get secret metadata operation.
|
|
692
690
|
*
|
|
693
691
|
* @param {Object} params - The parameters to send to the service.
|
|
694
692
|
* @param {string} params.secretType - The secret type. Supported types are arbitrary, imported_cert, public_cert,
|
|
@@ -1526,13 +1524,20 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
1526
1524
|
*
|
|
1527
1525
|
* **Usage:** If you want to list only the configurations that contain the string `text`, use
|
|
1528
1526
|
* `../configurations?search=text`.
|
|
1527
|
+
* @param {string[]} [params.secretTypes] - Filter configurations by secret types, iam_credentials, public_cert or
|
|
1528
|
+
* private_cert.
|
|
1529
|
+
*
|
|
1530
|
+
* You can apply multiple filters by using a comma-separated list of secret types.
|
|
1531
|
+
*
|
|
1532
|
+
* **Usage:** To retrieve a list of configurations that are associated with all secret types, use
|
|
1533
|
+
* `..?secret_types=iam_credentials,public_cert,private_cert`.
|
|
1529
1534
|
* @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
|
|
1530
1535
|
* @returns {Promise<SecretsManagerV2.Response<SecretsManagerV2.ConfigurationMetadataPaginatedCollection>>}
|
|
1531
1536
|
*/
|
|
1532
1537
|
SecretsManagerV2.prototype.listConfigurations = function (params) {
|
|
1533
1538
|
var _params = __assign({}, params);
|
|
1534
1539
|
var _requiredParams = [];
|
|
1535
|
-
var _validParams = ['offset', 'limit', 'sort', 'search', 'headers'];
|
|
1540
|
+
var _validParams = ['offset', 'limit', 'sort', 'search', 'secretTypes', 'headers'];
|
|
1536
1541
|
var _validationErrors = (0, ibm_cloud_sdk_core_1.validateParams)(_params, _requiredParams, _validParams);
|
|
1537
1542
|
if (_validationErrors) {
|
|
1538
1543
|
return Promise.reject(_validationErrors);
|
|
@@ -1542,6 +1547,7 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
1542
1547
|
'limit': _params.limit,
|
|
1543
1548
|
'sort': _params.sort,
|
|
1544
1549
|
'search': _params.search,
|
|
1550
|
+
'secret_types': _params.secretTypes,
|
|
1545
1551
|
};
|
|
1546
1552
|
var sdkHeaders = (0, common_1.getSdkHeaders)(SecretsManagerV2.DEFAULT_SERVICE_NAME, 'v2', 'listConfigurations');
|
|
1547
1553
|
var parameters = {
|
|
@@ -1943,19 +1949,30 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
1943
1949
|
Mode["REMOVE_PREVIOUS_AND_DELETE"] = "remove_previous_and_delete";
|
|
1944
1950
|
})(Mode = CreateSecretVersionLocksBulkConstants.Mode || (CreateSecretVersionLocksBulkConstants.Mode = {}));
|
|
1945
1951
|
})(CreateSecretVersionLocksBulkConstants = SecretsManagerV2.CreateSecretVersionLocksBulkConstants || (SecretsManagerV2.CreateSecretVersionLocksBulkConstants = {}));
|
|
1952
|
+
/** Constants for the `listConfigurations` operation. */
|
|
1953
|
+
var ListConfigurationsConstants;
|
|
1954
|
+
(function (ListConfigurationsConstants) {
|
|
1955
|
+
/** Filter configurations by secret types, iam_credentials, public_cert or private_cert. You can apply multiple filters by using a comma-separated list of secret types. **Usage:** To retrieve a list of configurations that are associated with all secret types, use `..?secret_types=iam_credentials,public_cert,private_cert`. */
|
|
1956
|
+
var SecretTypes;
|
|
1957
|
+
(function (SecretTypes) {
|
|
1958
|
+
SecretTypes["IAM_CREDENTIALS"] = "iam_credentials";
|
|
1959
|
+
SecretTypes["PRIVATE_CERT"] = "private_cert";
|
|
1960
|
+
SecretTypes["PUBLIC_CERT"] = "public_cert";
|
|
1961
|
+
})(SecretTypes = ListConfigurationsConstants.SecretTypes || (ListConfigurationsConstants.SecretTypes = {}));
|
|
1962
|
+
})(ListConfigurationsConstants = SecretsManagerV2.ListConfigurationsConstants || (SecretsManagerV2.ListConfigurationsConstants = {}));
|
|
1946
1963
|
/** Constants for the `getConfiguration` operation. */
|
|
1947
1964
|
var GetConfigurationConstants;
|
|
1948
1965
|
(function (GetConfigurationConstants) {
|
|
1949
1966
|
/** The configuration type of this configuration - use this header to resolve 300 error responses. */
|
|
1950
1967
|
var XSmAcceptConfigurationType;
|
|
1951
1968
|
(function (XSmAcceptConfigurationType) {
|
|
1952
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
1953
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
1954
1969
|
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
1955
|
-
XSmAcceptConfigurationType["
|
|
1970
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
1971
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
1956
1972
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
1957
1973
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
1958
1974
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
1975
|
+
XSmAcceptConfigurationType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
1959
1976
|
})(XSmAcceptConfigurationType = GetConfigurationConstants.XSmAcceptConfigurationType || (GetConfigurationConstants.XSmAcceptConfigurationType = {}));
|
|
1960
1977
|
})(GetConfigurationConstants = SecretsManagerV2.GetConfigurationConstants || (SecretsManagerV2.GetConfigurationConstants = {}));
|
|
1961
1978
|
/** Constants for the `updateConfiguration` operation. */
|
|
@@ -1964,13 +1981,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
1964
1981
|
/** The configuration type of this configuration - use this header to resolve 300 error responses. */
|
|
1965
1982
|
var XSmAcceptConfigurationType;
|
|
1966
1983
|
(function (XSmAcceptConfigurationType) {
|
|
1967
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
1968
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
1969
1984
|
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
1970
|
-
XSmAcceptConfigurationType["
|
|
1985
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
1986
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
1971
1987
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
1972
1988
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
1973
1989
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
1990
|
+
XSmAcceptConfigurationType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
1974
1991
|
})(XSmAcceptConfigurationType = UpdateConfigurationConstants.XSmAcceptConfigurationType || (UpdateConfigurationConstants.XSmAcceptConfigurationType = {}));
|
|
1975
1992
|
})(UpdateConfigurationConstants = SecretsManagerV2.UpdateConfigurationConstants || (SecretsManagerV2.UpdateConfigurationConstants = {}));
|
|
1976
1993
|
/** Constants for the `deleteConfiguration` operation. */
|
|
@@ -1979,13 +1996,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
1979
1996
|
/** The configuration type of this configuration - use this header to resolve 300 error responses. */
|
|
1980
1997
|
var XSmAcceptConfigurationType;
|
|
1981
1998
|
(function (XSmAcceptConfigurationType) {
|
|
1982
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
1983
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
1984
1999
|
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
1985
|
-
XSmAcceptConfigurationType["
|
|
2000
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2001
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
1986
2002
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
1987
2003
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
1988
2004
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
2005
|
+
XSmAcceptConfigurationType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
1989
2006
|
})(XSmAcceptConfigurationType = DeleteConfigurationConstants.XSmAcceptConfigurationType || (DeleteConfigurationConstants.XSmAcceptConfigurationType = {}));
|
|
1990
2007
|
})(DeleteConfigurationConstants = SecretsManagerV2.DeleteConfigurationConstants || (SecretsManagerV2.DeleteConfigurationConstants = {}));
|
|
1991
2008
|
/** Constants for the `createConfigurationAction` operation. */
|
|
@@ -1994,13 +2011,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
1994
2011
|
/** The configuration type of this configuration - use this header to resolve 300 error responses. */
|
|
1995
2012
|
var XSmAcceptConfigurationType;
|
|
1996
2013
|
(function (XSmAcceptConfigurationType) {
|
|
1997
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
1998
|
-
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
1999
2014
|
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
2000
|
-
XSmAcceptConfigurationType["
|
|
2015
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2016
|
+
XSmAcceptConfigurationType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2001
2017
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
2002
2018
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
2003
2019
|
XSmAcceptConfigurationType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
2020
|
+
XSmAcceptConfigurationType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
2004
2021
|
})(XSmAcceptConfigurationType = CreateConfigurationActionConstants.XSmAcceptConfigurationType || (CreateConfigurationActionConstants.XSmAcceptConfigurationType = {}));
|
|
2005
2022
|
})(CreateConfigurationActionConstants = SecretsManagerV2.CreateConfigurationActionConstants || (SecretsManagerV2.CreateConfigurationActionConstants = {}));
|
|
2006
2023
|
var CertificateIssuanceInfo;
|
|
@@ -2199,13 +2216,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
2199
2216
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
2200
2217
|
var ConfigType;
|
|
2201
2218
|
(function (ConfigType) {
|
|
2202
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2203
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2204
2219
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
2205
|
-
ConfigType["
|
|
2220
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2221
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2206
2222
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
2207
2223
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
2208
2224
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
2225
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
2209
2226
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
2210
2227
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
2211
2228
|
var SecretType;
|
|
@@ -2228,13 +2245,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
2228
2245
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
2229
2246
|
var ConfigType;
|
|
2230
2247
|
(function (ConfigType) {
|
|
2231
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2232
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2233
2248
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
2234
|
-
ConfigType["
|
|
2249
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2250
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2235
2251
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
2236
2252
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
2237
2253
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
2254
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
2238
2255
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
2239
2256
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
2240
2257
|
var SecretType;
|
|
@@ -2257,13 +2274,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
2257
2274
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
2258
2275
|
var ConfigType;
|
|
2259
2276
|
(function (ConfigType) {
|
|
2260
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2261
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2262
2277
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
2263
|
-
ConfigType["
|
|
2278
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2279
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2264
2280
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
2265
2281
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
2266
2282
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
2283
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
2267
2284
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
2268
2285
|
})(Constants = IAMCredentialsConfigurationPrototype.Constants || (IAMCredentialsConfigurationPrototype.Constants = {}));
|
|
2269
2286
|
})(IAMCredentialsConfigurationPrototype = SecretsManagerV2.IAMCredentialsConfigurationPrototype || (SecretsManagerV2.IAMCredentialsConfigurationPrototype = {}));
|
|
@@ -2859,13 +2876,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
2859
2876
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
2860
2877
|
var ConfigType;
|
|
2861
2878
|
(function (ConfigType) {
|
|
2862
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2863
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2864
2879
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
2865
|
-
ConfigType["
|
|
2880
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2881
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2866
2882
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
2867
2883
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
2868
2884
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
2885
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
2869
2886
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
2870
2887
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
2871
2888
|
var SecretType;
|
|
@@ -2934,13 +2951,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
2934
2951
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
2935
2952
|
var ConfigType;
|
|
2936
2953
|
(function (ConfigType) {
|
|
2937
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2938
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2939
2954
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
2940
|
-
ConfigType["
|
|
2955
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2956
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2941
2957
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
2942
2958
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
2943
2959
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
2960
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
2944
2961
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
2945
2962
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
2946
2963
|
var SecretType;
|
|
@@ -2985,13 +3002,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
2985
3002
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
2986
3003
|
var ConfigType;
|
|
2987
3004
|
(function (ConfigType) {
|
|
2988
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2989
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
2990
3005
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
2991
|
-
ConfigType["
|
|
3006
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3007
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
2992
3008
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
2993
3009
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
2994
3010
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3011
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
2995
3012
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
2996
3013
|
/** The signing method to use with this certificate authority to generate private certificates. You can choose between internal or externally signed options. For more information, see the [docs](https://cloud.ibm.com/docs/secrets-manager?topic=secrets-manager-intermediate-certificate-authorities). */
|
|
2997
3014
|
var SigningMethod;
|
|
@@ -3026,13 +3043,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3026
3043
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3027
3044
|
var ConfigType;
|
|
3028
3045
|
(function (ConfigType) {
|
|
3029
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3030
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3031
3046
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3032
|
-
ConfigType["
|
|
3047
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3048
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3033
3049
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3034
3050
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3035
3051
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3052
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3036
3053
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3037
3054
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3038
3055
|
var SecretType;
|
|
@@ -3083,13 +3100,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3083
3100
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3084
3101
|
var ConfigType;
|
|
3085
3102
|
(function (ConfigType) {
|
|
3086
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3087
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3088
3103
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3089
|
-
ConfigType["
|
|
3104
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3105
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3090
3106
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3091
3107
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3092
3108
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3109
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3093
3110
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3094
3111
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3095
3112
|
var SecretType;
|
|
@@ -3128,13 +3145,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3128
3145
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3129
3146
|
var ConfigType;
|
|
3130
3147
|
(function (ConfigType) {
|
|
3131
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3132
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3133
3148
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3134
|
-
ConfigType["
|
|
3149
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3150
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3135
3151
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3136
3152
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3137
3153
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3154
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3138
3155
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3139
3156
|
/** The format of the returned data. */
|
|
3140
3157
|
var Format;
|
|
@@ -3163,13 +3180,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3163
3180
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3164
3181
|
var ConfigType;
|
|
3165
3182
|
(function (ConfigType) {
|
|
3166
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3167
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3168
3183
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3169
|
-
ConfigType["
|
|
3184
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3185
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3170
3186
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3171
3187
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3172
3188
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3189
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3173
3190
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3174
3191
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3175
3192
|
var SecretType;
|
|
@@ -3198,13 +3215,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3198
3215
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3199
3216
|
var ConfigType;
|
|
3200
3217
|
(function (ConfigType) {
|
|
3201
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3202
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3203
3218
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3204
|
-
ConfigType["
|
|
3219
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3220
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3205
3221
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3206
3222
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3207
3223
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3224
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3208
3225
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3209
3226
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3210
3227
|
var SecretType;
|
|
@@ -3239,13 +3256,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3239
3256
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3240
3257
|
var ConfigType;
|
|
3241
3258
|
(function (ConfigType) {
|
|
3242
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3243
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3244
3259
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3245
|
-
ConfigType["
|
|
3260
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3261
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3246
3262
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3247
3263
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3248
3264
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3265
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3249
3266
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3250
3267
|
/** The type of private key to generate. */
|
|
3251
3268
|
var KeyType;
|
|
@@ -3255,6 +3272,17 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3255
3272
|
})(KeyType = Constants.KeyType || (Constants.KeyType = {}));
|
|
3256
3273
|
})(Constants = PrivateCertificateConfigurationTemplatePrototype.Constants || (PrivateCertificateConfigurationTemplatePrototype.Constants = {}));
|
|
3257
3274
|
})(PrivateCertificateConfigurationTemplatePrototype = SecretsManagerV2.PrivateCertificateConfigurationTemplatePrototype || (SecretsManagerV2.PrivateCertificateConfigurationTemplatePrototype = {}));
|
|
3275
|
+
var PrivateCertificateCryptoProviderHPCS;
|
|
3276
|
+
(function (PrivateCertificateCryptoProviderHPCS) {
|
|
3277
|
+
var Constants;
|
|
3278
|
+
(function (Constants) {
|
|
3279
|
+
/** The type of cryptographic provider. */
|
|
3280
|
+
var Type;
|
|
3281
|
+
(function (Type) {
|
|
3282
|
+
Type["HYPER_PROTECT_CRYPTO_SERVICES"] = "hyper_protect_crypto_services";
|
|
3283
|
+
})(Type = Constants.Type || (Constants.Type = {}));
|
|
3284
|
+
})(Constants = PrivateCertificateCryptoProviderHPCS.Constants || (PrivateCertificateCryptoProviderHPCS.Constants = {}));
|
|
3285
|
+
})(PrivateCertificateCryptoProviderHPCS = SecretsManagerV2.PrivateCertificateCryptoProviderHPCS || (SecretsManagerV2.PrivateCertificateCryptoProviderHPCS = {}));
|
|
3258
3286
|
var PrivateCertificateMetadata;
|
|
3259
3287
|
(function (PrivateCertificateMetadata) {
|
|
3260
3288
|
var Constants;
|
|
@@ -3440,13 +3468,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3440
3468
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3441
3469
|
var ConfigType;
|
|
3442
3470
|
(function (ConfigType) {
|
|
3443
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3444
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3445
3471
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3446
|
-
ConfigType["
|
|
3472
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3473
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3447
3474
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3448
3475
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3449
3476
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3477
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3450
3478
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3451
3479
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3452
3480
|
var SecretType;
|
|
@@ -3475,13 +3503,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3475
3503
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3476
3504
|
var ConfigType;
|
|
3477
3505
|
(function (ConfigType) {
|
|
3478
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3479
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3480
3506
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3481
|
-
ConfigType["
|
|
3507
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3508
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3482
3509
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3483
3510
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3484
3511
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3512
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3485
3513
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3486
3514
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3487
3515
|
var SecretType;
|
|
@@ -3522,13 +3550,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3522
3550
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3523
3551
|
var ConfigType;
|
|
3524
3552
|
(function (ConfigType) {
|
|
3525
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3526
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3527
3553
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3528
|
-
ConfigType["
|
|
3554
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3555
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3529
3556
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3530
3557
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3531
3558
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3559
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3532
3560
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3533
3561
|
/** The configuration of the Let's Encrypt CA environment. */
|
|
3534
3562
|
var LetsEncryptEnvironment;
|
|
@@ -3545,13 +3573,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3545
3573
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3546
3574
|
var ConfigType;
|
|
3547
3575
|
(function (ConfigType) {
|
|
3548
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3549
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3550
3576
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3551
|
-
ConfigType["
|
|
3577
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3578
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3552
3579
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3553
3580
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3554
3581
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3582
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3555
3583
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3556
3584
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3557
3585
|
var SecretType;
|
|
@@ -3574,13 +3602,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3574
3602
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3575
3603
|
var ConfigType;
|
|
3576
3604
|
(function (ConfigType) {
|
|
3577
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3578
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3579
3605
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3580
|
-
ConfigType["
|
|
3606
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3607
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3581
3608
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3582
3609
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3583
3610
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3611
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3584
3612
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3585
3613
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3586
3614
|
var SecretType;
|
|
@@ -3603,13 +3631,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3603
3631
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3604
3632
|
var ConfigType;
|
|
3605
3633
|
(function (ConfigType) {
|
|
3606
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3607
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3608
3634
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3609
|
-
ConfigType["
|
|
3635
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3636
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3610
3637
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3611
3638
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3612
3639
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3640
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3613
3641
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3614
3642
|
})(Constants = PublicCertificateConfigurationDNSClassicInfrastructurePrototype.Constants || (PublicCertificateConfigurationDNSClassicInfrastructurePrototype.Constants = {}));
|
|
3615
3643
|
})(PublicCertificateConfigurationDNSClassicInfrastructurePrototype = SecretsManagerV2.PublicCertificateConfigurationDNSClassicInfrastructurePrototype || (SecretsManagerV2.PublicCertificateConfigurationDNSClassicInfrastructurePrototype = {}));
|
|
@@ -3620,13 +3648,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3620
3648
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3621
3649
|
var ConfigType;
|
|
3622
3650
|
(function (ConfigType) {
|
|
3623
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3624
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3625
3651
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3626
|
-
ConfigType["
|
|
3652
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3653
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3627
3654
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3628
3655
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3629
3656
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3657
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3630
3658
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3631
3659
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3632
3660
|
var SecretType;
|
|
@@ -3649,13 +3677,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3649
3677
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3650
3678
|
var ConfigType;
|
|
3651
3679
|
(function (ConfigType) {
|
|
3652
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3653
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3654
3680
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3655
|
-
ConfigType["
|
|
3681
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3682
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3656
3683
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3657
3684
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3658
3685
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3686
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3659
3687
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3660
3688
|
/** The secret type. Supported types are arbitrary, imported_cert, public_cert, private_cert, iam_credentials, service_credentials, kv, and username_password. */
|
|
3661
3689
|
var SecretType;
|
|
@@ -3678,13 +3706,13 @@ var SecretsManagerV2 = /** @class */ (function (_super) {
|
|
|
3678
3706
|
/** The configuration type. Can be one of: iam_credentials_configuration, public_cert_configuration_ca_lets_encrypt, public_cert_configuration_dns_classic_infrastructure, public_cert_configuration_dns_cloud_internet_services, private_cert_configuration_root_ca, private_cert_configuration_intermediate_ca, private_cert_configuration_template. */
|
|
3679
3707
|
var ConfigType;
|
|
3680
3708
|
(function (ConfigType) {
|
|
3681
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3682
|
-
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3683
3709
|
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLOUD_INTERNET_SERVICES"] = "public_cert_configuration_dns_cloud_internet_services";
|
|
3684
|
-
ConfigType["
|
|
3710
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_DNS_CLASSIC_INFRASTRUCTURE"] = "public_cert_configuration_dns_classic_infrastructure";
|
|
3711
|
+
ConfigType["PUBLIC_CERT_CONFIGURATION_CA_LETS_ENCRYPT"] = "public_cert_configuration_ca_lets_encrypt";
|
|
3685
3712
|
ConfigType["PRIVATE_CERT_CONFIGURATION_ROOT_CA"] = "private_cert_configuration_root_ca";
|
|
3686
3713
|
ConfigType["PRIVATE_CERT_CONFIGURATION_INTERMEDIATE_CA"] = "private_cert_configuration_intermediate_ca";
|
|
3687
3714
|
ConfigType["PRIVATE_CERT_CONFIGURATION_TEMPLATE"] = "private_cert_configuration_template";
|
|
3715
|
+
ConfigType["IAM_CREDENTIALS_CONFIGURATION"] = "iam_credentials_configuration";
|
|
3688
3716
|
})(ConfigType = Constants.ConfigType || (Constants.ConfigType = {}));
|
|
3689
3717
|
})(Constants = PublicCertificateConfigurationDNSCloudInternetServicesPrototype.Constants || (PublicCertificateConfigurationDNSCloudInternetServicesPrototype.Constants = {}));
|
|
3690
3718
|
})(PublicCertificateConfigurationDNSCloudInternetServicesPrototype = SecretsManagerV2.PublicCertificateConfigurationDNSCloudInternetServicesPrototype || (SecretsManagerV2.PublicCertificateConfigurationDNSCloudInternetServicesPrototype = {}));
|