pulumi-gcp 8.33.0a1749001887__py3-none-any.whl → 8.34.0a1749484438__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.
Files changed (46) hide show
  1. pulumi_gcp/__init__.py +8 -0
  2. pulumi_gcp/bigquery/__init__.py +1 -0
  3. pulumi_gcp/bigquery/get_datasets.py +131 -0
  4. pulumi_gcp/bigquery/outputs.py +52 -0
  5. pulumi_gcp/colab/_inputs.py +14 -1
  6. pulumi_gcp/colab/outputs.py +8 -1
  7. pulumi_gcp/colab/runtime_template.py +1 -1
  8. pulumi_gcp/compute/_inputs.py +278 -3
  9. pulumi_gcp/compute/backend_service.py +18 -2
  10. pulumi_gcp/compute/get_region_instance_template.py +12 -1
  11. pulumi_gcp/compute/get_router_nat.py +23 -1
  12. pulumi_gcp/compute/interconnect_attachment.py +276 -0
  13. pulumi_gcp/compute/outputs.py +234 -2
  14. pulumi_gcp/compute/region_instance_template.py +28 -0
  15. pulumi_gcp/compute/router_nat.py +143 -0
  16. pulumi_gcp/compute/url_map.py +338 -0
  17. pulumi_gcp/container/_inputs.py +6 -6
  18. pulumi_gcp/container/outputs.py +4 -4
  19. pulumi_gcp/dataplex/__init__.py +1 -0
  20. pulumi_gcp/dataplex/_inputs.py +472 -0
  21. pulumi_gcp/dataplex/entry.py +1038 -0
  22. pulumi_gcp/dataplex/outputs.py +342 -0
  23. pulumi_gcp/datastream/_inputs.py +48 -6
  24. pulumi_gcp/datastream/outputs.py +46 -4
  25. pulumi_gcp/datastream/private_connection.py +205 -35
  26. pulumi_gcp/dns/_inputs.py +73 -0
  27. pulumi_gcp/dns/outputs.py +60 -0
  28. pulumi_gcp/dns/policy.py +54 -0
  29. pulumi_gcp/filestore/_inputs.py +44 -1
  30. pulumi_gcp/filestore/instance.py +7 -7
  31. pulumi_gcp/filestore/outputs.py +52 -2
  32. pulumi_gcp/memorystore/_inputs.py +6 -6
  33. pulumi_gcp/memorystore/outputs.py +8 -8
  34. pulumi_gcp/netapp/_inputs.py +113 -0
  35. pulumi_gcp/netapp/backup_vault.py +56 -0
  36. pulumi_gcp/netapp/outputs.py +92 -0
  37. pulumi_gcp/networkconnectivity/_inputs.py +9 -9
  38. pulumi_gcp/networkconnectivity/outputs.py +6 -6
  39. pulumi_gcp/pulumi-plugin.json +1 -1
  40. pulumi_gcp/redis/_inputs.py +3 -6
  41. pulumi_gcp/redis/outputs.py +2 -4
  42. pulumi_gcp/storage/bucket_object.py +4 -4
  43. {pulumi_gcp-8.33.0a1749001887.dist-info → pulumi_gcp-8.34.0a1749484438.dist-info}/METADATA +1 -1
  44. {pulumi_gcp-8.33.0a1749001887.dist-info → pulumi_gcp-8.34.0a1749484438.dist-info}/RECORD +46 -44
  45. {pulumi_gcp-8.33.0a1749001887.dist-info → pulumi_gcp-8.34.0a1749484438.dist-info}/WHEEL +0 -0
  46. {pulumi_gcp-8.33.0a1749001887.dist-info → pulumi_gcp-8.34.0a1749484438.dist-info}/top_level.txt +0 -0
@@ -102,6 +102,14 @@ __all__ = [
102
102
  'DatascanIamBindingConditionArgsDict',
103
103
  'DatascanIamMemberConditionArgs',
104
104
  'DatascanIamMemberConditionArgsDict',
105
+ 'EntryAspectArgs',
106
+ 'EntryAspectArgsDict',
107
+ 'EntryAspectAspectArgs',
108
+ 'EntryAspectAspectArgsDict',
109
+ 'EntryEntrySourceArgs',
110
+ 'EntryEntrySourceArgsDict',
111
+ 'EntryEntrySourceAncestorArgs',
112
+ 'EntryEntrySourceAncestorArgsDict',
105
113
  'EntryGroupIamBindingConditionArgs',
106
114
  'EntryGroupIamBindingConditionArgsDict',
107
115
  'EntryGroupIamMemberConditionArgs',
@@ -2860,6 +2868,470 @@ class DatascanIamMemberConditionArgs:
2860
2868
  pulumi.set(self, "description", value)
2861
2869
 
2862
2870
 
2871
+ if not MYPY:
2872
+ class EntryAspectArgsDict(TypedDict):
2873
+ aspect: pulumi.Input['EntryAspectAspectArgsDict']
2874
+ """
2875
+ A nested object resource.
2876
+ Structure is documented below.
2877
+ """
2878
+ aspect_key: pulumi.Input[builtins.str]
2879
+ """
2880
+ Depending on how the aspect is attached to the entry, the format of the aspect key can be one of the following:
2881
+ If the aspect is attached directly to the entry: {project_number}.{locationId}.{aspectTypeId}
2882
+ If the aspect is attached to an entry's path: {project_number}.{locationId}.{aspectTypeId}@{path}
2883
+ """
2884
+ elif False:
2885
+ EntryAspectArgsDict: TypeAlias = Mapping[str, Any]
2886
+
2887
+ @pulumi.input_type
2888
+ class EntryAspectArgs:
2889
+ def __init__(__self__, *,
2890
+ aspect: pulumi.Input['EntryAspectAspectArgs'],
2891
+ aspect_key: pulumi.Input[builtins.str]):
2892
+ """
2893
+ :param pulumi.Input['EntryAspectAspectArgs'] aspect: A nested object resource.
2894
+ Structure is documented below.
2895
+ :param pulumi.Input[builtins.str] aspect_key: Depending on how the aspect is attached to the entry, the format of the aspect key can be one of the following:
2896
+ If the aspect is attached directly to the entry: {project_number}.{locationId}.{aspectTypeId}
2897
+ If the aspect is attached to an entry's path: {project_number}.{locationId}.{aspectTypeId}@{path}
2898
+ """
2899
+ pulumi.set(__self__, "aspect", aspect)
2900
+ pulumi.set(__self__, "aspect_key", aspect_key)
2901
+
2902
+ @property
2903
+ @pulumi.getter
2904
+ def aspect(self) -> pulumi.Input['EntryAspectAspectArgs']:
2905
+ """
2906
+ A nested object resource.
2907
+ Structure is documented below.
2908
+ """
2909
+ return pulumi.get(self, "aspect")
2910
+
2911
+ @aspect.setter
2912
+ def aspect(self, value: pulumi.Input['EntryAspectAspectArgs']):
2913
+ pulumi.set(self, "aspect", value)
2914
+
2915
+ @property
2916
+ @pulumi.getter(name="aspectKey")
2917
+ def aspect_key(self) -> pulumi.Input[builtins.str]:
2918
+ """
2919
+ Depending on how the aspect is attached to the entry, the format of the aspect key can be one of the following:
2920
+ If the aspect is attached directly to the entry: {project_number}.{locationId}.{aspectTypeId}
2921
+ If the aspect is attached to an entry's path: {project_number}.{locationId}.{aspectTypeId}@{path}
2922
+ """
2923
+ return pulumi.get(self, "aspect_key")
2924
+
2925
+ @aspect_key.setter
2926
+ def aspect_key(self, value: pulumi.Input[builtins.str]):
2927
+ pulumi.set(self, "aspect_key", value)
2928
+
2929
+
2930
+ if not MYPY:
2931
+ class EntryAspectAspectArgsDict(TypedDict):
2932
+ data: pulumi.Input[builtins.str]
2933
+ """
2934
+ The content of the aspect in JSON form, according to its aspect type schema. The maximum size of the field is 120KB (encoded as UTF-8).
2935
+ """
2936
+ aspect_type: NotRequired[pulumi.Input[builtins.str]]
2937
+ """
2938
+ (Output)
2939
+ The resource name of the type used to create this Aspect.
2940
+ """
2941
+ create_time: NotRequired[pulumi.Input[builtins.str]]
2942
+ """
2943
+ (Output)
2944
+ The time when the Aspect was created.
2945
+ """
2946
+ path: NotRequired[pulumi.Input[builtins.str]]
2947
+ """
2948
+ (Output)
2949
+ The path in the entry under which the aspect is attached.
2950
+ """
2951
+ update_time: NotRequired[pulumi.Input[builtins.str]]
2952
+ """
2953
+ (Output)
2954
+ The time when the Aspect was last modified.
2955
+ """
2956
+ elif False:
2957
+ EntryAspectAspectArgsDict: TypeAlias = Mapping[str, Any]
2958
+
2959
+ @pulumi.input_type
2960
+ class EntryAspectAspectArgs:
2961
+ def __init__(__self__, *,
2962
+ data: pulumi.Input[builtins.str],
2963
+ aspect_type: Optional[pulumi.Input[builtins.str]] = None,
2964
+ create_time: Optional[pulumi.Input[builtins.str]] = None,
2965
+ path: Optional[pulumi.Input[builtins.str]] = None,
2966
+ update_time: Optional[pulumi.Input[builtins.str]] = None):
2967
+ """
2968
+ :param pulumi.Input[builtins.str] data: The content of the aspect in JSON form, according to its aspect type schema. The maximum size of the field is 120KB (encoded as UTF-8).
2969
+ :param pulumi.Input[builtins.str] aspect_type: (Output)
2970
+ The resource name of the type used to create this Aspect.
2971
+ :param pulumi.Input[builtins.str] create_time: (Output)
2972
+ The time when the Aspect was created.
2973
+ :param pulumi.Input[builtins.str] path: (Output)
2974
+ The path in the entry under which the aspect is attached.
2975
+ :param pulumi.Input[builtins.str] update_time: (Output)
2976
+ The time when the Aspect was last modified.
2977
+ """
2978
+ pulumi.set(__self__, "data", data)
2979
+ if aspect_type is not None:
2980
+ pulumi.set(__self__, "aspect_type", aspect_type)
2981
+ if create_time is not None:
2982
+ pulumi.set(__self__, "create_time", create_time)
2983
+ if path is not None:
2984
+ pulumi.set(__self__, "path", path)
2985
+ if update_time is not None:
2986
+ pulumi.set(__self__, "update_time", update_time)
2987
+
2988
+ @property
2989
+ @pulumi.getter
2990
+ def data(self) -> pulumi.Input[builtins.str]:
2991
+ """
2992
+ The content of the aspect in JSON form, according to its aspect type schema. The maximum size of the field is 120KB (encoded as UTF-8).
2993
+ """
2994
+ return pulumi.get(self, "data")
2995
+
2996
+ @data.setter
2997
+ def data(self, value: pulumi.Input[builtins.str]):
2998
+ pulumi.set(self, "data", value)
2999
+
3000
+ @property
3001
+ @pulumi.getter(name="aspectType")
3002
+ def aspect_type(self) -> Optional[pulumi.Input[builtins.str]]:
3003
+ """
3004
+ (Output)
3005
+ The resource name of the type used to create this Aspect.
3006
+ """
3007
+ return pulumi.get(self, "aspect_type")
3008
+
3009
+ @aspect_type.setter
3010
+ def aspect_type(self, value: Optional[pulumi.Input[builtins.str]]):
3011
+ pulumi.set(self, "aspect_type", value)
3012
+
3013
+ @property
3014
+ @pulumi.getter(name="createTime")
3015
+ def create_time(self) -> Optional[pulumi.Input[builtins.str]]:
3016
+ """
3017
+ (Output)
3018
+ The time when the Aspect was created.
3019
+ """
3020
+ return pulumi.get(self, "create_time")
3021
+
3022
+ @create_time.setter
3023
+ def create_time(self, value: Optional[pulumi.Input[builtins.str]]):
3024
+ pulumi.set(self, "create_time", value)
3025
+
3026
+ @property
3027
+ @pulumi.getter
3028
+ def path(self) -> Optional[pulumi.Input[builtins.str]]:
3029
+ """
3030
+ (Output)
3031
+ The path in the entry under which the aspect is attached.
3032
+ """
3033
+ return pulumi.get(self, "path")
3034
+
3035
+ @path.setter
3036
+ def path(self, value: Optional[pulumi.Input[builtins.str]]):
3037
+ pulumi.set(self, "path", value)
3038
+
3039
+ @property
3040
+ @pulumi.getter(name="updateTime")
3041
+ def update_time(self) -> Optional[pulumi.Input[builtins.str]]:
3042
+ """
3043
+ (Output)
3044
+ The time when the Aspect was last modified.
3045
+ """
3046
+ return pulumi.get(self, "update_time")
3047
+
3048
+ @update_time.setter
3049
+ def update_time(self, value: Optional[pulumi.Input[builtins.str]]):
3050
+ pulumi.set(self, "update_time", value)
3051
+
3052
+
3053
+ if not MYPY:
3054
+ class EntryEntrySourceArgsDict(TypedDict):
3055
+ ancestors: NotRequired[pulumi.Input[Sequence[pulumi.Input['EntryEntrySourceAncestorArgsDict']]]]
3056
+ """
3057
+ Structure is documented below.
3058
+ """
3059
+ create_time: NotRequired[pulumi.Input[builtins.str]]
3060
+ """
3061
+ The time when the resource was created in the source system.
3062
+ """
3063
+ description: NotRequired[pulumi.Input[builtins.str]]
3064
+ """
3065
+ A description of the data resource. Maximum length is 2,000 characters.
3066
+ """
3067
+ display_name: NotRequired[pulumi.Input[builtins.str]]
3068
+ """
3069
+ A user-friendly display name. Maximum length is 500 characters.
3070
+ """
3071
+ labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]
3072
+ """
3073
+ User-defined labels. The maximum size of keys and values is 128 characters each.
3074
+ An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
3075
+ """
3076
+ location: NotRequired[pulumi.Input[builtins.str]]
3077
+ """
3078
+ (Output)
3079
+ Location of the resource in the source system. You can search the entry by this location.
3080
+ By default, this should match the location of the entry group containing this entry.
3081
+ A different value allows capturing the source location for data external to Google Cloud.
3082
+ """
3083
+ platform: NotRequired[pulumi.Input[builtins.str]]
3084
+ """
3085
+ The platform containing the source system. Maximum length is 64 characters.
3086
+ """
3087
+ resource: NotRequired[pulumi.Input[builtins.str]]
3088
+ """
3089
+ The name of the resource in the source system. Maximum length is 4,000 characters.
3090
+ """
3091
+ system: NotRequired[pulumi.Input[builtins.str]]
3092
+ """
3093
+ The name of the source system. Maximum length is 64 characters.
3094
+ """
3095
+ update_time: NotRequired[pulumi.Input[builtins.str]]
3096
+ """
3097
+ The time when the resource was last updated in the source system.
3098
+ If the entry exists in the system and its EntrySource has updateTime populated,
3099
+ further updates to the EntrySource of the entry must provide incremental updates to its updateTime.
3100
+ """
3101
+ elif False:
3102
+ EntryEntrySourceArgsDict: TypeAlias = Mapping[str, Any]
3103
+
3104
+ @pulumi.input_type
3105
+ class EntryEntrySourceArgs:
3106
+ def __init__(__self__, *,
3107
+ ancestors: Optional[pulumi.Input[Sequence[pulumi.Input['EntryEntrySourceAncestorArgs']]]] = None,
3108
+ create_time: Optional[pulumi.Input[builtins.str]] = None,
3109
+ description: Optional[pulumi.Input[builtins.str]] = None,
3110
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
3111
+ labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
3112
+ location: Optional[pulumi.Input[builtins.str]] = None,
3113
+ platform: Optional[pulumi.Input[builtins.str]] = None,
3114
+ resource: Optional[pulumi.Input[builtins.str]] = None,
3115
+ system: Optional[pulumi.Input[builtins.str]] = None,
3116
+ update_time: Optional[pulumi.Input[builtins.str]] = None):
3117
+ """
3118
+ :param pulumi.Input[Sequence[pulumi.Input['EntryEntrySourceAncestorArgs']]] ancestors: Structure is documented below.
3119
+ :param pulumi.Input[builtins.str] create_time: The time when the resource was created in the source system.
3120
+ :param pulumi.Input[builtins.str] description: A description of the data resource. Maximum length is 2,000 characters.
3121
+ :param pulumi.Input[builtins.str] display_name: A user-friendly display name. Maximum length is 500 characters.
3122
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: User-defined labels. The maximum size of keys and values is 128 characters each.
3123
+ An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
3124
+ :param pulumi.Input[builtins.str] location: (Output)
3125
+ Location of the resource in the source system. You can search the entry by this location.
3126
+ By default, this should match the location of the entry group containing this entry.
3127
+ A different value allows capturing the source location for data external to Google Cloud.
3128
+ :param pulumi.Input[builtins.str] platform: The platform containing the source system. Maximum length is 64 characters.
3129
+ :param pulumi.Input[builtins.str] resource: The name of the resource in the source system. Maximum length is 4,000 characters.
3130
+ :param pulumi.Input[builtins.str] system: The name of the source system. Maximum length is 64 characters.
3131
+ :param pulumi.Input[builtins.str] update_time: The time when the resource was last updated in the source system.
3132
+ If the entry exists in the system and its EntrySource has updateTime populated,
3133
+ further updates to the EntrySource of the entry must provide incremental updates to its updateTime.
3134
+ """
3135
+ if ancestors is not None:
3136
+ pulumi.set(__self__, "ancestors", ancestors)
3137
+ if create_time is not None:
3138
+ pulumi.set(__self__, "create_time", create_time)
3139
+ if description is not None:
3140
+ pulumi.set(__self__, "description", description)
3141
+ if display_name is not None:
3142
+ pulumi.set(__self__, "display_name", display_name)
3143
+ if labels is not None:
3144
+ pulumi.set(__self__, "labels", labels)
3145
+ if location is not None:
3146
+ pulumi.set(__self__, "location", location)
3147
+ if platform is not None:
3148
+ pulumi.set(__self__, "platform", platform)
3149
+ if resource is not None:
3150
+ pulumi.set(__self__, "resource", resource)
3151
+ if system is not None:
3152
+ pulumi.set(__self__, "system", system)
3153
+ if update_time is not None:
3154
+ pulumi.set(__self__, "update_time", update_time)
3155
+
3156
+ @property
3157
+ @pulumi.getter
3158
+ def ancestors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EntryEntrySourceAncestorArgs']]]]:
3159
+ """
3160
+ Structure is documented below.
3161
+ """
3162
+ return pulumi.get(self, "ancestors")
3163
+
3164
+ @ancestors.setter
3165
+ def ancestors(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['EntryEntrySourceAncestorArgs']]]]):
3166
+ pulumi.set(self, "ancestors", value)
3167
+
3168
+ @property
3169
+ @pulumi.getter(name="createTime")
3170
+ def create_time(self) -> Optional[pulumi.Input[builtins.str]]:
3171
+ """
3172
+ The time when the resource was created in the source system.
3173
+ """
3174
+ return pulumi.get(self, "create_time")
3175
+
3176
+ @create_time.setter
3177
+ def create_time(self, value: Optional[pulumi.Input[builtins.str]]):
3178
+ pulumi.set(self, "create_time", value)
3179
+
3180
+ @property
3181
+ @pulumi.getter
3182
+ def description(self) -> Optional[pulumi.Input[builtins.str]]:
3183
+ """
3184
+ A description of the data resource. Maximum length is 2,000 characters.
3185
+ """
3186
+ return pulumi.get(self, "description")
3187
+
3188
+ @description.setter
3189
+ def description(self, value: Optional[pulumi.Input[builtins.str]]):
3190
+ pulumi.set(self, "description", value)
3191
+
3192
+ @property
3193
+ @pulumi.getter(name="displayName")
3194
+ def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
3195
+ """
3196
+ A user-friendly display name. Maximum length is 500 characters.
3197
+ """
3198
+ return pulumi.get(self, "display_name")
3199
+
3200
+ @display_name.setter
3201
+ def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
3202
+ pulumi.set(self, "display_name", value)
3203
+
3204
+ @property
3205
+ @pulumi.getter
3206
+ def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
3207
+ """
3208
+ User-defined labels. The maximum size of keys and values is 128 characters each.
3209
+ An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
3210
+ """
3211
+ return pulumi.get(self, "labels")
3212
+
3213
+ @labels.setter
3214
+ def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
3215
+ pulumi.set(self, "labels", value)
3216
+
3217
+ @property
3218
+ @pulumi.getter
3219
+ def location(self) -> Optional[pulumi.Input[builtins.str]]:
3220
+ """
3221
+ (Output)
3222
+ Location of the resource in the source system. You can search the entry by this location.
3223
+ By default, this should match the location of the entry group containing this entry.
3224
+ A different value allows capturing the source location for data external to Google Cloud.
3225
+ """
3226
+ return pulumi.get(self, "location")
3227
+
3228
+ @location.setter
3229
+ def location(self, value: Optional[pulumi.Input[builtins.str]]):
3230
+ pulumi.set(self, "location", value)
3231
+
3232
+ @property
3233
+ @pulumi.getter
3234
+ def platform(self) -> Optional[pulumi.Input[builtins.str]]:
3235
+ """
3236
+ The platform containing the source system. Maximum length is 64 characters.
3237
+ """
3238
+ return pulumi.get(self, "platform")
3239
+
3240
+ @platform.setter
3241
+ def platform(self, value: Optional[pulumi.Input[builtins.str]]):
3242
+ pulumi.set(self, "platform", value)
3243
+
3244
+ @property
3245
+ @pulumi.getter
3246
+ def resource(self) -> Optional[pulumi.Input[builtins.str]]:
3247
+ """
3248
+ The name of the resource in the source system. Maximum length is 4,000 characters.
3249
+ """
3250
+ return pulumi.get(self, "resource")
3251
+
3252
+ @resource.setter
3253
+ def resource(self, value: Optional[pulumi.Input[builtins.str]]):
3254
+ pulumi.set(self, "resource", value)
3255
+
3256
+ @property
3257
+ @pulumi.getter
3258
+ def system(self) -> Optional[pulumi.Input[builtins.str]]:
3259
+ """
3260
+ The name of the source system. Maximum length is 64 characters.
3261
+ """
3262
+ return pulumi.get(self, "system")
3263
+
3264
+ @system.setter
3265
+ def system(self, value: Optional[pulumi.Input[builtins.str]]):
3266
+ pulumi.set(self, "system", value)
3267
+
3268
+ @property
3269
+ @pulumi.getter(name="updateTime")
3270
+ def update_time(self) -> Optional[pulumi.Input[builtins.str]]:
3271
+ """
3272
+ The time when the resource was last updated in the source system.
3273
+ If the entry exists in the system and its EntrySource has updateTime populated,
3274
+ further updates to the EntrySource of the entry must provide incremental updates to its updateTime.
3275
+ """
3276
+ return pulumi.get(self, "update_time")
3277
+
3278
+ @update_time.setter
3279
+ def update_time(self, value: Optional[pulumi.Input[builtins.str]]):
3280
+ pulumi.set(self, "update_time", value)
3281
+
3282
+
3283
+ if not MYPY:
3284
+ class EntryEntrySourceAncestorArgsDict(TypedDict):
3285
+ name: NotRequired[pulumi.Input[builtins.str]]
3286
+ """
3287
+ The name of the ancestor resource.
3288
+ """
3289
+ type: NotRequired[pulumi.Input[builtins.str]]
3290
+ """
3291
+ The type of the ancestor resource.
3292
+ """
3293
+ elif False:
3294
+ EntryEntrySourceAncestorArgsDict: TypeAlias = Mapping[str, Any]
3295
+
3296
+ @pulumi.input_type
3297
+ class EntryEntrySourceAncestorArgs:
3298
+ def __init__(__self__, *,
3299
+ name: Optional[pulumi.Input[builtins.str]] = None,
3300
+ type: Optional[pulumi.Input[builtins.str]] = None):
3301
+ """
3302
+ :param pulumi.Input[builtins.str] name: The name of the ancestor resource.
3303
+ :param pulumi.Input[builtins.str] type: The type of the ancestor resource.
3304
+ """
3305
+ if name is not None:
3306
+ pulumi.set(__self__, "name", name)
3307
+ if type is not None:
3308
+ pulumi.set(__self__, "type", type)
3309
+
3310
+ @property
3311
+ @pulumi.getter
3312
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
3313
+ """
3314
+ The name of the ancestor resource.
3315
+ """
3316
+ return pulumi.get(self, "name")
3317
+
3318
+ @name.setter
3319
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
3320
+ pulumi.set(self, "name", value)
3321
+
3322
+ @property
3323
+ @pulumi.getter
3324
+ def type(self) -> Optional[pulumi.Input[builtins.str]]:
3325
+ """
3326
+ The type of the ancestor resource.
3327
+ """
3328
+ return pulumi.get(self, "type")
3329
+
3330
+ @type.setter
3331
+ def type(self, value: Optional[pulumi.Input[builtins.str]]):
3332
+ pulumi.set(self, "type", value)
3333
+
3334
+
2863
3335
  if not MYPY:
2864
3336
  class EntryGroupIamBindingConditionArgsDict(TypedDict):
2865
3337
  expression: pulumi.Input[builtins.str]