Update vendored dependencies
This includes github.com/kurin/blazer 0.2.0, which resolves #1291
This commit is contained in:
parent
ba23d24dd1
commit
61cb1cc6f8
1044 changed files with 203022 additions and 97709 deletions
486
vendor/google.golang.org/api/sourcerepo/v1/sourcerepo-api.json
generated
vendored
486
vendor/google.golang.org/api/sourcerepo/v1/sourcerepo-api.json
generated
vendored
|
@ -1,35 +1,88 @@
|
|||
{
|
||||
"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/source.full_control": {
|
||||
"description": "Manage 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",
|
||||
"title": "Cloud Source Repositories API",
|
||||
"ownerName": "Google",
|
||||
"resources": {
|
||||
"projects": {
|
||||
"resources": {
|
||||
"repos": {
|
||||
"methods": {
|
||||
"list": {
|
||||
"response": {
|
||||
"$ref": "ListReposResponse"
|
||||
},
|
||||
"parameterOrder": [
|
||||
"name"
|
||||
],
|
||||
"httpMethod": "GET",
|
||||
"parameters": {
|
||||
"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"
|
||||
},
|
||||
"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/[^/]+$"
|
||||
}
|
||||
},
|
||||
"scopes": [
|
||||
"https://www.googleapis.com/auth/cloud-platform",
|
||||
"https://www.googleapis.com/auth/source.full_control",
|
||||
"https://www.googleapis.com/auth/source.read_only",
|
||||
"https://www.googleapis.com/auth/source.read_write"
|
||||
],
|
||||
"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."
|
||||
},
|
||||
"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.full_control",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
|
@ -37,12 +90,6 @@
|
|||
"parent"
|
||||
],
|
||||
"httpMethod": "POST",
|
||||
"scopes": [
|
||||
"https://www.googleapis.com/auth/cloud-platform",
|
||||
"https://www.googleapis.com/auth/source.full_control",
|
||||
"https://www.googleapis.com/auth/source.read_only",
|
||||
"https://www.googleapis.com/auth/source.read_write"
|
||||
],
|
||||
"parameters": {
|
||||
"parent": {
|
||||
"description": "The project in which to create the repo. Values are of the form\n`projects/\u003cproject\u003e`.",
|
||||
|
@ -52,54 +99,21 @@
|
|||
"location": "path"
|
||||
}
|
||||
},
|
||||
"flatPath": "v1/projects/{projectsId}/repos",
|
||||
"id": "sourcerepo.projects.repos.create",
|
||||
"path": "v1/{+parent}/repos",
|
||||
"request": {
|
||||
"$ref": "Repo"
|
||||
},
|
||||
"description": "Creates a repo in the given project with the given name.\n\nIf the named repository already exists, `CreateRepo` returns\n`ALREADY_EXISTS`."
|
||||
},
|
||||
"setIamPolicy": {
|
||||
"httpMethod": "POST",
|
||||
"parameterOrder": [
|
||||
"resource"
|
||||
],
|
||||
"response": {
|
||||
"$ref": "Policy"
|
||||
},
|
||||
"parameters": {
|
||||
"resource": {
|
||||
"pattern": "^projects/[^/]+/repos/.+$",
|
||||
"location": "path",
|
||||
"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
|
||||
}
|
||||
},
|
||||
"scopes": [
|
||||
"https://www.googleapis.com/auth/cloud-platform",
|
||||
"https://www.googleapis.com/auth/source.full_control",
|
||||
"https://www.googleapis.com/auth/source.read_only",
|
||||
"https://www.googleapis.com/auth/source.read_write"
|
||||
],
|
||||
"flatPath": "v1/projects/{projectsId}/repos/{reposId}:setIamPolicy",
|
||||
"path": "v1/{+resource}:setIamPolicy",
|
||||
"id": "sourcerepo.projects.repos.setIamPolicy",
|
||||
"description": "Sets the access control policy on the specified resource. Replaces any\nexisting policy.",
|
||||
"request": {
|
||||
"$ref": "SetIamPolicyRequest"
|
||||
}
|
||||
]
|
||||
},
|
||||
"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.",
|
||||
"response": {
|
||||
"$ref": "Policy"
|
||||
},
|
||||
"httpMethod": "GET",
|
||||
"parameterOrder": [
|
||||
"resource"
|
||||
],
|
||||
"response": {
|
||||
"$ref": "Policy"
|
||||
},
|
||||
"parameters": {
|
||||
"resource": {
|
||||
"description": "REQUIRED: The resource for which the policy is being requested.\nSee the operation documentation for the appropriate value for this field.",
|
||||
|
@ -116,19 +130,27 @@
|
|||
"https://www.googleapis.com/auth/source.read_write"
|
||||
],
|
||||
"flatPath": "v1/projects/{projectsId}/repos/{reposId}:getIamPolicy",
|
||||
"path": "v1/{+resource}:getIamPolicy",
|
||||
"id": "sourcerepo.projects.repos.getIamPolicy",
|
||||
"path": "v1/{+resource}: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."
|
||||
},
|
||||
"get": {
|
||||
"path": "v1/{+name}",
|
||||
"id": "sourcerepo.projects.repos.get",
|
||||
"description": "Returns information about a repo.",
|
||||
"httpMethod": "GET",
|
||||
"response": {
|
||||
"$ref": "Repo"
|
||||
},
|
||||
"parameterOrder": [
|
||||
"name"
|
||||
],
|
||||
"response": {
|
||||
"$ref": "Repo"
|
||||
"httpMethod": "GET",
|
||||
"parameters": {
|
||||
"name": {
|
||||
"location": "path",
|
||||
"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/.+$"
|
||||
}
|
||||
},
|
||||
"scopes": [
|
||||
"https://www.googleapis.com/auth/cloud-platform",
|
||||
|
@ -136,16 +158,9 @@
|
|||
"https://www.googleapis.com/auth/source.read_only",
|
||||
"https://www.googleapis.com/auth/source.read_write"
|
||||
],
|
||||
"parameters": {
|
||||
"name": {
|
||||
"pattern": "^projects/[^/]+/repos/.+$",
|
||||
"location": "path",
|
||||
"description": "The name of the requested repository. Values are of the form\n`projects/\u003cproject\u003e/repos/\u003crepo\u003e`.",
|
||||
"type": "string",
|
||||
"required": true
|
||||
}
|
||||
},
|
||||
"flatPath": "v1/projects/{projectsId}/repos/{reposId}"
|
||||
"flatPath": "v1/projects/{projectsId}/repos/{reposId}",
|
||||
"id": "sourcerepo.projects.repos.get",
|
||||
"path": "v1/{+name}"
|
||||
},
|
||||
"testIamPermissions": {
|
||||
"response": {
|
||||
|
@ -205,45 +220,6 @@
|
|||
"flatPath": "v1/projects/{projectsId}/repos/{reposId}",
|
||||
"path": "v1/{+name}",
|
||||
"id": "sourcerepo.projects.repos.delete"
|
||||
},
|
||||
"list": {
|
||||
"response": {
|
||||
"$ref": "ListReposResponse"
|
||||
},
|
||||
"parameterOrder": [
|
||||
"name"
|
||||
],
|
||||
"httpMethod": "GET",
|
||||
"scopes": [
|
||||
"https://www.googleapis.com/auth/cloud-platform",
|
||||
"https://www.googleapis.com/auth/source.full_control",
|
||||
"https://www.googleapis.com/auth/source.read_only",
|
||||
"https://www.googleapis.com/auth/source.read_write"
|
||||
],
|
||||
"parameters": {
|
||||
"pageToken": {
|
||||
"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",
|
||||
"location": "query"
|
||||
},
|
||||
"name": {
|
||||
"pattern": "^projects/[^/]+$",
|
||||
"location": "path",
|
||||
"description": "The project ID whose repos should be listed. Values are of the form\n`projects/\u003cproject\u003e`.",
|
||||
"type": "string",
|
||||
"required": true
|
||||
},
|
||||
"pageSize": {
|
||||
"location": "query",
|
||||
"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"
|
||||
}
|
||||
},
|
||||
"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."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -252,30 +228,30 @@
|
|||
},
|
||||
"parameters": {
|
||||
"upload_protocol": {
|
||||
"location": "query",
|
||||
"description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
|
||||
"type": "string",
|
||||
"location": "query"
|
||||
"type": "string"
|
||||
},
|
||||
"prettyPrint": {
|
||||
"location": "query",
|
||||
"description": "Returns response with indentations and line breaks.",
|
||||
"default": "true",
|
||||
"type": "boolean",
|
||||
"location": "query"
|
||||
},
|
||||
"fields": {
|
||||
"location": "query",
|
||||
"description": "Selector specifying which fields to include in a partial response.",
|
||||
"type": "string"
|
||||
"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"
|
||||
},
|
||||
"callback": {
|
||||
"location": "query",
|
||||
"description": "JSONP",
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"location": "query"
|
||||
},
|
||||
"$.xgafv": {
|
||||
"enumDescriptions": [
|
||||
|
@ -317,41 +293,50 @@
|
|||
"location": "query"
|
||||
},
|
||||
"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": {
|
||||
"location": "query",
|
||||
"description": "Pretty-print response.",
|
||||
"default": "true",
|
||||
"type": "boolean"
|
||||
},
|
||||
"oauth_token": {
|
||||
"description": "OAuth 2.0 token for the current user.",
|
||||
"type": "string",
|
||||
"location": "query"
|
||||
},
|
||||
"bearer_token": {
|
||||
"pp": {
|
||||
"description": "Pretty-print response.",
|
||||
"default": "true",
|
||||
"type": "boolean",
|
||||
"location": "query"
|
||||
},
|
||||
"oauth_token": {
|
||||
"location": "query",
|
||||
"description": "OAuth bearer token.",
|
||||
"description": "OAuth 2.0 token for the current user.",
|
||||
"type": "string"
|
||||
},
|
||||
"bearer_token": {
|
||||
"description": "OAuth bearer token.",
|
||||
"type": "string",
|
||||
"location": "query"
|
||||
}
|
||||
},
|
||||
"version": "v1",
|
||||
"baseUrl": "https://sourcerepo.googleapis.com/",
|
||||
"servicePath": "",
|
||||
"kind": "discovery#restDescription",
|
||||
"description": "Access source code repositories hosted by Google.",
|
||||
"servicePath": "",
|
||||
"basePath": "",
|
||||
"id": "sourcerepo:v1",
|
||||
"documentationLink": "https://cloud.google.com/source-repositories/docs/apis",
|
||||
"revision": "20170908",
|
||||
"documentationLink": "https://cloud.google.com/source-repositories/docs/apis",
|
||||
"id": "sourcerepo:v1",
|
||||
"discoveryVersion": "v1",
|
||||
"version_module": true,
|
||||
"schemas": {
|
||||
"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": {
|
||||
"auditLogConfigs": {
|
||||
"description": "The configuration for logging of each type of permission.\nNext ID: 4",
|
||||
"items": {
|
||||
"$ref": "AuditLogConfig"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"exemptedMembers": {
|
||||
"items": {
|
||||
"type": "string"
|
||||
|
@ -361,42 +346,33 @@
|
|||
"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"
|
||||
}
|
||||
},
|
||||
"id": "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"
|
||||
"id": "AuditConfig"
|
||||
},
|
||||
"SetIamPolicyRequest": {
|
||||
"description": "Request message for `SetIamPolicy` method.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"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"
|
||||
},
|
||||
"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": {
|
||||
"$ref": "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."
|
||||
}
|
||||
},
|
||||
"id": "SetIamPolicyRequest",
|
||||
"description": "Request message for `SetIamPolicy` method.",
|
||||
"type": "object"
|
||||
"id": "SetIamPolicyRequest"
|
||||
},
|
||||
"Binding": {
|
||||
"description": "Associates `members` with a `role`.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"condition": {
|
||||
"$ref": "Expr",
|
||||
"description": "The condition that is associated with this binding.\nNOTE: an unsatisfied condition will not allow user access via current\nbinding. Different bindings, including their conditions, are examined\nindependently.\nThis field is GOOGLE_INTERNAL."
|
||||
"description": "The condition that is associated with this binding.\nNOTE: an unsatisfied condition will not allow user access via current\nbinding. Different bindings, including their conditions, are examined\nindependently.\nThis field is GOOGLE_INTERNAL.",
|
||||
"$ref": "Expr"
|
||||
},
|
||||
"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",
|
||||
|
@ -418,7 +394,28 @@
|
|||
"properties": {},
|
||||
"id": "Empty"
|
||||
},
|
||||
"MirrorConfig": {
|
||||
"description": "Configuration to automatically mirror a repository from another\nhosting service, for example GitHub or BitBucket.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
}
|
||||
},
|
||||
"id": "MirrorConfig"
|
||||
},
|
||||
"Expr": {
|
||||
"description": "Represents an expression text. Example:\n\n title: \"User account presence\"\n description: \"Determines whether the request has a user account\"\n expression: \"size(request.user) \u003e 0\"",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"location": {
|
||||
"description": "An optional string indicating the location of the expression for error\nreporting, e.g. a file name and a position in the file.",
|
||||
|
@ -437,33 +434,16 @@
|
|||
"type": "string"
|
||||
}
|
||||
},
|
||||
"id": "Expr",
|
||||
"description": "Represents an expression text. Example:\n\n title: \"User account presence\"\n description: \"Determines whether the request has a user account\"\n expression: \"size(request.user) \u003e 0\"",
|
||||
"type": "object"
|
||||
},
|
||||
"MirrorConfig": {
|
||||
"properties": {
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
}
|
||||
},
|
||||
"id": "MirrorConfig",
|
||||
"description": "Configuration to automatically mirror a repository from another\nhosting service, for example GitHub or BitBucket.",
|
||||
"type": "object"
|
||||
"id": "Expr"
|
||||
},
|
||||
"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"
|
||||
|
@ -476,33 +456,13 @@
|
|||
"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"
|
||||
},
|
||||
"mirrorConfig": {
|
||||
"description": "How this repository mirrors a repository managed by another service.",
|
||||
"$ref": "MirrorConfig"
|
||||
}
|
||||
},
|
||||
"id": "Repo"
|
||||
},
|
||||
"ListReposResponse": {
|
||||
"properties": {
|
||||
"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"
|
||||
},
|
||||
"repos": {
|
||||
"description": "The listed repos.",
|
||||
"items": {
|
||||
"$ref": "Repo"
|
||||
},
|
||||
"type": "array"
|
||||
}
|
||||
},
|
||||
"id": "ListReposResponse",
|
||||
"description": "Response for ListRepos. The size is not set in the returned repositories.",
|
||||
"type": "object"
|
||||
},
|
||||
"TestIamPermissionsResponse": {
|
||||
"description": "Response message for `TestIamPermissions` method.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"permissions": {
|
||||
"description": "A subset of `TestPermissionsRequest.permissions` that the caller is\nallowed.",
|
||||
|
@ -512,22 +472,37 @@
|
|||
"type": "array"
|
||||
}
|
||||
},
|
||||
"id": "TestIamPermissionsResponse",
|
||||
"description": "Response message for `TestIamPermissions` method.",
|
||||
"type": "object"
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
|
@ -535,13 +510,14 @@
|
|||
"DATA_READ"
|
||||
],
|
||||
"description": "The log type that this config enables.",
|
||||
"type": "string",
|
||||
"enumDescriptions": [
|
||||
"Default case. Should never be this.",
|
||||
"Admin reads. Example: CloudIAM getIamPolicy",
|
||||
"Data writes. Example: CloudSQL Users create",
|
||||
"Data reads. Example: CloudSQL Users list"
|
||||
]
|
||||
"type": "string"
|
||||
},
|
||||
"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"
|
||||
}
|
||||
},
|
||||
"id": "AuditLogConfig"
|
||||
|
@ -561,17 +537,9 @@
|
|||
"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": {
|
||||
"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"
|
||||
},
|
||||
"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": {
|
||||
|
@ -588,16 +556,48 @@
|
|||
},
|
||||
"iamOwned": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"version": {
|
||||
"format": "int32",
|
||||
"description": "Version of the `Policy`. The default version is 0.",
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"id": "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"
|
||||
"id": "Policy"
|
||||
}
|
||||
},
|
||||
"icons": {
|
||||
"x32": "http://www.google.com/images/icons/product/search-32.gif",
|
||||
"x16": "http://www.google.com/images/icons/product/search-16.gif"
|
||||
},
|
||||
"protocol": "rest"
|
||||
"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/source.full_control": {
|
||||
"description": "Manage 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",
|
||||
"title": "Cloud Source Repositories API"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue