pulumi-gcp 7.20.0a1713984378__py3-none-any.whl → 7.20.0a1713986537__py3-none-any.whl
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.
- pulumi_gcp/__init__.py +8 -0
- pulumi_gcp/apigee/organization.py +162 -0
- pulumi_gcp/artifactregistry/_inputs.py +186 -0
- pulumi_gcp/artifactregistry/outputs.py +297 -4
- pulumi_gcp/artifactregistry/repository.py +346 -16
- pulumi_gcp/bigquery/table.py +61 -0
- pulumi_gcp/billing/budget.py +54 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +16 -0
- pulumi_gcp/cloudfunctionsv2/function.py +110 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
- pulumi_gcp/compute/_inputs.py +48 -0
- pulumi_gcp/compute/get_instance_group_manager.py +11 -1
- pulumi_gcp/compute/instance_group_manager.py +68 -21
- pulumi_gcp/compute/outputs.py +93 -0
- pulumi_gcp/compute/region_instance_group_manager.py +61 -14
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/dns/_inputs.py +0 -128
- pulumi_gcp/dns/get_keys.py +1 -1
- pulumi_gcp/dns/get_managed_zones.py +3 -9
- pulumi_gcp/dns/get_record_set.py +3 -0
- pulumi_gcp/dns/outputs.py +34 -56
- pulumi_gcp/firestore/document.py +4 -4
- pulumi_gcp/organizations/get_active_folder.py +18 -3
- pulumi_gcp/projects/__init__.py +1 -0
- pulumi_gcp/projects/iam_member_remove.py +313 -0
- pulumi_gcp/vmwareengine/_inputs.py +63 -5
- pulumi_gcp/vmwareengine/get_private_cloud.py +1 -21
- pulumi_gcp/vmwareengine/outputs.py +113 -5
- pulumi_gcp/vmwareengine/private_cloud.py +0 -94
- pulumi_gcp/workbench/instance.py +4 -4
- pulumi_gcp/workstations/workstation_cluster.py +32 -0
- {pulumi_gcp-7.20.0a1713984378.dist-info → pulumi_gcp-7.20.0a1713986537.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.20.0a1713984378.dist-info → pulumi_gcp-7.20.0a1713986537.dist-info}/RECORD +35 -34
- {pulumi_gcp-7.20.0a1713984378.dist-info → pulumi_gcp-7.20.0a1713986537.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.20.0a1713984378.dist-info → pulumi_gcp-7.20.0a1713986537.dist-info}/top_level.txt +0 -0
@@ -22,9 +22,13 @@ __all__ = [
|
|
22
22
|
'RepositoryRemoteRepositoryConfigAptRepository',
|
23
23
|
'RepositoryRemoteRepositoryConfigAptRepositoryPublicRepository',
|
24
24
|
'RepositoryRemoteRepositoryConfigDockerRepository',
|
25
|
+
'RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepository',
|
25
26
|
'RepositoryRemoteRepositoryConfigMavenRepository',
|
27
|
+
'RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepository',
|
26
28
|
'RepositoryRemoteRepositoryConfigNpmRepository',
|
29
|
+
'RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepository',
|
27
30
|
'RepositoryRemoteRepositoryConfigPythonRepository',
|
31
|
+
'RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepository',
|
28
32
|
'RepositoryRemoteRepositoryConfigUpstreamCredentials',
|
29
33
|
'RepositoryRemoteRepositoryConfigUpstreamCredentialsUsernamePasswordCredentials',
|
30
34
|
'RepositoryRemoteRepositoryConfigYumRepository',
|
@@ -40,9 +44,13 @@ __all__ = [
|
|
40
44
|
'GetRepositoryRemoteRepositoryConfigAptRepositoryResult',
|
41
45
|
'GetRepositoryRemoteRepositoryConfigAptRepositoryPublicRepositoryResult',
|
42
46
|
'GetRepositoryRemoteRepositoryConfigDockerRepositoryResult',
|
47
|
+
'GetRepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryResult',
|
43
48
|
'GetRepositoryRemoteRepositoryConfigMavenRepositoryResult',
|
49
|
+
'GetRepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryResult',
|
44
50
|
'GetRepositoryRemoteRepositoryConfigNpmRepositoryResult',
|
51
|
+
'GetRepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryResult',
|
45
52
|
'GetRepositoryRemoteRepositoryConfigPythonRepositoryResult',
|
53
|
+
'GetRepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryResult',
|
46
54
|
'GetRepositoryRemoteRepositoryConfigUpstreamCredentialResult',
|
47
55
|
'GetRepositoryRemoteRepositoryConfigUpstreamCredentialUsernamePasswordCredentialResult',
|
48
56
|
'GetRepositoryRemoteRepositoryConfigYumRepositoryResult',
|
@@ -443,6 +451,8 @@ class RepositoryRemoteRepositoryConfig(dict):
|
|
443
451
|
suggest = None
|
444
452
|
if key == "aptRepository":
|
445
453
|
suggest = "apt_repository"
|
454
|
+
elif key == "disableUpstreamValidation":
|
455
|
+
suggest = "disable_upstream_validation"
|
446
456
|
elif key == "dockerRepository":
|
447
457
|
suggest = "docker_repository"
|
448
458
|
elif key == "mavenRepository":
|
@@ -470,6 +480,7 @@ class RepositoryRemoteRepositoryConfig(dict):
|
|
470
480
|
def __init__(__self__, *,
|
471
481
|
apt_repository: Optional['outputs.RepositoryRemoteRepositoryConfigAptRepository'] = None,
|
472
482
|
description: Optional[str] = None,
|
483
|
+
disable_upstream_validation: Optional[bool] = None,
|
473
484
|
docker_repository: Optional['outputs.RepositoryRemoteRepositoryConfigDockerRepository'] = None,
|
474
485
|
maven_repository: Optional['outputs.RepositoryRemoteRepositoryConfigMavenRepository'] = None,
|
475
486
|
npm_repository: Optional['outputs.RepositoryRemoteRepositoryConfigNpmRepository'] = None,
|
@@ -480,6 +491,8 @@ class RepositoryRemoteRepositoryConfig(dict):
|
|
480
491
|
:param 'RepositoryRemoteRepositoryConfigAptRepositoryArgs' apt_repository: Specific settings for an Apt remote repository.
|
481
492
|
Structure is documented below.
|
482
493
|
:param str description: The description of the remote source.
|
494
|
+
:param bool disable_upstream_validation: If true, the remote repository upstream and upstream credentials will
|
495
|
+
not be validated.
|
483
496
|
:param 'RepositoryRemoteRepositoryConfigDockerRepositoryArgs' docker_repository: Specific settings for a Docker remote repository.
|
484
497
|
Structure is documented below.
|
485
498
|
:param 'RepositoryRemoteRepositoryConfigMavenRepositoryArgs' maven_repository: Specific settings for a Maven remote repository.
|
@@ -497,6 +510,8 @@ class RepositoryRemoteRepositoryConfig(dict):
|
|
497
510
|
pulumi.set(__self__, "apt_repository", apt_repository)
|
498
511
|
if description is not None:
|
499
512
|
pulumi.set(__self__, "description", description)
|
513
|
+
if disable_upstream_validation is not None:
|
514
|
+
pulumi.set(__self__, "disable_upstream_validation", disable_upstream_validation)
|
500
515
|
if docker_repository is not None:
|
501
516
|
pulumi.set(__self__, "docker_repository", docker_repository)
|
502
517
|
if maven_repository is not None:
|
@@ -527,6 +542,15 @@ class RepositoryRemoteRepositoryConfig(dict):
|
|
527
542
|
"""
|
528
543
|
return pulumi.get(self, "description")
|
529
544
|
|
545
|
+
@property
|
546
|
+
@pulumi.getter(name="disableUpstreamValidation")
|
547
|
+
def disable_upstream_validation(self) -> Optional[bool]:
|
548
|
+
"""
|
549
|
+
If true, the remote repository upstream and upstream credentials will
|
550
|
+
not be validated.
|
551
|
+
"""
|
552
|
+
return pulumi.get(self, "disable_upstream_validation")
|
553
|
+
|
530
554
|
@property
|
531
555
|
@pulumi.getter(name="dockerRepository")
|
532
556
|
def docker_repository(self) -> Optional['outputs.RepositoryRemoteRepositoryConfigDockerRepository']:
|
@@ -675,7 +699,9 @@ class RepositoryRemoteRepositoryConfigDockerRepository(dict):
|
|
675
699
|
@staticmethod
|
676
700
|
def __key_warning(key: str):
|
677
701
|
suggest = None
|
678
|
-
if key == "
|
702
|
+
if key == "customRepository":
|
703
|
+
suggest = "custom_repository"
|
704
|
+
elif key == "publicRepository":
|
679
705
|
suggest = "public_repository"
|
680
706
|
|
681
707
|
if suggest:
|
@@ -690,15 +716,29 @@ class RepositoryRemoteRepositoryConfigDockerRepository(dict):
|
|
690
716
|
return super().get(key, default)
|
691
717
|
|
692
718
|
def __init__(__self__, *,
|
719
|
+
custom_repository: Optional['outputs.RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepository'] = None,
|
693
720
|
public_repository: Optional[str] = None):
|
694
721
|
"""
|
722
|
+
:param 'RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs' custom_repository: Settings for a remote repository with a custom uri.
|
723
|
+
Structure is documented below.
|
695
724
|
:param str public_repository: Address of the remote repository.
|
696
725
|
Default value is `DOCKER_HUB`.
|
697
726
|
Possible values are: `DOCKER_HUB`.
|
698
727
|
"""
|
728
|
+
if custom_repository is not None:
|
729
|
+
pulumi.set(__self__, "custom_repository", custom_repository)
|
699
730
|
if public_repository is not None:
|
700
731
|
pulumi.set(__self__, "public_repository", public_repository)
|
701
732
|
|
733
|
+
@property
|
734
|
+
@pulumi.getter(name="customRepository")
|
735
|
+
def custom_repository(self) -> Optional['outputs.RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepository']:
|
736
|
+
"""
|
737
|
+
Settings for a remote repository with a custom uri.
|
738
|
+
Structure is documented below.
|
739
|
+
"""
|
740
|
+
return pulumi.get(self, "custom_repository")
|
741
|
+
|
702
742
|
@property
|
703
743
|
@pulumi.getter(name="publicRepository")
|
704
744
|
def public_repository(self) -> Optional[str]:
|
@@ -710,12 +750,33 @@ class RepositoryRemoteRepositoryConfigDockerRepository(dict):
|
|
710
750
|
return pulumi.get(self, "public_repository")
|
711
751
|
|
712
752
|
|
753
|
+
@pulumi.output_type
|
754
|
+
class RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepository(dict):
|
755
|
+
def __init__(__self__, *,
|
756
|
+
uri: Optional[str] = None):
|
757
|
+
"""
|
758
|
+
:param str uri: Specific uri to the registry, e.g. `"https://pypi.io"`
|
759
|
+
"""
|
760
|
+
if uri is not None:
|
761
|
+
pulumi.set(__self__, "uri", uri)
|
762
|
+
|
763
|
+
@property
|
764
|
+
@pulumi.getter
|
765
|
+
def uri(self) -> Optional[str]:
|
766
|
+
"""
|
767
|
+
Specific uri to the registry, e.g. `"https://pypi.io"`
|
768
|
+
"""
|
769
|
+
return pulumi.get(self, "uri")
|
770
|
+
|
771
|
+
|
713
772
|
@pulumi.output_type
|
714
773
|
class RepositoryRemoteRepositoryConfigMavenRepository(dict):
|
715
774
|
@staticmethod
|
716
775
|
def __key_warning(key: str):
|
717
776
|
suggest = None
|
718
|
-
if key == "
|
777
|
+
if key == "customRepository":
|
778
|
+
suggest = "custom_repository"
|
779
|
+
elif key == "publicRepository":
|
719
780
|
suggest = "public_repository"
|
720
781
|
|
721
782
|
if suggest:
|
@@ -730,15 +791,29 @@ class RepositoryRemoteRepositoryConfigMavenRepository(dict):
|
|
730
791
|
return super().get(key, default)
|
731
792
|
|
732
793
|
def __init__(__self__, *,
|
794
|
+
custom_repository: Optional['outputs.RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepository'] = None,
|
733
795
|
public_repository: Optional[str] = None):
|
734
796
|
"""
|
797
|
+
:param 'RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs' custom_repository: Settings for a remote repository with a custom uri.
|
798
|
+
Structure is documented below.
|
735
799
|
:param str public_repository: Address of the remote repository.
|
736
800
|
Default value is `MAVEN_CENTRAL`.
|
737
801
|
Possible values are: `MAVEN_CENTRAL`.
|
738
802
|
"""
|
803
|
+
if custom_repository is not None:
|
804
|
+
pulumi.set(__self__, "custom_repository", custom_repository)
|
739
805
|
if public_repository is not None:
|
740
806
|
pulumi.set(__self__, "public_repository", public_repository)
|
741
807
|
|
808
|
+
@property
|
809
|
+
@pulumi.getter(name="customRepository")
|
810
|
+
def custom_repository(self) -> Optional['outputs.RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepository']:
|
811
|
+
"""
|
812
|
+
Settings for a remote repository with a custom uri.
|
813
|
+
Structure is documented below.
|
814
|
+
"""
|
815
|
+
return pulumi.get(self, "custom_repository")
|
816
|
+
|
742
817
|
@property
|
743
818
|
@pulumi.getter(name="publicRepository")
|
744
819
|
def public_repository(self) -> Optional[str]:
|
@@ -750,12 +825,33 @@ class RepositoryRemoteRepositoryConfigMavenRepository(dict):
|
|
750
825
|
return pulumi.get(self, "public_repository")
|
751
826
|
|
752
827
|
|
828
|
+
@pulumi.output_type
|
829
|
+
class RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepository(dict):
|
830
|
+
def __init__(__self__, *,
|
831
|
+
uri: Optional[str] = None):
|
832
|
+
"""
|
833
|
+
:param str uri: Specific uri to the registry, e.g. `"https://pypi.io"`
|
834
|
+
"""
|
835
|
+
if uri is not None:
|
836
|
+
pulumi.set(__self__, "uri", uri)
|
837
|
+
|
838
|
+
@property
|
839
|
+
@pulumi.getter
|
840
|
+
def uri(self) -> Optional[str]:
|
841
|
+
"""
|
842
|
+
Specific uri to the registry, e.g. `"https://pypi.io"`
|
843
|
+
"""
|
844
|
+
return pulumi.get(self, "uri")
|
845
|
+
|
846
|
+
|
753
847
|
@pulumi.output_type
|
754
848
|
class RepositoryRemoteRepositoryConfigNpmRepository(dict):
|
755
849
|
@staticmethod
|
756
850
|
def __key_warning(key: str):
|
757
851
|
suggest = None
|
758
|
-
if key == "
|
852
|
+
if key == "customRepository":
|
853
|
+
suggest = "custom_repository"
|
854
|
+
elif key == "publicRepository":
|
759
855
|
suggest = "public_repository"
|
760
856
|
|
761
857
|
if suggest:
|
@@ -770,15 +866,29 @@ class RepositoryRemoteRepositoryConfigNpmRepository(dict):
|
|
770
866
|
return super().get(key, default)
|
771
867
|
|
772
868
|
def __init__(__self__, *,
|
869
|
+
custom_repository: Optional['outputs.RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepository'] = None,
|
773
870
|
public_repository: Optional[str] = None):
|
774
871
|
"""
|
872
|
+
:param 'RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs' custom_repository: Settings for a remote repository with a custom uri.
|
873
|
+
Structure is documented below.
|
775
874
|
:param str public_repository: Address of the remote repository.
|
776
875
|
Default value is `NPMJS`.
|
777
876
|
Possible values are: `NPMJS`.
|
778
877
|
"""
|
878
|
+
if custom_repository is not None:
|
879
|
+
pulumi.set(__self__, "custom_repository", custom_repository)
|
779
880
|
if public_repository is not None:
|
780
881
|
pulumi.set(__self__, "public_repository", public_repository)
|
781
882
|
|
883
|
+
@property
|
884
|
+
@pulumi.getter(name="customRepository")
|
885
|
+
def custom_repository(self) -> Optional['outputs.RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepository']:
|
886
|
+
"""
|
887
|
+
Settings for a remote repository with a custom uri.
|
888
|
+
Structure is documented below.
|
889
|
+
"""
|
890
|
+
return pulumi.get(self, "custom_repository")
|
891
|
+
|
782
892
|
@property
|
783
893
|
@pulumi.getter(name="publicRepository")
|
784
894
|
def public_repository(self) -> Optional[str]:
|
@@ -790,12 +900,33 @@ class RepositoryRemoteRepositoryConfigNpmRepository(dict):
|
|
790
900
|
return pulumi.get(self, "public_repository")
|
791
901
|
|
792
902
|
|
903
|
+
@pulumi.output_type
|
904
|
+
class RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepository(dict):
|
905
|
+
def __init__(__self__, *,
|
906
|
+
uri: Optional[str] = None):
|
907
|
+
"""
|
908
|
+
:param str uri: Specific uri to the registry, e.g. `"https://pypi.io"`
|
909
|
+
"""
|
910
|
+
if uri is not None:
|
911
|
+
pulumi.set(__self__, "uri", uri)
|
912
|
+
|
913
|
+
@property
|
914
|
+
@pulumi.getter
|
915
|
+
def uri(self) -> Optional[str]:
|
916
|
+
"""
|
917
|
+
Specific uri to the registry, e.g. `"https://pypi.io"`
|
918
|
+
"""
|
919
|
+
return pulumi.get(self, "uri")
|
920
|
+
|
921
|
+
|
793
922
|
@pulumi.output_type
|
794
923
|
class RepositoryRemoteRepositoryConfigPythonRepository(dict):
|
795
924
|
@staticmethod
|
796
925
|
def __key_warning(key: str):
|
797
926
|
suggest = None
|
798
|
-
if key == "
|
927
|
+
if key == "customRepository":
|
928
|
+
suggest = "custom_repository"
|
929
|
+
elif key == "publicRepository":
|
799
930
|
suggest = "public_repository"
|
800
931
|
|
801
932
|
if suggest:
|
@@ -810,15 +941,29 @@ class RepositoryRemoteRepositoryConfigPythonRepository(dict):
|
|
810
941
|
return super().get(key, default)
|
811
942
|
|
812
943
|
def __init__(__self__, *,
|
944
|
+
custom_repository: Optional['outputs.RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepository'] = None,
|
813
945
|
public_repository: Optional[str] = None):
|
814
946
|
"""
|
947
|
+
:param 'RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs' custom_repository: Settings for a remote repository with a custom uri.
|
948
|
+
Structure is documented below.
|
815
949
|
:param str public_repository: Address of the remote repository.
|
816
950
|
Default value is `PYPI`.
|
817
951
|
Possible values are: `PYPI`.
|
818
952
|
"""
|
953
|
+
if custom_repository is not None:
|
954
|
+
pulumi.set(__self__, "custom_repository", custom_repository)
|
819
955
|
if public_repository is not None:
|
820
956
|
pulumi.set(__self__, "public_repository", public_repository)
|
821
957
|
|
958
|
+
@property
|
959
|
+
@pulumi.getter(name="customRepository")
|
960
|
+
def custom_repository(self) -> Optional['outputs.RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepository']:
|
961
|
+
"""
|
962
|
+
Settings for a remote repository with a custom uri.
|
963
|
+
Structure is documented below.
|
964
|
+
"""
|
965
|
+
return pulumi.get(self, "custom_repository")
|
966
|
+
|
822
967
|
@property
|
823
968
|
@pulumi.getter(name="publicRepository")
|
824
969
|
def public_repository(self) -> Optional[str]:
|
@@ -830,6 +975,25 @@ class RepositoryRemoteRepositoryConfigPythonRepository(dict):
|
|
830
975
|
return pulumi.get(self, "public_repository")
|
831
976
|
|
832
977
|
|
978
|
+
@pulumi.output_type
|
979
|
+
class RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepository(dict):
|
980
|
+
def __init__(__self__, *,
|
981
|
+
uri: Optional[str] = None):
|
982
|
+
"""
|
983
|
+
:param str uri: Specific uri to the registry, e.g. `"https://pypi.io"`
|
984
|
+
"""
|
985
|
+
if uri is not None:
|
986
|
+
pulumi.set(__self__, "uri", uri)
|
987
|
+
|
988
|
+
@property
|
989
|
+
@pulumi.getter
|
990
|
+
def uri(self) -> Optional[str]:
|
991
|
+
"""
|
992
|
+
Specific uri to the registry, e.g. `"https://pypi.io"`
|
993
|
+
"""
|
994
|
+
return pulumi.get(self, "uri")
|
995
|
+
|
996
|
+
|
833
997
|
@pulumi.output_type
|
834
998
|
class RepositoryRemoteRepositoryConfigUpstreamCredentials(dict):
|
835
999
|
@staticmethod
|
@@ -1298,6 +1462,7 @@ class GetRepositoryRemoteRepositoryConfigResult(dict):
|
|
1298
1462
|
def __init__(__self__, *,
|
1299
1463
|
apt_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigAptRepositoryResult'],
|
1300
1464
|
description: str,
|
1465
|
+
disable_upstream_validation: bool,
|
1301
1466
|
docker_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigDockerRepositoryResult'],
|
1302
1467
|
maven_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigMavenRepositoryResult'],
|
1303
1468
|
npm_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigNpmRepositoryResult'],
|
@@ -1307,6 +1472,8 @@ class GetRepositoryRemoteRepositoryConfigResult(dict):
|
|
1307
1472
|
"""
|
1308
1473
|
:param Sequence['GetRepositoryRemoteRepositoryConfigAptRepositoryArgs'] apt_repositories: Specific settings for an Apt remote repository.
|
1309
1474
|
:param str description: The description of the remote source.
|
1475
|
+
:param bool disable_upstream_validation: If true, the remote repository upstream and upstream credentials will
|
1476
|
+
not be validated.
|
1310
1477
|
:param Sequence['GetRepositoryRemoteRepositoryConfigDockerRepositoryArgs'] docker_repositories: Specific settings for a Docker remote repository.
|
1311
1478
|
:param Sequence['GetRepositoryRemoteRepositoryConfigMavenRepositoryArgs'] maven_repositories: Specific settings for a Maven remote repository.
|
1312
1479
|
:param Sequence['GetRepositoryRemoteRepositoryConfigNpmRepositoryArgs'] npm_repositories: Specific settings for an Npm remote repository.
|
@@ -1316,6 +1483,7 @@ class GetRepositoryRemoteRepositoryConfigResult(dict):
|
|
1316
1483
|
"""
|
1317
1484
|
pulumi.set(__self__, "apt_repositories", apt_repositories)
|
1318
1485
|
pulumi.set(__self__, "description", description)
|
1486
|
+
pulumi.set(__self__, "disable_upstream_validation", disable_upstream_validation)
|
1319
1487
|
pulumi.set(__self__, "docker_repositories", docker_repositories)
|
1320
1488
|
pulumi.set(__self__, "maven_repositories", maven_repositories)
|
1321
1489
|
pulumi.set(__self__, "npm_repositories", npm_repositories)
|
@@ -1339,6 +1507,15 @@ class GetRepositoryRemoteRepositoryConfigResult(dict):
|
|
1339
1507
|
"""
|
1340
1508
|
return pulumi.get(self, "description")
|
1341
1509
|
|
1510
|
+
@property
|
1511
|
+
@pulumi.getter(name="disableUpstreamValidation")
|
1512
|
+
def disable_upstream_validation(self) -> bool:
|
1513
|
+
"""
|
1514
|
+
If true, the remote repository upstream and upstream credentials will
|
1515
|
+
not be validated.
|
1516
|
+
"""
|
1517
|
+
return pulumi.get(self, "disable_upstream_validation")
|
1518
|
+
|
1342
1519
|
@property
|
1343
1520
|
@pulumi.getter(name="dockerRepositories")
|
1344
1521
|
def docker_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigDockerRepositoryResult']:
|
@@ -1438,12 +1615,23 @@ class GetRepositoryRemoteRepositoryConfigAptRepositoryPublicRepositoryResult(dic
|
|
1438
1615
|
@pulumi.output_type
|
1439
1616
|
class GetRepositoryRemoteRepositoryConfigDockerRepositoryResult(dict):
|
1440
1617
|
def __init__(__self__, *,
|
1618
|
+
custom_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryResult'],
|
1441
1619
|
public_repository: str):
|
1442
1620
|
"""
|
1621
|
+
:param Sequence['GetRepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs'] custom_repositories: Settings for a remote repository with a custom uri.
|
1443
1622
|
:param str public_repository: Address of the remote repository. Default value: "DOCKER_HUB" Possible values: ["DOCKER_HUB"]
|
1444
1623
|
"""
|
1624
|
+
pulumi.set(__self__, "custom_repositories", custom_repositories)
|
1445
1625
|
pulumi.set(__self__, "public_repository", public_repository)
|
1446
1626
|
|
1627
|
+
@property
|
1628
|
+
@pulumi.getter(name="customRepositories")
|
1629
|
+
def custom_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryResult']:
|
1630
|
+
"""
|
1631
|
+
Settings for a remote repository with a custom uri.
|
1632
|
+
"""
|
1633
|
+
return pulumi.get(self, "custom_repositories")
|
1634
|
+
|
1447
1635
|
@property
|
1448
1636
|
@pulumi.getter(name="publicRepository")
|
1449
1637
|
def public_repository(self) -> str:
|
@@ -1453,15 +1641,44 @@ class GetRepositoryRemoteRepositoryConfigDockerRepositoryResult(dict):
|
|
1453
1641
|
return pulumi.get(self, "public_repository")
|
1454
1642
|
|
1455
1643
|
|
1644
|
+
@pulumi.output_type
|
1645
|
+
class GetRepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryResult(dict):
|
1646
|
+
def __init__(__self__, *,
|
1647
|
+
uri: str):
|
1648
|
+
"""
|
1649
|
+
:param str uri: Specific uri to the registry, e.g. '"https://registry-1.docker.io"'
|
1650
|
+
"""
|
1651
|
+
pulumi.set(__self__, "uri", uri)
|
1652
|
+
|
1653
|
+
@property
|
1654
|
+
@pulumi.getter
|
1655
|
+
def uri(self) -> str:
|
1656
|
+
"""
|
1657
|
+
Specific uri to the registry, e.g. '"https://registry-1.docker.io"'
|
1658
|
+
"""
|
1659
|
+
return pulumi.get(self, "uri")
|
1660
|
+
|
1661
|
+
|
1456
1662
|
@pulumi.output_type
|
1457
1663
|
class GetRepositoryRemoteRepositoryConfigMavenRepositoryResult(dict):
|
1458
1664
|
def __init__(__self__, *,
|
1665
|
+
custom_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryResult'],
|
1459
1666
|
public_repository: str):
|
1460
1667
|
"""
|
1668
|
+
:param Sequence['GetRepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs'] custom_repositories: Settings for a remote repository with a custom uri.
|
1461
1669
|
:param str public_repository: Address of the remote repository. Default value: "MAVEN_CENTRAL" Possible values: ["MAVEN_CENTRAL"]
|
1462
1670
|
"""
|
1671
|
+
pulumi.set(__self__, "custom_repositories", custom_repositories)
|
1463
1672
|
pulumi.set(__self__, "public_repository", public_repository)
|
1464
1673
|
|
1674
|
+
@property
|
1675
|
+
@pulumi.getter(name="customRepositories")
|
1676
|
+
def custom_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryResult']:
|
1677
|
+
"""
|
1678
|
+
Settings for a remote repository with a custom uri.
|
1679
|
+
"""
|
1680
|
+
return pulumi.get(self, "custom_repositories")
|
1681
|
+
|
1465
1682
|
@property
|
1466
1683
|
@pulumi.getter(name="publicRepository")
|
1467
1684
|
def public_repository(self) -> str:
|
@@ -1471,15 +1688,44 @@ class GetRepositoryRemoteRepositoryConfigMavenRepositoryResult(dict):
|
|
1471
1688
|
return pulumi.get(self, "public_repository")
|
1472
1689
|
|
1473
1690
|
|
1691
|
+
@pulumi.output_type
|
1692
|
+
class GetRepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryResult(dict):
|
1693
|
+
def __init__(__self__, *,
|
1694
|
+
uri: str):
|
1695
|
+
"""
|
1696
|
+
:param str uri: Specific uri to the registry, e.g. '"https://repo.maven.apache.org/maven2"'
|
1697
|
+
"""
|
1698
|
+
pulumi.set(__self__, "uri", uri)
|
1699
|
+
|
1700
|
+
@property
|
1701
|
+
@pulumi.getter
|
1702
|
+
def uri(self) -> str:
|
1703
|
+
"""
|
1704
|
+
Specific uri to the registry, e.g. '"https://repo.maven.apache.org/maven2"'
|
1705
|
+
"""
|
1706
|
+
return pulumi.get(self, "uri")
|
1707
|
+
|
1708
|
+
|
1474
1709
|
@pulumi.output_type
|
1475
1710
|
class GetRepositoryRemoteRepositoryConfigNpmRepositoryResult(dict):
|
1476
1711
|
def __init__(__self__, *,
|
1712
|
+
custom_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryResult'],
|
1477
1713
|
public_repository: str):
|
1478
1714
|
"""
|
1715
|
+
:param Sequence['GetRepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs'] custom_repositories: Settings for a remote repository with a custom uri.
|
1479
1716
|
:param str public_repository: Address of the remote repository. Default value: "NPMJS" Possible values: ["NPMJS"]
|
1480
1717
|
"""
|
1718
|
+
pulumi.set(__self__, "custom_repositories", custom_repositories)
|
1481
1719
|
pulumi.set(__self__, "public_repository", public_repository)
|
1482
1720
|
|
1721
|
+
@property
|
1722
|
+
@pulumi.getter(name="customRepositories")
|
1723
|
+
def custom_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryResult']:
|
1724
|
+
"""
|
1725
|
+
Settings for a remote repository with a custom uri.
|
1726
|
+
"""
|
1727
|
+
return pulumi.get(self, "custom_repositories")
|
1728
|
+
|
1483
1729
|
@property
|
1484
1730
|
@pulumi.getter(name="publicRepository")
|
1485
1731
|
def public_repository(self) -> str:
|
@@ -1489,15 +1735,44 @@ class GetRepositoryRemoteRepositoryConfigNpmRepositoryResult(dict):
|
|
1489
1735
|
return pulumi.get(self, "public_repository")
|
1490
1736
|
|
1491
1737
|
|
1738
|
+
@pulumi.output_type
|
1739
|
+
class GetRepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryResult(dict):
|
1740
|
+
def __init__(__self__, *,
|
1741
|
+
uri: str):
|
1742
|
+
"""
|
1743
|
+
:param str uri: Specific uri to the registry, e.g. '"https://registry.npmjs.org"'
|
1744
|
+
"""
|
1745
|
+
pulumi.set(__self__, "uri", uri)
|
1746
|
+
|
1747
|
+
@property
|
1748
|
+
@pulumi.getter
|
1749
|
+
def uri(self) -> str:
|
1750
|
+
"""
|
1751
|
+
Specific uri to the registry, e.g. '"https://registry.npmjs.org"'
|
1752
|
+
"""
|
1753
|
+
return pulumi.get(self, "uri")
|
1754
|
+
|
1755
|
+
|
1492
1756
|
@pulumi.output_type
|
1493
1757
|
class GetRepositoryRemoteRepositoryConfigPythonRepositoryResult(dict):
|
1494
1758
|
def __init__(__self__, *,
|
1759
|
+
custom_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryResult'],
|
1495
1760
|
public_repository: str):
|
1496
1761
|
"""
|
1762
|
+
:param Sequence['GetRepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs'] custom_repositories: Settings for a remote repository with a custom uri.
|
1497
1763
|
:param str public_repository: Address of the remote repository. Default value: "PYPI" Possible values: ["PYPI"]
|
1498
1764
|
"""
|
1765
|
+
pulumi.set(__self__, "custom_repositories", custom_repositories)
|
1499
1766
|
pulumi.set(__self__, "public_repository", public_repository)
|
1500
1767
|
|
1768
|
+
@property
|
1769
|
+
@pulumi.getter(name="customRepositories")
|
1770
|
+
def custom_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryResult']:
|
1771
|
+
"""
|
1772
|
+
Settings for a remote repository with a custom uri.
|
1773
|
+
"""
|
1774
|
+
return pulumi.get(self, "custom_repositories")
|
1775
|
+
|
1501
1776
|
@property
|
1502
1777
|
@pulumi.getter(name="publicRepository")
|
1503
1778
|
def public_repository(self) -> str:
|
@@ -1507,6 +1782,24 @@ class GetRepositoryRemoteRepositoryConfigPythonRepositoryResult(dict):
|
|
1507
1782
|
return pulumi.get(self, "public_repository")
|
1508
1783
|
|
1509
1784
|
|
1785
|
+
@pulumi.output_type
|
1786
|
+
class GetRepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryResult(dict):
|
1787
|
+
def __init__(__self__, *,
|
1788
|
+
uri: str):
|
1789
|
+
"""
|
1790
|
+
:param str uri: Specific uri to the registry, e.g. '"https://pypi.io"'
|
1791
|
+
"""
|
1792
|
+
pulumi.set(__self__, "uri", uri)
|
1793
|
+
|
1794
|
+
@property
|
1795
|
+
@pulumi.getter
|
1796
|
+
def uri(self) -> str:
|
1797
|
+
"""
|
1798
|
+
Specific uri to the registry, e.g. '"https://pypi.io"'
|
1799
|
+
"""
|
1800
|
+
return pulumi.get(self, "uri")
|
1801
|
+
|
1802
|
+
|
1510
1803
|
@pulumi.output_type
|
1511
1804
|
class GetRepositoryRemoteRepositoryConfigUpstreamCredentialResult(dict):
|
1512
1805
|
def __init__(__self__, *,
|