forked from TrueCloudLab/restic
Update vendored dependencies
This commit is contained in:
parent
81473f4538
commit
02fc16e97d
254 changed files with 107898 additions and 82739 deletions
366
vendor/google.golang.org/api/sourcerepo/v1/sourcerepo-gen.go
generated
vendored
366
vendor/google.golang.org/api/sourcerepo/v1/sourcerepo-gen.go
generated
vendored
|
@ -50,6 +50,9 @@ const (
|
|||
// View and manage your data across Google Cloud Platform services
|
||||
CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform"
|
||||
|
||||
// Manage your source code repositories
|
||||
SourceFullControlScope = "https://www.googleapis.com/auth/source.full_control"
|
||||
|
||||
// View the contents of your source code repositories
|
||||
SourceReadOnlyScope = "https://www.googleapis.com/auth/source.read_only"
|
||||
|
||||
|
@ -261,6 +264,15 @@ func (s *AuditLogConfig) MarshalJSON() ([]byte, error) {
|
|||
|
||||
// Binding: Associates `members` with a `role`.
|
||||
type Binding struct {
|
||||
// Condition: The condition that is associated with this binding.
|
||||
// NOTE: an unsatisfied condition will not allow user access via
|
||||
// current
|
||||
// binding. Different bindings, including their conditions, are
|
||||
// examined
|
||||
// independently.
|
||||
// This field is GOOGLE_INTERNAL.
|
||||
Condition *Expr `json:"condition,omitempty"`
|
||||
|
||||
// Members: Specifies the identities requesting access for a Cloud
|
||||
// Platform resource.
|
||||
// `members` can have the following values:
|
||||
|
@ -302,7 +314,7 @@ type Binding struct {
|
|||
// Required
|
||||
Role string `json:"role,omitempty"`
|
||||
|
||||
// ForceSendFields is a list of field names (e.g. "Members") to
|
||||
// ForceSendFields is a list of field names (e.g. "Condition") to
|
||||
// unconditionally include in API requests. By default, fields with
|
||||
// empty values are omitted from API requests. However, any non-pointer,
|
||||
// non-interface field appearing in ForceSendFields will be sent to the
|
||||
|
@ -310,7 +322,7 @@ type Binding struct {
|
|||
// used to include empty fields in Patch requests.
|
||||
ForceSendFields []string `json:"-"`
|
||||
|
||||
// NullFields is a list of field names (e.g. "Members") to include in
|
||||
// NullFields is a list of field names (e.g. "Condition") to include in
|
||||
// API requests with the JSON null value. By default, fields with empty
|
||||
// values are omitted from API requests. However, any field with an
|
||||
// empty value appearing in NullFields will be sent to the server as
|
||||
|
@ -325,174 +337,6 @@ func (s *Binding) MarshalJSON() ([]byte, error) {
|
|||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// CloudAuditOptions: Write a Cloud Audit log
|
||||
type CloudAuditOptions struct {
|
||||
// LogName: The log_name to populate in the Cloud Audit Record.
|
||||
//
|
||||
// Possible values:
|
||||
// "UNSPECIFIED_LOG_NAME" - Default. Should not be used.
|
||||
// "ADMIN_ACTIVITY" - Corresponds to
|
||||
// "cloudaudit.googleapis.com/activity"
|
||||
// "DATA_ACCESS" - Corresponds to
|
||||
// "cloudaudit.googleapis.com/data_access"
|
||||
LogName string `json:"logName,omitempty"`
|
||||
|
||||
// ForceSendFields is a list of field names (e.g. "LogName") to
|
||||
// unconditionally include in API requests. By default, fields with
|
||||
// empty values are omitted from API requests. However, any non-pointer,
|
||||
// non-interface field appearing in ForceSendFields will be sent to the
|
||||
// server regardless of whether the field is empty or not. This may be
|
||||
// used to include empty fields in Patch requests.
|
||||
ForceSendFields []string `json:"-"`
|
||||
|
||||
// NullFields is a list of field names (e.g. "LogName") to include in
|
||||
// API requests with the JSON null value. By default, fields with empty
|
||||
// values are omitted from API requests. However, any field with an
|
||||
// empty value appearing in NullFields will be sent to the server as
|
||||
// null. It is an error if a field in this list has a non-empty value.
|
||||
// This may be used to include null fields in Patch requests.
|
||||
NullFields []string `json:"-"`
|
||||
}
|
||||
|
||||
func (s *CloudAuditOptions) MarshalJSON() ([]byte, error) {
|
||||
type noMethod CloudAuditOptions
|
||||
raw := noMethod(*s)
|
||||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// Condition: A condition to be met.
|
||||
type Condition struct {
|
||||
// Iam: Trusted attributes supplied by the IAM system.
|
||||
//
|
||||
// Possible values:
|
||||
// "NO_ATTR" - Default non-attribute.
|
||||
// "AUTHORITY" - Either principal or (if present) authority selector.
|
||||
// "ATTRIBUTION" - The principal (even if an authority selector is
|
||||
// present), which
|
||||
// must only be used for attribution, not authorization.
|
||||
// "APPROVER" - An approver (distinct from the requester) that has
|
||||
// authorized this
|
||||
// request.
|
||||
// When used with IN, the condition indicates that one of the
|
||||
// approvers
|
||||
// associated with the request matches the specified principal, or is
|
||||
// a
|
||||
// member of the specified group. Approvers can only grant
|
||||
// additional
|
||||
// access, and are thus only used in a strictly positive context
|
||||
// (e.g. ALLOW/IN or DENY/NOT_IN).
|
||||
// See: go/rpc-security-policy-dynamicauth.
|
||||
// "JUSTIFICATION_TYPE" - What types of justifications have been
|
||||
// supplied with this request.
|
||||
// String values should match enum names from
|
||||
// tech.iam.JustificationType,
|
||||
// e.g. "MANUAL_STRING". It is not permitted to grant access based
|
||||
// on
|
||||
// the *absence* of a justification, so justification conditions can
|
||||
// only
|
||||
// be used in a "positive" context (e.g., ALLOW/IN or
|
||||
// DENY/NOT_IN).
|
||||
//
|
||||
// Multiple justifications, e.g., a Buganizer ID and a
|
||||
// manually-entered
|
||||
// reason, are normal and supported.
|
||||
Iam string `json:"iam,omitempty"`
|
||||
|
||||
// Op: An operator to apply the subject with.
|
||||
//
|
||||
// Possible values:
|
||||
// "NO_OP" - Default no-op.
|
||||
// "EQUALS" - DEPRECATED. Use IN instead.
|
||||
// "NOT_EQUALS" - DEPRECATED. Use NOT_IN instead.
|
||||
// "IN" - The condition is true if the subject (or any element of it
|
||||
// if it is
|
||||
// a set) matches any of the supplied values.
|
||||
// "NOT_IN" - The condition is true if the subject (or every element
|
||||
// of it if it is
|
||||
// a set) matches none of the supplied values.
|
||||
// "DISCHARGED" - Subject is discharged
|
||||
Op string `json:"op,omitempty"`
|
||||
|
||||
// Svc: Trusted attributes discharged by the service.
|
||||
Svc string `json:"svc,omitempty"`
|
||||
|
||||
// Sys: Trusted attributes supplied by any service that owns resources
|
||||
// and uses
|
||||
// the IAM system for access control.
|
||||
//
|
||||
// Possible values:
|
||||
// "NO_ATTR" - Default non-attribute type
|
||||
// "REGION" - Region of the resource
|
||||
// "SERVICE" - Service name
|
||||
// "NAME" - Resource name
|
||||
// "IP" - IP address of the caller
|
||||
Sys string `json:"sys,omitempty"`
|
||||
|
||||
// Value: DEPRECATED. Use 'values' instead.
|
||||
Value string `json:"value,omitempty"`
|
||||
|
||||
// Values: The objects of the condition. This is mutually exclusive with
|
||||
// 'value'.
|
||||
Values []string `json:"values,omitempty"`
|
||||
|
||||
// ForceSendFields is a list of field names (e.g. "Iam") to
|
||||
// unconditionally include in API requests. By default, fields with
|
||||
// empty values are omitted from API requests. However, any non-pointer,
|
||||
// non-interface field appearing in ForceSendFields will be sent to the
|
||||
// server regardless of whether the field is empty or not. This may be
|
||||
// used to include empty fields in Patch requests.
|
||||
ForceSendFields []string `json:"-"`
|
||||
|
||||
// NullFields is a list of field names (e.g. "Iam") to include in API
|
||||
// requests with the JSON null value. By default, fields with empty
|
||||
// values are omitted from API requests. However, any field with an
|
||||
// empty value appearing in NullFields will be sent to the server as
|
||||
// null. It is an error if a field in this list has a non-empty value.
|
||||
// This may be used to include null fields in Patch requests.
|
||||
NullFields []string `json:"-"`
|
||||
}
|
||||
|
||||
func (s *Condition) MarshalJSON() ([]byte, error) {
|
||||
type noMethod Condition
|
||||
raw := noMethod(*s)
|
||||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// CounterOptions: Options for counters
|
||||
type CounterOptions struct {
|
||||
// Field: The field value to attribute.
|
||||
Field string `json:"field,omitempty"`
|
||||
|
||||
// Metric: The metric to update.
|
||||
Metric string `json:"metric,omitempty"`
|
||||
|
||||
// ForceSendFields is a list of field names (e.g. "Field") to
|
||||
// unconditionally include in API requests. By default, fields with
|
||||
// empty values are omitted from API requests. However, any non-pointer,
|
||||
// non-interface field appearing in ForceSendFields will be sent to the
|
||||
// server regardless of whether the field is empty or not. This may be
|
||||
// used to include empty fields in Patch requests.
|
||||
ForceSendFields []string `json:"-"`
|
||||
|
||||
// NullFields is a list of field names (e.g. "Field") to include in API
|
||||
// requests with the JSON null value. By default, fields with empty
|
||||
// values are omitted from API requests. However, any field with an
|
||||
// empty value appearing in NullFields will be sent to the server as
|
||||
// null. It is an error if a field in this list has a non-empty value.
|
||||
// This may be used to include null fields in Patch requests.
|
||||
NullFields []string `json:"-"`
|
||||
}
|
||||
|
||||
func (s *CounterOptions) MarshalJSON() ([]byte, error) {
|
||||
type noMethod CounterOptions
|
||||
raw := noMethod(*s)
|
||||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// DataAccessOptions: Write a Data Access (Gin) log
|
||||
type DataAccessOptions struct {
|
||||
}
|
||||
|
||||
// Empty: A generic empty message that you can re-use to avoid defining
|
||||
// duplicated
|
||||
// empty messages in your APIs. A typical example is to use it as the
|
||||
|
@ -511,6 +355,60 @@ type Empty struct {
|
|||
googleapi.ServerResponse `json:"-"`
|
||||
}
|
||||
|
||||
// Expr: Represents an expression text. Example:
|
||||
//
|
||||
// title: "User account presence"
|
||||
// description: "Determines whether the request has a user account"
|
||||
// expression: "size(request.user) > 0"
|
||||
type Expr struct {
|
||||
// Description: An optional description of the expression. This is a
|
||||
// longer text which
|
||||
// describes the expression, e.g. when hovered over it in a UI.
|
||||
Description string `json:"description,omitempty"`
|
||||
|
||||
// Expression: Textual representation of an expression in
|
||||
// Common Expression Language syntax.
|
||||
//
|
||||
// The application context of the containing message determines
|
||||
// which
|
||||
// well-known feature set of CEL is supported.
|
||||
Expression string `json:"expression,omitempty"`
|
||||
|
||||
// Location: An optional string indicating the location of the
|
||||
// expression for error
|
||||
// reporting, e.g. a file name and a position in the file.
|
||||
Location string `json:"location,omitempty"`
|
||||
|
||||
// Title: An optional title for the expression, i.e. a short string
|
||||
// describing
|
||||
// its purpose. This can be used e.g. in UIs which allow to enter
|
||||
// the
|
||||
// expression.
|
||||
Title string `json:"title,omitempty"`
|
||||
|
||||
// ForceSendFields is a list of field names (e.g. "Description") to
|
||||
// unconditionally include in API requests. By default, fields with
|
||||
// empty values are omitted from API requests. However, any non-pointer,
|
||||
// non-interface field appearing in ForceSendFields will be sent to the
|
||||
// server regardless of whether the field is empty or not. This may be
|
||||
// used to include empty fields in Patch requests.
|
||||
ForceSendFields []string `json:"-"`
|
||||
|
||||
// NullFields is a list of field names (e.g. "Description") to include
|
||||
// in API requests with the JSON null value. By default, fields with
|
||||
// empty values are omitted from API requests. However, any field with
|
||||
// an empty value appearing in NullFields will be sent to the server as
|
||||
// null. It is an error if a field in this list has a non-empty value.
|
||||
// This may be used to include null fields in Patch requests.
|
||||
NullFields []string `json:"-"`
|
||||
}
|
||||
|
||||
func (s *Expr) MarshalJSON() ([]byte, error) {
|
||||
type noMethod Expr
|
||||
raw := noMethod(*s)
|
||||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// ListReposResponse: Response for ListRepos. The size is not set in
|
||||
// the returned repositories.
|
||||
type ListReposResponse struct {
|
||||
|
@ -551,40 +449,6 @@ func (s *ListReposResponse) MarshalJSON() ([]byte, error) {
|
|||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// LogConfig: Specifies what kind of log the caller must write
|
||||
type LogConfig struct {
|
||||
// CloudAudit: Cloud audit options.
|
||||
CloudAudit *CloudAuditOptions `json:"cloudAudit,omitempty"`
|
||||
|
||||
// Counter: Counter options.
|
||||
Counter *CounterOptions `json:"counter,omitempty"`
|
||||
|
||||
// DataAccess: Data access options.
|
||||
DataAccess *DataAccessOptions `json:"dataAccess,omitempty"`
|
||||
|
||||
// ForceSendFields is a list of field names (e.g. "CloudAudit") to
|
||||
// unconditionally include in API requests. By default, fields with
|
||||
// empty values are omitted from API requests. However, any non-pointer,
|
||||
// non-interface field appearing in ForceSendFields will be sent to the
|
||||
// server regardless of whether the field is empty or not. This may be
|
||||
// used to include empty fields in Patch requests.
|
||||
ForceSendFields []string `json:"-"`
|
||||
|
||||
// NullFields is a list of field names (e.g. "CloudAudit") to include in
|
||||
// API requests with the JSON null value. By default, fields with empty
|
||||
// values are omitted from API requests. However, any field with an
|
||||
// empty value appearing in NullFields will be sent to the server as
|
||||
// null. It is an error if a field in this list has a non-empty value.
|
||||
// This may be used to include null fields in Patch requests.
|
||||
NullFields []string `json:"-"`
|
||||
}
|
||||
|
||||
func (s *LogConfig) MarshalJSON() ([]byte, error) {
|
||||
type noMethod LogConfig
|
||||
raw := noMethod(*s)
|
||||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// MirrorConfig: Configuration to automatically mirror a repository from
|
||||
// another
|
||||
// hosting service, for example GitHub or BitBucket.
|
||||
|
@ -670,8 +534,6 @@ type Policy struct {
|
|||
AuditConfigs []*AuditConfig `json:"auditConfigs,omitempty"`
|
||||
|
||||
// Bindings: Associates a list of `members` to a `role`.
|
||||
// Multiple `bindings` must not be specified for the same
|
||||
// `role`.
|
||||
// `bindings` with no members will result in an error.
|
||||
Bindings []*Binding `json:"bindings,omitempty"`
|
||||
|
||||
|
@ -697,20 +559,6 @@ type Policy struct {
|
|||
|
||||
IamOwned bool `json:"iamOwned,omitempty"`
|
||||
|
||||
// Rules: If more than one rule is specified, the rules are applied in
|
||||
// the following
|
||||
// manner:
|
||||
// - All matching LOG rules are always applied.
|
||||
// - If any DENY/DENY_WITH_LOG rule matches, permission is denied.
|
||||
// Logging will be applied if one or more matching rule requires
|
||||
// logging.
|
||||
// - Otherwise, if any ALLOW/ALLOW_WITH_LOG rule matches, permission is
|
||||
// granted.
|
||||
// Logging will be applied if one or more matching rule requires
|
||||
// logging.
|
||||
// - Otherwise, if no rule applies, permission is denied.
|
||||
Rules []*Rule `json:"rules,omitempty"`
|
||||
|
||||
// Version: Version of the `Policy`. The default version is 0.
|
||||
Version int64 `json:"version,omitempty"`
|
||||
|
||||
|
@ -790,77 +638,6 @@ func (s *Repo) MarshalJSON() ([]byte, error) {
|
|||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// Rule: A rule to be applied in a Policy.
|
||||
type Rule struct {
|
||||
// Action: Required
|
||||
//
|
||||
// Possible values:
|
||||
// "NO_ACTION" - Default no action.
|
||||
// "ALLOW" - Matching 'Entries' grant access.
|
||||
// "ALLOW_WITH_LOG" - Matching 'Entries' grant access and the caller
|
||||
// promises to log
|
||||
// the request per the returned log_configs.
|
||||
// "DENY" - Matching 'Entries' deny access.
|
||||
// "DENY_WITH_LOG" - Matching 'Entries' deny access and the caller
|
||||
// promises to log
|
||||
// the request per the returned log_configs.
|
||||
// "LOG" - Matching 'Entries' tell IAM.Check callers to generate logs.
|
||||
Action string `json:"action,omitempty"`
|
||||
|
||||
// Conditions: Additional restrictions that must be met
|
||||
Conditions []*Condition `json:"conditions,omitempty"`
|
||||
|
||||
// Description: Human-readable description of the rule.
|
||||
Description string `json:"description,omitempty"`
|
||||
|
||||
// In: If one or more 'in' clauses are specified, the rule matches
|
||||
// if
|
||||
// the PRINCIPAL/AUTHORITY_SELECTOR is in at least one of these entries.
|
||||
In []string `json:"in,omitempty"`
|
||||
|
||||
// LogConfig: The config returned to callers of tech.iam.IAM.CheckPolicy
|
||||
// for any entries
|
||||
// that match the LOG action.
|
||||
LogConfig []*LogConfig `json:"logConfig,omitempty"`
|
||||
|
||||
// NotIn: If one or more 'not_in' clauses are specified, the rule
|
||||
// matches
|
||||
// if the PRINCIPAL/AUTHORITY_SELECTOR is in none of the entries.
|
||||
// The format for in and not_in entries is the same as for members in
|
||||
// a
|
||||
// Binding (see google/iam/v1/policy.proto).
|
||||
NotIn []string `json:"notIn,omitempty"`
|
||||
|
||||
// Permissions: A permission is a string of form '<service>.<resource
|
||||
// type>.<verb>'
|
||||
// (e.g., 'storage.buckets.list'). A value of '*' matches all
|
||||
// permissions,
|
||||
// and a verb part of '*' (e.g., 'storage.buckets.*') matches all verbs.
|
||||
Permissions []string `json:"permissions,omitempty"`
|
||||
|
||||
// ForceSendFields is a list of field names (e.g. "Action") to
|
||||
// unconditionally include in API requests. By default, fields with
|
||||
// empty values are omitted from API requests. However, any non-pointer,
|
||||
// non-interface field appearing in ForceSendFields will be sent to the
|
||||
// server regardless of whether the field is empty or not. This may be
|
||||
// used to include empty fields in Patch requests.
|
||||
ForceSendFields []string `json:"-"`
|
||||
|
||||
// NullFields is a list of field names (e.g. "Action") to include in API
|
||||
// requests with the JSON null value. By default, fields with empty
|
||||
// values are omitted from API requests. However, any field with an
|
||||
// empty value appearing in NullFields will be sent to the server as
|
||||
// null. It is an error if a field in this list has a non-empty value.
|
||||
// This may be used to include null fields in Patch requests.
|
||||
NullFields []string `json:"-"`
|
||||
}
|
||||
|
||||
func (s *Rule) MarshalJSON() ([]byte, error) {
|
||||
type noMethod Rule
|
||||
raw := noMethod(*s)
|
||||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// SetIamPolicyRequest: Request message for `SetIamPolicy` method.
|
||||
type SetIamPolicyRequest struct {
|
||||
// Policy: REQUIRED: The complete policy to be applied to the
|
||||
|
@ -1107,6 +884,7 @@ func (c *ProjectsReposCreateCall) Do(opts ...googleapi.CallOption) (*Repo, error
|
|||
// },
|
||||
// "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"
|
||||
// ]
|
||||
|
@ -1234,6 +1012,7 @@ func (c *ProjectsReposDeleteCall) Do(opts ...googleapi.CallOption) (*Empty, erro
|
|||
// },
|
||||
// "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"
|
||||
// ]
|
||||
|
@ -1375,6 +1154,7 @@ func (c *ProjectsReposGetCall) Do(opts ...googleapi.CallOption) (*Repo, error) {
|
|||
// },
|
||||
// "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"
|
||||
// ]
|
||||
|
@ -1519,6 +1299,7 @@ func (c *ProjectsReposGetIamPolicyCall) Do(opts ...googleapi.CallOption) (*Polic
|
|||
// },
|
||||
// "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"
|
||||
// ]
|
||||
|
@ -1690,6 +1471,7 @@ func (c *ProjectsReposListCall) Do(opts ...googleapi.CallOption) (*ListReposResp
|
|||
// },
|
||||
// "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"
|
||||
// ]
|
||||
|
@ -1850,6 +1632,7 @@ func (c *ProjectsReposSetIamPolicyCall) Do(opts ...googleapi.CallOption) (*Polic
|
|||
// },
|
||||
// "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"
|
||||
// ]
|
||||
|
@ -1991,6 +1774,7 @@ func (c *ProjectsReposTestIamPermissionsCall) Do(opts ...googleapi.CallOption) (
|
|||
// },
|
||||
// "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"
|
||||
// ]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue