pulumi-gcp 7.8.0a1706805960__py3-none-any.whl → 7.8.0a1706829616__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. pulumi_gcp/_utilities.py +6 -2
  2. pulumi_gcp/alloydb/outputs.py +16 -0
  3. pulumi_gcp/artifactregistry/outputs.py +204 -0
  4. pulumi_gcp/assuredworkloads/_inputs.py +34 -0
  5. pulumi_gcp/assuredworkloads/outputs.py +34 -0
  6. pulumi_gcp/backupdisasterrecovery/outputs.py +20 -0
  7. pulumi_gcp/beyondcorp/outputs.py +54 -0
  8. pulumi_gcp/bigquery/_inputs.py +18 -0
  9. pulumi_gcp/bigquery/outputs.py +172 -0
  10. pulumi_gcp/bigtable/_inputs.py +4 -0
  11. pulumi_gcp/bigtable/outputs.py +4 -0
  12. pulumi_gcp/certificateauthority/outputs.py +378 -0
  13. pulumi_gcp/certificatemanager/outputs.py +32 -0
  14. pulumi_gcp/cloudbuild/outputs.py +1009 -3
  15. pulumi_gcp/cloudbuildv2/_inputs.py +14 -0
  16. pulumi_gcp/cloudbuildv2/outputs.py +14 -0
  17. pulumi_gcp/clouddeploy/_inputs.py +36 -0
  18. pulumi_gcp/clouddeploy/outputs.py +36 -0
  19. pulumi_gcp/cloudfunctions/_inputs.py +4 -0
  20. pulumi_gcp/cloudfunctions/outputs.py +54 -0
  21. pulumi_gcp/cloudfunctionsv2/outputs.py +302 -0
  22. pulumi_gcp/cloudidentity/outputs.py +54 -0
  23. pulumi_gcp/cloudrun/outputs.py +704 -0
  24. pulumi_gcp/cloudrunv2/outputs.py +929 -5
  25. pulumi_gcp/composer/_inputs.py +430 -0
  26. pulumi_gcp/composer/outputs.py +860 -0
  27. pulumi_gcp/compute/_inputs.py +924 -0
  28. pulumi_gcp/compute/outputs.py +4091 -1
  29. pulumi_gcp/container/_inputs.py +542 -0
  30. pulumi_gcp/container/outputs.py +2137 -3
  31. pulumi_gcp/dataplex/_inputs.py +66 -0
  32. pulumi_gcp/dataplex/outputs.py +66 -0
  33. pulumi_gcp/dataproc/_inputs.py +174 -0
  34. pulumi_gcp/dataproc/outputs.py +174 -0
  35. pulumi_gcp/dns/_inputs.py +34 -0
  36. pulumi_gcp/dns/outputs.py +34 -0
  37. pulumi_gcp/filestore/outputs.py +88 -0
  38. pulumi_gcp/firebaserules/_inputs.py +6 -0
  39. pulumi_gcp/firebaserules/outputs.py +6 -0
  40. pulumi_gcp/folder/_inputs.py +4 -0
  41. pulumi_gcp/folder/iam_audit_config.py +2 -2
  42. pulumi_gcp/folder/iam_member.py +2 -2
  43. pulumi_gcp/folder/iam_policy.py +2 -2
  44. pulumi_gcp/folder/outputs.py +54 -0
  45. pulumi_gcp/gkehub/_inputs.py +8 -0
  46. pulumi_gcp/gkehub/outputs.py +8 -0
  47. pulumi_gcp/iam/outputs.py +92 -0
  48. pulumi_gcp/kms/outputs.py +16 -0
  49. pulumi_gcp/logging/_inputs.py +108 -0
  50. pulumi_gcp/logging/outputs.py +108 -0
  51. pulumi_gcp/monitoring/outputs.py +14 -0
  52. pulumi_gcp/networkconnectivity/_inputs.py +6 -0
  53. pulumi_gcp/networkconnectivity/outputs.py +6 -0
  54. pulumi_gcp/organizations/_inputs.py +4 -0
  55. pulumi_gcp/organizations/iam_audit_config.py +2 -2
  56. pulumi_gcp/organizations/iam_member.py +2 -2
  57. pulumi_gcp/organizations/iam_policy.py +2 -2
  58. pulumi_gcp/organizations/outputs.py +4 -0
  59. pulumi_gcp/projects/_inputs.py +4 -0
  60. pulumi_gcp/projects/iam_audit_config.py +2 -2
  61. pulumi_gcp/projects/iam_binding.py +2 -2
  62. pulumi_gcp/projects/iam_member.py +2 -2
  63. pulumi_gcp/projects/iam_policy.py +2 -2
  64. pulumi_gcp/projects/outputs.py +54 -0
  65. pulumi_gcp/pubsub/outputs.py +282 -0
  66. pulumi_gcp/redis/outputs.py +204 -0
  67. pulumi_gcp/secretmanager/outputs.py +88 -0
  68. pulumi_gcp/sourcerepo/outputs.py +20 -0
  69. pulumi_gcp/spanner/outputs.py +68 -0
  70. pulumi_gcp/sql/_inputs.py +50 -0
  71. pulumi_gcp/sql/outputs.py +904 -0
  72. pulumi_gcp/storage/outputs.py +188 -0
  73. pulumi_gcp/vertex/outputs.py +124 -0
  74. pulumi_gcp/vmwareengine/outputs.py +208 -0
  75. pulumi_gcp/vpcaccess/outputs.py +4 -0
  76. {pulumi_gcp-7.8.0a1706805960.dist-info → pulumi_gcp-7.8.0a1706829616.dist-info}/METADATA +2 -1
  77. {pulumi_gcp-7.8.0a1706805960.dist-info → pulumi_gcp-7.8.0a1706829616.dist-info}/RECORD +79 -79
  78. {pulumi_gcp-7.8.0a1706805960.dist-info → pulumi_gcp-7.8.0a1706829616.dist-info}/WHEEL +0 -0
  79. {pulumi_gcp-7.8.0a1706805960.dist-info → pulumi_gcp-7.8.0a1706829616.dist-info}/top_level.txt +0 -0
pulumi_gcp/_utilities.py CHANGED
@@ -8,7 +8,6 @@ import importlib.util
8
8
  import inspect
9
9
  import json
10
10
  import os
11
- import pkg_resources
12
11
  import sys
13
12
  import typing
14
13
 
@@ -19,6 +18,11 @@ from pulumi.runtime.sync_await import _sync_await
19
18
  from semver import VersionInfo as SemverVersion
20
19
  from parver import Version as PEP440Version
21
20
 
21
+ if sys.version_info >= (3, 8):
22
+ from importlib import metadata
23
+ else:
24
+ import importlib_metadata as metadata
25
+
22
26
 
23
27
  def get_env(*args):
24
28
  for v in args:
@@ -72,7 +76,7 @@ def _get_semver_version():
72
76
  # to receive a valid semver string when receiving requests from the language host, so it's our
73
77
  # responsibility as the library to convert our own PEP440 version into a valid semver string.
74
78
 
75
- pep440_version_string = pkg_resources.require(root_package)[0].version
79
+ pep440_version_string = metadata.version(root_package)
76
80
  pep440_version = PEP440Version.parse(pep440_version_string)
77
81
  (major, minor, patch) = pep440_version.release
78
82
  prerelease = None
@@ -1565,17 +1565,27 @@ class GetSupportedDatabaseFlagsSupportedDatabaseFlagIntegerRestrictionsResult(di
1565
1565
  def __init__(__self__, *,
1566
1566
  max_value: str,
1567
1567
  min_value: str):
1568
+ """
1569
+ :param str max_value: The maximum value that can be specified, if applicable.
1570
+ :param str min_value: The minimum value that can be specified, if applicable.
1571
+ """
1568
1572
  pulumi.set(__self__, "max_value", max_value)
1569
1573
  pulumi.set(__self__, "min_value", min_value)
1570
1574
 
1571
1575
  @property
1572
1576
  @pulumi.getter(name="maxValue")
1573
1577
  def max_value(self) -> str:
1578
+ """
1579
+ The maximum value that can be specified, if applicable.
1580
+ """
1574
1581
  return pulumi.get(self, "max_value")
1575
1582
 
1576
1583
  @property
1577
1584
  @pulumi.getter(name="minValue")
1578
1585
  def min_value(self) -> str:
1586
+ """
1587
+ The minimum value that can be specified, if applicable.
1588
+ """
1579
1589
  return pulumi.get(self, "min_value")
1580
1590
 
1581
1591
 
@@ -1583,11 +1593,17 @@ class GetSupportedDatabaseFlagsSupportedDatabaseFlagIntegerRestrictionsResult(di
1583
1593
  class GetSupportedDatabaseFlagsSupportedDatabaseFlagStringRestrictionsResult(dict):
1584
1594
  def __init__(__self__, *,
1585
1595
  allowed_values: Sequence[str]):
1596
+ """
1597
+ :param Sequence[str] allowed_values: The list of allowed values, if bounded. This field will be empty if there is a unbounded number of allowed values.
1598
+ """
1586
1599
  pulumi.set(__self__, "allowed_values", allowed_values)
1587
1600
 
1588
1601
  @property
1589
1602
  @pulumi.getter(name="allowedValues")
1590
1603
  def allowed_values(self) -> Sequence[str]:
1604
+ """
1605
+ The list of allowed values, if bounded. This field will be empty if there is a unbounded number of allowed values.
1606
+ """
1591
1607
  return pulumi.get(self, "allowed_values")
1592
1608
 
1593
1609
 
@@ -1100,6 +1100,12 @@ class GetRepositoryCleanupPolicyResult(dict):
1100
1100
  conditions: Sequence['outputs.GetRepositoryCleanupPolicyConditionResult'],
1101
1101
  id: str,
1102
1102
  most_recent_versions: Sequence['outputs.GetRepositoryCleanupPolicyMostRecentVersionResult']):
1103
+ """
1104
+ :param str action: Policy action. Possible values: ["DELETE", "KEEP"]
1105
+ :param Sequence['GetRepositoryCleanupPolicyConditionArgs'] conditions: Policy condition for matching versions.
1106
+ :param Sequence['GetRepositoryCleanupPolicyMostRecentVersionArgs'] most_recent_versions: Policy condition for retaining a minimum number of versions. May only be
1107
+ specified with a Keep action.
1108
+ """
1103
1109
  pulumi.set(__self__, "action", action)
1104
1110
  pulumi.set(__self__, "conditions", conditions)
1105
1111
  pulumi.set(__self__, "id", id)
@@ -1108,11 +1114,17 @@ class GetRepositoryCleanupPolicyResult(dict):
1108
1114
  @property
1109
1115
  @pulumi.getter
1110
1116
  def action(self) -> str:
1117
+ """
1118
+ Policy action. Possible values: ["DELETE", "KEEP"]
1119
+ """
1111
1120
  return pulumi.get(self, "action")
1112
1121
 
1113
1122
  @property
1114
1123
  @pulumi.getter
1115
1124
  def conditions(self) -> Sequence['outputs.GetRepositoryCleanupPolicyConditionResult']:
1125
+ """
1126
+ Policy condition for matching versions.
1127
+ """
1116
1128
  return pulumi.get(self, "conditions")
1117
1129
 
1118
1130
  @property
@@ -1123,6 +1135,10 @@ class GetRepositoryCleanupPolicyResult(dict):
1123
1135
  @property
1124
1136
  @pulumi.getter(name="mostRecentVersions")
1125
1137
  def most_recent_versions(self) -> Sequence['outputs.GetRepositoryCleanupPolicyMostRecentVersionResult']:
1138
+ """
1139
+ Policy condition for retaining a minimum number of versions. May only be
1140
+ specified with a Keep action.
1141
+ """
1126
1142
  return pulumi.get(self, "most_recent_versions")
1127
1143
 
1128
1144
 
@@ -1135,6 +1151,14 @@ class GetRepositoryCleanupPolicyConditionResult(dict):
1135
1151
  tag_prefixes: Sequence[str],
1136
1152
  tag_state: str,
1137
1153
  version_name_prefixes: Sequence[str]):
1154
+ """
1155
+ :param str newer_than: Match versions newer than a duration.
1156
+ :param str older_than: Match versions older than a duration.
1157
+ :param Sequence[str] package_name_prefixes: Match versions by package prefix. Applied on any prefix match.
1158
+ :param Sequence[str] tag_prefixes: Match versions by tag prefix. Applied on any prefix match.
1159
+ :param str tag_state: Match versions by tag status. Default value: "ANY" Possible values: ["TAGGED", "UNTAGGED", "ANY"]
1160
+ :param Sequence[str] version_name_prefixes: Match versions by version name prefix. Applied on any prefix match.
1161
+ """
1138
1162
  pulumi.set(__self__, "newer_than", newer_than)
1139
1163
  pulumi.set(__self__, "older_than", older_than)
1140
1164
  pulumi.set(__self__, "package_name_prefixes", package_name_prefixes)
@@ -1145,31 +1169,49 @@ class GetRepositoryCleanupPolicyConditionResult(dict):
1145
1169
  @property
1146
1170
  @pulumi.getter(name="newerThan")
1147
1171
  def newer_than(self) -> str:
1172
+ """
1173
+ Match versions newer than a duration.
1174
+ """
1148
1175
  return pulumi.get(self, "newer_than")
1149
1176
 
1150
1177
  @property
1151
1178
  @pulumi.getter(name="olderThan")
1152
1179
  def older_than(self) -> str:
1180
+ """
1181
+ Match versions older than a duration.
1182
+ """
1153
1183
  return pulumi.get(self, "older_than")
1154
1184
 
1155
1185
  @property
1156
1186
  @pulumi.getter(name="packageNamePrefixes")
1157
1187
  def package_name_prefixes(self) -> Sequence[str]:
1188
+ """
1189
+ Match versions by package prefix. Applied on any prefix match.
1190
+ """
1158
1191
  return pulumi.get(self, "package_name_prefixes")
1159
1192
 
1160
1193
  @property
1161
1194
  @pulumi.getter(name="tagPrefixes")
1162
1195
  def tag_prefixes(self) -> Sequence[str]:
1196
+ """
1197
+ Match versions by tag prefix. Applied on any prefix match.
1198
+ """
1163
1199
  return pulumi.get(self, "tag_prefixes")
1164
1200
 
1165
1201
  @property
1166
1202
  @pulumi.getter(name="tagState")
1167
1203
  def tag_state(self) -> str:
1204
+ """
1205
+ Match versions by tag status. Default value: "ANY" Possible values: ["TAGGED", "UNTAGGED", "ANY"]
1206
+ """
1168
1207
  return pulumi.get(self, "tag_state")
1169
1208
 
1170
1209
  @property
1171
1210
  @pulumi.getter(name="versionNamePrefixes")
1172
1211
  def version_name_prefixes(self) -> Sequence[str]:
1212
+ """
1213
+ Match versions by version name prefix. Applied on any prefix match.
1214
+ """
1173
1215
  return pulumi.get(self, "version_name_prefixes")
1174
1216
 
1175
1217
 
@@ -1178,17 +1220,27 @@ class GetRepositoryCleanupPolicyMostRecentVersionResult(dict):
1178
1220
  def __init__(__self__, *,
1179
1221
  keep_count: int,
1180
1222
  package_name_prefixes: Sequence[str]):
1223
+ """
1224
+ :param int keep_count: Minimum number of versions to keep.
1225
+ :param Sequence[str] package_name_prefixes: Match versions by package prefix. Applied on any prefix match.
1226
+ """
1181
1227
  pulumi.set(__self__, "keep_count", keep_count)
1182
1228
  pulumi.set(__self__, "package_name_prefixes", package_name_prefixes)
1183
1229
 
1184
1230
  @property
1185
1231
  @pulumi.getter(name="keepCount")
1186
1232
  def keep_count(self) -> int:
1233
+ """
1234
+ Minimum number of versions to keep.
1235
+ """
1187
1236
  return pulumi.get(self, "keep_count")
1188
1237
 
1189
1238
  @property
1190
1239
  @pulumi.getter(name="packageNamePrefixes")
1191
1240
  def package_name_prefixes(self) -> Sequence[str]:
1241
+ """
1242
+ Match versions by package prefix. Applied on any prefix match.
1243
+ """
1192
1244
  return pulumi.get(self, "package_name_prefixes")
1193
1245
 
1194
1246
 
@@ -1196,11 +1248,17 @@ class GetRepositoryCleanupPolicyMostRecentVersionResult(dict):
1196
1248
  class GetRepositoryDockerConfigResult(dict):
1197
1249
  def __init__(__self__, *,
1198
1250
  immutable_tags: bool):
1251
+ """
1252
+ :param bool immutable_tags: The repository which enabled this flag prevents all tags from being modified, moved or deleted. This does not prevent tags from being created.
1253
+ """
1199
1254
  pulumi.set(__self__, "immutable_tags", immutable_tags)
1200
1255
 
1201
1256
  @property
1202
1257
  @pulumi.getter(name="immutableTags")
1203
1258
  def immutable_tags(self) -> bool:
1259
+ """
1260
+ The repository which enabled this flag prevents all tags from being modified, moved or deleted. This does not prevent tags from being created.
1261
+ """
1204
1262
  return pulumi.get(self, "immutable_tags")
1205
1263
 
1206
1264
 
@@ -1209,17 +1267,29 @@ class GetRepositoryMavenConfigResult(dict):
1209
1267
  def __init__(__self__, *,
1210
1268
  allow_snapshot_overwrites: bool,
1211
1269
  version_policy: str):
1270
+ """
1271
+ :param bool allow_snapshot_overwrites: The repository with this flag will allow publishing the same
1272
+ snapshot versions.
1273
+ :param str version_policy: Version policy defines the versions that the registry will accept. Default value: "VERSION_POLICY_UNSPECIFIED" Possible values: ["VERSION_POLICY_UNSPECIFIED", "RELEASE", "SNAPSHOT"]
1274
+ """
1212
1275
  pulumi.set(__self__, "allow_snapshot_overwrites", allow_snapshot_overwrites)
1213
1276
  pulumi.set(__self__, "version_policy", version_policy)
1214
1277
 
1215
1278
  @property
1216
1279
  @pulumi.getter(name="allowSnapshotOverwrites")
1217
1280
  def allow_snapshot_overwrites(self) -> bool:
1281
+ """
1282
+ The repository with this flag will allow publishing the same
1283
+ snapshot versions.
1284
+ """
1218
1285
  return pulumi.get(self, "allow_snapshot_overwrites")
1219
1286
 
1220
1287
  @property
1221
1288
  @pulumi.getter(name="versionPolicy")
1222
1289
  def version_policy(self) -> str:
1290
+ """
1291
+ Version policy defines the versions that the registry will accept. Default value: "VERSION_POLICY_UNSPECIFIED" Possible values: ["VERSION_POLICY_UNSPECIFIED", "RELEASE", "SNAPSHOT"]
1292
+ """
1223
1293
  return pulumi.get(self, "version_policy")
1224
1294
 
1225
1295
 
@@ -1234,6 +1304,16 @@ class GetRepositoryRemoteRepositoryConfigResult(dict):
1234
1304
  python_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigPythonRepositoryResult'],
1235
1305
  upstream_credentials: Sequence['outputs.GetRepositoryRemoteRepositoryConfigUpstreamCredentialResult'],
1236
1306
  yum_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigYumRepositoryResult']):
1307
+ """
1308
+ :param Sequence['GetRepositoryRemoteRepositoryConfigAptRepositoryArgs'] apt_repositories: Specific settings for an Apt remote repository.
1309
+ :param str description: The description of the remote source.
1310
+ :param Sequence['GetRepositoryRemoteRepositoryConfigDockerRepositoryArgs'] docker_repositories: Specific settings for a Docker remote repository.
1311
+ :param Sequence['GetRepositoryRemoteRepositoryConfigMavenRepositoryArgs'] maven_repositories: Specific settings for a Maven remote repository.
1312
+ :param Sequence['GetRepositoryRemoteRepositoryConfigNpmRepositoryArgs'] npm_repositories: Specific settings for an Npm remote repository.
1313
+ :param Sequence['GetRepositoryRemoteRepositoryConfigPythonRepositoryArgs'] python_repositories: Specific settings for a Python remote repository.
1314
+ :param Sequence['GetRepositoryRemoteRepositoryConfigUpstreamCredentialArgs'] upstream_credentials: The credentials used to access the remote repository.
1315
+ :param Sequence['GetRepositoryRemoteRepositoryConfigYumRepositoryArgs'] yum_repositories: Specific settings for an Yum remote repository.
1316
+ """
1237
1317
  pulumi.set(__self__, "apt_repositories", apt_repositories)
1238
1318
  pulumi.set(__self__, "description", description)
1239
1319
  pulumi.set(__self__, "docker_repositories", docker_repositories)
@@ -1246,41 +1326,65 @@ class GetRepositoryRemoteRepositoryConfigResult(dict):
1246
1326
  @property
1247
1327
  @pulumi.getter(name="aptRepositories")
1248
1328
  def apt_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigAptRepositoryResult']:
1329
+ """
1330
+ Specific settings for an Apt remote repository.
1331
+ """
1249
1332
  return pulumi.get(self, "apt_repositories")
1250
1333
 
1251
1334
  @property
1252
1335
  @pulumi.getter
1253
1336
  def description(self) -> str:
1337
+ """
1338
+ The description of the remote source.
1339
+ """
1254
1340
  return pulumi.get(self, "description")
1255
1341
 
1256
1342
  @property
1257
1343
  @pulumi.getter(name="dockerRepositories")
1258
1344
  def docker_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigDockerRepositoryResult']:
1345
+ """
1346
+ Specific settings for a Docker remote repository.
1347
+ """
1259
1348
  return pulumi.get(self, "docker_repositories")
1260
1349
 
1261
1350
  @property
1262
1351
  @pulumi.getter(name="mavenRepositories")
1263
1352
  def maven_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigMavenRepositoryResult']:
1353
+ """
1354
+ Specific settings for a Maven remote repository.
1355
+ """
1264
1356
  return pulumi.get(self, "maven_repositories")
1265
1357
 
1266
1358
  @property
1267
1359
  @pulumi.getter(name="npmRepositories")
1268
1360
  def npm_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigNpmRepositoryResult']:
1361
+ """
1362
+ Specific settings for an Npm remote repository.
1363
+ """
1269
1364
  return pulumi.get(self, "npm_repositories")
1270
1365
 
1271
1366
  @property
1272
1367
  @pulumi.getter(name="pythonRepositories")
1273
1368
  def python_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigPythonRepositoryResult']:
1369
+ """
1370
+ Specific settings for a Python remote repository.
1371
+ """
1274
1372
  return pulumi.get(self, "python_repositories")
1275
1373
 
1276
1374
  @property
1277
1375
  @pulumi.getter(name="upstreamCredentials")
1278
1376
  def upstream_credentials(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigUpstreamCredentialResult']:
1377
+ """
1378
+ The credentials used to access the remote repository.
1379
+ """
1279
1380
  return pulumi.get(self, "upstream_credentials")
1280
1381
 
1281
1382
  @property
1282
1383
  @pulumi.getter(name="yumRepositories")
1283
1384
  def yum_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigYumRepositoryResult']:
1385
+ """
1386
+ Specific settings for an Yum remote repository.
1387
+ """
1284
1388
  return pulumi.get(self, "yum_repositories")
1285
1389
 
1286
1390
 
@@ -1288,11 +1392,17 @@ class GetRepositoryRemoteRepositoryConfigResult(dict):
1288
1392
  class GetRepositoryRemoteRepositoryConfigAptRepositoryResult(dict):
1289
1393
  def __init__(__self__, *,
1290
1394
  public_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigAptRepositoryPublicRepositoryResult']):
1395
+ """
1396
+ :param Sequence['GetRepositoryRemoteRepositoryConfigAptRepositoryPublicRepositoryArgs'] public_repositories: One of the publicly available Apt repositories supported by Artifact Registry.
1397
+ """
1291
1398
  pulumi.set(__self__, "public_repositories", public_repositories)
1292
1399
 
1293
1400
  @property
1294
1401
  @pulumi.getter(name="publicRepositories")
1295
1402
  def public_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigAptRepositoryPublicRepositoryResult']:
1403
+ """
1404
+ One of the publicly available Apt repositories supported by Artifact Registry.
1405
+ """
1296
1406
  return pulumi.get(self, "public_repositories")
1297
1407
 
1298
1408
 
@@ -1301,17 +1411,27 @@ class GetRepositoryRemoteRepositoryConfigAptRepositoryPublicRepositoryResult(dic
1301
1411
  def __init__(__self__, *,
1302
1412
  repository_base: str,
1303
1413
  repository_path: str):
1414
+ """
1415
+ :param str repository_base: A common public repository base for Apt, e.g. '"debian/dists/buster"' Possible values: ["DEBIAN", "UBUNTU"]
1416
+ :param str repository_path: Specific repository from the base.
1417
+ """
1304
1418
  pulumi.set(__self__, "repository_base", repository_base)
1305
1419
  pulumi.set(__self__, "repository_path", repository_path)
1306
1420
 
1307
1421
  @property
1308
1422
  @pulumi.getter(name="repositoryBase")
1309
1423
  def repository_base(self) -> str:
1424
+ """
1425
+ A common public repository base for Apt, e.g. '"debian/dists/buster"' Possible values: ["DEBIAN", "UBUNTU"]
1426
+ """
1310
1427
  return pulumi.get(self, "repository_base")
1311
1428
 
1312
1429
  @property
1313
1430
  @pulumi.getter(name="repositoryPath")
1314
1431
  def repository_path(self) -> str:
1432
+ """
1433
+ Specific repository from the base.
1434
+ """
1315
1435
  return pulumi.get(self, "repository_path")
1316
1436
 
1317
1437
 
@@ -1319,11 +1439,17 @@ class GetRepositoryRemoteRepositoryConfigAptRepositoryPublicRepositoryResult(dic
1319
1439
  class GetRepositoryRemoteRepositoryConfigDockerRepositoryResult(dict):
1320
1440
  def __init__(__self__, *,
1321
1441
  public_repository: str):
1442
+ """
1443
+ :param str public_repository: Address of the remote repository. Default value: "DOCKER_HUB" Possible values: ["DOCKER_HUB"]
1444
+ """
1322
1445
  pulumi.set(__self__, "public_repository", public_repository)
1323
1446
 
1324
1447
  @property
1325
1448
  @pulumi.getter(name="publicRepository")
1326
1449
  def public_repository(self) -> str:
1450
+ """
1451
+ Address of the remote repository. Default value: "DOCKER_HUB" Possible values: ["DOCKER_HUB"]
1452
+ """
1327
1453
  return pulumi.get(self, "public_repository")
1328
1454
 
1329
1455
 
@@ -1331,11 +1457,17 @@ class GetRepositoryRemoteRepositoryConfigDockerRepositoryResult(dict):
1331
1457
  class GetRepositoryRemoteRepositoryConfigMavenRepositoryResult(dict):
1332
1458
  def __init__(__self__, *,
1333
1459
  public_repository: str):
1460
+ """
1461
+ :param str public_repository: Address of the remote repository. Default value: "MAVEN_CENTRAL" Possible values: ["MAVEN_CENTRAL"]
1462
+ """
1334
1463
  pulumi.set(__self__, "public_repository", public_repository)
1335
1464
 
1336
1465
  @property
1337
1466
  @pulumi.getter(name="publicRepository")
1338
1467
  def public_repository(self) -> str:
1468
+ """
1469
+ Address of the remote repository. Default value: "MAVEN_CENTRAL" Possible values: ["MAVEN_CENTRAL"]
1470
+ """
1339
1471
  return pulumi.get(self, "public_repository")
1340
1472
 
1341
1473
 
@@ -1343,11 +1475,17 @@ class GetRepositoryRemoteRepositoryConfigMavenRepositoryResult(dict):
1343
1475
  class GetRepositoryRemoteRepositoryConfigNpmRepositoryResult(dict):
1344
1476
  def __init__(__self__, *,
1345
1477
  public_repository: str):
1478
+ """
1479
+ :param str public_repository: Address of the remote repository. Default value: "NPMJS" Possible values: ["NPMJS"]
1480
+ """
1346
1481
  pulumi.set(__self__, "public_repository", public_repository)
1347
1482
 
1348
1483
  @property
1349
1484
  @pulumi.getter(name="publicRepository")
1350
1485
  def public_repository(self) -> str:
1486
+ """
1487
+ Address of the remote repository. Default value: "NPMJS" Possible values: ["NPMJS"]
1488
+ """
1351
1489
  return pulumi.get(self, "public_repository")
1352
1490
 
1353
1491
 
@@ -1355,11 +1493,17 @@ class GetRepositoryRemoteRepositoryConfigNpmRepositoryResult(dict):
1355
1493
  class GetRepositoryRemoteRepositoryConfigPythonRepositoryResult(dict):
1356
1494
  def __init__(__self__, *,
1357
1495
  public_repository: str):
1496
+ """
1497
+ :param str public_repository: Address of the remote repository. Default value: "PYPI" Possible values: ["PYPI"]
1498
+ """
1358
1499
  pulumi.set(__self__, "public_repository", public_repository)
1359
1500
 
1360
1501
  @property
1361
1502
  @pulumi.getter(name="publicRepository")
1362
1503
  def public_repository(self) -> str:
1504
+ """
1505
+ Address of the remote repository. Default value: "PYPI" Possible values: ["PYPI"]
1506
+ """
1363
1507
  return pulumi.get(self, "public_repository")
1364
1508
 
1365
1509
 
@@ -1367,11 +1511,17 @@ class GetRepositoryRemoteRepositoryConfigPythonRepositoryResult(dict):
1367
1511
  class GetRepositoryRemoteRepositoryConfigUpstreamCredentialResult(dict):
1368
1512
  def __init__(__self__, *,
1369
1513
  username_password_credentials: Sequence['outputs.GetRepositoryRemoteRepositoryConfigUpstreamCredentialUsernamePasswordCredentialResult']):
1514
+ """
1515
+ :param Sequence['GetRepositoryRemoteRepositoryConfigUpstreamCredentialUsernamePasswordCredentialArgs'] username_password_credentials: Use username and password to access the remote repository.
1516
+ """
1370
1517
  pulumi.set(__self__, "username_password_credentials", username_password_credentials)
1371
1518
 
1372
1519
  @property
1373
1520
  @pulumi.getter(name="usernamePasswordCredentials")
1374
1521
  def username_password_credentials(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigUpstreamCredentialUsernamePasswordCredentialResult']:
1522
+ """
1523
+ Use username and password to access the remote repository.
1524
+ """
1375
1525
  return pulumi.get(self, "username_password_credentials")
1376
1526
 
1377
1527
 
@@ -1380,17 +1530,31 @@ class GetRepositoryRemoteRepositoryConfigUpstreamCredentialUsernamePasswordCrede
1380
1530
  def __init__(__self__, *,
1381
1531
  password_secret_version: str,
1382
1532
  username: str):
1533
+ """
1534
+ :param str password_secret_version: The Secret Manager key version that holds the password to access the
1535
+ remote repository. Must be in the format of
1536
+ 'projects/{project}/secrets/{secret}/versions/{version}'.
1537
+ :param str username: The username to access the remote repository.
1538
+ """
1383
1539
  pulumi.set(__self__, "password_secret_version", password_secret_version)
1384
1540
  pulumi.set(__self__, "username", username)
1385
1541
 
1386
1542
  @property
1387
1543
  @pulumi.getter(name="passwordSecretVersion")
1388
1544
  def password_secret_version(self) -> str:
1545
+ """
1546
+ The Secret Manager key version that holds the password to access the
1547
+ remote repository. Must be in the format of
1548
+ 'projects/{project}/secrets/{secret}/versions/{version}'.
1549
+ """
1389
1550
  return pulumi.get(self, "password_secret_version")
1390
1551
 
1391
1552
  @property
1392
1553
  @pulumi.getter
1393
1554
  def username(self) -> str:
1555
+ """
1556
+ The username to access the remote repository.
1557
+ """
1394
1558
  return pulumi.get(self, "username")
1395
1559
 
1396
1560
 
@@ -1398,11 +1562,17 @@ class GetRepositoryRemoteRepositoryConfigUpstreamCredentialUsernamePasswordCrede
1398
1562
  class GetRepositoryRemoteRepositoryConfigYumRepositoryResult(dict):
1399
1563
  def __init__(__self__, *,
1400
1564
  public_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigYumRepositoryPublicRepositoryResult']):
1565
+ """
1566
+ :param Sequence['GetRepositoryRemoteRepositoryConfigYumRepositoryPublicRepositoryArgs'] public_repositories: One of the publicly available Yum repositories supported by Artifact Registry.
1567
+ """
1401
1568
  pulumi.set(__self__, "public_repositories", public_repositories)
1402
1569
 
1403
1570
  @property
1404
1571
  @pulumi.getter(name="publicRepositories")
1405
1572
  def public_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigYumRepositoryPublicRepositoryResult']:
1573
+ """
1574
+ One of the publicly available Yum repositories supported by Artifact Registry.
1575
+ """
1406
1576
  return pulumi.get(self, "public_repositories")
1407
1577
 
1408
1578
 
@@ -1411,17 +1581,27 @@ class GetRepositoryRemoteRepositoryConfigYumRepositoryPublicRepositoryResult(dic
1411
1581
  def __init__(__self__, *,
1412
1582
  repository_base: str,
1413
1583
  repository_path: str):
1584
+ """
1585
+ :param str repository_base: A common public repository base for Yum. Possible values: ["CENTOS", "CENTOS_DEBUG", "CENTOS_VAULT", "CENTOS_STREAM", "ROCKY", "EPEL"]
1586
+ :param str repository_path: Specific repository from the base, e.g. '"centos/8-stream/BaseOS/x86_64/os"'
1587
+ """
1414
1588
  pulumi.set(__self__, "repository_base", repository_base)
1415
1589
  pulumi.set(__self__, "repository_path", repository_path)
1416
1590
 
1417
1591
  @property
1418
1592
  @pulumi.getter(name="repositoryBase")
1419
1593
  def repository_base(self) -> str:
1594
+ """
1595
+ A common public repository base for Yum. Possible values: ["CENTOS", "CENTOS_DEBUG", "CENTOS_VAULT", "CENTOS_STREAM", "ROCKY", "EPEL"]
1596
+ """
1420
1597
  return pulumi.get(self, "repository_base")
1421
1598
 
1422
1599
  @property
1423
1600
  @pulumi.getter(name="repositoryPath")
1424
1601
  def repository_path(self) -> str:
1602
+ """
1603
+ Specific repository from the base, e.g. '"centos/8-stream/BaseOS/x86_64/os"'
1604
+ """
1425
1605
  return pulumi.get(self, "repository_path")
1426
1606
 
1427
1607
 
@@ -1429,11 +1609,19 @@ class GetRepositoryRemoteRepositoryConfigYumRepositoryPublicRepositoryResult(dic
1429
1609
  class GetRepositoryVirtualRepositoryConfigResult(dict):
1430
1610
  def __init__(__self__, *,
1431
1611
  upstream_policies: Sequence['outputs.GetRepositoryVirtualRepositoryConfigUpstreamPolicyResult']):
1612
+ """
1613
+ :param Sequence['GetRepositoryVirtualRepositoryConfigUpstreamPolicyArgs'] upstream_policies: Policies that configure the upstream artifacts distributed by the Virtual
1614
+ Repository. Upstream policies cannot be set on a standard repository.
1615
+ """
1432
1616
  pulumi.set(__self__, "upstream_policies", upstream_policies)
1433
1617
 
1434
1618
  @property
1435
1619
  @pulumi.getter(name="upstreamPolicies")
1436
1620
  def upstream_policies(self) -> Sequence['outputs.GetRepositoryVirtualRepositoryConfigUpstreamPolicyResult']:
1621
+ """
1622
+ Policies that configure the upstream artifacts distributed by the Virtual
1623
+ Repository. Upstream policies cannot be set on a standard repository.
1624
+ """
1437
1625
  return pulumi.get(self, "upstream_policies")
1438
1626
 
1439
1627
 
@@ -1443,6 +1631,12 @@ class GetRepositoryVirtualRepositoryConfigUpstreamPolicyResult(dict):
1443
1631
  id: str,
1444
1632
  priority: int,
1445
1633
  repository: str):
1634
+ """
1635
+ :param str id: The user-provided ID of the upstream policy.
1636
+ :param int priority: Entries with a greater priority value take precedence in the pull order.
1637
+ :param str repository: A reference to the repository resource, for example:
1638
+ "projects/p1/locations/us-central1/repository/repo1".
1639
+ """
1446
1640
  pulumi.set(__self__, "id", id)
1447
1641
  pulumi.set(__self__, "priority", priority)
1448
1642
  pulumi.set(__self__, "repository", repository)
@@ -1450,16 +1644,26 @@ class GetRepositoryVirtualRepositoryConfigUpstreamPolicyResult(dict):
1450
1644
  @property
1451
1645
  @pulumi.getter
1452
1646
  def id(self) -> str:
1647
+ """
1648
+ The user-provided ID of the upstream policy.
1649
+ """
1453
1650
  return pulumi.get(self, "id")
1454
1651
 
1455
1652
  @property
1456
1653
  @pulumi.getter
1457
1654
  def priority(self) -> int:
1655
+ """
1656
+ Entries with a greater priority value take precedence in the pull order.
1657
+ """
1458
1658
  return pulumi.get(self, "priority")
1459
1659
 
1460
1660
  @property
1461
1661
  @pulumi.getter
1462
1662
  def repository(self) -> str:
1663
+ """
1664
+ A reference to the repository resource, for example:
1665
+ "projects/p1/locations/us-central1/repository/repo1".
1666
+ """
1463
1667
  return pulumi.get(self, "repository")
1464
1668
 
1465
1669