repo
stringlengths
6
47
file_url
stringlengths
77
269
file_path
stringlengths
5
186
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-07 08:35:43
2026-01-07 08:55:24
truncated
bool
2 classes
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/global.go
src/global.go
package main import ( "os" "path/filepath" "./ui" "./utils" ) func installBins(path string) { var GLOBAL = utils.Path(utils.HOMEDIR(".") + "/.gupm/global") bins := utils.RecursiveFileWalkDir(GLOBAL + "/.bin") for _, bin := range bins { name := filepath.Base(bin) if !utils.FileExists(path + "/" + name) { ...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/removeDependency.go
src/removeDependency.go
package main import ( "./provider" "./ui" "./utils" ) func remove(slice []map[string]interface{}, s int) []map[string]interface{} { return append(slice[:s], slice[s+1:]...) } func RemoveDependency(path string, rls []string) error { var err error var packageConfig utils.Json var depList []map[string]interface{...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/defaultProvider/defaultProvider.go
src/defaultProvider/defaultProvider.go
package defaultProvider import ( "encoding/json" "io/ioutil" "os" "reflect" "regexp" "../ui" "../utils" ) func Bootstrap(path string) { if utils.FileExists(utils.Path(path + "/gupm.json")) { ui.Error("A project already exists in this folder. Aborting bootstrap.") return } name := ui.WaitForInput("Plea...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/defaultProvider/publish.go
src/defaultProvider/publish.go
package defaultProvider import ( "os" "../ui" "../utils" ) func Publish(path string, namespace string) error { configPath := utils.Path(path + "/gupm.json") if utils.FileExists(configPath) { packageConfig := new(utils.GupmEntryPoint) errConfig := utils.ReadJSON(configPath, &packageConfig) if errConfig != ...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/jsVm/jsVm.go
src/jsVm/jsVm.go
package jsVm import ( "encoding/json" "errors" "io/ioutil" "os" "path/filepath" "sync" "time" "../ui" "../utils" "github.com/Masterminds/semver" "github.com/robertkrimen/otto" ) var lock = sync.RWMutex{} var scriptCache = make(map[string]string) func Run(path string, input utils.Json) (otto.Value, error)...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/utils/json.go
src/utils/json.go
package utils // import ( // "reflect" // "fmt" // ) // type Json map[interface{}]interface {} type Json map[string]interface{} // func (j *Json) AsObject() map[string]interface {} { // res := map[string]interface{}{} // for i, v := range *j { // res[i.(string)] = v // } // return res // } func (j *Json) Co...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/utils/types.go
src/utils/types.go
package utils type GupmEntryPoint struct { Name string Version string WrapInstallFolder string Git gupmEntryPointGit Publish gupmEntryPointPublish Cli gupmEntryPointCliList Config gupmEntryPointConfigList Dependencies gupmEntryPointDe...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/utils/utils.go
src/utils/utils.go
package utils import ( "encoding/json" "io/ioutil" "net/http" "os" "os/exec" "path/filepath" "reflect" "regexp" "runtime" "sync" "time" "../ui" "github.com/mitchellh/go-homedir" ) type Dependency struct { Name string Provider string Version string } func buildCmd(toRun string, args []string) *e...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/utils/untar.go
src/utils/untar.go
package utils import "archive/tar" import "archive/zip" import "compress/gzip" import ( "bytes" "io" "io/ioutil" "strings" ) func Ungz(r string) (FileStructure, error) { tr, err := gzip.NewReader(strings.NewReader(r)) if err != nil { return EmptyFileStructure, err } defer tr.Close() buf := new(bytes.Bu...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/utils/files.go
src/utils/files.go
package utils import ( "os" "strings" // "fmt" "github.com/bmatcuk/doublestar" "github.com/otiai10/copy" ) var EmptyFileStructure = FileStructure{} type FileStructure struct { Children map[string]FileStructure Name string Content []byte Filetype int } func Dir(path string) (matches []string, err erro...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/utils/repo.go
src/utils/repo.go
package utils import ( "io/ioutil" ) func GetOrCreateRepo(path string) map[string]interface{} { configPath := path + "/gupm_repo.json" if !FileExists(configPath) { baseConfig := `{ "packages": {} }` WriteFile(configPath, baseConfig) return StringToJSON(baseConfig) } file, _ := ioutil.ReadFile(configPath)...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/provider/dependencyTree.go
src/provider/dependencyTree.go
package provider func eliminateRedundancy(tree []map[string]interface{}, path map[string]bool) []map[string]interface{} { var cleanTree = make([]map[string]interface{}, 0) for index, dep := range tree { if dep["name"] != nil { _ = index depKey := dep["name"].(string) + "@" + dep["version"].(string) if pat...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/provider/install.go
src/provider/install.go
package provider import ( "io/ioutil" "os" "regexp" "../defaultProvider" "../jsVm" "../ui" "../utils" ) func BinaryInstall(path string, paths map[string]string) error { dest := utils.Path(path + "/.bin") os.RemoveAll(dest) os.MkdirAll(dest, os.ModePerm) for pr, prdir := range paths { depProviderPath :=...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/provider/publish.go
src/provider/publish.go
package provider import ( "errors" "../defaultProvider" "../jsVm" "../utils" // "fmt" ) func Publish(path string, namespace string) error { if Provider != "gupm" { var file = utils.FileExists(utils.Path(ProviderPath + "/publish.gs")) if file { input := make(map[string]interface{}) input["Path"] = pat...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/provider/bootstrap.go
src/provider/bootstrap.go
package provider import ( "../defaultProvider" "../jsVm" "../utils" "errors" // "fmt" ) func Bootstrap(path string) error { if Provider != "gupm" { var file = utils.FileExists(utils.Path(ProviderPath + "/bootstrap.gs")) if file { input := make(map[string]interface{}) input["Path"] = path _, err := ...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/provider/provider.go
src/provider/provider.go
package provider import ( "fmt" "os" "path/filepath" "sync" "../defaultProvider" "../jsVm" "../ui" "../utils" ) var Provider string var ProviderPath string var providerConfigCache = make(map[string]*utils.GupmEntryPoint) var linkHasErrored = false var pConfigLock = sync.RWMutex{} func GetProviderPath(name s...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/windows/windows_install.go
src/windows/windows_install.go
package main import ( "../ui" "../utils" "fmt" ) func main() { arch := utils.HttpGet("https://azukaar.github.io/GuPM/gupm_windows.tar.gz") files, _ := utils.Untar(string(arch)) path := ui.WaitForInput("Where do you want to save GuPM? (default C:\\)") if path == "" { path = "C:\\" } files.SaveAt(path) fmt....
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
azukaar/GuPM
https://github.com/azukaar/GuPM/blob/53371f326bf98dc67536562adc10c3e206b41ad6/src/ui/log.go
src/ui/log.go
package ui import ( "bufio" "errors" "fmt" "github.com/fatih/color" "github.com/gosuri/uilive" "os" "strconv" "sync" "time" ) var errorList = make([]string, 0) var debugList = make([]string, 0) var currentLog string var currentTitle string var progress int var screenWidth int var positionToDrawAt int var log...
go
ISC
53371f326bf98dc67536562adc10c3e206b41ad6
2026-01-07T09:43:21.197412Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/main.go
main.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/validation/constraint_builder.go
pkg/validation/constraint_builder.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/validation/struct_validator_test.go
pkg/validation/struct_validator_test.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/validation/field_error.go
pkg/validation/field_error.go
// Copyright 2019 the Service Broker Project Authors. // Copyright 2017 The Knative Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICEN...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/validation/struct_validator.go
pkg/validation/struct_validator.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/validation/constraint_builder_test.go
pkg/validation/constraint_builder_test.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/validation/field_error_test.go
pkg/validation/field_error_test.go
// Copyright 2019 the Service Broker Project Authors. // Copyright 2017 The Knative Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICEN...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/generator/types.go
pkg/generator/types.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/generator/forms.go
pkg/generator/forms.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/generator/customization-md.go
pkg/generator/customization-md.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/generator/pcf-artifacts.go
pkg/generator/pcf-artifacts.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/varcontext/varcontext.go
pkg/varcontext/varcontext.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/varcontext/builder.go
pkg/varcontext/builder.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/varcontext/varcontext_test.go
pkg/varcontext/varcontext_test.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/varcontext/builder_test.go
pkg/varcontext/builder_test.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/varcontext/interpolation/eval.go
pkg/varcontext/interpolation/eval.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/varcontext/interpolation/funcs.go
pkg/varcontext/interpolation/funcs.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/varcontext/interpolation/eval_test.go
pkg/varcontext/interpolation/eval_test.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/tf/job_runner.go
pkg/providers/tf/job_runner.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/tf/provider.go
pkg/providers/tf/provider.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/tf/definition.go
pkg/providers/tf/definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/tf/definition_test.go
pkg/providers/tf/definition_test.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/tf/wrapper/tfstate_test.go
pkg/providers/tf/wrapper/tfstate_test.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/tf/wrapper/tfstate.go
pkg/providers/tf/wrapper/tfstate.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/tf/wrapper/module_test.go
pkg/providers/tf/wrapper/module_test.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/tf/wrapper/instance.go
pkg/providers/tf/wrapper/instance.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/tf/wrapper/instance_test.go
pkg/providers/tf/wrapper/instance_test.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/tf/wrapper/module.go
pkg/providers/tf/wrapper/module.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/tf/wrapper/workspace_test.go
pkg/providers/tf/wrapper/workspace_test.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/tf/wrapper/workspace.go
pkg/providers/tf/wrapper/workspace.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/registry.go
pkg/providers/builtin/registry.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/builtins_test.go
pkg/providers/builtin/builtins_test.go
// Copyright 2019 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/registry_test.go
pkg/providers/builtin/registry_test.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/bigquery/broker.go
pkg/providers/builtin/bigquery/broker.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/bigquery/definition.go
pkg/providers/builtin/bigquery/definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/pubsub/broker.go
pkg/providers/builtin/pubsub/broker.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/pubsub/definition.go
pkg/providers/builtin/pubsub/definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/ml/broker.go
pkg/providers/builtin/ml/broker.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/ml/definition.go
pkg/providers/builtin/ml/definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/storage/broker.go
pkg/providers/builtin/storage/broker.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/storage/definition.go
pkg/providers/builtin/storage/definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/dataflow/broker.go
pkg/providers/builtin/dataflow/broker.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/dataflow/definition.go
pkg/providers/builtin/dataflow/definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/base/mixins.go
pkg/providers/builtin/base/mixins.go
// Copyright 2019 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/base/broker_base.go
pkg/providers/builtin/base/broker_base.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/base/variables.go
pkg/providers/builtin/base/variables.go
// Copyright 2019 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/base/peered_network_service.go
pkg/providers/builtin/base/peered_network_service.go
// Copyright 2019 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/base/basefakes/fake_service_account_manager.go
pkg/providers/builtin/base/basefakes/fake_service_account_manager.go
// Code generated by counterfeiter. DO NOT EDIT. package basefakes import ( context "context" sync "sync" models "github.com/GoogleCloudPlatform/gcp-service-broker/db_service/models" base "github.com/GoogleCloudPlatform/gcp-service-broker/pkg/providers/builtin/base" varcontext "github.com/GoogleCloudPlatform/gcp...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/filestore/broker.go
pkg/providers/builtin/filestore/broker.go
// Copyright 2019 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/filestore/definition.go
pkg/providers/builtin/filestore/definition.go
// Copyright 2019 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/redis/broker.go
pkg/providers/builtin/redis/broker.go
// Copyright 2019 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/redis/definition.go
pkg/providers/builtin/redis/definition.go
// Copyright 2019 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/spanner/broker.go
pkg/providers/builtin/spanner/broker.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/spanner/definition.go
pkg/providers/builtin/spanner/definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/cloudsql/postgres-vpc-definition.go
pkg/providers/builtin/cloudsql/postgres-vpc-definition.go
package cloudsql import ( "github.com/GoogleCloudPlatform/gcp-service-broker/pkg/broker" "github.com/pivotal-cf/brokerapi" ) const postgresVPCID = "c90ea118-605a-47e8-8f63-57fc09c113f1" // PostgresVPCServiceDefinition creates a new ServiceDefinition object for the // Postgres service on a VPC. func PostgresVPCServ...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/cloudsql/broker.go
pkg/providers/builtin/cloudsql/broker.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/cloudsql/mysql-definition.go
pkg/providers/builtin/cloudsql/mysql-definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/cloudsql/postgres-definition.go
pkg/providers/builtin/cloudsql/postgres-definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/cloudsql/mysql-vpc-definition.go
pkg/providers/builtin/cloudsql/mysql-vpc-definition.go
package cloudsql import ( "github.com/GoogleCloudPlatform/gcp-service-broker/pkg/broker" "github.com/pivotal-cf/brokerapi" ) const mySQLVPCID = "b48d2a6b-b1b0-499f-8389-57ba33bfbb19" // MySQLVPCServiceDefinition creates a new ServiceDefinition object for the MySQL service // on a VPC. func MySQLVPCServiceDefinitio...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/cloudsql/builder.go
pkg/providers/builtin/cloudsql/builder.go
// Copyright 2020 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/cloudsql/common-definition.go
pkg/providers/builtin/cloudsql/common-definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/cloudsql/sql_account_manager.go
pkg/providers/builtin/cloudsql/sql_account_manager.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/cloudsql/broker_test.go
pkg/providers/builtin/cloudsql/broker_test.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/datastore/broker.go
pkg/providers/builtin/datastore/broker.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/datastore/definition.go
pkg/providers/builtin/datastore/definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/stackdriver/debugger_definition.go
pkg/providers/builtin/stackdriver/debugger_definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/stackdriver/broker.go
pkg/providers/builtin/stackdriver/broker.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/stackdriver/profiler_definition.go
pkg/providers/builtin/stackdriver/profiler_definition.go
// Copyright 2018 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in w...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/stackdriver/monitoring_definition.go
pkg/providers/builtin/stackdriver/monitoring_definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/stackdriver/trace_definition.go
pkg/providers/builtin/stackdriver/trace_definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/bigtable/broker.go
pkg/providers/builtin/bigtable/broker.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/bigtable/broker_test.go
pkg/providers/builtin/bigtable/broker_test.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/bigtable/definition.go
pkg/providers/builtin/bigtable/definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/firestore/broker.go
pkg/providers/builtin/firestore/broker.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/firestore/definition.go
pkg/providers/builtin/firestore/definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/account_managers/iam_test.go
pkg/providers/builtin/account_managers/iam_test.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/account_managers/iam.go
pkg/providers/builtin/account_managers/iam.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/account_managers/service_account_manager.go
pkg/providers/builtin/account_managers/service_account_manager.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/account_managers/service_account_manager_test.go
pkg/providers/builtin/account_managers/service_account_manager_test.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/dialogflow/broker.go
pkg/providers/builtin/dialogflow/broker.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/providers/builtin/dialogflow/definition.go
pkg/providers/builtin/dialogflow/definition.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false
GoogleCloudPlatform/gcp-service-broker
https://github.com/GoogleCloudPlatform/gcp-service-broker/blob/2f676b434e3f9d570f3b1d831f81e3a3de8c7664/pkg/toggles/toggle.go
pkg/toggles/toggle.go
// Copyright 2018 the Service Broker Project Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applic...
go
Apache-2.0
2f676b434e3f9d570f3b1d831f81e3a3de8c7664
2026-01-07T09:45:07.005916Z
false