curl --location 'http://localhost:3000//api/v1/entities/workspaces' \
--header 'Content-Type: application/vnd.gooddata.api+json' \
--header 'Accept: application/vnd.gooddata.api+json' \
--header 'Authorization: Bearer YWRtaW46Ym9vdHN0cmFwOmFkbWluMTIz' \
--data '{
"data": {
"id": "parent-workspace",
"type": "workspace",
We allow to run 3rd party docker containers on our platform. A process that is responsible for running those 3rd party docker containers is called docker runner. The docker runner has access to the internal database(mysql db) however the 3rd party docker containers run from the docker runner can only have access to the internet and access to the internal database must be denied.
Have a look at the following picture:
We have an aks cluster deployed into vnet(AKS virtual network) via Azure CNI(Advanced networking) where:
- Go to https://console.developers.google.com
- Select a an existing project or create a new one
- Go to APIs Overview and click on
+ Enable APIS and Services
- Allow
Google Drive API
andGoogle Sheets API
- search for theGoogle Drive API
and in the detail click onEnable button
. Repeat the step to allowGoogle Sheets API
as well.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- this script fails on Mysql 5.7 hosted on Azure but works on the same MySQL 5.7 hosted on AWS. | |
DROP TABLE IF EXISTS `Table2Renamed`; | |
DROP TABLE IF EXISTS `Table2`; | |
DROP TABLE IF EXISTS `Table1`; | |
CREATE TABLE `Table1` ( | |
`id` int(11) unsigned NOT NULL, | |
`value` text DEFAULT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import route from '../../utils/configRowsRoute'; | |
import { createConfiguration as rowCreateConfiguration, parseConfiguration as rowParseConfiguration } from './adapters/row'; | |
import { createConfiguration as credentialsCreateConfiguration, parseConfiguration as credentialsParseConfiguration, isCompleted as credentialsIsCompleted } from './adapters/credentials'; | |
import ConfigurationForm from './react/components/Configuration'; | |
import CredentialsForm from './react/components/Credentials'; | |
import fuzzy from 'fuzzy'; | |
const routeSettings = { |