Add Support for Google source repos (#256)

This commit is contained in:
alex1x 2017-08-03 23:00:34 +01:00 committed by Vincent Roseberry
parent b5f31bb958
commit 8570849022
9 changed files with 3032 additions and 2 deletions

View File

@ -26,6 +26,7 @@ import (
"google.golang.org/api/iam/v1"
"google.golang.org/api/pubsub/v1"
"google.golang.org/api/servicemanagement/v1"
"google.golang.org/api/sourcerepo/v1"
"google.golang.org/api/sqladmin/v1beta4"
"google.golang.org/api/storage/v1"
)
@ -44,6 +45,7 @@ type Config struct {
clientDns *dns.Service
clientPubsub *pubsub.Service
clientResourceManager *cloudresourcemanager.Service
clientSourceRepo *sourcerepo.Service
clientStorage *storage.Service
clientSqlAdmin *sqladmin.Service
clientIAM *iam.Service
@ -206,6 +208,13 @@ func (c *Config) loadAndValidate() error {
TokenSource: tokenSource,
}
log.Printf("[INFO] Instantiating Google Cloud Source Repo Client...")
c.clientSourceRepo, err = sourcerepo.New(client)
if err != nil {
return err
}
c.clientSourceRepo.UserAgent = userAgent
return nil
}

View File

@ -108,6 +108,7 @@ func Provider() terraform.ResourceProvider {
"google_container_node_pool": resourceContainerNodePool(),
"google_dns_managed_zone": resourceDnsManagedZone(),
"google_dns_record_set": resourceDnsRecordSet(),
"google_sourcerepo_repository": resourceSourceRepoRepository(),
"google_sql_database": resourceSqlDatabase(),
"google_sql_database_instance": resourceSqlDatabaseInstance(),
"google_sql_user": resourceSqlUser(),

View File

@ -0,0 +1,107 @@
package google
import (
"fmt"
"github.com/hashicorp/terraform/helper/schema"
"google.golang.org/api/sourcerepo/v1"
)
func resourceSourceRepoRepository() *schema.Resource {
return &schema.Resource{
Create: resourceSourceRepoRepositoryCreate,
Read: resourceSourceRepoRepositoryRead,
Delete: resourceSourceRepoRepositoryDelete,
//Update: not supported,
Schema: map[string]*schema.Schema{
"name": &schema.Schema{
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"project": &schema.Schema{
Type: schema.TypeString,
Optional: true,
ForceNew: true,
},
"size": &schema.Schema{
Type: schema.TypeInt,
Computed: true,
},
},
}
}
func resourceSourceRepoRepositoryCreate(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)
project, err := getProject(d, config)
if err != nil {
return err
}
repoName := d.Get("name").(string)
name := buildRepositoryName(project, repoName)
repo := &sourcerepo.Repo{
Name: name,
}
parent := "projects/" + project
op, err := config.clientSourceRepo.Projects.Repos.Create(parent, repo).Do()
if err != nil {
return fmt.Errorf("Error creating the Source Repo: %s", err)
}
d.SetId(op.Name)
return nil
}
func resourceSourceRepoRepositoryRead(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)
project, err := getProject(d, config)
if err != nil {
return err
}
repoName := d.Get("name").(string)
name := buildRepositoryName(project, repoName)
repo, err := config.clientSourceRepo.Projects.Repos.Get(name).Do()
if err != nil {
return handleNotFoundError(err, d, fmt.Sprintf("Source Repo %q", d.Id()))
}
d.Set("size", repo.Size)
return nil
}
func resourceSourceRepoRepositoryDelete(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)
project, err := getProject(d, config)
if err != nil {
return err
}
repoName := d.Get("name").(string)
name := buildRepositoryName(project, repoName)
_, err = config.clientSourceRepo.Projects.Repos.Delete(name).Do()
if err != nil {
return fmt.Errorf("Error deleting the Source Repo: %s", err)
}
return nil
}
func buildRepositoryName(project, name string) string {
repositoryName := "projects/" + project + "/repos/" + name
return repositoryName
}

View File

@ -0,0 +1,81 @@
package google
import (
"fmt"
"testing"
"github.com/hashicorp/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
)
func TestAccSourceRepoRepository_basic(t *testing.T) {
repositoryName := fmt.Sprintf("source-repo-repository-test-%s", acctest.RandString(10))
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: testAccCheckSourceRepoRepositoryDestroy,
Steps: []resource.TestStep{
resource.TestStep{
Config: testAccSourceRepoRepository_basic(repositoryName),
Check: resource.ComposeTestCheckFunc(
testAccCheckSourceRepoRepositoryExists(
"google_sourcerepo_repository.acceptance", repositoryName),
),
},
},
})
}
func testAccCheckSourceRepoRepositoryDestroy(s *terraform.State) error {
config := testAccProvider.Meta().(*Config)
for _, rs := range s.RootModule().Resources {
if rs.Type == "google_sourcerepo_repository" {
repositoryName := buildRepositoryName(config.Project, rs.Primary.Attributes["name"])
_, err := config.clientSourceRepo.Projects.Repos.Get(repositoryName).Do()
if err == nil {
return fmt.Errorf(repositoryName + "Source Repository still exists")
}
}
}
return nil
}
func testAccCheckSourceRepoRepositoryExists(resourceType, resourceName string) resource.TestCheckFunc {
return func(s *terraform.State) error {
rs, ok := s.RootModule().Resources[resourceType]
if !ok {
return fmt.Errorf("Not found: %s", resourceName)
}
if rs.Primary.ID == "" {
return fmt.Errorf("No ID is set")
}
config := testAccProvider.Meta().(*Config)
repositoryName := buildRepositoryName(config.Project, resourceName)
resp, err := config.clientSourceRepo.Projects.Repos.Get(repositoryName).Do()
if err != nil {
return fmt.Errorf("Error confirming Source Repository existence: %#v", err)
}
if resp.Name != repositoryName {
return fmt.Errorf("Failed to verify Source Repository by name")
}
return nil
}
}
func testAccSourceRepoRepository_basic(repositoryName string) string {
return fmt.Sprintf(`
resource "google_sourcerepo_repository" "acceptance" {
name = "%s"
}
`, repositoryName)
}

View File

@ -0,0 +1,778 @@
{
"title": "Cloud Source Repositories API",
"ownerName": "Google",
"resources": {
"projects": {
"resources": {
"repos": {
"methods": {
"getIamPolicy": {
"description": "Gets the access control policy for a resource.\nReturns an empty policy if the resource exists and does not have a policy\nset.",
"httpMethod": "GET",
"response": {
"$ref": "Policy"
},
"parameterOrder": [
"resource"
],
"scopes": [
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/source.read_only",
"https://www.googleapis.com/auth/source.read_write"
],
"parameters": {
"resource": {
"description": "REQUIRED: The resource for which the policy is being requested.\nSee the operation documentation for the appropriate value for this field.",
"type": "string",
"required": true,
"pattern": "^projects/[^/]+/repos/.+$",
"location": "path"
}
},
"flatPath": "v1/projects/{projectsId}/repos/{reposId}:getIamPolicy",
"path": "v1/{+resource}:getIamPolicy",
"id": "sourcerepo.projects.repos.getIamPolicy"
},
"get": {
"flatPath": "v1/projects/{projectsId}/repos/{reposId}",
"path": "v1/{+name}",
"id": "sourcerepo.projects.repos.get",
"description": "Returns information about a repo.",
"httpMethod": "GET",
"response": {
"$ref": "Repo"
},
"parameterOrder": [
"name"
],
"scopes": [
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/source.read_only",
"https://www.googleapis.com/auth/source.read_write"
],
"parameters": {
"name": {
"description": "The name of the requested repository. Values are of the form\n`projects/\u003cproject\u003e/repos/\u003crepo\u003e`.",
"type": "string",
"required": true,
"pattern": "^projects/[^/]+/repos/.+$",
"location": "path"
}
}
},
"testIamPermissions": {
"description": "Returns permissions that a caller has on the specified resource.\nIf the resource does not exist, this will return an empty set of\npermissions, not a NOT_FOUND error.",
"request": {
"$ref": "TestIamPermissionsRequest"
},
"response": {
"$ref": "TestIamPermissionsResponse"
},
"parameterOrder": [
"resource"
],
"httpMethod": "POST",
"parameters": {
"resource": {
"location": "path",
"description": "REQUIRED: The resource for which the policy detail is being requested.\nSee the operation documentation for the appropriate value for this field.",
"type": "string",
"required": true,
"pattern": "^projects/[^/]+/repos/.+$"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/source.read_only",
"https://www.googleapis.com/auth/source.read_write"
],
"flatPath": "v1/projects/{projectsId}/repos/{reposId}:testIamPermissions",
"id": "sourcerepo.projects.repos.testIamPermissions",
"path": "v1/{+resource}:testIamPermissions"
},
"delete": {
"response": {
"$ref": "Empty"
},
"parameterOrder": [
"name"
],
"httpMethod": "DELETE",
"parameters": {
"name": {
"description": "The name of the repo to delete. Values are of the form\n`projects/\u003cproject\u003e/repos/\u003crepo\u003e`.",
"type": "string",
"required": true,
"pattern": "^projects/[^/]+/repos/.+$",
"location": "path"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/source.read_only",
"https://www.googleapis.com/auth/source.read_write"
],
"flatPath": "v1/projects/{projectsId}/repos/{reposId}",
"id": "sourcerepo.projects.repos.delete",
"path": "v1/{+name}",
"description": "Deletes a repo."
},
"list": {
"flatPath": "v1/projects/{projectsId}/repos",
"id": "sourcerepo.projects.repos.list",
"path": "v1/{+name}/repos",
"description": "Returns all repos belonging to a project. The sizes of the repos are\nnot set by ListRepos. To get the size of a repo, use GetRepo.",
"response": {
"$ref": "ListReposResponse"
},
"parameterOrder": [
"name"
],
"httpMethod": "GET",
"parameters": {
"pageToken": {
"location": "query",
"description": "Resume listing repositories where a prior ListReposResponse\nleft off. This is an opaque token that must be obtained from\na recent, prior ListReposResponse's next_page_token field.",
"type": "string"
},
"name": {
"location": "path",
"description": "The project ID whose repos should be listed. Values are of the form\n`projects/\u003cproject\u003e`.",
"type": "string",
"required": true,
"pattern": "^projects/[^/]+$"
},
"pageSize": {
"format": "int32",
"description": "Maximum number of repositories to return; between 1 and 500.\nIf not set or zero, defaults to 100 at the server.",
"type": "integer",
"location": "query"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/source.read_only",
"https://www.googleapis.com/auth/source.read_write"
]
},
"create": {
"flatPath": "v1/projects/{projectsId}/repos",
"id": "sourcerepo.projects.repos.create",
"path": "v1/{+parent}/repos",
"description": "Creates a repo in the given project with the given name.\n\nIf the named repository already exists, `CreateRepo` returns\n`ALREADY_EXISTS`.",
"request": {
"$ref": "Repo"
},
"response": {
"$ref": "Repo"
},
"parameterOrder": [
"parent"
],
"httpMethod": "POST",
"parameters": {
"parent": {
"description": "The project in which to create the repo. Values are of the form\n`projects/\u003cproject\u003e`.",
"type": "string",
"required": true,
"pattern": "^projects/[^/]+$",
"location": "path"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/source.read_only",
"https://www.googleapis.com/auth/source.read_write"
]
},
"setIamPolicy": {
"request": {
"$ref": "SetIamPolicyRequest"
},
"description": "Sets the access control policy on the specified resource. Replaces any\nexisting policy.",
"httpMethod": "POST",
"parameterOrder": [
"resource"
],
"response": {
"$ref": "Policy"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/source.read_only",
"https://www.googleapis.com/auth/source.read_write"
],
"parameters": {
"resource": {
"description": "REQUIRED: The resource for which the policy is being specified.\nSee the operation documentation for the appropriate value for this field.",
"type": "string",
"required": true,
"pattern": "^projects/[^/]+/repos/.+$",
"location": "path"
}
},
"flatPath": "v1/projects/{projectsId}/repos/{reposId}:setIamPolicy",
"path": "v1/{+resource}:setIamPolicy",
"id": "sourcerepo.projects.repos.setIamPolicy"
}
}
}
}
}
},
"parameters": {
"access_token": {
"location": "query",
"description": "OAuth access token.",
"type": "string"
},
"key": {
"location": "query",
"description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
"type": "string"
},
"quotaUser": {
"location": "query",
"description": "Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.",
"type": "string"
},
"pp": {
"description": "Pretty-print response.",
"default": "true",
"type": "boolean",
"location": "query"
},
"bearer_token": {
"description": "OAuth bearer token.",
"type": "string",
"location": "query"
},
"oauth_token": {
"description": "OAuth 2.0 token for the current user.",
"type": "string",
"location": "query"
},
"upload_protocol": {
"location": "query",
"description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
"type": "string"
},
"prettyPrint": {
"location": "query",
"description": "Returns response with indentations and line breaks.",
"default": "true",
"type": "boolean"
},
"uploadType": {
"description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").",
"type": "string",
"location": "query"
},
"fields": {
"description": "Selector specifying which fields to include in a partial response.",
"type": "string",
"location": "query"
},
"$.xgafv": {
"description": "V1 error format.",
"type": "string",
"enumDescriptions": [
"v1 error format",
"v2 error format"
],
"location": "query",
"enum": [
"1",
"2"
]
},
"callback": {
"description": "JSONP",
"type": "string",
"location": "query"
},
"alt": {
"description": "Data format for response.",
"default": "json",
"enum": [
"json",
"media",
"proto"
],
"type": "string",
"enumDescriptions": [
"Responses with Content-Type of application/json",
"Media download with context-dependent Content-Type",
"Responses with Content-Type of application/x-protobuf"
],
"location": "query"
}
},
"version": "v1",
"baseUrl": "https://sourcerepo.googleapis.com/",
"servicePath": "",
"description": "Access source code repositories hosted by Google.",
"kind": "discovery#restDescription",
"basePath": "",
"id": "sourcerepo:v1",
"documentationLink": "https://cloud.google.com/source-repositories/docs/apis",
"revision": "20170528",
"discoveryVersion": "v1",
"version_module": "True",
"schemas": {
"MirrorConfig": {
"description": "Configuration to automatically mirror a repository from another\nhosting service, for example GitHub or BitBucket.",
"type": "object",
"properties": {
"deployKeyId": {
"description": "ID of the SSH deploy key at the other hosting service.\nRemoving this key from the other service would deauthorize\nGoogle Cloud Source Repositories from mirroring.",
"type": "string"
},
"url": {
"description": "URL of the main repository at the other hosting service.",
"type": "string"
},
"webhookId": {
"description": "ID of the webhook listening to updates to trigger mirroring.\nRemoving this webook from the other hosting service will stop\nGoogle Cloud Source Repositories from receiving notifications,\nand thereby disabling mirroring.",
"type": "string"
}
},
"id": "MirrorConfig"
},
"Empty": {
"description": "A generic empty message that you can re-use to avoid defining duplicated\nempty messages in your APIs. A typical example is to use it as the request\nor the response type of an API method. For instance:\n\n service Foo {\n rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);\n }\n\nThe JSON representation for `Empty` is empty JSON object `{}`.",
"type": "object",
"properties": {},
"id": "Empty"
},
"Repo": {
"description": "A repository (or repo) is a Git repository storing versioned source content.",
"type": "object",
"properties": {
"mirrorConfig": {
"description": "How this repository mirrors a repository managed by another service.",
"$ref": "MirrorConfig"
},
"url": {
"description": "URL to clone the repository from Google Cloud Source Repositories.",
"type": "string"
},
"size": {
"format": "int64",
"description": "The disk usage of the repo, in bytes.\nOnly returned by GetRepo.",
"type": "string"
},
"name": {
"description": "Resource name of the repository, of the form\n`projects/\u003cproject\u003e/repos/\u003crepo\u003e`. The repo name may contain slashes.\neg, `projects/myproject/repos/name/with/slash`",
"type": "string"
}
},
"id": "Repo"
},
"TestIamPermissionsResponse": {
"description": "Response message for `TestIamPermissions` method.",
"type": "object",
"properties": {
"permissions": {
"description": "A subset of `TestPermissionsRequest.permissions` that the caller is\nallowed.",
"items": {
"type": "string"
},
"type": "array"
}
},
"id": "TestIamPermissionsResponse"
},
"ListReposResponse": {
"description": "Response for ListRepos. The size is not set in the returned repositories.",
"type": "object",
"properties": {
"repos": {
"description": "The listed repos.",
"items": {
"$ref": "Repo"
},
"type": "array"
},
"nextPageToken": {
"description": "If non-empty, additional repositories exist within the project. These\ncan be retrieved by including this value in the next ListReposRequest's\npage_token field.",
"type": "string"
}
},
"id": "ListReposResponse"
},
"Condition": {
"description": "A condition to be met.",
"type": "object",
"properties": {
"values": {
"description": "The objects of the condition. This is mutually exclusive with 'value'.",
"items": {
"type": "string"
},
"type": "array"
},
"iam": {
"enumDescriptions": [
"Default non-attribute.",
"Either principal or (if present) authority selector.",
"The principal (even if an authority selector is present), which\nmust only be used for attribution, not authorization.",
"An approver (distinct from the requester) that has authorized this\nrequest.\nWhen used with IN, the condition indicates that one of the approvers\nassociated with the request matches the specified principal, or is a\nmember of the specified group. Approvers can only grant additional\naccess, and are thus only used in a strictly positive context\n(e.g. ALLOW/IN or DENY/NOT_IN).\nSee: go/rpc-security-policy-dynamicauth.",
"What types of justifications have been supplied with this request.\nString values should match enum names from tech.iam.JustificationType,\ne.g. \"MANUAL_STRING\". It is not permitted to grant access based on\nthe *absence* of a justification, so justification conditions can only\nbe used in a \"positive\" context (e.g., ALLOW/IN or DENY/NOT_IN).\n\nMultiple justifications, e.g., a Buganizer ID and a manually-entered\nreason, are normal and supported."
],
"enum": [
"NO_ATTR",
"AUTHORITY",
"ATTRIBUTION",
"APPROVER",
"JUSTIFICATION_TYPE"
],
"description": "Trusted attributes supplied by the IAM system.",
"type": "string"
},
"op": {
"description": "An operator to apply the subject with.",
"type": "string",
"enumDescriptions": [
"Default no-op.",
"DEPRECATED. Use IN instead.",
"DEPRECATED. Use NOT_IN instead.",
"The condition is true if the subject (or any element of it if it is\na set) matches any of the supplied values.",
"The condition is true if the subject (or every element of it if it is\na set) matches none of the supplied values.",
"Subject is discharged"
],
"enum": [
"NO_OP",
"EQUALS",
"NOT_EQUALS",
"IN",
"NOT_IN",
"DISCHARGED"
]
},
"svc": {
"description": "Trusted attributes discharged by the service.",
"type": "string"
},
"value": {
"description": "DEPRECATED. Use 'values' instead.",
"type": "string"
},
"sys": {
"description": "Trusted attributes supplied by any service that owns resources and uses\nthe IAM system for access control.",
"type": "string",
"enumDescriptions": [
"Default non-attribute type",
"Region of the resource",
"Service name",
"Resource name",
"IP address of the caller"
],
"enum": [
"NO_ATTR",
"REGION",
"SERVICE",
"NAME",
"IP"
]
}
},
"id": "Condition"
},
"CounterOptions": {
"description": "Options for counters",
"type": "object",
"properties": {
"field": {
"description": "The field value to attribute.",
"type": "string"
},
"metric": {
"description": "The metric to update.",
"type": "string"
}
},
"id": "CounterOptions"
},
"AuditLogConfig": {
"description": "Provides the configuration for logging a type of permissions.\nExample:\n\n {\n \"audit_log_configs\": [\n {\n \"log_type\": \"DATA_READ\",\n \"exempted_members\": [\n \"user:foo@gmail.com\"\n ]\n },\n {\n \"log_type\": \"DATA_WRITE\",\n }\n ]\n }\n\nThis enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting\nfoo@gmail.com from DATA_READ logging.",
"type": "object",
"properties": {
"exemptedMembers": {
"description": "Specifies the identities that do not cause logging for this type of\npermission.\nFollows the same format of Binding.members.",
"items": {
"type": "string"
},
"type": "array"
},
"logType": {
"enumDescriptions": [
"Default case. Should never be this.",
"Admin reads. Example: CloudIAM getIamPolicy",
"Data writes. Example: CloudSQL Users create",
"Data reads. Example: CloudSQL Users list"
],
"enum": [
"LOG_TYPE_UNSPECIFIED",
"ADMIN_READ",
"DATA_WRITE",
"DATA_READ"
],
"description": "The log type that this config enables.",
"type": "string"
}
},
"id": "AuditLogConfig"
},
"Rule": {
"description": "A rule to be applied in a Policy.",
"type": "object",
"properties": {
"description": {
"description": "Human-readable description of the rule.",
"type": "string"
},
"conditions": {
"description": "Additional restrictions that must be met",
"items": {
"$ref": "Condition"
},
"type": "array"
},
"logConfig": {
"description": "The config returned to callers of tech.iam.IAM.CheckPolicy for any entries\nthat match the LOG action.",
"items": {
"$ref": "LogConfig"
},
"type": "array"
},
"in": {
"description": "If one or more 'in' clauses are specified, the rule matches if\nthe PRINCIPAL/AUTHORITY_SELECTOR is in at least one of these entries.",
"items": {
"type": "string"
},
"type": "array"
},
"permissions": {
"description": "A permission is a string of form '\u003cservice\u003e.\u003cresource type\u003e.\u003cverb\u003e'\n(e.g., 'storage.buckets.list'). A value of '*' matches all permissions,\nand a verb part of '*' (e.g., 'storage.buckets.*') matches all verbs.",
"items": {
"type": "string"
},
"type": "array"
},
"action": {
"enumDescriptions": [
"Default no action.",
"Matching 'Entries' grant access.",
"Matching 'Entries' grant access and the caller promises to log\nthe request per the returned log_configs.",
"Matching 'Entries' deny access.",
"Matching 'Entries' deny access and the caller promises to log\nthe request per the returned log_configs.",
"Matching 'Entries' tell IAM.Check callers to generate logs."
],
"enum": [
"NO_ACTION",
"ALLOW",
"ALLOW_WITH_LOG",
"DENY",
"DENY_WITH_LOG",
"LOG"
],
"description": "Required",
"type": "string"
},
"notIn": {
"description": "If one or more 'not_in' clauses are specified, the rule matches\nif the PRINCIPAL/AUTHORITY_SELECTOR is in none of the entries.\nThe format for in and not_in entries is the same as for members in a\nBinding (see google/iam/v1/policy.proto).",
"items": {
"type": "string"
},
"type": "array"
}
},
"id": "Rule"
},
"LogConfig": {
"description": "Specifies what kind of log the caller must write",
"type": "object",
"properties": {
"dataAccess": {
"$ref": "DataAccessOptions",
"description": "Data access options."
},
"cloudAudit": {
"$ref": "CloudAuditOptions",
"description": "Cloud audit options."
},
"counter": {
"$ref": "CounterOptions",
"description": "Counter options."
}
},
"id": "LogConfig"
},
"TestIamPermissionsRequest": {
"description": "Request message for `TestIamPermissions` method.",
"type": "object",
"properties": {
"permissions": {
"description": "The set of permissions to check for the `resource`. Permissions with\nwildcards (such as '*' or 'storage.*') are not allowed. For more\ninformation see\n[IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).",
"items": {
"type": "string"
},
"type": "array"
}
},
"id": "TestIamPermissionsRequest"
},
"Policy": {
"description": "Defines an Identity and Access Management (IAM) policy. It is used to\nspecify access control policies for Cloud Platform resources.\n\n\nA `Policy` consists of a list of `bindings`. A `Binding` binds a list of\n`members` to a `role`, where the members can be user accounts, Google groups,\nGoogle domains, and service accounts. A `role` is a named list of permissions\ndefined by IAM.\n\n**Example**\n\n {\n \"bindings\": [\n {\n \"role\": \"roles/owner\",\n \"members\": [\n \"user:mike@example.com\",\n \"group:admins@example.com\",\n \"domain:google.com\",\n \"serviceAccount:my-other-app@appspot.gserviceaccount.com\",\n ]\n },\n {\n \"role\": \"roles/viewer\",\n \"members\": [\"user:sean@example.com\"]\n }\n ]\n }\n\nFor a description of IAM and its features, see the\n[IAM developer's guide](https://cloud.google.com/iam).",
"type": "object",
"properties": {
"iamOwned": {
"type": "boolean"
},
"rules": {
"description": "If more than one rule is specified, the rules are applied in the following\nmanner:\n- All matching LOG rules are always applied.\n- If any DENY/DENY_WITH_LOG rule matches, permission is denied.\n Logging will be applied if one or more matching rule requires logging.\n- Otherwise, if any ALLOW/ALLOW_WITH_LOG rule matches, permission is\n granted.\n Logging will be applied if one or more matching rule requires logging.\n- Otherwise, if no rule applies, permission is denied.",
"items": {
"$ref": "Rule"
},
"type": "array"
},
"version": {
"format": "int32",
"description": "Version of the `Policy`. The default version is 0.",
"type": "integer"
},
"auditConfigs": {
"description": "Specifies cloud audit logging configuration for this policy.",
"items": {
"$ref": "AuditConfig"
},
"type": "array"
},
"bindings": {
"description": "Associates a list of `members` to a `role`.\nMultiple `bindings` must not be specified for the same `role`.\n`bindings` with no members will result in an error.",
"items": {
"$ref": "Binding"
},
"type": "array"
},
"etag": {
"format": "byte",
"description": "`etag` is used for optimistic concurrency control as a way to help\nprevent simultaneous updates of a policy from overwriting each other.\nIt is strongly suggested that systems make use of the `etag` in the\nread-modify-write cycle to perform policy updates in order to avoid race\nconditions: An `etag` is returned in the response to `getIamPolicy`, and\nsystems are expected to put that etag in the request to `setIamPolicy` to\nensure that their change will be applied to the same version of the policy.\n\nIf no `etag` is provided in the call to `setIamPolicy`, then the existing\npolicy is overwritten blindly.",
"type": "string"
}
},
"id": "Policy"
},
"DataAccessOptions": {
"description": "Write a Data Access (Gin) log",
"type": "object",
"properties": {},
"id": "DataAccessOptions"
},
"AuditConfig": {
"description": "Specifies the audit configuration for a service.\nThe configuration determines which permission types are logged, and what\nidentities, if any, are exempted from logging.\nAn AuditConfig must have one or more AuditLogConfigs.\n\nIf there are AuditConfigs for both `allServices` and a specific service,\nthe union of the two AuditConfigs is used for that service: the log_types\nspecified in each AuditConfig are enabled, and the exempted_members in each\nAuditConfig are exempted.\n\nExample Policy with multiple AuditConfigs:\n\n {\n \"audit_configs\": [\n {\n \"service\": \"allServices\"\n \"audit_log_configs\": [\n {\n \"log_type\": \"DATA_READ\",\n \"exempted_members\": [\n \"user:foo@gmail.com\"\n ]\n },\n {\n \"log_type\": \"DATA_WRITE\",\n },\n {\n \"log_type\": \"ADMIN_READ\",\n }\n ]\n },\n {\n \"service\": \"fooservice.googleapis.com\"\n \"audit_log_configs\": [\n {\n \"log_type\": \"DATA_READ\",\n },\n {\n \"log_type\": \"DATA_WRITE\",\n \"exempted_members\": [\n \"user:bar@gmail.com\"\n ]\n }\n ]\n }\n ]\n }\n\nFor fooservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ\nlogging. It also exempts foo@gmail.com from DATA_READ logging, and\nbar@gmail.com from DATA_WRITE logging.",
"type": "object",
"properties": {
"service": {
"description": "Specifies a service that will be enabled for audit logging.\nFor example, `storage.googleapis.com`, `cloudsql.googleapis.com`.\n`allServices` is a special value that covers all services.",
"type": "string"
},
"auditLogConfigs": {
"description": "The configuration for logging of each type of permission.\nNext ID: 4",
"items": {
"$ref": "AuditLogConfig"
},
"type": "array"
},
"exemptedMembers": {
"items": {
"type": "string"
},
"type": "array"
}
},
"id": "AuditConfig"
},
"SetIamPolicyRequest": {
"description": "Request message for `SetIamPolicy` method.",
"type": "object",
"properties": {
"updateMask": {
"format": "google-fieldmask",
"description": "OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only\nthe fields in the mask will be modified. If no mask is provided, the\nfollowing default mask is used:\npaths: \"bindings, etag\"\nThis field is only used by Cloud IAM.",
"type": "string"
},
"policy": {
"description": "REQUIRED: The complete policy to be applied to the `resource`. The size of\nthe policy is limited to a few 10s of KB. An empty policy is a\nvalid policy but certain Cloud Platform services (such as Projects)\nmight reject them.",
"$ref": "Policy"
}
},
"id": "SetIamPolicyRequest"
},
"CloudAuditOptions": {
"description": "Write a Cloud Audit log",
"type": "object",
"properties": {
"logName": {
"enumDescriptions": [
"Default. Should not be used.",
"Corresponds to \"cloudaudit.googleapis.com/activity\"",
"Corresponds to \"cloudaudit.googleapis.com/data_access\""
],
"enum": [
"UNSPECIFIED_LOG_NAME",
"ADMIN_ACTIVITY",
"DATA_ACCESS"
],
"description": "The log_name to populate in the Cloud Audit Record.",
"type": "string"
}
},
"id": "CloudAuditOptions"
},
"Binding": {
"description": "Associates `members` with a `role`.",
"type": "object",
"properties": {
"members": {
"description": "Specifies the identities requesting access for a Cloud Platform resource.\n`members` can have the following values:\n\n* `allUsers`: A special identifier that represents anyone who is\n on the internet; with or without a Google account.\n\n* `allAuthenticatedUsers`: A special identifier that represents anyone\n who is authenticated with a Google account or a service account.\n\n* `user:{emailid}`: An email address that represents a specific Google\n account. For example, `alice@gmail.com` or `joe@example.com`.\n\n\n* `serviceAccount:{emailid}`: An email address that represents a service\n account. For example, `my-other-app@appspot.gserviceaccount.com`.\n\n* `group:{emailid}`: An email address that represents a Google group.\n For example, `admins@example.com`.\n\n\n* `domain:{domain}`: A Google Apps domain name that represents all the\n users of that domain. For example, `google.com` or `example.com`.\n\n",
"items": {
"type": "string"
},
"type": "array"
},
"role": {
"description": "Role that is assigned to `members`.\nFor example, `roles/viewer`, `roles/editor`, or `roles/owner`.\nRequired",
"type": "string"
}
},
"id": "Binding"
}
},
"icons": {
"x16": "http://www.google.com/images/icons/product/search-16.gif",
"x32": "http://www.google.com/images/icons/product/search-32.gif"
},
"protocol": "rest",
"canonicalName": "Cloud Source Repositories",
"auth": {
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/source.read_write": {
"description": "Manage the contents of your source code repositories"
},
"https://www.googleapis.com/auth/cloud-platform": {
"description": "View and manage your data across Google Cloud Platform services"
},
"https://www.googleapis.com/auth/source.read_only": {
"description": "View the contents of your source code repositories"
}
}
}
},
"rootUrl": "https://sourcerepo.googleapis.com/",
"ownerDomain": "google.com",
"name": "sourcerepo",
"batchPath": "batch"
}

File diff suppressed because it is too large Load Diff

6
vendor/vendor.json vendored
View File

@ -885,6 +885,12 @@
"revision": "c8d75a8ec737f9b8b1ed2676c28feedbe21f543f",
"revisionTime": "2016-11-21T18:05:46Z"
},
{
"checksumSHA1": "ZfAt+uQ95CQfoJZEjmuzgx+bAIg=",
"path": "google.golang.org/api/sourcerepo/v1",
"revision": "295e4bb0ade057ae2cfb9876ab0b54635dbfcea4",
"revisionTime": "2017-07-18T13:06:16Z"
},
{
"checksumSHA1": "moKPpECJZQR/mANGD26E7Pbxn4I=",
"path": "google.golang.org/api/sqladmin/v1beta4",

View File

@ -0,0 +1,40 @@
---
layout: "google"
page_title: "Google: google_sourcerepo_repository"
sidebar_current: "docs-google-sourcerepo_repository"
description: |-
Manages repositories within Google Cloud Source Repositories.
---
# google\_sourcerepo\_repository
For more information, see [the official
documentation](https://cloud.google.com/compute/docs/source-repositories) and
[API](https://cloud.google.com/source-repositories/docs/reference/rest/v1/projects.repos)
## Example Usage
This example is the common case of creating a repository within Google Cloud Source Repositories:
```hcl
resource "google_sourcerepo_repository" "frontend" {
name = "frontend"
}
```
## Argument Reference
The following arguments are supported:
* `name` - (Required) The name of the repository that will be created.
- - -
* `project` - (Optional) The project in which the resource belongs. If it
is not provided, the provider project is used.
## Attributes Reference
The following attribute is exported:
* `size` - The size of the repository.

View File

@ -185,11 +185,11 @@
<li<%= sidebar_current("docs-google-compute-router-peer") %>>
<a href="/docs/providers/google/r/compute_router_peer.html">google_compute_router_peer</a>
</li>
<li<%= sidebar_current("docs-google-compute-snapshot") %>>
<a href="/docs/providers/google/r/compute_snapshot.html">google_compute_snapshot</a>
</li>
<li<%= sidebar_current("docs-google-compute-ssl-certificate") %>>
<a href="/docs/providers/google/r/compute_ssl_certificate.html">google_compute_ssl_certificate</a>
</li>
@ -263,6 +263,15 @@
</ul>
</li>
<li<%= sidebar_current("docs-google-sourcerepo") %>>
<a href="#">Google Source Repositories Resources</a>
<ul class="nav nav-visible">
<li<%= sidebar_current("docs-google-sourcerepo-repository") %>>
<a href="/docs/providers/google/r/sourcerepo-repository.html">google_sourcerepo_repository</a>
</li>
</ul>
</li>
<li<%= sidebar_current("docs-google-sql") %>>
<a href="#">Google SQL Resources</a>
<ul class="nav nav-visible">