pulumiverse-scaleway 1.30.0a1748337252__py3-none-any.whl → 1.30.0a1752168858__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 +11 -1
- pulumiverse_scaleway/_inputs.py +2252 -2143
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +2 -1
- pulumiverse_scaleway/account/get_availability_zones.py +9 -8
- pulumiverse_scaleway/account/get_project.py +21 -20
- pulumiverse_scaleway/account/get_projects.py +28 -21
- pulumiverse_scaleway/account/get_ssh_key.py +24 -23
- pulumiverse_scaleway/account/outputs.py +20 -19
- pulumiverse_scaleway/account/project.py +59 -57
- pulumiverse_scaleway/account/ssh_key.py +87 -85
- pulumiverse_scaleway/account_project.py +59 -57
- pulumiverse_scaleway/account_ssh_key.py +87 -85
- pulumiverse_scaleway/apple_silicon_server.py +204 -155
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
- pulumiverse_scaleway/applesilicon/outputs.py +54 -21
- pulumiverse_scaleway/applesilicon/server.py +204 -155
- pulumiverse_scaleway/baremetal_server.py +262 -260
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +10 -9
- pulumiverse_scaleway/billing/get_invoices.py +19 -18
- pulumiverse_scaleway/billing/outputs.py +73 -72
- pulumiverse_scaleway/block/__init__.py +2 -1
- pulumiverse_scaleway/block/_inputs.py +12 -11
- pulumiverse_scaleway/block/get_snapshot.py +29 -28
- pulumiverse_scaleway/block/get_volume.py +28 -27
- pulumiverse_scaleway/block/outputs.py +14 -13
- pulumiverse_scaleway/block/snapshot.py +73 -71
- pulumiverse_scaleway/block/volume.py +115 -113
- pulumiverse_scaleway/block_snapshot.py +73 -71
- pulumiverse_scaleway/block_volume.py +115 -113
- pulumiverse_scaleway/cockpit.py +38 -36
- pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
- pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
- pulumiverse_scaleway/cockpit_source.py +115 -113
- pulumiverse_scaleway/cockpit_token.py +66 -64
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -1
- pulumiverse_scaleway/config/vars.py +2 -1
- pulumiverse_scaleway/container.py +573 -343
- pulumiverse_scaleway/container_cron.py +80 -78
- pulumiverse_scaleway/container_domain.py +52 -50
- pulumiverse_scaleway/container_namespace.py +211 -140
- pulumiverse_scaleway/container_token.py +80 -78
- pulumiverse_scaleway/container_trigger.py +59 -57
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +72 -71
- pulumiverse_scaleway/containers/container.py +573 -343
- pulumiverse_scaleway/containers/cron.py +80 -78
- pulumiverse_scaleway/containers/domain.py +52 -50
- pulumiverse_scaleway/containers/get_container.py +87 -42
- pulumiverse_scaleway/containers/get_namespace.py +43 -31
- pulumiverse_scaleway/containers/namespace.py +211 -140
- pulumiverse_scaleway/containers/outputs.py +62 -61
- pulumiverse_scaleway/containers/token.py +80 -78
- pulumiverse_scaleway/containers/trigger.py +59 -57
- pulumiverse_scaleway/database.py +66 -64
- pulumiverse_scaleway/database_acl.py +31 -29
- pulumiverse_scaleway/database_backup.py +101 -99
- pulumiverse_scaleway/database_instance.py +297 -295
- pulumiverse_scaleway/database_privilege.py +73 -71
- pulumiverse_scaleway/database_read_replica.py +45 -43
- pulumiverse_scaleway/database_user.py +73 -71
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +191 -190
- pulumiverse_scaleway/databases/acl.py +31 -29
- pulumiverse_scaleway/databases/database.py +66 -64
- pulumiverse_scaleway/databases/database_backup.py +101 -99
- pulumiverse_scaleway/databases/get_acl.py +13 -12
- pulumiverse_scaleway/databases/get_database.py +19 -18
- pulumiverse_scaleway/databases/get_database_backup.py +34 -33
- pulumiverse_scaleway/databases/get_instance.py +43 -42
- pulumiverse_scaleway/databases/get_privilege.py +24 -23
- pulumiverse_scaleway/databases/instance.py +297 -295
- pulumiverse_scaleway/databases/outputs.py +188 -187
- pulumiverse_scaleway/databases/privilege.py +73 -71
- pulumiverse_scaleway/databases/read_replica.py +45 -43
- pulumiverse_scaleway/databases/serverless_database.py +80 -78
- pulumiverse_scaleway/databases/snapshot.py +101 -99
- pulumiverse_scaleway/databases/user.py +73 -71
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +531 -530
- pulumiverse_scaleway/domain/get_record.py +38 -37
- pulumiverse_scaleway/domain/get_zone.py +24 -23
- pulumiverse_scaleway/domain/outputs.py +358 -357
- pulumiverse_scaleway/domain/record.py +129 -127
- pulumiverse_scaleway/domain/registration.py +94 -92
- pulumiverse_scaleway/domain/zone.py +87 -85
- pulumiverse_scaleway/domain_record.py +129 -127
- pulumiverse_scaleway/domain_zone.py +87 -85
- pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
- pulumiverse_scaleway/edge_services_cache_stage.py +115 -113
- pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
- pulumiverse_scaleway/edge_services_head_stage.py +31 -29
- pulumiverse_scaleway/edge_services_pipeline.py +66 -64
- pulumiverse_scaleway/edge_services_plan.py +31 -29
- pulumiverse_scaleway/edge_services_route_stage.py +59 -57
- pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
- pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
- pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
- pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
- pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
- pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
- pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
- pulumiverse_scaleway/elasticmetal/ip.py +139 -137
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
- pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
- pulumiverse_scaleway/elasticmetal/server.py +262 -260
- pulumiverse_scaleway/file_filesystem.py +552 -0
- pulumiverse_scaleway/flexible_ip.py +139 -137
- pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
- pulumiverse_scaleway/function.py +394 -284
- pulumiverse_scaleway/function_cron.py +80 -78
- pulumiverse_scaleway/function_domain.py +52 -50
- pulumiverse_scaleway/function_namespace.py +197 -126
- pulumiverse_scaleway/function_token.py +80 -78
- pulumiverse_scaleway/function_trigger.py +59 -57
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +42 -41
- pulumiverse_scaleway/functions/cron.py +80 -78
- pulumiverse_scaleway/functions/domain.py +52 -50
- pulumiverse_scaleway/functions/function.py +394 -284
- pulumiverse_scaleway/functions/get_function.py +69 -46
- pulumiverse_scaleway/functions/get_namespace.py +42 -30
- pulumiverse_scaleway/functions/namespace.py +197 -126
- pulumiverse_scaleway/functions/outputs.py +26 -25
- pulumiverse_scaleway/functions/token.py +80 -78
- pulumiverse_scaleway/functions/trigger.py +59 -57
- pulumiverse_scaleway/get_account_project.py +21 -20
- pulumiverse_scaleway/get_account_ssh_key.py +24 -23
- pulumiverse_scaleway/get_availability_zones.py +9 -8
- pulumiverse_scaleway/get_baremetal_offer.py +29 -28
- pulumiverse_scaleway/get_baremetal_option.py +19 -18
- pulumiverse_scaleway/get_baremetal_os.py +23 -22
- pulumiverse_scaleway/get_baremetal_server.py +39 -38
- pulumiverse_scaleway/get_billing_consumptions.py +10 -9
- pulumiverse_scaleway/get_billing_invoices.py +19 -18
- pulumiverse_scaleway/get_block_snapshot.py +29 -28
- pulumiverse_scaleway/get_block_volume.py +28 -27
- pulumiverse_scaleway/get_cockpit.py +10 -9
- pulumiverse_scaleway/get_cockpit_source.py +33 -32
- pulumiverse_scaleway/get_config.py +13 -12
- pulumiverse_scaleway/get_container.py +87 -42
- pulumiverse_scaleway/get_container_namespace.py +43 -31
- pulumiverse_scaleway/get_database.py +19 -18
- pulumiverse_scaleway/get_database_acl.py +13 -12
- pulumiverse_scaleway/get_database_backup.py +34 -33
- pulumiverse_scaleway/get_database_instance.py +43 -42
- pulumiverse_scaleway/get_database_privilege.py +24 -23
- pulumiverse_scaleway/get_domain_record.py +38 -37
- pulumiverse_scaleway/get_domain_zone.py +24 -23
- pulumiverse_scaleway/get_flexible_ip.py +56 -39
- pulumiverse_scaleway/get_flexible_ips.py +24 -23
- pulumiverse_scaleway/get_function.py +69 -46
- pulumiverse_scaleway/get_function_namespace.py +42 -30
- pulumiverse_scaleway/get_iam_api_key.py +17 -16
- pulumiverse_scaleway/get_iam_application.py +23 -22
- pulumiverse_scaleway/get_iam_group.py +25 -24
- pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
- pulumiverse_scaleway/get_iam_user.py +23 -22
- pulumiverse_scaleway/get_instance_image.py +42 -41
- pulumiverse_scaleway/get_instance_ip.py +20 -19
- pulumiverse_scaleway/get_instance_placement_group.py +28 -27
- pulumiverse_scaleway/get_instance_private_nic.py +31 -30
- pulumiverse_scaleway/get_instance_security_group.py +31 -30
- pulumiverse_scaleway/get_instance_server.py +59 -47
- pulumiverse_scaleway/get_instance_servers.py +24 -23
- pulumiverse_scaleway/get_instance_snapshot.py +29 -28
- pulumiverse_scaleway/get_instance_volume.py +30 -29
- pulumiverse_scaleway/get_iot_device.py +31 -30
- pulumiverse_scaleway/get_iot_hub.py +39 -38
- pulumiverse_scaleway/get_ipam_ip.py +51 -50
- pulumiverse_scaleway/get_ipam_ips.py +44 -43
- pulumiverse_scaleway/get_k8s_version.py +16 -15
- pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
- pulumiverse_scaleway/get_kubernetes_node_pool.py +47 -46
- pulumiverse_scaleway/get_lb_acls.py +22 -21
- pulumiverse_scaleway/get_lb_backend.py +43 -42
- pulumiverse_scaleway/get_lb_backends.py +22 -21
- pulumiverse_scaleway/get_lb_frontend.py +26 -25
- pulumiverse_scaleway/get_lb_frontends.py +22 -21
- pulumiverse_scaleway/get_lb_ips.py +29 -28
- pulumiverse_scaleway/get_lb_route.py +16 -15
- pulumiverse_scaleway/get_lb_routes.py +17 -16
- pulumiverse_scaleway/get_lbs.py +24 -23
- pulumiverse_scaleway/get_loadbalancer.py +36 -35
- pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
- pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
- pulumiverse_scaleway/get_marketplace_image.py +23 -22
- pulumiverse_scaleway/get_mnq_sns.py +14 -13
- pulumiverse_scaleway/get_mnq_sqs.py +14 -13
- pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
- pulumiverse_scaleway/get_object_bucket.py +22 -21
- pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
- pulumiverse_scaleway/get_redis_cluster.py +34 -33
- pulumiverse_scaleway/get_registry_image.py +37 -36
- pulumiverse_scaleway/get_registry_image_tag.py +33 -32
- pulumiverse_scaleway/get_registry_namespace.py +27 -26
- pulumiverse_scaleway/get_secret.py +41 -40
- pulumiverse_scaleway/get_secret_version.py +34 -33
- pulumiverse_scaleway/get_tem_domain.py +43 -42
- pulumiverse_scaleway/get_vpc.py +35 -34
- pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
- pulumiverse_scaleway/get_vpc_private_network.py +32 -31
- pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
- pulumiverse_scaleway/get_vpc_routes.py +38 -37
- pulumiverse_scaleway/get_vpcs.py +24 -23
- pulumiverse_scaleway/get_web_host_offer.py +25 -24
- pulumiverse_scaleway/get_webhosting.py +36 -35
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +61 -60
- pulumiverse_scaleway/hosting/get_hosting.py +36 -35
- pulumiverse_scaleway/hosting/get_offer.py +25 -24
- pulumiverse_scaleway/hosting/hosting.py +164 -162
- pulumiverse_scaleway/hosting/outputs.py +139 -138
- pulumiverse_scaleway/iam/__init__.py +2 -1
- pulumiverse_scaleway/iam/_inputs.py +22 -21
- pulumiverse_scaleway/iam/api_key.py +115 -113
- pulumiverse_scaleway/iam/application.py +80 -78
- pulumiverse_scaleway/iam/get_api_key.py +17 -16
- pulumiverse_scaleway/iam/get_application.py +23 -22
- pulumiverse_scaleway/iam/get_group.py +25 -24
- pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
- pulumiverse_scaleway/iam/get_user.py +23 -22
- pulumiverse_scaleway/iam/group.py +115 -113
- pulumiverse_scaleway/iam/group_membership.py +45 -43
- pulumiverse_scaleway/iam/outputs.py +14 -13
- pulumiverse_scaleway/iam/policy.py +136 -134
- pulumiverse_scaleway/iam/ssh_key.py +87 -85
- pulumiverse_scaleway/iam/user.py +284 -273
- pulumiverse_scaleway/iam_api_key.py +115 -113
- pulumiverse_scaleway/iam_application.py +80 -78
- pulumiverse_scaleway/iam_group.py +115 -113
- pulumiverse_scaleway/iam_group_membership.py +45 -43
- pulumiverse_scaleway/iam_policy.py +136 -134
- pulumiverse_scaleway/iam_ssh_key.py +87 -85
- pulumiverse_scaleway/iam_user.py +284 -273
- pulumiverse_scaleway/inference/__init__.py +2 -1
- pulumiverse_scaleway/inference/_inputs.py +116 -61
- pulumiverse_scaleway/inference/deployment.py +225 -176
- pulumiverse_scaleway/inference/get_model.py +27 -26
- pulumiverse_scaleway/inference/model.py +129 -127
- pulumiverse_scaleway/inference/outputs.py +82 -49
- pulumiverse_scaleway/inference_deployment.py +225 -176
- pulumiverse_scaleway/instance/__init__.py +2 -1
- pulumiverse_scaleway/instance/_inputs.py +296 -295
- pulumiverse_scaleway/instance/get_image.py +42 -41
- pulumiverse_scaleway/instance/get_ip.py +20 -19
- pulumiverse_scaleway/instance/get_placement_group.py +28 -27
- pulumiverse_scaleway/instance/get_private_nic.py +31 -30
- pulumiverse_scaleway/instance/get_security_group.py +31 -30
- pulumiverse_scaleway/instance/get_server.py +59 -47
- pulumiverse_scaleway/instance/get_servers.py +24 -23
- pulumiverse_scaleway/instance/get_snapshot.py +29 -28
- pulumiverse_scaleway/instance/get_volume.py +30 -29
- pulumiverse_scaleway/instance/image.py +150 -148
- pulumiverse_scaleway/instance/ip.py +94 -92
- pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance/outputs.py +349 -348
- pulumiverse_scaleway/instance/placement_group.py +101 -99
- pulumiverse_scaleway/instance/private_nic.py +94 -92
- pulumiverse_scaleway/instance/security_group.py +150 -148
- pulumiverse_scaleway/instance/security_group_rules.py +17 -15
- pulumiverse_scaleway/instance/server.py +393 -330
- pulumiverse_scaleway/instance/snapshot.py +108 -106
- pulumiverse_scaleway/instance/user_data.py +59 -57
- pulumiverse_scaleway/instance/volume.py +129 -127
- pulumiverse_scaleway/instance_image.py +150 -148
- pulumiverse_scaleway/instance_ip.py +94 -92
- pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance_placement_group.py +101 -99
- pulumiverse_scaleway/instance_private_nic.py +94 -92
- pulumiverse_scaleway/instance_security_group.py +150 -148
- pulumiverse_scaleway/instance_security_group_rules.py +17 -15
- pulumiverse_scaleway/instance_server.py +393 -330
- pulumiverse_scaleway/instance_snapshot.py +108 -106
- pulumiverse_scaleway/instance_user_data.py +59 -57
- pulumiverse_scaleway/instance_volume.py +129 -127
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +98 -97
- pulumiverse_scaleway/iot/device.py +122 -120
- pulumiverse_scaleway/iot/get_device.py +31 -30
- pulumiverse_scaleway/iot/get_hub.py +39 -38
- pulumiverse_scaleway/iot/hub.py +206 -204
- pulumiverse_scaleway/iot/network.py +94 -92
- pulumiverse_scaleway/iot/outputs.py +78 -77
- pulumiverse_scaleway/iot/route.py +66 -64
- pulumiverse_scaleway/iot_device.py +122 -120
- pulumiverse_scaleway/iot_hub.py +206 -204
- pulumiverse_scaleway/iot_network.py +94 -92
- pulumiverse_scaleway/iot_route.py +66 -64
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +87 -86
- pulumiverse_scaleway/ipam/get_ip.py +51 -50
- pulumiverse_scaleway/ipam/get_ips.py +44 -43
- pulumiverse_scaleway/ipam/ip.py +94 -92
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/ipam/outputs.py +90 -89
- pulumiverse_scaleway/ipam_ip.py +94 -92
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +38 -37
- pulumiverse_scaleway/job/definition.py +143 -141
- pulumiverse_scaleway/job/outputs.py +24 -23
- pulumiverse_scaleway/job_definition.py +143 -141
- pulumiverse_scaleway/kubernetes/__init__.py +2 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
- pulumiverse_scaleway/kubernetes/acl.py +45 -43
- pulumiverse_scaleway/kubernetes/cluster.py +234 -232
- pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
- pulumiverse_scaleway/kubernetes/get_pool.py +47 -46
- pulumiverse_scaleway/kubernetes/get_version.py +16 -15
- pulumiverse_scaleway/kubernetes/outputs.py +217 -216
- pulumiverse_scaleway/kubernetes/pool.py +290 -288
- pulumiverse_scaleway/kubernetes_cluster.py +234 -232
- pulumiverse_scaleway/kubernetes_node_pool.py +290 -288
- pulumiverse_scaleway/loadbalancer.py +199 -197
- pulumiverse_scaleway/loadbalancer_acl.py +73 -71
- pulumiverse_scaleway/loadbalancer_backend.py +381 -379
- pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
- pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
- pulumiverse_scaleway/loadbalancer_ip.py +101 -99
- pulumiverse_scaleway/loadbalancer_route.py +101 -99
- pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +214 -213
- pulumiverse_scaleway/loadbalancers/acl.py +73 -71
- pulumiverse_scaleway/loadbalancers/backend.py +381 -379
- pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
- pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
- pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
- pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
- pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
- pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
- pulumiverse_scaleway/loadbalancers/ip.py +101 -99
- pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
- pulumiverse_scaleway/loadbalancers/outputs.py +525 -524
- pulumiverse_scaleway/loadbalancers/route.py +101 -99
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +32 -31
- pulumiverse_scaleway/mnq/get_sns.py +14 -13
- pulumiverse_scaleway/mnq/get_sqs.py +14 -13
- pulumiverse_scaleway/mnq/nats_account.py +52 -50
- pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq/outputs.py +20 -19
- pulumiverse_scaleway/mnq/sns.py +38 -36
- pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sns_topic.py +143 -141
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq/sqs.py +38 -36
- pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
- pulumiverse_scaleway/mnq_nats_account.py +52 -50
- pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq_sns.py +38 -36
- pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sns_topic.py +143 -141
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq_sqs.py +38 -36
- pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
- pulumiverse_scaleway/mongo_db_instance.py +199 -197
- pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
- pulumiverse_scaleway/mongodb/__init__.py +2 -1
- pulumiverse_scaleway/mongodb/_inputs.py +53 -52
- pulumiverse_scaleway/mongodb/get_instance.py +35 -34
- pulumiverse_scaleway/mongodb/instance.py +199 -197
- pulumiverse_scaleway/mongodb/outputs.py +64 -63
- pulumiverse_scaleway/mongodb/snapshot.py +101 -99
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +140 -139
- pulumiverse_scaleway/network/acl.py +59 -57
- pulumiverse_scaleway/network/gateway_network.py +143 -141
- pulumiverse_scaleway/network/get_gateway_network.py +28 -27
- pulumiverse_scaleway/network/get_private_network.py +32 -31
- pulumiverse_scaleway/network/get_public_gateway.py +36 -35
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
- pulumiverse_scaleway/network/get_routes.py +38 -37
- pulumiverse_scaleway/network/get_vpc.py +35 -34
- pulumiverse_scaleway/network/get_vpcs.py +24 -23
- pulumiverse_scaleway/network/outputs.py +206 -205
- pulumiverse_scaleway/network/private_network.py +122 -120
- pulumiverse_scaleway/network/public_gateway.py +213 -211
- pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/network/route.py +115 -113
- pulumiverse_scaleway/network/vpc.py +101 -99
- pulumiverse_scaleway/object/__init__.py +2 -1
- pulumiverse_scaleway/object/_inputs.py +127 -126
- pulumiverse_scaleway/object/bucket.py +115 -113
- pulumiverse_scaleway/object/bucket_acl.py +73 -71
- pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object/bucket_policy.py +59 -57
- pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object/get_bucket.py +22 -21
- pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
- pulumiverse_scaleway/object/item.py +232 -183
- pulumiverse_scaleway/object/outputs.py +114 -113
- pulumiverse_scaleway/object_bucket.py +115 -113
- pulumiverse_scaleway/object_bucket_acl.py +73 -71
- pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object_bucket_policy.py +59 -57
- pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object_item.py +232 -183
- pulumiverse_scaleway/observability/__init__.py +2 -1
- pulumiverse_scaleway/observability/_inputs.py +89 -88
- pulumiverse_scaleway/observability/alert_manager.py +52 -50
- pulumiverse_scaleway/observability/cockpit.py +38 -36
- pulumiverse_scaleway/observability/get_instance.py +10 -9
- pulumiverse_scaleway/observability/get_source.py +33 -32
- pulumiverse_scaleway/observability/grafana_user.py +59 -57
- pulumiverse_scaleway/observability/outputs.py +77 -76
- pulumiverse_scaleway/observability/source.py +115 -113
- pulumiverse_scaleway/observability/token.py +66 -64
- pulumiverse_scaleway/outputs.py +2797 -2732
- pulumiverse_scaleway/provider.py +87 -65
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +101 -99
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +63 -62
- pulumiverse_scaleway/redis/cluster.py +178 -176
- pulumiverse_scaleway/redis/get_cluster.py +34 -33
- pulumiverse_scaleway/redis/outputs.py +74 -73
- pulumiverse_scaleway/redis_cluster.py +178 -176
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +37 -36
- pulumiverse_scaleway/registry/get_image_tag.py +33 -32
- pulumiverse_scaleway/registry/get_namespace.py +27 -26
- pulumiverse_scaleway/registry/namespace.py +87 -85
- pulumiverse_scaleway/registry_namespace.py +87 -85
- pulumiverse_scaleway/sdb_database.py +80 -78
- pulumiverse_scaleway/secret.py +143 -141
- pulumiverse_scaleway/secret_version.py +87 -85
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +53 -52
- pulumiverse_scaleway/secrets/get_secret.py +41 -40
- pulumiverse_scaleway/secrets/get_version.py +34 -33
- pulumiverse_scaleway/secrets/outputs.py +64 -63
- pulumiverse_scaleway/secrets/secret.py +143 -141
- pulumiverse_scaleway/secrets/version.py +87 -85
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +28 -27
- pulumiverse_scaleway/tem/blocked_list.py +87 -85
- pulumiverse_scaleway/tem/domain.py +199 -197
- pulumiverse_scaleway/tem/domain_validation.py +52 -50
- pulumiverse_scaleway/tem/get_domain.py +43 -42
- pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
- pulumiverse_scaleway/tem/outputs.py +34 -33
- pulumiverse_scaleway/tem/webhook.py +108 -106
- pulumiverse_scaleway/tem_domain.py +199 -197
- pulumiverse_scaleway/tem_domain_validation.py +52 -50
- pulumiverse_scaleway/tem_webhook.py +108 -106
- pulumiverse_scaleway/vpc.py +101 -99
- pulumiverse_scaleway/vpc_gateway_network.py +143 -141
- pulumiverse_scaleway/vpc_private_network.py +122 -120
- pulumiverse_scaleway/vpc_public_gateway.py +213 -211
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/vpc_route.py +115 -113
- pulumiverse_scaleway/webhosting.py +164 -162
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.30.0a1752168858.dist-info/RECORD +493 -0
- pulumiverse_scaleway-1.30.0a1748337252.dist-info/RECORD +0 -492
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/top_level.txt +0 -0
@@ -1,7 +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 builtins
|
5
6
|
from .. import _utilities
|
6
7
|
import typing
|
7
8
|
# Export this package's modules as members:
|
@@ -1,7 +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 builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -63,7 +64,7 @@ class GetImageResult:
|
|
63
64
|
|
64
65
|
@property
|
65
66
|
@pulumi.getter
|
66
|
-
def id(self) -> str:
|
67
|
+
def id(self) -> builtins.str:
|
67
68
|
"""
|
68
69
|
The provider-assigned unique ID for this managed resource.
|
69
70
|
"""
|
@@ -71,22 +72,22 @@ class GetImageResult:
|
|
71
72
|
|
72
73
|
@property
|
73
74
|
@pulumi.getter(name="imageId")
|
74
|
-
def image_id(self) -> Optional[str]:
|
75
|
+
def image_id(self) -> Optional[builtins.str]:
|
75
76
|
return pulumi.get(self, "image_id")
|
76
77
|
|
77
78
|
@property
|
78
79
|
@pulumi.getter
|
79
|
-
def name(self) -> Optional[str]:
|
80
|
+
def name(self) -> Optional[builtins.str]:
|
80
81
|
return pulumi.get(self, "name")
|
81
82
|
|
82
83
|
@property
|
83
84
|
@pulumi.getter(name="namespaceId")
|
84
|
-
def namespace_id(self) -> str:
|
85
|
+
def namespace_id(self) -> builtins.str:
|
85
86
|
return pulumi.get(self, "namespace_id")
|
86
87
|
|
87
88
|
@property
|
88
89
|
@pulumi.getter(name="organizationId")
|
89
|
-
def organization_id(self) -> str:
|
90
|
+
def organization_id(self) -> builtins.str:
|
90
91
|
"""
|
91
92
|
The organization ID the image is associated with.
|
92
93
|
"""
|
@@ -94,17 +95,17 @@ class GetImageResult:
|
|
94
95
|
|
95
96
|
@property
|
96
97
|
@pulumi.getter(name="projectId")
|
97
|
-
def project_id(self) -> str:
|
98
|
+
def project_id(self) -> builtins.str:
|
98
99
|
return pulumi.get(self, "project_id")
|
99
100
|
|
100
101
|
@property
|
101
102
|
@pulumi.getter
|
102
|
-
def region(self) -> str:
|
103
|
+
def region(self) -> builtins.str:
|
103
104
|
return pulumi.get(self, "region")
|
104
105
|
|
105
106
|
@property
|
106
107
|
@pulumi.getter
|
107
|
-
def size(self) -> int:
|
108
|
+
def size(self) -> builtins.int:
|
108
109
|
"""
|
109
110
|
The size of the registry image.
|
110
111
|
"""
|
@@ -112,7 +113,7 @@ class GetImageResult:
|
|
112
113
|
|
113
114
|
@property
|
114
115
|
@pulumi.getter
|
115
|
-
def tags(self) -> Sequence[str]:
|
116
|
+
def tags(self) -> Sequence[builtins.str]:
|
116
117
|
"""
|
117
118
|
The tags associated with the registry image
|
118
119
|
"""
|
@@ -120,7 +121,7 @@ class GetImageResult:
|
|
120
121
|
|
121
122
|
@property
|
122
123
|
@pulumi.getter(name="updatedAt")
|
123
|
-
def updated_at(self) -> str:
|
124
|
+
def updated_at(self) -> builtins.str:
|
124
125
|
"""
|
125
126
|
The date the image of the last update
|
126
127
|
"""
|
@@ -128,7 +129,7 @@ class GetImageResult:
|
|
128
129
|
|
129
130
|
@property
|
130
131
|
@pulumi.getter
|
131
|
-
def visibility(self) -> str:
|
132
|
+
def visibility(self) -> builtins.str:
|
132
133
|
"""
|
133
134
|
The privacy policy of the registry image.
|
134
135
|
"""
|
@@ -154,25 +155,25 @@ class AwaitableGetImageResult(GetImageResult):
|
|
154
155
|
visibility=self.visibility)
|
155
156
|
|
156
157
|
|
157
|
-
def get_image(image_id: Optional[str] = None,
|
158
|
-
name: Optional[str] = None,
|
159
|
-
namespace_id: Optional[str] = None,
|
160
|
-
project_id: Optional[str] = None,
|
161
|
-
region: Optional[str] = None,
|
162
|
-
tags: Optional[Sequence[str]] = None,
|
158
|
+
def get_image(image_id: Optional[builtins.str] = None,
|
159
|
+
name: Optional[builtins.str] = None,
|
160
|
+
namespace_id: Optional[builtins.str] = None,
|
161
|
+
project_id: Optional[builtins.str] = None,
|
162
|
+
region: Optional[builtins.str] = None,
|
163
|
+
tags: Optional[Sequence[builtins.str]] = None,
|
163
164
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetImageResult:
|
164
165
|
"""
|
165
166
|
Gets information about a Container Registry image.
|
166
167
|
|
167
168
|
|
168
|
-
:param str image_id: The image ID.
|
169
|
+
:param builtins.str image_id: The image ID.
|
169
170
|
|
170
171
|
> **Note** You must specify at least one: `name` and/or `image_id`.
|
171
|
-
:param str name: The image name.
|
172
|
-
:param str namespace_id: The namespace ID in which the image is.
|
173
|
-
:param str project_id: `project_id`) The ID of the project the image is associated with.
|
174
|
-
:param str region: `region`) The region in which the image exists.
|
175
|
-
:param Sequence[str] tags: The tags associated with the registry image
|
172
|
+
:param builtins.str name: The image name.
|
173
|
+
:param builtins.str namespace_id: The namespace ID in which the image is.
|
174
|
+
:param builtins.str project_id: `project_id`) The ID of the project the image is associated with.
|
175
|
+
:param builtins.str region: `region`) The region in which the image exists.
|
176
|
+
:param Sequence[builtins.str] tags: The tags associated with the registry image
|
176
177
|
"""
|
177
178
|
__args__ = dict()
|
178
179
|
__args__['imageId'] = image_id
|
@@ -196,25 +197,25 @@ def get_image(image_id: Optional[str] = None,
|
|
196
197
|
tags=pulumi.get(__ret__, 'tags'),
|
197
198
|
updated_at=pulumi.get(__ret__, 'updated_at'),
|
198
199
|
visibility=pulumi.get(__ret__, 'visibility'))
|
199
|
-
def get_image_output(image_id: Optional[pulumi.Input[Optional[str]]] = None,
|
200
|
-
name: Optional[pulumi.Input[Optional[str]]] = None,
|
201
|
-
namespace_id: Optional[pulumi.Input[Optional[str]]] = None,
|
202
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
203
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
204
|
-
tags: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
200
|
+
def get_image_output(image_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
201
|
+
name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
202
|
+
namespace_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
203
|
+
project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
204
|
+
region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
205
|
+
tags: Optional[pulumi.Input[Optional[Sequence[builtins.str]]]] = None,
|
205
206
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetImageResult]:
|
206
207
|
"""
|
207
208
|
Gets information about a Container Registry image.
|
208
209
|
|
209
210
|
|
210
|
-
:param str image_id: The image ID.
|
211
|
+
:param builtins.str image_id: The image ID.
|
211
212
|
|
212
213
|
> **Note** You must specify at least one: `name` and/or `image_id`.
|
213
|
-
:param str name: The image name.
|
214
|
-
:param str namespace_id: The namespace ID in which the image is.
|
215
|
-
:param str project_id: `project_id`) The ID of the project the image is associated with.
|
216
|
-
:param str region: `region`) The region in which the image exists.
|
217
|
-
:param Sequence[str] tags: The tags associated with the registry image
|
214
|
+
:param builtins.str name: The image name.
|
215
|
+
:param builtins.str namespace_id: The namespace ID in which the image is.
|
216
|
+
:param builtins.str project_id: `project_id`) The ID of the project the image is associated with.
|
217
|
+
:param builtins.str region: `region`) The region in which the image exists.
|
218
|
+
:param Sequence[builtins.str] tags: The tags associated with the registry image
|
218
219
|
"""
|
219
220
|
__args__ = dict()
|
220
221
|
__args__['imageId'] = image_id
|
@@ -1,7 +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 builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -63,7 +64,7 @@ class GetImageTagResult:
|
|
63
64
|
|
64
65
|
@property
|
65
66
|
@pulumi.getter(name="createdAt")
|
66
|
-
def created_at(self) -> str:
|
67
|
+
def created_at(self) -> builtins.str:
|
67
68
|
"""
|
68
69
|
The date and time when the registry image tag was created.
|
69
70
|
"""
|
@@ -71,7 +72,7 @@ class GetImageTagResult:
|
|
71
72
|
|
72
73
|
@property
|
73
74
|
@pulumi.getter
|
74
|
-
def digest(self) -> str:
|
75
|
+
def digest(self) -> builtins.str:
|
75
76
|
"""
|
76
77
|
Hash of the tag content. Several tags of the same image may have the same digest.
|
77
78
|
"""
|
@@ -79,7 +80,7 @@ class GetImageTagResult:
|
|
79
80
|
|
80
81
|
@property
|
81
82
|
@pulumi.getter
|
82
|
-
def id(self) -> str:
|
83
|
+
def id(self) -> builtins.str:
|
83
84
|
"""
|
84
85
|
The provider-assigned unique ID for this managed resource.
|
85
86
|
"""
|
@@ -87,17 +88,17 @@ class GetImageTagResult:
|
|
87
88
|
|
88
89
|
@property
|
89
90
|
@pulumi.getter(name="imageId")
|
90
|
-
def image_id(self) -> str:
|
91
|
+
def image_id(self) -> builtins.str:
|
91
92
|
return pulumi.get(self, "image_id")
|
92
93
|
|
93
94
|
@property
|
94
95
|
@pulumi.getter
|
95
|
-
def name(self) -> Optional[str]:
|
96
|
+
def name(self) -> Optional[builtins.str]:
|
96
97
|
return pulumi.get(self, "name")
|
97
98
|
|
98
99
|
@property
|
99
100
|
@pulumi.getter(name="organizationId")
|
100
|
-
def organization_id(self) -> str:
|
101
|
+
def organization_id(self) -> builtins.str:
|
101
102
|
"""
|
102
103
|
The organization ID the image tag is associated with.
|
103
104
|
"""
|
@@ -105,17 +106,17 @@ class GetImageTagResult:
|
|
105
106
|
|
106
107
|
@property
|
107
108
|
@pulumi.getter(name="projectId")
|
108
|
-
def project_id(self) -> str:
|
109
|
+
def project_id(self) -> builtins.str:
|
109
110
|
return pulumi.get(self, "project_id")
|
110
111
|
|
111
112
|
@property
|
112
113
|
@pulumi.getter
|
113
|
-
def region(self) -> str:
|
114
|
+
def region(self) -> builtins.str:
|
114
115
|
return pulumi.get(self, "region")
|
115
116
|
|
116
117
|
@property
|
117
118
|
@pulumi.getter
|
118
|
-
def status(self) -> str:
|
119
|
+
def status(self) -> builtins.str:
|
119
120
|
"""
|
120
121
|
The status of the registry image tag.
|
121
122
|
"""
|
@@ -123,12 +124,12 @@ class GetImageTagResult:
|
|
123
124
|
|
124
125
|
@property
|
125
126
|
@pulumi.getter(name="tagId")
|
126
|
-
def tag_id(self) -> Optional[str]:
|
127
|
+
def tag_id(self) -> Optional[builtins.str]:
|
127
128
|
return pulumi.get(self, "tag_id")
|
128
129
|
|
129
130
|
@property
|
130
131
|
@pulumi.getter(name="updatedAt")
|
131
|
-
def updated_at(self) -> str:
|
132
|
+
def updated_at(self) -> builtins.str:
|
132
133
|
"""
|
133
134
|
The date and time of the last update to the registry image tag.
|
134
135
|
"""
|
@@ -154,21 +155,21 @@ class AwaitableGetImageTagResult(GetImageTagResult):
|
|
154
155
|
updated_at=self.updated_at)
|
155
156
|
|
156
157
|
|
157
|
-
def get_image_tag(image_id: Optional[str] = None,
|
158
|
-
name: Optional[str] = None,
|
159
|
-
project_id: Optional[str] = None,
|
160
|
-
region: Optional[str] = None,
|
161
|
-
tag_id: Optional[str] = None,
|
158
|
+
def get_image_tag(image_id: Optional[builtins.str] = None,
|
159
|
+
name: Optional[builtins.str] = None,
|
160
|
+
project_id: Optional[builtins.str] = None,
|
161
|
+
region: Optional[builtins.str] = None,
|
162
|
+
tag_id: Optional[builtins.str] = None,
|
162
163
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetImageTagResult:
|
163
164
|
"""
|
164
165
|
Gets information about a specific tag of a Container Registry image.
|
165
166
|
|
166
167
|
|
167
|
-
:param str image_id: The ID of the registry image.
|
168
|
-
:param str name: The name of the registry image tag.
|
169
|
-
:param str project_id: The ID of the project the image tag is associated with.
|
170
|
-
:param str region: The region in which the registry image tag exists.
|
171
|
-
:param str tag_id: The ID of the registry image tag.
|
168
|
+
:param builtins.str image_id: The ID of the registry image.
|
169
|
+
:param builtins.str name: The name of the registry image tag.
|
170
|
+
:param builtins.str project_id: The ID of the project the image tag is associated with.
|
171
|
+
:param builtins.str region: The region in which the registry image tag exists.
|
172
|
+
:param builtins.str tag_id: The ID of the registry image tag.
|
172
173
|
"""
|
173
174
|
__args__ = dict()
|
174
175
|
__args__['imageId'] = image_id
|
@@ -191,21 +192,21 @@ def get_image_tag(image_id: Optional[str] = None,
|
|
191
192
|
status=pulumi.get(__ret__, 'status'),
|
192
193
|
tag_id=pulumi.get(__ret__, 'tag_id'),
|
193
194
|
updated_at=pulumi.get(__ret__, 'updated_at'))
|
194
|
-
def get_image_tag_output(image_id: Optional[pulumi.Input[str]] = None,
|
195
|
-
name: Optional[pulumi.Input[Optional[str]]] = None,
|
196
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
197
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
198
|
-
tag_id: Optional[pulumi.Input[Optional[str]]] = None,
|
195
|
+
def get_image_tag_output(image_id: Optional[pulumi.Input[builtins.str]] = None,
|
196
|
+
name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
197
|
+
project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
198
|
+
region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
199
|
+
tag_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
199
200
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetImageTagResult]:
|
200
201
|
"""
|
201
202
|
Gets information about a specific tag of a Container Registry image.
|
202
203
|
|
203
204
|
|
204
|
-
:param str image_id: The ID of the registry image.
|
205
|
-
:param str name: The name of the registry image tag.
|
206
|
-
:param str project_id: The ID of the project the image tag is associated with.
|
207
|
-
:param str region: The region in which the registry image tag exists.
|
208
|
-
:param str tag_id: The ID of the registry image tag.
|
205
|
+
:param builtins.str image_id: The ID of the registry image.
|
206
|
+
:param builtins.str name: The name of the registry image tag.
|
207
|
+
:param builtins.str project_id: The ID of the project the image tag is associated with.
|
208
|
+
:param builtins.str region: The region in which the registry image tag exists.
|
209
|
+
:param builtins.str tag_id: The ID of the registry image tag.
|
209
210
|
"""
|
210
211
|
__args__ = dict()
|
211
212
|
__args__['imageId'] = image_id
|
@@ -1,7 +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 builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -57,12 +58,12 @@ class GetNamespaceResult:
|
|
57
58
|
|
58
59
|
@property
|
59
60
|
@pulumi.getter
|
60
|
-
def description(self) -> str:
|
61
|
+
def description(self) -> builtins.str:
|
61
62
|
return pulumi.get(self, "description")
|
62
63
|
|
63
64
|
@property
|
64
65
|
@pulumi.getter
|
65
|
-
def endpoint(self) -> str:
|
66
|
+
def endpoint(self) -> builtins.str:
|
66
67
|
"""
|
67
68
|
The endpoint of the Registry Namespace.
|
68
69
|
"""
|
@@ -70,7 +71,7 @@ class GetNamespaceResult:
|
|
70
71
|
|
71
72
|
@property
|
72
73
|
@pulumi.getter
|
73
|
-
def id(self) -> str:
|
74
|
+
def id(self) -> builtins.str:
|
74
75
|
"""
|
75
76
|
The provider-assigned unique ID for this managed resource.
|
76
77
|
"""
|
@@ -78,7 +79,7 @@ class GetNamespaceResult:
|
|
78
79
|
|
79
80
|
@property
|
80
81
|
@pulumi.getter(name="isPublic")
|
81
|
-
def is_public(self) -> bool:
|
82
|
+
def is_public(self) -> builtins.bool:
|
82
83
|
"""
|
83
84
|
The Namespace Privacy Policy: whether or not the images are public.
|
84
85
|
"""
|
@@ -86,17 +87,17 @@ class GetNamespaceResult:
|
|
86
87
|
|
87
88
|
@property
|
88
89
|
@pulumi.getter
|
89
|
-
def name(self) -> Optional[str]:
|
90
|
+
def name(self) -> Optional[builtins.str]:
|
90
91
|
return pulumi.get(self, "name")
|
91
92
|
|
92
93
|
@property
|
93
94
|
@pulumi.getter(name="namespaceId")
|
94
|
-
def namespace_id(self) -> Optional[str]:
|
95
|
+
def namespace_id(self) -> Optional[builtins.str]:
|
95
96
|
return pulumi.get(self, "namespace_id")
|
96
97
|
|
97
98
|
@property
|
98
99
|
@pulumi.getter(name="organizationId")
|
99
|
-
def organization_id(self) -> str:
|
100
|
+
def organization_id(self) -> builtins.str:
|
100
101
|
"""
|
101
102
|
The organization ID the namespace is associated with.
|
102
103
|
"""
|
@@ -104,12 +105,12 @@ class GetNamespaceResult:
|
|
104
105
|
|
105
106
|
@property
|
106
107
|
@pulumi.getter(name="projectId")
|
107
|
-
def project_id(self) -> Optional[str]:
|
108
|
+
def project_id(self) -> Optional[builtins.str]:
|
108
109
|
return pulumi.get(self, "project_id")
|
109
110
|
|
110
111
|
@property
|
111
112
|
@pulumi.getter
|
112
|
-
def region(self) -> Optional[str]:
|
113
|
+
def region(self) -> Optional[builtins.str]:
|
113
114
|
return pulumi.get(self, "region")
|
114
115
|
|
115
116
|
|
@@ -130,21 +131,21 @@ class AwaitableGetNamespaceResult(GetNamespaceResult):
|
|
130
131
|
region=self.region)
|
131
132
|
|
132
133
|
|
133
|
-
def get_namespace(name: Optional[str] = None,
|
134
|
-
namespace_id: Optional[str] = None,
|
135
|
-
project_id: Optional[str] = None,
|
136
|
-
region: Optional[str] = None,
|
134
|
+
def get_namespace(name: Optional[builtins.str] = None,
|
135
|
+
namespace_id: Optional[builtins.str] = None,
|
136
|
+
project_id: Optional[builtins.str] = None,
|
137
|
+
region: Optional[builtins.str] = None,
|
137
138
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNamespaceResult:
|
138
139
|
"""
|
139
140
|
Gets information about a registry namespace.
|
140
141
|
|
141
142
|
|
142
|
-
:param str name: The namespace name.
|
143
|
-
:param str namespace_id: The namespace id.
|
143
|
+
:param builtins.str name: The namespace name.
|
144
|
+
:param builtins.str namespace_id: The namespace id.
|
144
145
|
|
145
146
|
> **Note** You must specify at least one: `name` and/or `image_id`.
|
146
|
-
:param str project_id: `project_id`) The ID of the project the namespace is associated with.
|
147
|
-
:param str region: `region`) The region in which the namespace exists.
|
147
|
+
:param builtins.str project_id: `project_id`) The ID of the project the namespace is associated with.
|
148
|
+
:param builtins.str region: `region`) The region in which the namespace exists.
|
148
149
|
"""
|
149
150
|
__args__ = dict()
|
150
151
|
__args__['name'] = name
|
@@ -164,21 +165,21 @@ def get_namespace(name: Optional[str] = None,
|
|
164
165
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
165
166
|
project_id=pulumi.get(__ret__, 'project_id'),
|
166
167
|
region=pulumi.get(__ret__, 'region'))
|
167
|
-
def get_namespace_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
168
|
-
namespace_id: Optional[pulumi.Input[Optional[str]]] = None,
|
169
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
170
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
168
|
+
def get_namespace_output(name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
169
|
+
namespace_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
170
|
+
project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
171
|
+
region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
171
172
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNamespaceResult]:
|
172
173
|
"""
|
173
174
|
Gets information about a registry namespace.
|
174
175
|
|
175
176
|
|
176
|
-
:param str name: The namespace name.
|
177
|
-
:param str namespace_id: The namespace id.
|
177
|
+
:param builtins.str name: The namespace name.
|
178
|
+
:param builtins.str namespace_id: The namespace id.
|
178
179
|
|
179
180
|
> **Note** You must specify at least one: `name` and/or `image_id`.
|
180
|
-
:param str project_id: `project_id`) The ID of the project the namespace is associated with.
|
181
|
-
:param str region: `region`) The region in which the namespace exists.
|
181
|
+
:param builtins.str project_id: `project_id`) The ID of the project the namespace is associated with.
|
182
|
+
:param builtins.str region: `region`) The region in which the namespace exists.
|
182
183
|
"""
|
183
184
|
__args__ = dict()
|
184
185
|
__args__['name'] = name
|