pulumi-gitlab 9.8.0__py3-none-any.whl → 9.8.0a1766469107__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_gitlab/__init__.py +0 -54
- pulumi_gitlab/get_project_hook.py +2 -2
- pulumi_gitlab/get_project_secure_file.py +2 -2
- pulumi_gitlab/group.py +0 -141
- pulumi_gitlab/group_hook.py +112 -116
- pulumi_gitlab/outputs.py +1 -53
- pulumi_gitlab/project_hook.py +100 -106
- pulumi_gitlab/project_job_token_scope.py +4 -20
- pulumi_gitlab/project_mirror.py +6 -8
- pulumi_gitlab/project_tag.py +3 -3
- pulumi_gitlab/pulumi-plugin.json +1 -1
- pulumi_gitlab/runner.py +2 -2
- {pulumi_gitlab-9.8.0.dist-info → pulumi_gitlab-9.8.0a1766469107.dist-info}/METADATA +1 -1
- {pulumi_gitlab-9.8.0.dist-info → pulumi_gitlab-9.8.0a1766469107.dist-info}/RECORD +16 -22
- pulumi_gitlab/project_cicd_catalog.py +0 -314
- pulumi_gitlab/project_issue_link.py +0 -502
- pulumi_gitlab/project_package_dependency_proxy.py +0 -446
- pulumi_gitlab/project_pull_mirror.py +0 -837
- pulumi_gitlab/project_push_mirror.py +0 -547
- pulumi_gitlab/project_secure_file.py +0 -489
- {pulumi_gitlab-9.8.0.dist-info → pulumi_gitlab-9.8.0a1766469107.dist-info}/WHEEL +0 -0
- {pulumi_gitlab-9.8.0.dist-info → pulumi_gitlab-9.8.0a1766469107.dist-info}/top_level.txt +0 -0
pulumi_gitlab/outputs.py
CHANGED
|
@@ -57,7 +57,6 @@ __all__ = [
|
|
|
57
57
|
'GetGroupBillableMemberMembershipsMembershipResult',
|
|
58
58
|
'GetGroupHooksHookResult',
|
|
59
59
|
'GetGroupMembershipMemberResult',
|
|
60
|
-
'GetGroupMembershipMemberGroupSamlIdentityResult',
|
|
61
60
|
'GetGroupProvisionedUsersProvisionedUserResult',
|
|
62
61
|
'GetGroupSamlLinksSamlLinkResult',
|
|
63
62
|
'GetGroupServiceAccountAccessTokensAccessTokenResult',
|
|
@@ -3864,7 +3863,6 @@ class GetGroupMembershipMemberResult(dict):
|
|
|
3864
3863
|
access_level: _builtins.str,
|
|
3865
3864
|
avatar_url: _builtins.str,
|
|
3866
3865
|
expires_at: _builtins.str,
|
|
3867
|
-
group_saml_identity: 'outputs.GetGroupMembershipMemberGroupSamlIdentityResult',
|
|
3868
3866
|
id: _builtins.int,
|
|
3869
3867
|
name: _builtins.str,
|
|
3870
3868
|
state: _builtins.str,
|
|
@@ -3874,7 +3872,6 @@ class GetGroupMembershipMemberResult(dict):
|
|
|
3874
3872
|
:param _builtins.str access_level: The level of access to the group.
|
|
3875
3873
|
:param _builtins.str avatar_url: The avatar URL of the user.
|
|
3876
3874
|
:param _builtins.str expires_at: Expiration date for the group membership.
|
|
3877
|
-
:param 'GetGroupMembershipMemberGroupSamlIdentityArgs' group_saml_identity: SAML identity linked to the group member.
|
|
3878
3875
|
:param _builtins.int id: The unique id assigned to the user by the gitlab server.
|
|
3879
3876
|
:param _builtins.str name: The name of the user.
|
|
3880
3877
|
:param _builtins.str state: Whether the user is active or blocked.
|
|
@@ -3884,7 +3881,6 @@ class GetGroupMembershipMemberResult(dict):
|
|
|
3884
3881
|
pulumi.set(__self__, "access_level", access_level)
|
|
3885
3882
|
pulumi.set(__self__, "avatar_url", avatar_url)
|
|
3886
3883
|
pulumi.set(__self__, "expires_at", expires_at)
|
|
3887
|
-
pulumi.set(__self__, "group_saml_identity", group_saml_identity)
|
|
3888
3884
|
pulumi.set(__self__, "id", id)
|
|
3889
3885
|
pulumi.set(__self__, "name", name)
|
|
3890
3886
|
pulumi.set(__self__, "state", state)
|
|
@@ -3915,14 +3911,6 @@ class GetGroupMembershipMemberResult(dict):
|
|
|
3915
3911
|
"""
|
|
3916
3912
|
return pulumi.get(self, "expires_at")
|
|
3917
3913
|
|
|
3918
|
-
@_builtins.property
|
|
3919
|
-
@pulumi.getter(name="groupSamlIdentity")
|
|
3920
|
-
def group_saml_identity(self) -> 'outputs.GetGroupMembershipMemberGroupSamlIdentityResult':
|
|
3921
|
-
"""
|
|
3922
|
-
SAML identity linked to the group member.
|
|
3923
|
-
"""
|
|
3924
|
-
return pulumi.get(self, "group_saml_identity")
|
|
3925
|
-
|
|
3926
3914
|
@_builtins.property
|
|
3927
3915
|
@pulumi.getter
|
|
3928
3916
|
def id(self) -> _builtins.int:
|
|
@@ -3964,46 +3952,6 @@ class GetGroupMembershipMemberResult(dict):
|
|
|
3964
3952
|
return pulumi.get(self, "web_url")
|
|
3965
3953
|
|
|
3966
3954
|
|
|
3967
|
-
@pulumi.output_type
|
|
3968
|
-
class GetGroupMembershipMemberGroupSamlIdentityResult(dict):
|
|
3969
|
-
def __init__(__self__, *,
|
|
3970
|
-
extern_uid: _builtins.str,
|
|
3971
|
-
provider: _builtins.str,
|
|
3972
|
-
saml_provider_id: _builtins.int):
|
|
3973
|
-
"""
|
|
3974
|
-
:param _builtins.str extern_uid: The external UID of the group SAML identity.
|
|
3975
|
-
:param _builtins.str provider: The provider of the SAML identity.
|
|
3976
|
-
:param _builtins.int saml_provider_id: The ID of the SAML provider.
|
|
3977
|
-
"""
|
|
3978
|
-
pulumi.set(__self__, "extern_uid", extern_uid)
|
|
3979
|
-
pulumi.set(__self__, "provider", provider)
|
|
3980
|
-
pulumi.set(__self__, "saml_provider_id", saml_provider_id)
|
|
3981
|
-
|
|
3982
|
-
@_builtins.property
|
|
3983
|
-
@pulumi.getter(name="externUid")
|
|
3984
|
-
def extern_uid(self) -> _builtins.str:
|
|
3985
|
-
"""
|
|
3986
|
-
The external UID of the group SAML identity.
|
|
3987
|
-
"""
|
|
3988
|
-
return pulumi.get(self, "extern_uid")
|
|
3989
|
-
|
|
3990
|
-
@_builtins.property
|
|
3991
|
-
@pulumi.getter
|
|
3992
|
-
def provider(self) -> _builtins.str:
|
|
3993
|
-
"""
|
|
3994
|
-
The provider of the SAML identity.
|
|
3995
|
-
"""
|
|
3996
|
-
return pulumi.get(self, "provider")
|
|
3997
|
-
|
|
3998
|
-
@_builtins.property
|
|
3999
|
-
@pulumi.getter(name="samlProviderId")
|
|
4000
|
-
def saml_provider_id(self) -> _builtins.int:
|
|
4001
|
-
"""
|
|
4002
|
-
The ID of the SAML provider.
|
|
4003
|
-
"""
|
|
4004
|
-
return pulumi.get(self, "saml_provider_id")
|
|
4005
|
-
|
|
4006
|
-
|
|
4007
3955
|
@pulumi.output_type
|
|
4008
3956
|
class GetGroupProvisionedUsersProvisionedUserResult(dict):
|
|
4009
3957
|
def __init__(__self__, *,
|
|
@@ -6544,7 +6492,7 @@ class GetProjectHooksHookResult(dict):
|
|
|
6544
6492
|
|
|
6545
6493
|
@_builtins.property
|
|
6546
6494
|
@pulumi.getter
|
|
6547
|
-
@_utilities.deprecated("""The token is only available on resource creation, not in this datasource. It will always be blank.
|
|
6495
|
+
@_utilities.deprecated("""The token is only available on resource creation, not in this datasource. It will always be blank.""")
|
|
6548
6496
|
def token(self) -> _builtins.str:
|
|
6549
6497
|
"""
|
|
6550
6498
|
A token to present when invoking the hook. The token is only available on resource creation, not in this datasource. It will always be blank. Will be removed in 19.0.
|