pulumiverse-scaleway 1.27.0a1744869119__py3-none-any.whl → 1.39.0a1764841480__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.
- pulumiverse_scaleway/__init__.py +109 -2
- pulumiverse_scaleway/_inputs.py +3936 -2603
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +4 -1
- pulumiverse_scaleway/account/get_availability_zones.py +12 -12
- pulumiverse_scaleway/account/get_project.py +28 -28
- pulumiverse_scaleway/account/get_projects.py +241 -0
- pulumiverse_scaleway/account/get_ssh_key.py +34 -34
- pulumiverse_scaleway/account/outputs.py +95 -0
- pulumiverse_scaleway/account/project.py +72 -71
- pulumiverse_scaleway/account/ssh_key.py +107 -106
- pulumiverse_scaleway/account_project.py +72 -71
- pulumiverse_scaleway/account_ssh_key.py +107 -106
- pulumiverse_scaleway/apple_silicon_server.py +334 -201
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +105 -51
- pulumiverse_scaleway/applesilicon/outputs.py +65 -33
- pulumiverse_scaleway/applesilicon/server.py +334 -201
- pulumiverse_scaleway/audittrail/__init__.py +10 -0
- pulumiverse_scaleway/audittrail/get_event.py +410 -0
- pulumiverse_scaleway/audittrail/outputs.py +234 -0
- pulumiverse_scaleway/autoscaling/__init__.py +13 -0
- pulumiverse_scaleway/autoscaling/_inputs.py +558 -0
- pulumiverse_scaleway/autoscaling/instance_group.py +807 -0
- pulumiverse_scaleway/autoscaling/instance_policy.py +634 -0
- pulumiverse_scaleway/autoscaling/instance_template.py +878 -0
- pulumiverse_scaleway/autoscaling/outputs.py +438 -0
- pulumiverse_scaleway/baremetal_server.py +622 -524
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +19 -15
- pulumiverse_scaleway/billing/get_invoices.py +25 -25
- pulumiverse_scaleway/billing/outputs.py +96 -96
- pulumiverse_scaleway/block/__init__.py +4 -1
- pulumiverse_scaleway/block/_inputs.py +125 -0
- pulumiverse_scaleway/block/get_snapshot.py +60 -37
- pulumiverse_scaleway/block/get_volume.py +38 -38
- pulumiverse_scaleway/block/outputs.py +139 -0
- pulumiverse_scaleway/block/snapshot.py +272 -98
- pulumiverse_scaleway/block/volume.py +145 -144
- pulumiverse_scaleway/block_snapshot.py +272 -98
- pulumiverse_scaleway/block_volume.py +145 -144
- pulumiverse_scaleway/cockpit.py +71 -49
- pulumiverse_scaleway/cockpit_alert_manager.py +66 -65
- pulumiverse_scaleway/cockpit_grafana_user.py +72 -113
- pulumiverse_scaleway/cockpit_source.py +142 -141
- pulumiverse_scaleway/cockpit_token.py +84 -83
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -2
- pulumiverse_scaleway/config/vars.py +11 -11
- pulumiverse_scaleway/container.py +653 -424
- pulumiverse_scaleway/container_cron.py +97 -96
- pulumiverse_scaleway/container_domain.py +63 -62
- pulumiverse_scaleway/container_namespace.py +251 -172
- pulumiverse_scaleway/container_token.py +97 -96
- pulumiverse_scaleway/container_trigger.py +77 -76
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +87 -87
- pulumiverse_scaleway/containers/container.py +653 -424
- pulumiverse_scaleway/containers/cron.py +97 -96
- pulumiverse_scaleway/containers/domain.py +63 -62
- pulumiverse_scaleway/containers/get_container.py +117 -73
- pulumiverse_scaleway/containers/get_namespace.py +56 -45
- pulumiverse_scaleway/containers/namespace.py +251 -172
- pulumiverse_scaleway/containers/outputs.py +84 -84
- pulumiverse_scaleway/containers/token.py +97 -96
- pulumiverse_scaleway/containers/trigger.py +77 -76
- pulumiverse_scaleway/database.py +81 -80
- pulumiverse_scaleway/database_acl.py +148 -39
- pulumiverse_scaleway/database_backup.py +124 -123
- pulumiverse_scaleway/database_instance.py +531 -436
- pulumiverse_scaleway/database_privilege.py +88 -87
- pulumiverse_scaleway/database_read_replica.py +60 -59
- pulumiverse_scaleway/database_user.py +171 -98
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +364 -216
- pulumiverse_scaleway/databases/acl.py +148 -39
- pulumiverse_scaleway/databases/database.py +81 -80
- pulumiverse_scaleway/databases/database_backup.py +124 -123
- pulumiverse_scaleway/databases/get_acl.py +17 -17
- pulumiverse_scaleway/databases/get_database.py +26 -26
- pulumiverse_scaleway/databases/get_database_backup.py +46 -46
- pulumiverse_scaleway/databases/get_instance.py +95 -73
- pulumiverse_scaleway/databases/get_privilege.py +30 -30
- pulumiverse_scaleway/databases/instance.py +531 -436
- pulumiverse_scaleway/databases/outputs.py +419 -232
- pulumiverse_scaleway/databases/privilege.py +88 -87
- pulumiverse_scaleway/databases/read_replica.py +60 -59
- pulumiverse_scaleway/databases/serverless_database.py +97 -96
- pulumiverse_scaleway/databases/snapshot.py +127 -126
- pulumiverse_scaleway/databases/user.py +171 -98
- pulumiverse_scaleway/datawarehouse/__init__.py +13 -0
- pulumiverse_scaleway/datawarehouse/_inputs.py +149 -0
- pulumiverse_scaleway/datawarehouse/database.py +338 -0
- pulumiverse_scaleway/datawarehouse/deployment.py +821 -0
- pulumiverse_scaleway/datawarehouse/outputs.py +113 -0
- pulumiverse_scaleway/datawarehouse/user.py +451 -0
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +661 -661
- pulumiverse_scaleway/domain/get_record.py +53 -64
- pulumiverse_scaleway/domain/get_zone.py +36 -30
- pulumiverse_scaleway/domain/outputs.py +501 -501
- pulumiverse_scaleway/domain/record.py +156 -202
- pulumiverse_scaleway/domain/registration.py +123 -122
- pulumiverse_scaleway/domain/zone.py +108 -107
- pulumiverse_scaleway/domain_record.py +156 -202
- pulumiverse_scaleway/domain_zone.py +108 -107
- pulumiverse_scaleway/edge_services_backend_stage.py +61 -60
- pulumiverse_scaleway/edge_services_cache_stage.py +283 -111
- pulumiverse_scaleway/edge_services_dns_stage.py +169 -140
- pulumiverse_scaleway/edge_services_head_stage.py +37 -36
- pulumiverse_scaleway/edge_services_pipeline.py +125 -82
- pulumiverse_scaleway/edge_services_plan.py +37 -36
- pulumiverse_scaleway/edge_services_route_stage.py +75 -74
- pulumiverse_scaleway/edge_services_tls_stage.py +219 -124
- pulumiverse_scaleway/edge_services_waf_stage.py +106 -105
- pulumiverse_scaleway/elasticmetal/__init__.py +3 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +203 -129
- pulumiverse_scaleway/elasticmetal/get_ip.py +70 -54
- pulumiverse_scaleway/elasticmetal/get_ips.py +31 -31
- pulumiverse_scaleway/elasticmetal/get_offer.py +43 -41
- pulumiverse_scaleway/elasticmetal/get_option.py +24 -24
- pulumiverse_scaleway/elasticmetal/get_os.py +28 -28
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +215 -0
- pulumiverse_scaleway/elasticmetal/get_server.py +101 -68
- pulumiverse_scaleway/elasticmetal/ip.py +170 -169
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +107 -106
- pulumiverse_scaleway/elasticmetal/outputs.py +379 -287
- pulumiverse_scaleway/elasticmetal/server.py +622 -524
- pulumiverse_scaleway/file_filesystem.py +555 -0
- pulumiverse_scaleway/flexible_ip.py +170 -169
- pulumiverse_scaleway/flexible_ip_mac_address.py +107 -106
- pulumiverse_scaleway/function.py +457 -348
- pulumiverse_scaleway/function_cron.py +97 -96
- pulumiverse_scaleway/function_domain.py +63 -62
- pulumiverse_scaleway/function_namespace.py +234 -155
- pulumiverse_scaleway/function_token.py +97 -96
- pulumiverse_scaleway/function_trigger.py +77 -76
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +50 -50
- pulumiverse_scaleway/functions/cron.py +97 -96
- pulumiverse_scaleway/functions/domain.py +63 -62
- pulumiverse_scaleway/functions/function.py +457 -348
- pulumiverse_scaleway/functions/get_function.py +93 -71
- pulumiverse_scaleway/functions/get_namespace.py +54 -43
- pulumiverse_scaleway/functions/namespace.py +234 -155
- pulumiverse_scaleway/functions/outputs.py +34 -34
- pulumiverse_scaleway/functions/token.py +97 -96
- pulumiverse_scaleway/functions/trigger.py +77 -76
- pulumiverse_scaleway/get_account_project.py +28 -28
- pulumiverse_scaleway/get_account_ssh_key.py +34 -34
- pulumiverse_scaleway/get_availability_zones.py +12 -12
- pulumiverse_scaleway/get_baremetal_offer.py +43 -41
- pulumiverse_scaleway/get_baremetal_option.py +24 -24
- pulumiverse_scaleway/get_baremetal_os.py +28 -28
- pulumiverse_scaleway/get_baremetal_server.py +101 -68
- pulumiverse_scaleway/get_billing_consumptions.py +19 -15
- pulumiverse_scaleway/get_billing_invoices.py +25 -25
- pulumiverse_scaleway/get_block_snapshot.py +60 -37
- pulumiverse_scaleway/get_block_volume.py +38 -38
- pulumiverse_scaleway/get_cockpit.py +16 -16
- pulumiverse_scaleway/get_cockpit_source.py +88 -45
- pulumiverse_scaleway/get_config.py +24 -24
- pulumiverse_scaleway/get_container.py +117 -73
- pulumiverse_scaleway/get_container_namespace.py +56 -45
- pulumiverse_scaleway/get_database.py +26 -26
- pulumiverse_scaleway/get_database_acl.py +17 -17
- pulumiverse_scaleway/get_database_backup.py +46 -46
- pulumiverse_scaleway/get_database_instance.py +95 -73
- pulumiverse_scaleway/get_database_privilege.py +30 -30
- pulumiverse_scaleway/get_domain_record.py +53 -64
- pulumiverse_scaleway/get_domain_zone.py +36 -30
- pulumiverse_scaleway/get_flexible_ip.py +70 -54
- pulumiverse_scaleway/get_flexible_ips.py +31 -31
- pulumiverse_scaleway/get_function.py +93 -71
- pulumiverse_scaleway/get_function_namespace.py +54 -43
- pulumiverse_scaleway/get_iam_api_key.py +28 -28
- pulumiverse_scaleway/get_iam_application.py +32 -32
- pulumiverse_scaleway/get_iam_group.py +36 -36
- pulumiverse_scaleway/get_iam_ssh_key.py +34 -34
- pulumiverse_scaleway/get_iam_user.py +30 -30
- pulumiverse_scaleway/get_instance_image.py +58 -58
- pulumiverse_scaleway/get_instance_ip.py +42 -30
- pulumiverse_scaleway/get_instance_placement_group.py +38 -38
- pulumiverse_scaleway/get_instance_private_nic.py +53 -41
- pulumiverse_scaleway/get_instance_security_group.py +46 -46
- pulumiverse_scaleway/get_instance_server.py +108 -145
- pulumiverse_scaleway/get_instance_servers.py +31 -31
- pulumiverse_scaleway/get_instance_snapshot.py +41 -41
- pulumiverse_scaleway/get_instance_volume.py +42 -42
- pulumiverse_scaleway/get_iot_device.py +46 -46
- pulumiverse_scaleway/get_iot_hub.py +60 -60
- pulumiverse_scaleway/get_ipam_ip.py +65 -65
- pulumiverse_scaleway/get_ipam_ips.py +56 -56
- pulumiverse_scaleway/get_k8s_version.py +34 -23
- pulumiverse_scaleway/get_kubernetes_cluster.py +98 -65
- pulumiverse_scaleway/get_kubernetes_node_pool.py +86 -75
- pulumiverse_scaleway/get_lb_acls.py +29 -29
- pulumiverse_scaleway/get_lb_backend.py +75 -75
- pulumiverse_scaleway/get_lb_backends.py +29 -29
- pulumiverse_scaleway/get_lb_frontend.py +76 -43
- pulumiverse_scaleway/get_lb_frontends.py +29 -29
- pulumiverse_scaleway/get_lb_ips.py +37 -37
- pulumiverse_scaleway/get_lb_route.py +36 -25
- pulumiverse_scaleway/get_lb_routes.py +23 -23
- pulumiverse_scaleway/get_lbs.py +31 -31
- pulumiverse_scaleway/get_loadbalancer.py +78 -56
- pulumiverse_scaleway/get_loadbalancer_certificate.py +96 -36
- pulumiverse_scaleway/get_loadbalancer_ip.py +40 -40
- pulumiverse_scaleway/get_marketplace_image.py +28 -28
- pulumiverse_scaleway/get_mnq_sns.py +18 -18
- pulumiverse_scaleway/get_mnq_sqs.py +18 -18
- pulumiverse_scaleway/get_mongo_db_instance.py +110 -55
- pulumiverse_scaleway/get_object_bucket.py +35 -35
- pulumiverse_scaleway/get_object_bucket_policy.py +22 -22
- pulumiverse_scaleway/get_redis_cluster.py +65 -54
- pulumiverse_scaleway/get_registry_image.py +48 -48
- pulumiverse_scaleway/get_registry_image_tag.py +44 -44
- pulumiverse_scaleway/get_registry_namespace.py +36 -36
- pulumiverse_scaleway/get_secret.py +58 -58
- pulumiverse_scaleway/get_secret_version.py +46 -46
- pulumiverse_scaleway/get_tem_domain.py +103 -70
- pulumiverse_scaleway/get_vpc.py +58 -47
- pulumiverse_scaleway/get_vpc_gateway_network.py +55 -44
- pulumiverse_scaleway/get_vpc_private_network.py +58 -47
- pulumiverse_scaleway/get_vpc_public_gateway.py +56 -56
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +44 -44
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +44 -44
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +24 -24
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +32 -32
- pulumiverse_scaleway/get_vpc_routes.py +47 -47
- pulumiverse_scaleway/get_vpcs.py +31 -31
- pulumiverse_scaleway/get_web_host_offer.py +34 -34
- pulumiverse_scaleway/get_webhosting.py +58 -58
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +117 -75
- pulumiverse_scaleway/hosting/get_hosting.py +58 -58
- pulumiverse_scaleway/hosting/get_offer.py +34 -34
- pulumiverse_scaleway/hosting/hosting.py +213 -212
- pulumiverse_scaleway/hosting/outputs.py +276 -192
- pulumiverse_scaleway/iam/__init__.py +3 -1
- pulumiverse_scaleway/iam/_inputs.py +26 -26
- pulumiverse_scaleway/iam/api_key.py +142 -141
- pulumiverse_scaleway/iam/application.py +98 -97
- pulumiverse_scaleway/iam/get_api_key.py +28 -28
- pulumiverse_scaleway/iam/get_application.py +32 -32
- pulumiverse_scaleway/iam/get_group.py +36 -36
- pulumiverse_scaleway/iam/get_policy.py +293 -0
- pulumiverse_scaleway/iam/get_ssh_key.py +34 -34
- pulumiverse_scaleway/iam/get_user.py +30 -30
- pulumiverse_scaleway/iam/group.py +140 -139
- pulumiverse_scaleway/iam/group_membership.py +54 -53
- pulumiverse_scaleway/iam/outputs.py +70 -18
- pulumiverse_scaleway/iam/policy.py +169 -168
- pulumiverse_scaleway/iam/ssh_key.py +107 -106
- pulumiverse_scaleway/iam/user.py +598 -134
- pulumiverse_scaleway/iam_api_key.py +142 -141
- pulumiverse_scaleway/iam_application.py +98 -97
- pulumiverse_scaleway/iam_group.py +140 -139
- pulumiverse_scaleway/iam_group_membership.py +54 -53
- pulumiverse_scaleway/iam_policy.py +169 -168
- pulumiverse_scaleway/iam_ssh_key.py +107 -106
- pulumiverse_scaleway/iam_user.py +598 -134
- pulumiverse_scaleway/inference/__init__.py +4 -1
- pulumiverse_scaleway/inference/_inputs.py +232 -50
- pulumiverse_scaleway/inference/deployment.py +319 -220
- pulumiverse_scaleway/inference/get_model.py +299 -0
- pulumiverse_scaleway/inference/model.py +684 -0
- pulumiverse_scaleway/inference/outputs.py +250 -34
- pulumiverse_scaleway/inference_deployment.py +319 -220
- pulumiverse_scaleway/instance/__init__.py +3 -1
- pulumiverse_scaleway/instance/_inputs.py +650 -437
- pulumiverse_scaleway/instance/get_image.py +58 -58
- pulumiverse_scaleway/instance/get_ip.py +42 -30
- pulumiverse_scaleway/instance/get_placement_group.py +38 -38
- pulumiverse_scaleway/instance/get_private_nic.py +53 -41
- pulumiverse_scaleway/instance/get_security_group.py +46 -46
- pulumiverse_scaleway/instance/get_server.py +108 -145
- pulumiverse_scaleway/instance/get_server_type.py +271 -0
- pulumiverse_scaleway/instance/get_servers.py +31 -31
- pulumiverse_scaleway/instance/get_snapshot.py +41 -41
- pulumiverse_scaleway/instance/get_volume.py +42 -42
- pulumiverse_scaleway/instance/image.py +260 -205
- pulumiverse_scaleway/instance/ip.py +116 -115
- pulumiverse_scaleway/instance/ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/instance/outputs.py +981 -548
- pulumiverse_scaleway/instance/placement_group.py +123 -122
- pulumiverse_scaleway/instance/private_nic.py +163 -113
- pulumiverse_scaleway/instance/security_group.py +188 -187
- pulumiverse_scaleway/instance/security_group_rules.py +42 -41
- pulumiverse_scaleway/instance/server.py +590 -562
- pulumiverse_scaleway/instance/snapshot.py +150 -157
- pulumiverse_scaleway/instance/user_data.py +75 -74
- pulumiverse_scaleway/instance/volume.py +174 -159
- pulumiverse_scaleway/instance_image.py +260 -205
- pulumiverse_scaleway/instance_ip.py +116 -115
- pulumiverse_scaleway/instance_ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/instance_placement_group.py +123 -122
- pulumiverse_scaleway/instance_private_nic.py +163 -113
- pulumiverse_scaleway/instance_security_group.py +188 -187
- pulumiverse_scaleway/instance_security_group_rules.py +42 -41
- pulumiverse_scaleway/instance_server.py +590 -562
- pulumiverse_scaleway/instance_snapshot.py +150 -157
- pulumiverse_scaleway/instance_user_data.py +75 -74
- pulumiverse_scaleway/instance_volume.py +174 -159
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +119 -119
- pulumiverse_scaleway/iot/device.py +156 -193
- pulumiverse_scaleway/iot/get_device.py +46 -46
- pulumiverse_scaleway/iot/get_hub.py +60 -60
- pulumiverse_scaleway/iot/hub.py +259 -258
- pulumiverse_scaleway/iot/network.py +115 -114
- pulumiverse_scaleway/iot/outputs.py +107 -107
- pulumiverse_scaleway/iot/route.py +109 -108
- pulumiverse_scaleway/iot_device.py +156 -193
- pulumiverse_scaleway/iot_hub.py +259 -258
- pulumiverse_scaleway/iot_network.py +115 -114
- pulumiverse_scaleway/iot_route.py +109 -108
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +108 -108
- pulumiverse_scaleway/ipam/get_ip.py +65 -65
- pulumiverse_scaleway/ipam/get_ips.py +56 -56
- pulumiverse_scaleway/ipam/ip.py +160 -131
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +141 -70
- pulumiverse_scaleway/ipam/outputs.py +122 -122
- pulumiverse_scaleway/ipam_ip.py +160 -131
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +141 -70
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +127 -14
- pulumiverse_scaleway/job/definition.py +283 -175
- pulumiverse_scaleway/job/outputs.py +98 -10
- pulumiverse_scaleway/job_definition.py +283 -175
- pulumiverse_scaleway/key_manager_key.py +939 -0
- pulumiverse_scaleway/kubernetes/__init__.py +3 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +388 -185
- pulumiverse_scaleway/kubernetes/acl.py +447 -0
- pulumiverse_scaleway/kubernetes/cluster.py +594 -307
- pulumiverse_scaleway/kubernetes/get_cluster.py +98 -65
- pulumiverse_scaleway/kubernetes/get_pool.py +86 -75
- pulumiverse_scaleway/kubernetes/get_version.py +34 -23
- pulumiverse_scaleway/kubernetes/outputs.py +444 -250
- pulumiverse_scaleway/kubernetes/pool.py +427 -365
- pulumiverse_scaleway/kubernetes_cluster.py +594 -307
- pulumiverse_scaleway/kubernetes_node_pool.py +427 -365
- pulumiverse_scaleway/loadbalancer.py +329 -246
- pulumiverse_scaleway/loadbalancer_acl.py +102 -101
- pulumiverse_scaleway/loadbalancer_backend.py +534 -487
- pulumiverse_scaleway/loadbalancer_certificate.py +97 -96
- pulumiverse_scaleway/loadbalancer_frontend.py +271 -167
- pulumiverse_scaleway/loadbalancer_ip.py +124 -123
- pulumiverse_scaleway/loadbalancer_route.py +244 -119
- pulumiverse_scaleway/loadbalancers/__init__.py +3 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +367 -273
- pulumiverse_scaleway/loadbalancers/acl.py +102 -101
- pulumiverse_scaleway/loadbalancers/backend.py +534 -487
- pulumiverse_scaleway/loadbalancers/certificate.py +97 -96
- pulumiverse_scaleway/loadbalancers/frontend.py +271 -167
- pulumiverse_scaleway/loadbalancers/get_acls.py +29 -29
- pulumiverse_scaleway/loadbalancers/get_backend.py +75 -75
- pulumiverse_scaleway/loadbalancers/get_backends.py +29 -29
- pulumiverse_scaleway/loadbalancers/get_certificate.py +96 -36
- pulumiverse_scaleway/loadbalancers/get_frontend.py +76 -43
- pulumiverse_scaleway/loadbalancers/get_frontends.py +29 -29
- pulumiverse_scaleway/loadbalancers/get_ip.py +40 -40
- pulumiverse_scaleway/loadbalancers/get_ips.py +37 -37
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +78 -56
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +31 -31
- pulumiverse_scaleway/loadbalancers/get_route.py +36 -25
- pulumiverse_scaleway/loadbalancers/get_routes.py +23 -23
- pulumiverse_scaleway/loadbalancers/ip.py +124 -123
- pulumiverse_scaleway/loadbalancers/load_balancer.py +329 -246
- pulumiverse_scaleway/loadbalancers/outputs.py +870 -716
- pulumiverse_scaleway/loadbalancers/private_network.py +505 -0
- pulumiverse_scaleway/loadbalancers/route.py +244 -119
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +90 -38
- pulumiverse_scaleway/mnq/get_sns.py +18 -18
- pulumiverse_scaleway/mnq/get_sqs.py +18 -18
- pulumiverse_scaleway/mnq/nats_account.py +63 -62
- pulumiverse_scaleway/mnq/nats_credentials.py +63 -62
- pulumiverse_scaleway/mnq/outputs.py +73 -26
- pulumiverse_scaleway/mnq/sns.py +46 -45
- pulumiverse_scaleway/mnq/sns_credentials.py +82 -81
- pulumiverse_scaleway/mnq/sns_topic.py +174 -173
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +182 -181
- pulumiverse_scaleway/mnq/sqs.py +46 -45
- pulumiverse_scaleway/mnq/sqs_credentials.py +82 -81
- pulumiverse_scaleway/mnq/sqs_queue.py +392 -232
- pulumiverse_scaleway/mnq_nats_account.py +63 -62
- pulumiverse_scaleway/mnq_nats_credentials.py +63 -62
- pulumiverse_scaleway/mnq_sns.py +46 -45
- pulumiverse_scaleway/mnq_sns_credentials.py +82 -81
- pulumiverse_scaleway/mnq_sns_topic.py +174 -173
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +182 -181
- pulumiverse_scaleway/mnq_sqs.py +46 -45
- pulumiverse_scaleway/mnq_sqs_credentials.py +82 -81
- pulumiverse_scaleway/mnq_sqs_queue.py +392 -232
- pulumiverse_scaleway/mongo_db_instance.py +569 -268
- pulumiverse_scaleway/mongo_db_snapshot.py +127 -126
- pulumiverse_scaleway/mongodb/__init__.py +3 -1
- pulumiverse_scaleway/mongodb/_inputs.py +178 -51
- pulumiverse_scaleway/mongodb/get_instance.py +110 -55
- pulumiverse_scaleway/mongodb/instance.py +569 -268
- pulumiverse_scaleway/mongodb/outputs.py +192 -68
- pulumiverse_scaleway/mongodb/snapshot.py +127 -126
- pulumiverse_scaleway/mongodb/user.py +507 -0
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +209 -155
- pulumiverse_scaleway/network/acl.py +100 -101
- pulumiverse_scaleway/network/gateway_network.py +228 -180
- pulumiverse_scaleway/network/get_gateway_network.py +55 -44
- pulumiverse_scaleway/network/get_private_network.py +58 -47
- pulumiverse_scaleway/network/get_public_gateway.py +56 -56
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +44 -44
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +44 -44
- pulumiverse_scaleway/network/get_public_gateway_ip.py +24 -24
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +32 -32
- pulumiverse_scaleway/network/get_routes.py +47 -47
- pulumiverse_scaleway/network/get_vpc.py +58 -47
- pulumiverse_scaleway/network/get_vpcs.py +31 -31
- pulumiverse_scaleway/network/outputs.py +338 -270
- pulumiverse_scaleway/network/private_network.py +203 -155
- pulumiverse_scaleway/network/public_gateway.py +261 -260
- pulumiverse_scaleway/network/public_gateway_dhcp.py +285 -284
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +107 -106
- pulumiverse_scaleway/network/public_gateway_ip.py +107 -106
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +132 -131
- pulumiverse_scaleway/network/route.py +230 -141
- pulumiverse_scaleway/network/vpc.py +172 -124
- pulumiverse_scaleway/object/__init__.py +3 -1
- pulumiverse_scaleway/object/_inputs.py +202 -166
- pulumiverse_scaleway/object/bucket.py +162 -148
- pulumiverse_scaleway/object/bucket_acl.py +97 -94
- pulumiverse_scaleway/object/bucket_lock_configuration.py +57 -56
- pulumiverse_scaleway/object/bucket_policy.py +71 -134
- pulumiverse_scaleway/object/bucket_website_configuration.py +104 -85
- pulumiverse_scaleway/object/get.py +290 -0
- pulumiverse_scaleway/object/get_bucket.py +35 -35
- pulumiverse_scaleway/object/get_bucket_policy.py +22 -22
- pulumiverse_scaleway/object/item.py +301 -223
- pulumiverse_scaleway/object/outputs.py +210 -166
- pulumiverse_scaleway/object_bucket.py +162 -148
- pulumiverse_scaleway/object_bucket_acl.py +97 -94
- pulumiverse_scaleway/object_bucket_lock_configuration.py +57 -56
- pulumiverse_scaleway/object_bucket_policy.py +71 -134
- pulumiverse_scaleway/object_bucket_website_configuration.py +104 -85
- pulumiverse_scaleway/object_item.py +301 -223
- pulumiverse_scaleway/observability/__init__.py +4 -2
- pulumiverse_scaleway/observability/_inputs.py +106 -106
- pulumiverse_scaleway/observability/alert_manager.py +66 -65
- pulumiverse_scaleway/observability/cockpit.py +71 -49
- pulumiverse_scaleway/observability/get_grafana.py +103 -0
- pulumiverse_scaleway/observability/get_instance.py +16 -16
- pulumiverse_scaleway/observability/get_source.py +88 -45
- pulumiverse_scaleway/observability/get_sources.py +375 -0
- pulumiverse_scaleway/observability/grafana_user.py +72 -113
- pulumiverse_scaleway/observability/outputs.py +241 -101
- pulumiverse_scaleway/observability/source.py +142 -141
- pulumiverse_scaleway/observability/token.py +84 -83
- pulumiverse_scaleway/outputs.py +5235 -3665
- pulumiverse_scaleway/provider.py +107 -82
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +127 -126
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +163 -69
- pulumiverse_scaleway/redis/cluster.py +273 -225
- pulumiverse_scaleway/redis/get_cluster.py +65 -54
- pulumiverse_scaleway/redis/outputs.py +199 -87
- pulumiverse_scaleway/redis_cluster.py +273 -225
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +48 -48
- pulumiverse_scaleway/registry/get_image_tag.py +44 -44
- pulumiverse_scaleway/registry/get_namespace.py +36 -36
- pulumiverse_scaleway/registry/namespace.py +106 -105
- pulumiverse_scaleway/registry_namespace.py +106 -105
- pulumiverse_scaleway/sdb_database.py +97 -96
- pulumiverse_scaleway/secret.py +188 -179
- pulumiverse_scaleway/secret_version.py +107 -106
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +63 -63
- pulumiverse_scaleway/secrets/get_secret.py +58 -58
- pulumiverse_scaleway/secrets/get_version.py +46 -46
- pulumiverse_scaleway/secrets/outputs.py +84 -84
- pulumiverse_scaleway/secrets/secret.py +188 -179
- pulumiverse_scaleway/secrets/version.py +107 -106
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +33 -33
- pulumiverse_scaleway/tem/blocked_list.py +105 -104
- pulumiverse_scaleway/tem/domain.py +384 -257
- pulumiverse_scaleway/tem/domain_validation.py +63 -62
- pulumiverse_scaleway/tem/get_domain.py +103 -70
- pulumiverse_scaleway/tem/get_offer_subscription.py +34 -34
- pulumiverse_scaleway/tem/outputs.py +44 -44
- pulumiverse_scaleway/tem/webhook.py +132 -131
- pulumiverse_scaleway/tem_domain.py +384 -257
- pulumiverse_scaleway/tem_domain_validation.py +63 -62
- pulumiverse_scaleway/tem_webhook.py +132 -131
- pulumiverse_scaleway/vpc.py +172 -124
- pulumiverse_scaleway/vpc_gateway_network.py +228 -180
- pulumiverse_scaleway/vpc_private_network.py +203 -155
- pulumiverse_scaleway/vpc_public_gateway.py +261 -260
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +285 -284
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +107 -106
- pulumiverse_scaleway/vpc_public_gateway_ip.py +107 -106
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +132 -131
- pulumiverse_scaleway/vpc_route.py +230 -141
- pulumiverse_scaleway/webhosting.py +213 -212
- {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.39.0a1764841480.dist-info/RECORD +513 -0
- {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/WHEEL +1 -1
- pulumiverse_scaleway/get_cockpit_plan.py +0 -129
- pulumiverse_scaleway/observability/get_plan.py +0 -125
- pulumiverse_scaleway-1.27.0a1744869119.dist-info/RECORD +0 -483
- {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -28,7 +28,10 @@ class GetFunctionNamespaceResult:
|
|
|
28
28
|
"""
|
|
29
29
|
A collection of values returned by getFunctionNamespace.
|
|
30
30
|
"""
|
|
31
|
-
def __init__(__self__, description=None, environment_variables=None, id=None, name=None, namespace_id=None, organization_id=None, project_id=None, region=None, registry_endpoint=None, registry_namespace_id=None, secret_environment_variables=None, tags=None):
|
|
31
|
+
def __init__(__self__, activate_vpc_integration=None, description=None, environment_variables=None, id=None, name=None, namespace_id=None, organization_id=None, project_id=None, region=None, registry_endpoint=None, registry_namespace_id=None, secret_environment_variables=None, tags=None):
|
|
32
|
+
if activate_vpc_integration and not isinstance(activate_vpc_integration, bool):
|
|
33
|
+
raise TypeError("Expected argument 'activate_vpc_integration' to be a bool")
|
|
34
|
+
pulumi.set(__self__, "activate_vpc_integration", activate_vpc_integration)
|
|
32
35
|
if description and not isinstance(description, str):
|
|
33
36
|
raise TypeError("Expected argument 'description' to be a str")
|
|
34
37
|
pulumi.set(__self__, "description", description)
|
|
@@ -66,82 +69,87 @@ class GetFunctionNamespaceResult:
|
|
|
66
69
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
67
70
|
pulumi.set(__self__, "tags", tags)
|
|
68
71
|
|
|
69
|
-
@property
|
|
72
|
+
@_builtins.property
|
|
73
|
+
@pulumi.getter(name="activateVpcIntegration")
|
|
74
|
+
def activate_vpc_integration(self) -> _builtins.bool:
|
|
75
|
+
return pulumi.get(self, "activate_vpc_integration")
|
|
76
|
+
|
|
77
|
+
@_builtins.property
|
|
70
78
|
@pulumi.getter
|
|
71
|
-
def description(self) -> str:
|
|
79
|
+
def description(self) -> _builtins.str:
|
|
72
80
|
"""
|
|
73
81
|
The description of the namespace.
|
|
74
82
|
"""
|
|
75
83
|
return pulumi.get(self, "description")
|
|
76
84
|
|
|
77
|
-
@property
|
|
85
|
+
@_builtins.property
|
|
78
86
|
@pulumi.getter(name="environmentVariables")
|
|
79
|
-
def environment_variables(self) -> Mapping[str, str]:
|
|
87
|
+
def environment_variables(self) -> Mapping[str, _builtins.str]:
|
|
80
88
|
"""
|
|
81
89
|
The environment variables of the namespace.
|
|
82
90
|
"""
|
|
83
91
|
return pulumi.get(self, "environment_variables")
|
|
84
92
|
|
|
85
|
-
@property
|
|
93
|
+
@_builtins.property
|
|
86
94
|
@pulumi.getter
|
|
87
|
-
def id(self) -> str:
|
|
95
|
+
def id(self) -> _builtins.str:
|
|
88
96
|
"""
|
|
89
97
|
The provider-assigned unique ID for this managed resource.
|
|
90
98
|
"""
|
|
91
99
|
return pulumi.get(self, "id")
|
|
92
100
|
|
|
93
|
-
@property
|
|
101
|
+
@_builtins.property
|
|
94
102
|
@pulumi.getter
|
|
95
|
-
def name(self) -> Optional[str]:
|
|
103
|
+
def name(self) -> Optional[_builtins.str]:
|
|
96
104
|
return pulumi.get(self, "name")
|
|
97
105
|
|
|
98
|
-
@property
|
|
106
|
+
@_builtins.property
|
|
99
107
|
@pulumi.getter(name="namespaceId")
|
|
100
|
-
def namespace_id(self) -> Optional[str]:
|
|
108
|
+
def namespace_id(self) -> Optional[_builtins.str]:
|
|
101
109
|
return pulumi.get(self, "namespace_id")
|
|
102
110
|
|
|
103
|
-
@property
|
|
111
|
+
@_builtins.property
|
|
104
112
|
@pulumi.getter(name="organizationId")
|
|
105
|
-
def organization_id(self) -> str:
|
|
113
|
+
def organization_id(self) -> _builtins.str:
|
|
106
114
|
"""
|
|
107
115
|
The unique identifier of the organization with which the namespace is associated.
|
|
108
116
|
"""
|
|
109
117
|
return pulumi.get(self, "organization_id")
|
|
110
118
|
|
|
111
|
-
@property
|
|
119
|
+
@_builtins.property
|
|
112
120
|
@pulumi.getter(name="projectId")
|
|
113
|
-
def project_id(self) -> Optional[str]:
|
|
121
|
+
def project_id(self) -> Optional[_builtins.str]:
|
|
114
122
|
return pulumi.get(self, "project_id")
|
|
115
123
|
|
|
116
|
-
@property
|
|
124
|
+
@_builtins.property
|
|
117
125
|
@pulumi.getter
|
|
118
|
-
def region(self) -> Optional[str]:
|
|
126
|
+
def region(self) -> Optional[_builtins.str]:
|
|
119
127
|
return pulumi.get(self, "region")
|
|
120
128
|
|
|
121
|
-
@property
|
|
129
|
+
@_builtins.property
|
|
122
130
|
@pulumi.getter(name="registryEndpoint")
|
|
123
|
-
def registry_endpoint(self) -> str:
|
|
131
|
+
def registry_endpoint(self) -> _builtins.str:
|
|
124
132
|
"""
|
|
125
133
|
The registry endpoint of the namespace.
|
|
126
134
|
"""
|
|
127
135
|
return pulumi.get(self, "registry_endpoint")
|
|
128
136
|
|
|
129
|
-
@property
|
|
137
|
+
@_builtins.property
|
|
130
138
|
@pulumi.getter(name="registryNamespaceId")
|
|
131
|
-
def registry_namespace_id(self) -> str:
|
|
139
|
+
def registry_namespace_id(self) -> _builtins.str:
|
|
132
140
|
"""
|
|
133
141
|
The unique identifier of the registry namespace of the Serverless Functions namespace.
|
|
134
142
|
"""
|
|
135
143
|
return pulumi.get(self, "registry_namespace_id")
|
|
136
144
|
|
|
137
|
-
@property
|
|
145
|
+
@_builtins.property
|
|
138
146
|
@pulumi.getter(name="secretEnvironmentVariables")
|
|
139
|
-
def secret_environment_variables(self) -> Mapping[str, str]:
|
|
147
|
+
def secret_environment_variables(self) -> Mapping[str, _builtins.str]:
|
|
140
148
|
return pulumi.get(self, "secret_environment_variables")
|
|
141
149
|
|
|
142
|
-
@property
|
|
150
|
+
@_builtins.property
|
|
143
151
|
@pulumi.getter
|
|
144
|
-
def tags(self) -> Sequence[str]:
|
|
152
|
+
def tags(self) -> Sequence[_builtins.str]:
|
|
145
153
|
return pulumi.get(self, "tags")
|
|
146
154
|
|
|
147
155
|
|
|
@@ -151,6 +159,7 @@ class AwaitableGetFunctionNamespaceResult(GetFunctionNamespaceResult):
|
|
|
151
159
|
if False:
|
|
152
160
|
yield self
|
|
153
161
|
return GetFunctionNamespaceResult(
|
|
162
|
+
activate_vpc_integration=self.activate_vpc_integration,
|
|
154
163
|
description=self.description,
|
|
155
164
|
environment_variables=self.environment_variables,
|
|
156
165
|
id=self.id,
|
|
@@ -165,10 +174,10 @@ class AwaitableGetFunctionNamespaceResult(GetFunctionNamespaceResult):
|
|
|
165
174
|
tags=self.tags)
|
|
166
175
|
|
|
167
176
|
|
|
168
|
-
def get_function_namespace(name: Optional[str] = None,
|
|
169
|
-
namespace_id: Optional[str] = None,
|
|
170
|
-
project_id: Optional[str] = None,
|
|
171
|
-
region: Optional[str] = None,
|
|
177
|
+
def get_function_namespace(name: Optional[_builtins.str] = None,
|
|
178
|
+
namespace_id: Optional[_builtins.str] = None,
|
|
179
|
+
project_id: Optional[_builtins.str] = None,
|
|
180
|
+
region: Optional[_builtins.str] = None,
|
|
172
181
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFunctionNamespaceResult:
|
|
173
182
|
"""
|
|
174
183
|
The `functions.Namespace` data source is used to retrieve information about a Serverless Functions namespace.
|
|
@@ -176,10 +185,10 @@ def get_function_namespace(name: Optional[str] = None,
|
|
|
176
185
|
Refer to the Serverless Functions [product documentation](https://www.scaleway.com/en/docs/serverless/functions/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-functions/) for more information.
|
|
177
186
|
|
|
178
187
|
|
|
179
|
-
:param str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
180
|
-
:param str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
181
|
-
:param str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
|
182
|
-
:param str region: `region`) The region in which the namespace exists.
|
|
188
|
+
:param _builtins.str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
189
|
+
:param _builtins.str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
190
|
+
:param _builtins.str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
|
191
|
+
:param _builtins.str region: `region`) The region in which the namespace exists.
|
|
183
192
|
"""
|
|
184
193
|
pulumi.log.warn("""get_function_namespace is deprecated: scaleway.index/getfunctionnamespace.getFunctionNamespace has been deprecated in favor of scaleway.functions/getnamespace.getNamespace""")
|
|
185
194
|
__args__ = dict()
|
|
@@ -191,6 +200,7 @@ def get_function_namespace(name: Optional[str] = None,
|
|
|
191
200
|
__ret__ = pulumi.runtime.invoke('scaleway:index/getFunctionNamespace:getFunctionNamespace', __args__, opts=opts, typ=GetFunctionNamespaceResult).value
|
|
192
201
|
|
|
193
202
|
return AwaitableGetFunctionNamespaceResult(
|
|
203
|
+
activate_vpc_integration=pulumi.get(__ret__, 'activate_vpc_integration'),
|
|
194
204
|
description=pulumi.get(__ret__, 'description'),
|
|
195
205
|
environment_variables=pulumi.get(__ret__, 'environment_variables'),
|
|
196
206
|
id=pulumi.get(__ret__, 'id'),
|
|
@@ -203,10 +213,10 @@ def get_function_namespace(name: Optional[str] = None,
|
|
|
203
213
|
registry_namespace_id=pulumi.get(__ret__, 'registry_namespace_id'),
|
|
204
214
|
secret_environment_variables=pulumi.get(__ret__, 'secret_environment_variables'),
|
|
205
215
|
tags=pulumi.get(__ret__, 'tags'))
|
|
206
|
-
def get_function_namespace_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
207
|
-
namespace_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
208
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
209
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
216
|
+
def get_function_namespace_output(name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
217
|
+
namespace_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
218
|
+
project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
219
|
+
region: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
210
220
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFunctionNamespaceResult]:
|
|
211
221
|
"""
|
|
212
222
|
The `functions.Namespace` data source is used to retrieve information about a Serverless Functions namespace.
|
|
@@ -214,10 +224,10 @@ def get_function_namespace_output(name: Optional[pulumi.Input[Optional[str]]] =
|
|
|
214
224
|
Refer to the Serverless Functions [product documentation](https://www.scaleway.com/en/docs/serverless/functions/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-functions/) for more information.
|
|
215
225
|
|
|
216
226
|
|
|
217
|
-
:param str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
218
|
-
:param str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
219
|
-
:param str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
|
220
|
-
:param str region: `region`) The region in which the namespace exists.
|
|
227
|
+
:param _builtins.str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
228
|
+
:param _builtins.str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
|
229
|
+
:param _builtins.str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
|
230
|
+
:param _builtins.str region: `region`) The region in which the namespace exists.
|
|
221
231
|
"""
|
|
222
232
|
pulumi.log.warn("""get_function_namespace is deprecated: scaleway.index/getfunctionnamespace.getFunctionNamespace has been deprecated in favor of scaleway.functions/getnamespace.getNamespace""")
|
|
223
233
|
__args__ = dict()
|
|
@@ -228,6 +238,7 @@ def get_function_namespace_output(name: Optional[pulumi.Input[Optional[str]]] =
|
|
|
228
238
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
229
239
|
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getFunctionNamespace:getFunctionNamespace', __args__, opts=opts, typ=GetFunctionNamespaceResult)
|
|
230
240
|
return __ret__.apply(lambda __response__: GetFunctionNamespaceResult(
|
|
241
|
+
activate_vpc_integration=pulumi.get(__response__, 'activate_vpc_integration'),
|
|
231
242
|
description=pulumi.get(__response__, 'description'),
|
|
232
243
|
environment_variables=pulumi.get(__response__, 'environment_variables'),
|
|
233
244
|
id=pulumi.get(__response__, 'id'),
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -63,62 +63,62 @@ class GetIamApiKeyResult:
|
|
|
63
63
|
raise TypeError("Expected argument 'user_id' to be a str")
|
|
64
64
|
pulumi.set(__self__, "user_id", user_id)
|
|
65
65
|
|
|
66
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
67
67
|
@pulumi.getter(name="accessKey")
|
|
68
|
-
def access_key(self) -> str:
|
|
68
|
+
def access_key(self) -> _builtins.str:
|
|
69
69
|
return pulumi.get(self, "access_key")
|
|
70
70
|
|
|
71
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
72
72
|
@pulumi.getter(name="applicationId")
|
|
73
|
-
def application_id(self) -> str:
|
|
73
|
+
def application_id(self) -> _builtins.str:
|
|
74
74
|
return pulumi.get(self, "application_id")
|
|
75
75
|
|
|
76
|
-
@property
|
|
76
|
+
@_builtins.property
|
|
77
77
|
@pulumi.getter(name="createdAt")
|
|
78
|
-
def created_at(self) -> str:
|
|
78
|
+
def created_at(self) -> _builtins.str:
|
|
79
79
|
return pulumi.get(self, "created_at")
|
|
80
80
|
|
|
81
|
-
@property
|
|
81
|
+
@_builtins.property
|
|
82
82
|
@pulumi.getter(name="creationIp")
|
|
83
|
-
def creation_ip(self) -> str:
|
|
83
|
+
def creation_ip(self) -> _builtins.str:
|
|
84
84
|
return pulumi.get(self, "creation_ip")
|
|
85
85
|
|
|
86
|
-
@property
|
|
86
|
+
@_builtins.property
|
|
87
87
|
@pulumi.getter(name="defaultProjectId")
|
|
88
|
-
def default_project_id(self) -> str:
|
|
88
|
+
def default_project_id(self) -> _builtins.str:
|
|
89
89
|
return pulumi.get(self, "default_project_id")
|
|
90
90
|
|
|
91
|
-
@property
|
|
91
|
+
@_builtins.property
|
|
92
92
|
@pulumi.getter
|
|
93
|
-
def description(self) -> str:
|
|
93
|
+
def description(self) -> _builtins.str:
|
|
94
94
|
return pulumi.get(self, "description")
|
|
95
95
|
|
|
96
|
-
@property
|
|
96
|
+
@_builtins.property
|
|
97
97
|
@pulumi.getter
|
|
98
|
-
def editable(self) -> bool:
|
|
98
|
+
def editable(self) -> _builtins.bool:
|
|
99
99
|
return pulumi.get(self, "editable")
|
|
100
100
|
|
|
101
|
-
@property
|
|
101
|
+
@_builtins.property
|
|
102
102
|
@pulumi.getter(name="expiresAt")
|
|
103
|
-
def expires_at(self) -> str:
|
|
103
|
+
def expires_at(self) -> _builtins.str:
|
|
104
104
|
return pulumi.get(self, "expires_at")
|
|
105
105
|
|
|
106
|
-
@property
|
|
106
|
+
@_builtins.property
|
|
107
107
|
@pulumi.getter
|
|
108
|
-
def id(self) -> str:
|
|
108
|
+
def id(self) -> _builtins.str:
|
|
109
109
|
"""
|
|
110
110
|
The provider-assigned unique ID for this managed resource.
|
|
111
111
|
"""
|
|
112
112
|
return pulumi.get(self, "id")
|
|
113
113
|
|
|
114
|
-
@property
|
|
114
|
+
@_builtins.property
|
|
115
115
|
@pulumi.getter(name="updatedAt")
|
|
116
|
-
def updated_at(self) -> str:
|
|
116
|
+
def updated_at(self) -> _builtins.str:
|
|
117
117
|
return pulumi.get(self, "updated_at")
|
|
118
118
|
|
|
119
|
-
@property
|
|
119
|
+
@_builtins.property
|
|
120
120
|
@pulumi.getter(name="userId")
|
|
121
|
-
def user_id(self) -> str:
|
|
121
|
+
def user_id(self) -> _builtins.str:
|
|
122
122
|
return pulumi.get(self, "user_id")
|
|
123
123
|
|
|
124
124
|
|
|
@@ -141,7 +141,7 @@ class AwaitableGetIamApiKeyResult(GetIamApiKeyResult):
|
|
|
141
141
|
user_id=self.user_id)
|
|
142
142
|
|
|
143
143
|
|
|
144
|
-
def get_iam_api_key(access_key: Optional[str] = None,
|
|
144
|
+
def get_iam_api_key(access_key: Optional[_builtins.str] = None,
|
|
145
145
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetIamApiKeyResult:
|
|
146
146
|
"""
|
|
147
147
|
Gets information about an existing IAM API key. For more information, refer to the [IAM API documentation](https://www.scaleway.com/en/developers/api/iam/#api-keys-3665ae).
|
|
@@ -157,7 +157,7 @@ def get_iam_api_key(access_key: Optional[str] = None,
|
|
|
157
157
|
```
|
|
158
158
|
|
|
159
159
|
|
|
160
|
-
:param str access_key: The access key of the IAM API key which is also the ID of the API key.
|
|
160
|
+
:param _builtins.str access_key: The access key of the IAM API key which is also the ID of the API key.
|
|
161
161
|
"""
|
|
162
162
|
pulumi.log.warn("""get_iam_api_key is deprecated: scaleway.index/getiamapikey.getIamApiKey has been deprecated in favor of scaleway.iam/getapikey.getApiKey""")
|
|
163
163
|
__args__ = dict()
|
|
@@ -177,7 +177,7 @@ def get_iam_api_key(access_key: Optional[str] = None,
|
|
|
177
177
|
id=pulumi.get(__ret__, 'id'),
|
|
178
178
|
updated_at=pulumi.get(__ret__, 'updated_at'),
|
|
179
179
|
user_id=pulumi.get(__ret__, 'user_id'))
|
|
180
|
-
def get_iam_api_key_output(access_key: Optional[pulumi.Input[str]] = None,
|
|
180
|
+
def get_iam_api_key_output(access_key: Optional[pulumi.Input[_builtins.str]] = None,
|
|
181
181
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetIamApiKeyResult]:
|
|
182
182
|
"""
|
|
183
183
|
Gets information about an existing IAM API key. For more information, refer to the [IAM API documentation](https://www.scaleway.com/en/developers/api/iam/#api-keys-3665ae).
|
|
@@ -193,7 +193,7 @@ def get_iam_api_key_output(access_key: Optional[pulumi.Input[str]] = None,
|
|
|
193
193
|
```
|
|
194
194
|
|
|
195
195
|
|
|
196
|
-
:param str access_key: The access key of the IAM API key which is also the ID of the API key.
|
|
196
|
+
:param _builtins.str access_key: The access key of the IAM API key which is also the ID of the API key.
|
|
197
197
|
"""
|
|
198
198
|
pulumi.log.warn("""get_iam_api_key is deprecated: scaleway.index/getiamapikey.getIamApiKey has been deprecated in favor of scaleway.iam/getapikey.getApiKey""")
|
|
199
199
|
__args__ = dict()
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -57,52 +57,52 @@ class GetIamApplicationResult:
|
|
|
57
57
|
raise TypeError("Expected argument 'updated_at' to be a str")
|
|
58
58
|
pulumi.set(__self__, "updated_at", updated_at)
|
|
59
59
|
|
|
60
|
-
@property
|
|
60
|
+
@_builtins.property
|
|
61
61
|
@pulumi.getter(name="applicationId")
|
|
62
|
-
def application_id(self) -> Optional[str]:
|
|
62
|
+
def application_id(self) -> Optional[_builtins.str]:
|
|
63
63
|
return pulumi.get(self, "application_id")
|
|
64
64
|
|
|
65
|
-
@property
|
|
65
|
+
@_builtins.property
|
|
66
66
|
@pulumi.getter(name="createdAt")
|
|
67
|
-
def created_at(self) -> str:
|
|
67
|
+
def created_at(self) -> _builtins.str:
|
|
68
68
|
return pulumi.get(self, "created_at")
|
|
69
69
|
|
|
70
|
-
@property
|
|
70
|
+
@_builtins.property
|
|
71
71
|
@pulumi.getter
|
|
72
|
-
def description(self) -> str:
|
|
72
|
+
def description(self) -> _builtins.str:
|
|
73
73
|
return pulumi.get(self, "description")
|
|
74
74
|
|
|
75
|
-
@property
|
|
75
|
+
@_builtins.property
|
|
76
76
|
@pulumi.getter
|
|
77
|
-
def editable(self) -> bool:
|
|
77
|
+
def editable(self) -> _builtins.bool:
|
|
78
78
|
return pulumi.get(self, "editable")
|
|
79
79
|
|
|
80
|
-
@property
|
|
80
|
+
@_builtins.property
|
|
81
81
|
@pulumi.getter
|
|
82
|
-
def id(self) -> str:
|
|
82
|
+
def id(self) -> _builtins.str:
|
|
83
83
|
"""
|
|
84
84
|
The provider-assigned unique ID for this managed resource.
|
|
85
85
|
"""
|
|
86
86
|
return pulumi.get(self, "id")
|
|
87
87
|
|
|
88
|
-
@property
|
|
88
|
+
@_builtins.property
|
|
89
89
|
@pulumi.getter
|
|
90
|
-
def name(self) -> Optional[str]:
|
|
90
|
+
def name(self) -> Optional[_builtins.str]:
|
|
91
91
|
return pulumi.get(self, "name")
|
|
92
92
|
|
|
93
|
-
@property
|
|
93
|
+
@_builtins.property
|
|
94
94
|
@pulumi.getter(name="organizationId")
|
|
95
|
-
def organization_id(self) -> Optional[str]:
|
|
95
|
+
def organization_id(self) -> Optional[_builtins.str]:
|
|
96
96
|
return pulumi.get(self, "organization_id")
|
|
97
97
|
|
|
98
|
-
@property
|
|
98
|
+
@_builtins.property
|
|
99
99
|
@pulumi.getter
|
|
100
|
-
def tags(self) -> Sequence[str]:
|
|
100
|
+
def tags(self) -> Sequence[_builtins.str]:
|
|
101
101
|
return pulumi.get(self, "tags")
|
|
102
102
|
|
|
103
|
-
@property
|
|
103
|
+
@_builtins.property
|
|
104
104
|
@pulumi.getter(name="updatedAt")
|
|
105
|
-
def updated_at(self) -> str:
|
|
105
|
+
def updated_at(self) -> _builtins.str:
|
|
106
106
|
return pulumi.get(self, "updated_at")
|
|
107
107
|
|
|
108
108
|
|
|
@@ -123,9 +123,9 @@ class AwaitableGetIamApplicationResult(GetIamApplicationResult):
|
|
|
123
123
|
updated_at=self.updated_at)
|
|
124
124
|
|
|
125
125
|
|
|
126
|
-
def get_iam_application(application_id: Optional[str] = None,
|
|
127
|
-
name: Optional[str] = None,
|
|
128
|
-
organization_id: Optional[str] = None,
|
|
126
|
+
def get_iam_application(application_id: Optional[_builtins.str] = None,
|
|
127
|
+
name: Optional[_builtins.str] = None,
|
|
128
|
+
organization_id: Optional[_builtins.str] = None,
|
|
129
129
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetIamApplicationResult:
|
|
130
130
|
"""
|
|
131
131
|
Gets information about an existing IAM application.
|
|
@@ -143,11 +143,11 @@ def get_iam_application(application_id: Optional[str] = None,
|
|
|
143
143
|
```
|
|
144
144
|
|
|
145
145
|
|
|
146
|
-
:param str application_id: The ID of the IAM application.
|
|
146
|
+
:param _builtins.str application_id: The ID of the IAM application.
|
|
147
147
|
|
|
148
148
|
> **Note** You must specify at least one: `name` and/or `application_id`.
|
|
149
|
-
:param str name: The name of the IAM application.
|
|
150
|
-
:param str organization_id: `organization_id`) The ID of the
|
|
149
|
+
:param _builtins.str name: The name of the IAM application.
|
|
150
|
+
:param _builtins.str organization_id: `organization_id`) The ID of the
|
|
151
151
|
Organization the application is associated with.
|
|
152
152
|
"""
|
|
153
153
|
pulumi.log.warn("""get_iam_application is deprecated: scaleway.index/getiamapplication.getIamApplication has been deprecated in favor of scaleway.iam/getapplication.getApplication""")
|
|
@@ -168,9 +168,9 @@ def get_iam_application(application_id: Optional[str] = None,
|
|
|
168
168
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
169
169
|
tags=pulumi.get(__ret__, 'tags'),
|
|
170
170
|
updated_at=pulumi.get(__ret__, 'updated_at'))
|
|
171
|
-
def get_iam_application_output(application_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
172
|
-
name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
173
|
-
organization_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
171
|
+
def get_iam_application_output(application_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
172
|
+
name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
173
|
+
organization_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
174
174
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetIamApplicationResult]:
|
|
175
175
|
"""
|
|
176
176
|
Gets information about an existing IAM application.
|
|
@@ -188,11 +188,11 @@ def get_iam_application_output(application_id: Optional[pulumi.Input[Optional[st
|
|
|
188
188
|
```
|
|
189
189
|
|
|
190
190
|
|
|
191
|
-
:param str application_id: The ID of the IAM application.
|
|
191
|
+
:param _builtins.str application_id: The ID of the IAM application.
|
|
192
192
|
|
|
193
193
|
> **Note** You must specify at least one: `name` and/or `application_id`.
|
|
194
|
-
:param str name: The name of the IAM application.
|
|
195
|
-
:param str organization_id: `organization_id`) The ID of the
|
|
194
|
+
:param _builtins.str name: The name of the IAM application.
|
|
195
|
+
:param _builtins.str organization_id: `organization_id`) The ID of the
|
|
196
196
|
Organization the application is associated with.
|
|
197
197
|
"""
|
|
198
198
|
pulumi.log.warn("""get_iam_application is deprecated: scaleway.index/getiamapplication.getIamApplication has been deprecated in favor of scaleway.iam/getapplication.getApplication""")
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -63,62 +63,62 @@ class GetIamGroupResult:
|
|
|
63
63
|
raise TypeError("Expected argument 'user_ids' to be a list")
|
|
64
64
|
pulumi.set(__self__, "user_ids", user_ids)
|
|
65
65
|
|
|
66
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
67
67
|
@pulumi.getter(name="applicationIds")
|
|
68
|
-
def application_ids(self) -> Sequence[str]:
|
|
68
|
+
def application_ids(self) -> Sequence[_builtins.str]:
|
|
69
69
|
return pulumi.get(self, "application_ids")
|
|
70
70
|
|
|
71
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
72
72
|
@pulumi.getter(name="createdAt")
|
|
73
|
-
def created_at(self) -> str:
|
|
73
|
+
def created_at(self) -> _builtins.str:
|
|
74
74
|
return pulumi.get(self, "created_at")
|
|
75
75
|
|
|
76
|
-
@property
|
|
76
|
+
@_builtins.property
|
|
77
77
|
@pulumi.getter
|
|
78
|
-
def description(self) -> str:
|
|
78
|
+
def description(self) -> _builtins.str:
|
|
79
79
|
return pulumi.get(self, "description")
|
|
80
80
|
|
|
81
|
-
@property
|
|
81
|
+
@_builtins.property
|
|
82
82
|
@pulumi.getter(name="externalMembership")
|
|
83
|
-
def external_membership(self) -> bool:
|
|
83
|
+
def external_membership(self) -> _builtins.bool:
|
|
84
84
|
return pulumi.get(self, "external_membership")
|
|
85
85
|
|
|
86
|
-
@property
|
|
86
|
+
@_builtins.property
|
|
87
87
|
@pulumi.getter(name="groupId")
|
|
88
|
-
def group_id(self) -> Optional[str]:
|
|
88
|
+
def group_id(self) -> Optional[_builtins.str]:
|
|
89
89
|
return pulumi.get(self, "group_id")
|
|
90
90
|
|
|
91
|
-
@property
|
|
91
|
+
@_builtins.property
|
|
92
92
|
@pulumi.getter
|
|
93
|
-
def id(self) -> str:
|
|
93
|
+
def id(self) -> _builtins.str:
|
|
94
94
|
"""
|
|
95
95
|
The provider-assigned unique ID for this managed resource.
|
|
96
96
|
"""
|
|
97
97
|
return pulumi.get(self, "id")
|
|
98
98
|
|
|
99
|
-
@property
|
|
99
|
+
@_builtins.property
|
|
100
100
|
@pulumi.getter
|
|
101
|
-
def name(self) -> Optional[str]:
|
|
101
|
+
def name(self) -> Optional[_builtins.str]:
|
|
102
102
|
return pulumi.get(self, "name")
|
|
103
103
|
|
|
104
|
-
@property
|
|
104
|
+
@_builtins.property
|
|
105
105
|
@pulumi.getter(name="organizationId")
|
|
106
|
-
def organization_id(self) -> Optional[str]:
|
|
106
|
+
def organization_id(self) -> Optional[_builtins.str]:
|
|
107
107
|
return pulumi.get(self, "organization_id")
|
|
108
108
|
|
|
109
|
-
@property
|
|
109
|
+
@_builtins.property
|
|
110
110
|
@pulumi.getter
|
|
111
|
-
def tags(self) -> Sequence[str]:
|
|
111
|
+
def tags(self) -> Sequence[_builtins.str]:
|
|
112
112
|
return pulumi.get(self, "tags")
|
|
113
113
|
|
|
114
|
-
@property
|
|
114
|
+
@_builtins.property
|
|
115
115
|
@pulumi.getter(name="updatedAt")
|
|
116
|
-
def updated_at(self) -> str:
|
|
116
|
+
def updated_at(self) -> _builtins.str:
|
|
117
117
|
return pulumi.get(self, "updated_at")
|
|
118
118
|
|
|
119
|
-
@property
|
|
119
|
+
@_builtins.property
|
|
120
120
|
@pulumi.getter(name="userIds")
|
|
121
|
-
def user_ids(self) -> Sequence[str]:
|
|
121
|
+
def user_ids(self) -> Sequence[_builtins.str]:
|
|
122
122
|
return pulumi.get(self, "user_ids")
|
|
123
123
|
|
|
124
124
|
|
|
@@ -141,9 +141,9 @@ class AwaitableGetIamGroupResult(GetIamGroupResult):
|
|
|
141
141
|
user_ids=self.user_ids)
|
|
142
142
|
|
|
143
143
|
|
|
144
|
-
def get_iam_group(group_id: Optional[str] = None,
|
|
145
|
-
name: Optional[str] = None,
|
|
146
|
-
organization_id: Optional[str] = None,
|
|
144
|
+
def get_iam_group(group_id: Optional[_builtins.str] = None,
|
|
145
|
+
name: Optional[_builtins.str] = None,
|
|
146
|
+
organization_id: Optional[_builtins.str] = None,
|
|
147
147
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetIamGroupResult:
|
|
148
148
|
"""
|
|
149
149
|
Gets information about an existing IAM group.
|
|
@@ -163,11 +163,11 @@ def get_iam_group(group_id: Optional[str] = None,
|
|
|
163
163
|
```
|
|
164
164
|
|
|
165
165
|
|
|
166
|
-
:param str group_id: The ID of the IAM group.
|
|
166
|
+
:param _builtins.str group_id: The ID of the IAM group.
|
|
167
167
|
|
|
168
168
|
> **Note** You must specify at least one: `name` and/or `group_id`.
|
|
169
|
-
:param str name: The name of the IAM group.
|
|
170
|
-
:param str organization_id: `organization_id`) The ID of the
|
|
169
|
+
:param _builtins.str name: The name of the IAM group.
|
|
170
|
+
:param _builtins.str organization_id: `organization_id`) The ID of the
|
|
171
171
|
organization the group is associated with.
|
|
172
172
|
"""
|
|
173
173
|
pulumi.log.warn("""get_iam_group is deprecated: scaleway.index/getiamgroup.getIamGroup has been deprecated in favor of scaleway.iam/getgroup.getGroup""")
|
|
@@ -190,9 +190,9 @@ def get_iam_group(group_id: Optional[str] = None,
|
|
|
190
190
|
tags=pulumi.get(__ret__, 'tags'),
|
|
191
191
|
updated_at=pulumi.get(__ret__, 'updated_at'),
|
|
192
192
|
user_ids=pulumi.get(__ret__, 'user_ids'))
|
|
193
|
-
def get_iam_group_output(group_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
194
|
-
name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
195
|
-
organization_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
193
|
+
def get_iam_group_output(group_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
194
|
+
name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
195
|
+
organization_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
196
196
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetIamGroupResult]:
|
|
197
197
|
"""
|
|
198
198
|
Gets information about an existing IAM group.
|
|
@@ -212,11 +212,11 @@ def get_iam_group_output(group_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
212
212
|
```
|
|
213
213
|
|
|
214
214
|
|
|
215
|
-
:param str group_id: The ID of the IAM group.
|
|
215
|
+
:param _builtins.str group_id: The ID of the IAM group.
|
|
216
216
|
|
|
217
217
|
> **Note** You must specify at least one: `name` and/or `group_id`.
|
|
218
|
-
:param str name: The name of the IAM group.
|
|
219
|
-
:param str organization_id: `organization_id`) The ID of the
|
|
218
|
+
:param _builtins.str name: The name of the IAM group.
|
|
219
|
+
:param _builtins.str organization_id: `organization_id`) The ID of the
|
|
220
220
|
organization the group is associated with.
|
|
221
221
|
"""
|
|
222
222
|
pulumi.log.warn("""get_iam_group is deprecated: scaleway.index/getiamgroup.getIamGroup has been deprecated in favor of scaleway.iam/getgroup.getGroup""")
|