debian-mirror-gitlab/app/assets/javascripts/google_cloud/databases/panel.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
1.6 KiB
Vue
Raw Normal View History

2022-08-13 15:12:31 +05:30
<script>
import GoogleCloudMenu from '../components/google_cloud_menu.vue';
import IncubationBanner from '../components/incubation_banner.vue';
2022-10-11 01:57:18 +05:30
import InstanceTable from './cloudsql/instance_table.vue';
import ServiceTable from './service_table.vue';
2022-08-13 15:12:31 +05:30
export default {
components: {
IncubationBanner,
2022-10-11 01:57:18 +05:30
InstanceTable,
2022-08-13 15:12:31 +05:30
GoogleCloudMenu,
2022-10-11 01:57:18 +05:30
ServiceTable,
2022-08-13 15:12:31 +05:30
},
props: {
configurationUrl: {
type: String,
required: true,
},
deploymentsUrl: {
type: String,
required: true,
},
databasesUrl: {
type: String,
required: true,
},
2022-10-11 01:57:18 +05:30
cloudsqlPostgresUrl: {
type: String,
required: true,
},
cloudsqlMysqlUrl: {
type: String,
required: true,
},
cloudsqlSqlserverUrl: {
type: String,
required: true,
},
cloudsqlInstances: {
type: Array,
required: true,
},
emptyIllustrationUrl: {
type: String,
required: true,
},
2022-08-13 15:12:31 +05:30
},
};
</script>
<template>
<div>
<incubation-banner />
<google-cloud-menu
active="databases"
:configuration-url="configurationUrl"
:deployments-url="deploymentsUrl"
:databases-url="databasesUrl"
/>
2022-10-11 01:57:18 +05:30
<service-table
alloydb-postgres-url="#"
:cloudsql-mysql-url="cloudsqlMysqlUrl"
:cloudsql-postgres-url="cloudsqlPostgresUrl"
:cloudsql-sqlserver-url="cloudsqlSqlserverUrl"
firestore-url="#"
memorystore-redis-url="#"
/>
<instance-table
:cloudsql-instances="cloudsqlInstances"
:empty-illustration-url="emptyIllustrationUrl"
/>
2022-08-13 15:12:31 +05:30
</div>
</template>