pulumi-gcp 7.20.0__py3-none-any.whl → 7.20.0a1713918100__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 +0 -8
- pulumi_gcp/apigee/organization.py +0 -162
- pulumi_gcp/artifactregistry/_inputs.py +0 -186
- pulumi_gcp/artifactregistry/outputs.py +4 -297
- pulumi_gcp/artifactregistry/repository.py +16 -346
- pulumi_gcp/bigquery/table.py +0 -61
- pulumi_gcp/billing/budget.py +0 -54
- pulumi_gcp/cloudfunctionsv2/_inputs.py +0 -16
- pulumi_gcp/cloudfunctionsv2/function.py +0 -110
- pulumi_gcp/cloudfunctionsv2/outputs.py +0 -25
- pulumi_gcp/compute/_inputs.py +0 -48
- pulumi_gcp/compute/get_instance_group_manager.py +1 -11
- pulumi_gcp/compute/instance_group_manager.py +21 -68
- pulumi_gcp/compute/outputs.py +0 -93
- pulumi_gcp/compute/region_instance_group_manager.py +14 -61
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/dns/_inputs.py +128 -0
- pulumi_gcp/dns/get_keys.py +1 -1
- pulumi_gcp/dns/get_managed_zones.py +9 -3
- pulumi_gcp/dns/get_record_set.py +0 -3
- pulumi_gcp/dns/outputs.py +56 -34
- pulumi_gcp/firestore/document.py +4 -4
- pulumi_gcp/organizations/get_active_folder.py +3 -18
- pulumi_gcp/projects/__init__.py +0 -1
- pulumi_gcp/vmwareengine/_inputs.py +5 -63
- pulumi_gcp/vmwareengine/get_private_cloud.py +21 -1
- pulumi_gcp/vmwareengine/outputs.py +5 -113
- pulumi_gcp/vmwareengine/private_cloud.py +94 -0
- pulumi_gcp/workbench/instance.py +4 -4
- pulumi_gcp/workstations/workstation_cluster.py +0 -32
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713918100.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713918100.dist-info}/RECORD +34 -35
- pulumi_gcp/projects/iam_member_remove.py +0 -313
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713918100.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713918100.dist-info}/top_level.txt +0 -0
@@ -22,13 +22,9 @@ __all__ = [
|
|
22
22
|
'RepositoryRemoteRepositoryConfigAptRepository',
|
23
23
|
'RepositoryRemoteRepositoryConfigAptRepositoryPublicRepository',
|
24
24
|
'RepositoryRemoteRepositoryConfigDockerRepository',
|
25
|
-
'RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepository',
|
26
25
|
'RepositoryRemoteRepositoryConfigMavenRepository',
|
27
|
-
'RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepository',
|
28
26
|
'RepositoryRemoteRepositoryConfigNpmRepository',
|
29
|
-
'RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepository',
|
30
27
|
'RepositoryRemoteRepositoryConfigPythonRepository',
|
31
|
-
'RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepository',
|
32
28
|
'RepositoryRemoteRepositoryConfigUpstreamCredentials',
|
33
29
|
'RepositoryRemoteRepositoryConfigUpstreamCredentialsUsernamePasswordCredentials',
|
34
30
|
'RepositoryRemoteRepositoryConfigYumRepository',
|
@@ -44,13 +40,9 @@ __all__ = [
|
|
44
40
|
'GetRepositoryRemoteRepositoryConfigAptRepositoryResult',
|
45
41
|
'GetRepositoryRemoteRepositoryConfigAptRepositoryPublicRepositoryResult',
|
46
42
|
'GetRepositoryRemoteRepositoryConfigDockerRepositoryResult',
|
47
|
-
'GetRepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryResult',
|
48
43
|
'GetRepositoryRemoteRepositoryConfigMavenRepositoryResult',
|
49
|
-
'GetRepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryResult',
|
50
44
|
'GetRepositoryRemoteRepositoryConfigNpmRepositoryResult',
|
51
|
-
'GetRepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryResult',
|
52
45
|
'GetRepositoryRemoteRepositoryConfigPythonRepositoryResult',
|
53
|
-
'GetRepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryResult',
|
54
46
|
'GetRepositoryRemoteRepositoryConfigUpstreamCredentialResult',
|
55
47
|
'GetRepositoryRemoteRepositoryConfigUpstreamCredentialUsernamePasswordCredentialResult',
|
56
48
|
'GetRepositoryRemoteRepositoryConfigYumRepositoryResult',
|
@@ -451,8 +443,6 @@ class RepositoryRemoteRepositoryConfig(dict):
|
|
451
443
|
suggest = None
|
452
444
|
if key == "aptRepository":
|
453
445
|
suggest = "apt_repository"
|
454
|
-
elif key == "disableUpstreamValidation":
|
455
|
-
suggest = "disable_upstream_validation"
|
456
446
|
elif key == "dockerRepository":
|
457
447
|
suggest = "docker_repository"
|
458
448
|
elif key == "mavenRepository":
|
@@ -480,7 +470,6 @@ class RepositoryRemoteRepositoryConfig(dict):
|
|
480
470
|
def __init__(__self__, *,
|
481
471
|
apt_repository: Optional['outputs.RepositoryRemoteRepositoryConfigAptRepository'] = None,
|
482
472
|
description: Optional[str] = None,
|
483
|
-
disable_upstream_validation: Optional[bool] = None,
|
484
473
|
docker_repository: Optional['outputs.RepositoryRemoteRepositoryConfigDockerRepository'] = None,
|
485
474
|
maven_repository: Optional['outputs.RepositoryRemoteRepositoryConfigMavenRepository'] = None,
|
486
475
|
npm_repository: Optional['outputs.RepositoryRemoteRepositoryConfigNpmRepository'] = None,
|
@@ -491,8 +480,6 @@ class RepositoryRemoteRepositoryConfig(dict):
|
|
491
480
|
:param 'RepositoryRemoteRepositoryConfigAptRepositoryArgs' apt_repository: Specific settings for an Apt remote repository.
|
492
481
|
Structure is documented below.
|
493
482
|
: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.
|
496
483
|
:param 'RepositoryRemoteRepositoryConfigDockerRepositoryArgs' docker_repository: Specific settings for a Docker remote repository.
|
497
484
|
Structure is documented below.
|
498
485
|
:param 'RepositoryRemoteRepositoryConfigMavenRepositoryArgs' maven_repository: Specific settings for a Maven remote repository.
|
@@ -510,8 +497,6 @@ class RepositoryRemoteRepositoryConfig(dict):
|
|
510
497
|
pulumi.set(__self__, "apt_repository", apt_repository)
|
511
498
|
if description is not None:
|
512
499
|
pulumi.set(__self__, "description", description)
|
513
|
-
if disable_upstream_validation is not None:
|
514
|
-
pulumi.set(__self__, "disable_upstream_validation", disable_upstream_validation)
|
515
500
|
if docker_repository is not None:
|
516
501
|
pulumi.set(__self__, "docker_repository", docker_repository)
|
517
502
|
if maven_repository is not None:
|
@@ -542,15 +527,6 @@ class RepositoryRemoteRepositoryConfig(dict):
|
|
542
527
|
"""
|
543
528
|
return pulumi.get(self, "description")
|
544
529
|
|
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
|
-
|
554
530
|
@property
|
555
531
|
@pulumi.getter(name="dockerRepository")
|
556
532
|
def docker_repository(self) -> Optional['outputs.RepositoryRemoteRepositoryConfigDockerRepository']:
|
@@ -699,9 +675,7 @@ class RepositoryRemoteRepositoryConfigDockerRepository(dict):
|
|
699
675
|
@staticmethod
|
700
676
|
def __key_warning(key: str):
|
701
677
|
suggest = None
|
702
|
-
if key == "
|
703
|
-
suggest = "custom_repository"
|
704
|
-
elif key == "publicRepository":
|
678
|
+
if key == "publicRepository":
|
705
679
|
suggest = "public_repository"
|
706
680
|
|
707
681
|
if suggest:
|
@@ -716,29 +690,15 @@ class RepositoryRemoteRepositoryConfigDockerRepository(dict):
|
|
716
690
|
return super().get(key, default)
|
717
691
|
|
718
692
|
def __init__(__self__, *,
|
719
|
-
custom_repository: Optional['outputs.RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepository'] = None,
|
720
693
|
public_repository: Optional[str] = None):
|
721
694
|
"""
|
722
|
-
:param 'RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs' custom_repository: Settings for a remote repository with a custom uri.
|
723
|
-
Structure is documented below.
|
724
695
|
:param str public_repository: Address of the remote repository.
|
725
696
|
Default value is `DOCKER_HUB`.
|
726
697
|
Possible values are: `DOCKER_HUB`.
|
727
698
|
"""
|
728
|
-
if custom_repository is not None:
|
729
|
-
pulumi.set(__self__, "custom_repository", custom_repository)
|
730
699
|
if public_repository is not None:
|
731
700
|
pulumi.set(__self__, "public_repository", public_repository)
|
732
701
|
|
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
|
-
|
742
702
|
@property
|
743
703
|
@pulumi.getter(name="publicRepository")
|
744
704
|
def public_repository(self) -> Optional[str]:
|
@@ -750,33 +710,12 @@ class RepositoryRemoteRepositoryConfigDockerRepository(dict):
|
|
750
710
|
return pulumi.get(self, "public_repository")
|
751
711
|
|
752
712
|
|
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
|
-
|
772
713
|
@pulumi.output_type
|
773
714
|
class RepositoryRemoteRepositoryConfigMavenRepository(dict):
|
774
715
|
@staticmethod
|
775
716
|
def __key_warning(key: str):
|
776
717
|
suggest = None
|
777
|
-
if key == "
|
778
|
-
suggest = "custom_repository"
|
779
|
-
elif key == "publicRepository":
|
718
|
+
if key == "publicRepository":
|
780
719
|
suggest = "public_repository"
|
781
720
|
|
782
721
|
if suggest:
|
@@ -791,29 +730,15 @@ class RepositoryRemoteRepositoryConfigMavenRepository(dict):
|
|
791
730
|
return super().get(key, default)
|
792
731
|
|
793
732
|
def __init__(__self__, *,
|
794
|
-
custom_repository: Optional['outputs.RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepository'] = None,
|
795
733
|
public_repository: Optional[str] = None):
|
796
734
|
"""
|
797
|
-
:param 'RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs' custom_repository: Settings for a remote repository with a custom uri.
|
798
|
-
Structure is documented below.
|
799
735
|
:param str public_repository: Address of the remote repository.
|
800
736
|
Default value is `MAVEN_CENTRAL`.
|
801
737
|
Possible values are: `MAVEN_CENTRAL`.
|
802
738
|
"""
|
803
|
-
if custom_repository is not None:
|
804
|
-
pulumi.set(__self__, "custom_repository", custom_repository)
|
805
739
|
if public_repository is not None:
|
806
740
|
pulumi.set(__self__, "public_repository", public_repository)
|
807
741
|
|
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
|
-
|
817
742
|
@property
|
818
743
|
@pulumi.getter(name="publicRepository")
|
819
744
|
def public_repository(self) -> Optional[str]:
|
@@ -825,33 +750,12 @@ class RepositoryRemoteRepositoryConfigMavenRepository(dict):
|
|
825
750
|
return pulumi.get(self, "public_repository")
|
826
751
|
|
827
752
|
|
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
|
-
|
847
753
|
@pulumi.output_type
|
848
754
|
class RepositoryRemoteRepositoryConfigNpmRepository(dict):
|
849
755
|
@staticmethod
|
850
756
|
def __key_warning(key: str):
|
851
757
|
suggest = None
|
852
|
-
if key == "
|
853
|
-
suggest = "custom_repository"
|
854
|
-
elif key == "publicRepository":
|
758
|
+
if key == "publicRepository":
|
855
759
|
suggest = "public_repository"
|
856
760
|
|
857
761
|
if suggest:
|
@@ -866,29 +770,15 @@ class RepositoryRemoteRepositoryConfigNpmRepository(dict):
|
|
866
770
|
return super().get(key, default)
|
867
771
|
|
868
772
|
def __init__(__self__, *,
|
869
|
-
custom_repository: Optional['outputs.RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepository'] = None,
|
870
773
|
public_repository: Optional[str] = None):
|
871
774
|
"""
|
872
|
-
:param 'RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs' custom_repository: Settings for a remote repository with a custom uri.
|
873
|
-
Structure is documented below.
|
874
775
|
:param str public_repository: Address of the remote repository.
|
875
776
|
Default value is `NPMJS`.
|
876
777
|
Possible values are: `NPMJS`.
|
877
778
|
"""
|
878
|
-
if custom_repository is not None:
|
879
|
-
pulumi.set(__self__, "custom_repository", custom_repository)
|
880
779
|
if public_repository is not None:
|
881
780
|
pulumi.set(__self__, "public_repository", public_repository)
|
882
781
|
|
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
|
-
|
892
782
|
@property
|
893
783
|
@pulumi.getter(name="publicRepository")
|
894
784
|
def public_repository(self) -> Optional[str]:
|
@@ -900,33 +790,12 @@ class RepositoryRemoteRepositoryConfigNpmRepository(dict):
|
|
900
790
|
return pulumi.get(self, "public_repository")
|
901
791
|
|
902
792
|
|
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
|
-
|
922
793
|
@pulumi.output_type
|
923
794
|
class RepositoryRemoteRepositoryConfigPythonRepository(dict):
|
924
795
|
@staticmethod
|
925
796
|
def __key_warning(key: str):
|
926
797
|
suggest = None
|
927
|
-
if key == "
|
928
|
-
suggest = "custom_repository"
|
929
|
-
elif key == "publicRepository":
|
798
|
+
if key == "publicRepository":
|
930
799
|
suggest = "public_repository"
|
931
800
|
|
932
801
|
if suggest:
|
@@ -941,29 +810,15 @@ class RepositoryRemoteRepositoryConfigPythonRepository(dict):
|
|
941
810
|
return super().get(key, default)
|
942
811
|
|
943
812
|
def __init__(__self__, *,
|
944
|
-
custom_repository: Optional['outputs.RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepository'] = None,
|
945
813
|
public_repository: Optional[str] = None):
|
946
814
|
"""
|
947
|
-
:param 'RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs' custom_repository: Settings for a remote repository with a custom uri.
|
948
|
-
Structure is documented below.
|
949
815
|
:param str public_repository: Address of the remote repository.
|
950
816
|
Default value is `PYPI`.
|
951
817
|
Possible values are: `PYPI`.
|
952
818
|
"""
|
953
|
-
if custom_repository is not None:
|
954
|
-
pulumi.set(__self__, "custom_repository", custom_repository)
|
955
819
|
if public_repository is not None:
|
956
820
|
pulumi.set(__self__, "public_repository", public_repository)
|
957
821
|
|
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
|
-
|
967
822
|
@property
|
968
823
|
@pulumi.getter(name="publicRepository")
|
969
824
|
def public_repository(self) -> Optional[str]:
|
@@ -975,25 +830,6 @@ class RepositoryRemoteRepositoryConfigPythonRepository(dict):
|
|
975
830
|
return pulumi.get(self, "public_repository")
|
976
831
|
|
977
832
|
|
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
|
-
|
997
833
|
@pulumi.output_type
|
998
834
|
class RepositoryRemoteRepositoryConfigUpstreamCredentials(dict):
|
999
835
|
@staticmethod
|
@@ -1462,7 +1298,6 @@ class GetRepositoryRemoteRepositoryConfigResult(dict):
|
|
1462
1298
|
def __init__(__self__, *,
|
1463
1299
|
apt_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigAptRepositoryResult'],
|
1464
1300
|
description: str,
|
1465
|
-
disable_upstream_validation: bool,
|
1466
1301
|
docker_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigDockerRepositoryResult'],
|
1467
1302
|
maven_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigMavenRepositoryResult'],
|
1468
1303
|
npm_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigNpmRepositoryResult'],
|
@@ -1472,8 +1307,6 @@ class GetRepositoryRemoteRepositoryConfigResult(dict):
|
|
1472
1307
|
"""
|
1473
1308
|
:param Sequence['GetRepositoryRemoteRepositoryConfigAptRepositoryArgs'] apt_repositories: Specific settings for an Apt remote repository.
|
1474
1309
|
: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.
|
1477
1310
|
:param Sequence['GetRepositoryRemoteRepositoryConfigDockerRepositoryArgs'] docker_repositories: Specific settings for a Docker remote repository.
|
1478
1311
|
:param Sequence['GetRepositoryRemoteRepositoryConfigMavenRepositoryArgs'] maven_repositories: Specific settings for a Maven remote repository.
|
1479
1312
|
:param Sequence['GetRepositoryRemoteRepositoryConfigNpmRepositoryArgs'] npm_repositories: Specific settings for an Npm remote repository.
|
@@ -1483,7 +1316,6 @@ class GetRepositoryRemoteRepositoryConfigResult(dict):
|
|
1483
1316
|
"""
|
1484
1317
|
pulumi.set(__self__, "apt_repositories", apt_repositories)
|
1485
1318
|
pulumi.set(__self__, "description", description)
|
1486
|
-
pulumi.set(__self__, "disable_upstream_validation", disable_upstream_validation)
|
1487
1319
|
pulumi.set(__self__, "docker_repositories", docker_repositories)
|
1488
1320
|
pulumi.set(__self__, "maven_repositories", maven_repositories)
|
1489
1321
|
pulumi.set(__self__, "npm_repositories", npm_repositories)
|
@@ -1507,15 +1339,6 @@ class GetRepositoryRemoteRepositoryConfigResult(dict):
|
|
1507
1339
|
"""
|
1508
1340
|
return pulumi.get(self, "description")
|
1509
1341
|
|
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
|
-
|
1519
1342
|
@property
|
1520
1343
|
@pulumi.getter(name="dockerRepositories")
|
1521
1344
|
def docker_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigDockerRepositoryResult']:
|
@@ -1615,23 +1438,12 @@ class GetRepositoryRemoteRepositoryConfigAptRepositoryPublicRepositoryResult(dic
|
|
1615
1438
|
@pulumi.output_type
|
1616
1439
|
class GetRepositoryRemoteRepositoryConfigDockerRepositoryResult(dict):
|
1617
1440
|
def __init__(__self__, *,
|
1618
|
-
custom_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryResult'],
|
1619
1441
|
public_repository: str):
|
1620
1442
|
"""
|
1621
|
-
:param Sequence['GetRepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs'] custom_repositories: Settings for a remote repository with a custom uri.
|
1622
1443
|
:param str public_repository: Address of the remote repository. Default value: "DOCKER_HUB" Possible values: ["DOCKER_HUB"]
|
1623
1444
|
"""
|
1624
|
-
pulumi.set(__self__, "custom_repositories", custom_repositories)
|
1625
1445
|
pulumi.set(__self__, "public_repository", public_repository)
|
1626
1446
|
|
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
|
-
|
1635
1447
|
@property
|
1636
1448
|
@pulumi.getter(name="publicRepository")
|
1637
1449
|
def public_repository(self) -> str:
|
@@ -1641,44 +1453,15 @@ class GetRepositoryRemoteRepositoryConfigDockerRepositoryResult(dict):
|
|
1641
1453
|
return pulumi.get(self, "public_repository")
|
1642
1454
|
|
1643
1455
|
|
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
|
-
|
1662
1456
|
@pulumi.output_type
|
1663
1457
|
class GetRepositoryRemoteRepositoryConfigMavenRepositoryResult(dict):
|
1664
1458
|
def __init__(__self__, *,
|
1665
|
-
custom_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryResult'],
|
1666
1459
|
public_repository: str):
|
1667
1460
|
"""
|
1668
|
-
:param Sequence['GetRepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs'] custom_repositories: Settings for a remote repository with a custom uri.
|
1669
1461
|
:param str public_repository: Address of the remote repository. Default value: "MAVEN_CENTRAL" Possible values: ["MAVEN_CENTRAL"]
|
1670
1462
|
"""
|
1671
|
-
pulumi.set(__self__, "custom_repositories", custom_repositories)
|
1672
1463
|
pulumi.set(__self__, "public_repository", public_repository)
|
1673
1464
|
|
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
|
-
|
1682
1465
|
@property
|
1683
1466
|
@pulumi.getter(name="publicRepository")
|
1684
1467
|
def public_repository(self) -> str:
|
@@ -1688,44 +1471,15 @@ class GetRepositoryRemoteRepositoryConfigMavenRepositoryResult(dict):
|
|
1688
1471
|
return pulumi.get(self, "public_repository")
|
1689
1472
|
|
1690
1473
|
|
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
|
-
|
1709
1474
|
@pulumi.output_type
|
1710
1475
|
class GetRepositoryRemoteRepositoryConfigNpmRepositoryResult(dict):
|
1711
1476
|
def __init__(__self__, *,
|
1712
|
-
custom_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryResult'],
|
1713
1477
|
public_repository: str):
|
1714
1478
|
"""
|
1715
|
-
:param Sequence['GetRepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs'] custom_repositories: Settings for a remote repository with a custom uri.
|
1716
1479
|
:param str public_repository: Address of the remote repository. Default value: "NPMJS" Possible values: ["NPMJS"]
|
1717
1480
|
"""
|
1718
|
-
pulumi.set(__self__, "custom_repositories", custom_repositories)
|
1719
1481
|
pulumi.set(__self__, "public_repository", public_repository)
|
1720
1482
|
|
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
|
-
|
1729
1483
|
@property
|
1730
1484
|
@pulumi.getter(name="publicRepository")
|
1731
1485
|
def public_repository(self) -> str:
|
@@ -1735,44 +1489,15 @@ class GetRepositoryRemoteRepositoryConfigNpmRepositoryResult(dict):
|
|
1735
1489
|
return pulumi.get(self, "public_repository")
|
1736
1490
|
|
1737
1491
|
|
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
|
-
|
1756
1492
|
@pulumi.output_type
|
1757
1493
|
class GetRepositoryRemoteRepositoryConfigPythonRepositoryResult(dict):
|
1758
1494
|
def __init__(__self__, *,
|
1759
|
-
custom_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryResult'],
|
1760
1495
|
public_repository: str):
|
1761
1496
|
"""
|
1762
|
-
:param Sequence['GetRepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs'] custom_repositories: Settings for a remote repository with a custom uri.
|
1763
1497
|
:param str public_repository: Address of the remote repository. Default value: "PYPI" Possible values: ["PYPI"]
|
1764
1498
|
"""
|
1765
|
-
pulumi.set(__self__, "custom_repositories", custom_repositories)
|
1766
1499
|
pulumi.set(__self__, "public_repository", public_repository)
|
1767
1500
|
|
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
|
-
|
1776
1501
|
@property
|
1777
1502
|
@pulumi.getter(name="publicRepository")
|
1778
1503
|
def public_repository(self) -> str:
|
@@ -1782,24 +1507,6 @@ class GetRepositoryRemoteRepositoryConfigPythonRepositoryResult(dict):
|
|
1782
1507
|
return pulumi.get(self, "public_repository")
|
1783
1508
|
|
1784
1509
|
|
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
|
-
|
1803
1510
|
@pulumi.output_type
|
1804
1511
|
class GetRepositoryRemoteRepositoryConfigUpstreamCredentialResult(dict):
|
1805
1512
|
def __init__(__self__, *,
|