blob: a969d8bc05c0c80b1bf2a73bf73429fce8d5d420 [file] [log] [blame]
// This is a generated file (see the discoveryapis_generator project).
// ignore_for_file: camel_case_types
// ignore_for_file: comment_references
// ignore_for_file: file_names
// ignore_for_file: library_names
// ignore_for_file: lines_longer_than_80_chars
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: prefer_expression_function_bodies
// ignore_for_file: prefer_final_locals
// ignore_for_file: prefer_interpolation_to_compose_strings
// ignore_for_file: unnecessary_brace_in_string_interps
// ignore_for_file: unnecessary_cast
// ignore_for_file: unnecessary_lambdas
// ignore_for_file: unnecessary_parenthesis
// ignore_for_file: unnecessary_string_interpolations
/// Access Approval API - v1
///
/// An API for controlling access to data by Google personnel.
///
/// For more information, see <https://cloud.google.com/access-approval/docs>
library accessapproval.v1;
import 'dart:async' as async;
import 'dart:convert' as convert;
import 'dart:core' as core;
import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons;
import 'package:http/http.dart' as http;
import '../src/user_agent.dart';
export 'package:_discoveryapis_commons/_discoveryapis_commons.dart'
show ApiRequestError, DetailedApiRequestError;
/// An API for controlling access to data by Google personnel.
class AccessapprovalApi {
/// View and manage your data across Google Cloud Platform services
static const cloudPlatformScope =
'https://www.googleapis.com/auth/cloud-platform';
final commons.ApiRequester _requester;
FoldersResourceApi get folders => FoldersResourceApi(_requester);
OrganizationsResourceApi get organizations =>
OrganizationsResourceApi(_requester);
ProjectsResourceApi get projects => ProjectsResourceApi(_requester);
AccessapprovalApi(http.Client client,
{core.String rootUrl = 'https://accessapproval.googleapis.com/',
core.String servicePath = ''})
: _requester =
commons.ApiRequester(client, rootUrl, servicePath, userAgent);
}
class FoldersResourceApi {
final commons.ApiRequester _requester;
FoldersApprovalRequestsResourceApi get approvalRequests =>
FoldersApprovalRequestsResourceApi(_requester);
FoldersResourceApi(commons.ApiRequester client) : _requester = client;
/// Deletes the settings associated with a project, folder, or organization.
/// This will have the effect of disabling Access Approval for the project,
/// folder, or organization, but only if all ancestors also have Access
/// Approval disabled. If Access Approval is enabled at a higher level of the
/// hierarchy, then Access Approval will still be enabled at this level as the
/// settings are inherited.
///
/// Request parameters:
///
/// [name] - Name of the AccessApprovalSettings to delete.
/// Value must have pattern "^folders/[^/]+/accessApprovalSettings$".
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [Empty].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<Empty> deleteAccessApprovalSettings(
core.String name, {
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
final _response = _requester.request(
_url,
'DELETE',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) => Empty.fromJson(data as core.Map<core.String, core.dynamic>),
);
}
/// Gets the settings associated with a project, folder, or organization.
///
/// Request parameters:
///
/// [name] - Name of the AccessApprovalSettings to retrieve.
/// Value must have pattern "^folders/[^/]+/accessApprovalSettings$".
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [AccessApprovalSettings].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<AccessApprovalSettings> getAccessApprovalSettings(
core.String name, {
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
final _response = _requester.request(
_url,
'GET',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) => AccessApprovalSettings.fromJson(
data as core.Map<core.String, core.dynamic>),
);
}
/// Updates the settings associated with a project, folder, or organization.
/// Settings to update are determined by the value of field_mask.
///
/// [request] - The metadata request object.
///
/// Request parameters:
///
/// [name] - The resource name of the settings. Format is one of: *
/// "projects/{project}/accessApprovalSettings" *
/// "folders/{folder}/accessApprovalSettings" *
/// "organizations/{organization}/accessApprovalSettings"
/// Value must have pattern "^folders/[^/]+/accessApprovalSettings$".
///
/// [updateMask] - The update mask applies to the settings. Only the top level
/// fields of AccessApprovalSettings (notification_emails & enrolled_services)
/// are supported. For each field, if it is included, the currently stored
/// value will be entirely overwritten with the value of the field passed in
/// this request. For the `FieldMask` definition, see
/// https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
/// If this field is left unset, only the notification_emails field will be
/// updated.
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [AccessApprovalSettings].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<AccessApprovalSettings> updateAccessApprovalSettings(
AccessApprovalSettings request,
core.String name, {
core.String updateMask,
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (request != null) {
_body = convert.json.encode(request.toJson());
}
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if (updateMask != null) {
_queryParams['updateMask'] = [updateMask];
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
final _response = _requester.request(
_url,
'PATCH',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) => AccessApprovalSettings.fromJson(
data as core.Map<core.String, core.dynamic>),
);
}
}
class FoldersApprovalRequestsResourceApi {
final commons.ApiRequester _requester;
FoldersApprovalRequestsResourceApi(commons.ApiRequester client)
: _requester = client;
/// Approves a request and returns the updated ApprovalRequest. Returns
/// NOT_FOUND if the request does not exist. Returns FAILED_PRECONDITION if
/// the request exists but is not in a pending state.
///
/// [request] - The metadata request object.
///
/// Request parameters:
///
/// [name] - Name of the approval request to approve.
/// Value must have pattern "^folders/[^/]+/approvalRequests/[^/]+$".
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [ApprovalRequest].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<ApprovalRequest> approve(
ApproveApprovalRequestMessage request,
core.String name, {
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (request != null) {
_body = convert.json.encode(request.toJson());
}
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name') + ':approve';
final _response = _requester.request(
_url,
'POST',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) =>
ApprovalRequest.fromJson(data as core.Map<core.String, core.dynamic>),
);
}
/// Dismisses a request. Returns the updated ApprovalRequest. NOTE: This does
/// not deny access to the resource if another request has been made and
/// approved. It is equivalent in effect to ignoring the request altogether.
/// Returns NOT_FOUND if the request does not exist. Returns
/// FAILED_PRECONDITION if the request exists but is not in a pending state.
///
/// [request] - The metadata request object.
///
/// Request parameters:
///
/// [name] - Name of the ApprovalRequest to dismiss.
/// Value must have pattern "^folders/[^/]+/approvalRequests/[^/]+$".
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [ApprovalRequest].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<ApprovalRequest> dismiss(
DismissApprovalRequestMessage request,
core.String name, {
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (request != null) {
_body = convert.json.encode(request.toJson());
}
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name') + ':dismiss';
final _response = _requester.request(
_url,
'POST',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) =>
ApprovalRequest.fromJson(data as core.Map<core.String, core.dynamic>),
);
}
/// Gets an approval request. Returns NOT_FOUND if the request does not exist.
///
/// Request parameters:
///
/// [name] - Name of the approval request to retrieve.
/// Value must have pattern "^folders/[^/]+/approvalRequests/[^/]+$".
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [ApprovalRequest].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<ApprovalRequest> get(
core.String name, {
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
final _response = _requester.request(
_url,
'GET',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) =>
ApprovalRequest.fromJson(data as core.Map<core.String, core.dynamic>),
);
}
/// Lists approval requests associated with a project, folder, or
/// organization. Approval requests can be filtered by state (pending, active,
/// dismissed). The order is reverse chronological.
///
/// Request parameters:
///
/// [parent] - The parent resource. This may be "projects/{project}",
/// "folders/{folder}", or "organizations/{organization}".
/// Value must have pattern "^folders/[^/]+$".
///
/// [filter] - A filter on the type of approval requests to retrieve. Must be
/// one of the following values: * [not set]: Requests that are pending or
/// have active approvals. * ALL: All requests. * PENDING: Only pending
/// requests. * ACTIVE: Only active (i.e. currently approved) requests. *
/// DISMISSED: Only dismissed (including expired) requests. * HISTORY: Active
/// and dismissed (including expired) requests.
///
/// [pageSize] - Requested page size.
///
/// [pageToken] - A token identifying the page of results to return.
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [ListApprovalRequestsResponse].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<ListApprovalRequestsResponse> list(
core.String parent, {
core.String filter,
core.int pageSize,
core.String pageToken,
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (parent == null) {
throw core.ArgumentError('Parameter parent is required.');
}
if (filter != null) {
_queryParams['filter'] = [filter];
}
if (pageSize != null) {
_queryParams['pageSize'] = ['${pageSize}'];
}
if (pageToken != null) {
_queryParams['pageToken'] = [pageToken];
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' +
commons.Escaper.ecapeVariableReserved('$parent') +
'/approvalRequests';
final _response = _requester.request(
_url,
'GET',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) => ListApprovalRequestsResponse.fromJson(
data as core.Map<core.String, core.dynamic>),
);
}
}
class OrganizationsResourceApi {
final commons.ApiRequester _requester;
OrganizationsApprovalRequestsResourceApi get approvalRequests =>
OrganizationsApprovalRequestsResourceApi(_requester);
OrganizationsResourceApi(commons.ApiRequester client) : _requester = client;
/// Deletes the settings associated with a project, folder, or organization.
/// This will have the effect of disabling Access Approval for the project,
/// folder, or organization, but only if all ancestors also have Access
/// Approval disabled. If Access Approval is enabled at a higher level of the
/// hierarchy, then Access Approval will still be enabled at this level as the
/// settings are inherited.
///
/// Request parameters:
///
/// [name] - Name of the AccessApprovalSettings to delete.
/// Value must have pattern "^organizations/[^/]+/accessApprovalSettings$".
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [Empty].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<Empty> deleteAccessApprovalSettings(
core.String name, {
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
final _response = _requester.request(
_url,
'DELETE',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) => Empty.fromJson(data as core.Map<core.String, core.dynamic>),
);
}
/// Gets the settings associated with a project, folder, or organization.
///
/// Request parameters:
///
/// [name] - Name of the AccessApprovalSettings to retrieve.
/// Value must have pattern "^organizations/[^/]+/accessApprovalSettings$".
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [AccessApprovalSettings].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<AccessApprovalSettings> getAccessApprovalSettings(
core.String name, {
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
final _response = _requester.request(
_url,
'GET',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) => AccessApprovalSettings.fromJson(
data as core.Map<core.String, core.dynamic>),
);
}
/// Updates the settings associated with a project, folder, or organization.
/// Settings to update are determined by the value of field_mask.
///
/// [request] - The metadata request object.
///
/// Request parameters:
///
/// [name] - The resource name of the settings. Format is one of: *
/// "projects/{project}/accessApprovalSettings" *
/// "folders/{folder}/accessApprovalSettings" *
/// "organizations/{organization}/accessApprovalSettings"
/// Value must have pattern "^organizations/[^/]+/accessApprovalSettings$".
///
/// [updateMask] - The update mask applies to the settings. Only the top level
/// fields of AccessApprovalSettings (notification_emails & enrolled_services)
/// are supported. For each field, if it is included, the currently stored
/// value will be entirely overwritten with the value of the field passed in
/// this request. For the `FieldMask` definition, see
/// https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
/// If this field is left unset, only the notification_emails field will be
/// updated.
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [AccessApprovalSettings].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<AccessApprovalSettings> updateAccessApprovalSettings(
AccessApprovalSettings request,
core.String name, {
core.String updateMask,
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (request != null) {
_body = convert.json.encode(request.toJson());
}
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if (updateMask != null) {
_queryParams['updateMask'] = [updateMask];
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
final _response = _requester.request(
_url,
'PATCH',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) => AccessApprovalSettings.fromJson(
data as core.Map<core.String, core.dynamic>),
);
}
}
class OrganizationsApprovalRequestsResourceApi {
final commons.ApiRequester _requester;
OrganizationsApprovalRequestsResourceApi(commons.ApiRequester client)
: _requester = client;
/// Approves a request and returns the updated ApprovalRequest. Returns
/// NOT_FOUND if the request does not exist. Returns FAILED_PRECONDITION if
/// the request exists but is not in a pending state.
///
/// [request] - The metadata request object.
///
/// Request parameters:
///
/// [name] - Name of the approval request to approve.
/// Value must have pattern "^organizations/[^/]+/approvalRequests/[^/]+$".
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [ApprovalRequest].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<ApprovalRequest> approve(
ApproveApprovalRequestMessage request,
core.String name, {
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (request != null) {
_body = convert.json.encode(request.toJson());
}
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name') + ':approve';
final _response = _requester.request(
_url,
'POST',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) =>
ApprovalRequest.fromJson(data as core.Map<core.String, core.dynamic>),
);
}
/// Dismisses a request. Returns the updated ApprovalRequest. NOTE: This does
/// not deny access to the resource if another request has been made and
/// approved. It is equivalent in effect to ignoring the request altogether.
/// Returns NOT_FOUND if the request does not exist. Returns
/// FAILED_PRECONDITION if the request exists but is not in a pending state.
///
/// [request] - The metadata request object.
///
/// Request parameters:
///
/// [name] - Name of the ApprovalRequest to dismiss.
/// Value must have pattern "^organizations/[^/]+/approvalRequests/[^/]+$".
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [ApprovalRequest].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<ApprovalRequest> dismiss(
DismissApprovalRequestMessage request,
core.String name, {
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (request != null) {
_body = convert.json.encode(request.toJson());
}
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name') + ':dismiss';
final _response = _requester.request(
_url,
'POST',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) =>
ApprovalRequest.fromJson(data as core.Map<core.String, core.dynamic>),
);
}
/// Gets an approval request. Returns NOT_FOUND if the request does not exist.
///
/// Request parameters:
///
/// [name] - Name of the approval request to retrieve.
/// Value must have pattern "^organizations/[^/]+/approvalRequests/[^/]+$".
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [ApprovalRequest].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<ApprovalRequest> get(
core.String name, {
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
final _response = _requester.request(
_url,
'GET',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) =>
ApprovalRequest.fromJson(data as core.Map<core.String, core.dynamic>),
);
}
/// Lists approval requests associated with a project, folder, or
/// organization. Approval requests can be filtered by state (pending, active,
/// dismissed). The order is reverse chronological.
///
/// Request parameters:
///
/// [parent] - The parent resource. This may be "projects/{project}",
/// "folders/{folder}", or "organizations/{organization}".
/// Value must have pattern "^organizations/[^/]+$".
///
/// [filter] - A filter on the type of approval requests to retrieve. Must be
/// one of the following values: * [not set]: Requests that are pending or
/// have active approvals. * ALL: All requests. * PENDING: Only pending
/// requests. * ACTIVE: Only active (i.e. currently approved) requests. *
/// DISMISSED: Only dismissed (including expired) requests. * HISTORY: Active
/// and dismissed (including expired) requests.
///
/// [pageSize] - Requested page size.
///
/// [pageToken] - A token identifying the page of results to return.
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [ListApprovalRequestsResponse].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<ListApprovalRequestsResponse> list(
core.String parent, {
core.String filter,
core.int pageSize,
core.String pageToken,
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (parent == null) {
throw core.ArgumentError('Parameter parent is required.');
}
if (filter != null) {
_queryParams['filter'] = [filter];
}
if (pageSize != null) {
_queryParams['pageSize'] = ['${pageSize}'];
}
if (pageToken != null) {
_queryParams['pageToken'] = [pageToken];
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' +
commons.Escaper.ecapeVariableReserved('$parent') +
'/approvalRequests';
final _response = _requester.request(
_url,
'GET',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) => ListApprovalRequestsResponse.fromJson(
data as core.Map<core.String, core.dynamic>),
);
}
}
class ProjectsResourceApi {
final commons.ApiRequester _requester;
ProjectsApprovalRequestsResourceApi get approvalRequests =>
ProjectsApprovalRequestsResourceApi(_requester);
ProjectsResourceApi(commons.ApiRequester client) : _requester = client;
/// Deletes the settings associated with a project, folder, or organization.
/// This will have the effect of disabling Access Approval for the project,
/// folder, or organization, but only if all ancestors also have Access
/// Approval disabled. If Access Approval is enabled at a higher level of the
/// hierarchy, then Access Approval will still be enabled at this level as the
/// settings are inherited.
///
/// Request parameters:
///
/// [name] - Name of the AccessApprovalSettings to delete.
/// Value must have pattern "^projects/[^/]+/accessApprovalSettings$".
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [Empty].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<Empty> deleteAccessApprovalSettings(
core.String name, {
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
final _response = _requester.request(
_url,
'DELETE',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) => Empty.fromJson(data as core.Map<core.String, core.dynamic>),
);
}
/// Gets the settings associated with a project, folder, or organization.
///
/// Request parameters:
///
/// [name] - Name of the AccessApprovalSettings to retrieve.
/// Value must have pattern "^projects/[^/]+/accessApprovalSettings$".
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [AccessApprovalSettings].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<AccessApprovalSettings> getAccessApprovalSettings(
core.String name, {
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
final _response = _requester.request(
_url,
'GET',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) => AccessApprovalSettings.fromJson(
data as core.Map<core.String, core.dynamic>),
);
}
/// Updates the settings associated with a project, folder, or organization.
/// Settings to update are determined by the value of field_mask.
///
/// [request] - The metadata request object.
///
/// Request parameters:
///
/// [name] - The resource name of the settings. Format is one of: *
/// "projects/{project}/accessApprovalSettings" *
/// "folders/{folder}/accessApprovalSettings" *
/// "organizations/{organization}/accessApprovalSettings"
/// Value must have pattern "^projects/[^/]+/accessApprovalSettings$".
///
/// [updateMask] - The update mask applies to the settings. Only the top level
/// fields of AccessApprovalSettings (notification_emails & enrolled_services)
/// are supported. For each field, if it is included, the currently stored
/// value will be entirely overwritten with the value of the field passed in
/// this request. For the `FieldMask` definition, see
/// https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
/// If this field is left unset, only the notification_emails field will be
/// updated.
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [AccessApprovalSettings].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<AccessApprovalSettings> updateAccessApprovalSettings(
AccessApprovalSettings request,
core.String name, {
core.String updateMask,
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (request != null) {
_body = convert.json.encode(request.toJson());
}
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if (updateMask != null) {
_queryParams['updateMask'] = [updateMask];
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
final _response = _requester.request(
_url,
'PATCH',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) => AccessApprovalSettings.fromJson(
data as core.Map<core.String, core.dynamic>),
);
}
}
class ProjectsApprovalRequestsResourceApi {
final commons.ApiRequester _requester;
ProjectsApprovalRequestsResourceApi(commons.ApiRequester client)
: _requester = client;
/// Approves a request and returns the updated ApprovalRequest. Returns
/// NOT_FOUND if the request does not exist. Returns FAILED_PRECONDITION if
/// the request exists but is not in a pending state.
///
/// [request] - The metadata request object.
///
/// Request parameters:
///
/// [name] - Name of the approval request to approve.
/// Value must have pattern "^projects/[^/]+/approvalRequests/[^/]+$".
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [ApprovalRequest].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<ApprovalRequest> approve(
ApproveApprovalRequestMessage request,
core.String name, {
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (request != null) {
_body = convert.json.encode(request.toJson());
}
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name') + ':approve';
final _response = _requester.request(
_url,
'POST',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) =>
ApprovalRequest.fromJson(data as core.Map<core.String, core.dynamic>),
);
}
/// Dismisses a request. Returns the updated ApprovalRequest. NOTE: This does
/// not deny access to the resource if another request has been made and
/// approved. It is equivalent in effect to ignoring the request altogether.
/// Returns NOT_FOUND if the request does not exist. Returns
/// FAILED_PRECONDITION if the request exists but is not in a pending state.
///
/// [request] - The metadata request object.
///
/// Request parameters:
///
/// [name] - Name of the ApprovalRequest to dismiss.
/// Value must have pattern "^projects/[^/]+/approvalRequests/[^/]+$".
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [ApprovalRequest].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<ApprovalRequest> dismiss(
DismissApprovalRequestMessage request,
core.String name, {
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (request != null) {
_body = convert.json.encode(request.toJson());
}
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name') + ':dismiss';
final _response = _requester.request(
_url,
'POST',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) =>
ApprovalRequest.fromJson(data as core.Map<core.String, core.dynamic>),
);
}
/// Gets an approval request. Returns NOT_FOUND if the request does not exist.
///
/// Request parameters:
///
/// [name] - Name of the approval request to retrieve.
/// Value must have pattern "^projects/[^/]+/approvalRequests/[^/]+$".
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [ApprovalRequest].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<ApprovalRequest> get(
core.String name, {
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (name == null) {
throw core.ArgumentError('Parameter name is required.');
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
final _response = _requester.request(
_url,
'GET',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) =>
ApprovalRequest.fromJson(data as core.Map<core.String, core.dynamic>),
);
}
/// Lists approval requests associated with a project, folder, or
/// organization. Approval requests can be filtered by state (pending, active,
/// dismissed). The order is reverse chronological.
///
/// Request parameters:
///
/// [parent] - The parent resource. This may be "projects/{project}",
/// "folders/{folder}", or "organizations/{organization}".
/// Value must have pattern "^projects/[^/]+$".
///
/// [filter] - A filter on the type of approval requests to retrieve. Must be
/// one of the following values: * [not set]: Requests that are pending or
/// have active approvals. * ALL: All requests. * PENDING: Only pending
/// requests. * ACTIVE: Only active (i.e. currently approved) requests. *
/// DISMISSED: Only dismissed (including expired) requests. * HISTORY: Active
/// and dismissed (including expired) requests.
///
/// [pageSize] - Requested page size.
///
/// [pageToken] - A token identifying the page of results to return.
///
/// [$fields] - Selector specifying which fields to include in a partial
/// response.
///
/// Completes with a [ListApprovalRequestsResponse].
///
/// Completes with a [commons.ApiRequestError] if the API endpoint returned an
/// error.
///
/// If the used [http.Client] completes with an error when making a REST call,
/// this method will complete with the same error.
async.Future<ListApprovalRequestsResponse> list(
core.String parent, {
core.String filter,
core.int pageSize,
core.String pageToken,
core.String $fields,
}) {
core.String _url;
final _queryParams = <core.String, core.List<core.String>>{};
commons.Media _uploadMedia;
commons.UploadOptions _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
core.String _body;
if (parent == null) {
throw core.ArgumentError('Parameter parent is required.');
}
if (filter != null) {
_queryParams['filter'] = [filter];
}
if (pageSize != null) {
_queryParams['pageSize'] = ['${pageSize}'];
}
if (pageToken != null) {
_queryParams['pageToken'] = [pageToken];
}
if ($fields != null) {
_queryParams['fields'] = [$fields];
}
_url = 'v1/' +
commons.Escaper.ecapeVariableReserved('$parent') +
'/approvalRequests';
final _response = _requester.request(
_url,
'GET',
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions,
);
return _response.then(
(data) => ListApprovalRequestsResponse.fromJson(
data as core.Map<core.String, core.dynamic>),
);
}
}
/// Settings on a Project/Folder/Organization related to Access Approval.
class AccessApprovalSettings {
/// Output only. This field is read only (not settable via
/// UpdateAccessAccessApprovalSettings method). If the field is true, that
/// indicates that at least one service is enrolled for Access Approval in one
/// or more ancestors of the Project or Folder (this field will always be
/// unset for the organization since organizations do not have ancestors).
core.bool enrolledAncestor;
/// A list of Google Cloud Services for which the given resource has Access
/// Approval enrolled. Access requests for the resource given by name against
/// any of these services contained here will be required to have explicit
/// approval. If name refers to an organization, enrollment can be done for
/// individual services. If name refers to a folder or project, enrollment can
/// only be done on an all or nothing basis. If a cloud_product is repeated in
/// this list, the first entry will be honored and all following entries will
/// be discarded. A maximum of 10 enrolled services will be enforced, to be
/// expanded as the set of supported services is expanded.
core.List<EnrolledService> enrolledServices;
/// The resource name of the settings. Format is one of: *
/// "projects/{project}/accessApprovalSettings" *
/// "folders/{folder}/accessApprovalSettings" *
/// "organizations/{organization}/accessApprovalSettings"
core.String name;
/// A list of email addresses to which notifications relating to approval
/// requests should be sent. Notifications relating to a resource will be sent
/// to all emails in the settings of ancestor resources of that resource. A
/// maximum of 50 email addresses are allowed.
core.List<core.String> notificationEmails;
AccessApprovalSettings();
AccessApprovalSettings.fromJson(core.Map _json) {
if (_json.containsKey('enrolledAncestor')) {
enrolledAncestor = _json['enrolledAncestor'] as core.bool;
}
if (_json.containsKey('enrolledServices')) {
enrolledServices = (_json['enrolledServices'] as core.List)
.map<EnrolledService>((value) => EnrolledService.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList();
}
if (_json.containsKey('name')) {
name = _json['name'] as core.String;
}
if (_json.containsKey('notificationEmails')) {
notificationEmails = (_json['notificationEmails'] as core.List)
.map<core.String>((value) => value as core.String)
.toList();
}
}
core.Map<core.String, core.Object> toJson() {
final _json = <core.String, core.Object>{};
if (enrolledAncestor != null) {
_json['enrolledAncestor'] = enrolledAncestor;
}
if (enrolledServices != null) {
_json['enrolledServices'] =
enrolledServices.map((value) => value.toJson()).toList();
}
if (name != null) {
_json['name'] = name;
}
if (notificationEmails != null) {
_json['notificationEmails'] = notificationEmails;
}
return _json;
}
}
/// Home office and physical location of the principal.
class AccessLocations {
/// The "home office" location of the principal. A two-letter country code
/// (ISO 3166-1 alpha-2), such as "US", "DE" or "GB" or a region code. In some
/// limited situations Google systems may refer refer to a region code instead
/// of a country code. Possible Region Codes: * ASI: Asia * EUR: Europe * OCE:
/// Oceania * AFR: Africa * NAM: North America * SAM: South America * ANT:
/// Antarctica * ANY: Any location
core.String principalOfficeCountry;
/// Physical location of the principal at the time of the access. A two-letter
/// country code (ISO 3166-1 alpha-2), such as "US", "DE" or "GB" or a region
/// code. In some limited situations Google systems may refer refer to a
/// region code instead of a country code. Possible Region Codes: * ASI: Asia
/// * EUR: Europe * OCE: Oceania * AFR: Africa * NAM: North America * SAM:
/// South America * ANT: Antarctica * ANY: Any location
core.String principalPhysicalLocationCountry;
AccessLocations();
AccessLocations.fromJson(core.Map _json) {
if (_json.containsKey('principalOfficeCountry')) {
principalOfficeCountry = _json['principalOfficeCountry'] as core.String;
}
if (_json.containsKey('principalPhysicalLocationCountry')) {
principalPhysicalLocationCountry =
_json['principalPhysicalLocationCountry'] as core.String;
}
}
core.Map<core.String, core.Object> toJson() {
final _json = <core.String, core.Object>{};
if (principalOfficeCountry != null) {
_json['principalOfficeCountry'] = principalOfficeCountry;
}
if (principalPhysicalLocationCountry != null) {
_json['principalPhysicalLocationCountry'] =
principalPhysicalLocationCountry;
}
return _json;
}
}
class AccessReason {
/// More detail about certain reason types. See comments for each type above.
core.String detail;
/// Type of access justification.
/// Possible string values are:
/// - "TYPE_UNSPECIFIED" : Default value for proto, shouldn't be used.
/// - "CUSTOMER_INITIATED_SUPPORT" : Customer made a request or raised an
/// issue that required the principal to access customer data. `detail` is of
/// the form ("#####" is the issue ID): * "Feedback Report: #####" * "Case
/// Number: #####" * "Case ID: #####" * "E-PIN Reference: #####" *
/// "Google-#####" * "T-#####"
/// - "GOOGLE_INITIATED_SERVICE" : The principal accessed customer data in
/// order to diagnose or resolve a suspected issue in services or a known
/// outage. Often this access is used to confirm that customers are not
/// affected by a suspected service issue or to remediate a reversible system
/// issue.
/// - "GOOGLE_INITIATED_REVIEW" : Google initiated service for security,
/// fraud, abuse, or compliance purposes.
core.String type;
AccessReason();
AccessReason.fromJson(core.Map _json) {
if (_json.containsKey('detail')) {
detail = _json['detail'] as core.String;
}
if (_json.containsKey('type')) {
type = _json['type'] as core.String;
}
}
core.Map<core.String, core.Object> toJson() {
final _json = <core.String, core.Object>{};
if (detail != null) {
_json['detail'] = detail;
}
if (type != null) {
_json['type'] = type;
}
return _json;
}
}
/// A request for the customer to approve access to a resource.
class ApprovalRequest {
/// Access was approved.
ApproveDecision approve;
/// The request was dismissed.
DismissDecision dismiss;
/// The resource name of the request. Format is
/// "{projects|folders|organizations}/{id}/approvalRequests/{approval_request}".
core.String name;
/// The time at which approval was requested.
core.String requestTime;
/// The requested expiration for the approval. If the request is approved,
/// access will be granted from the time of approval until the expiration
/// time.
core.String requestedExpiration;
/// The locations for which approval is being requested.
AccessLocations requestedLocations;
/// The justification for which approval is being requested.
AccessReason requestedReason;
/// The resource for which approval is being requested. The format of the
/// resource name is defined at
/// https://cloud.google.com/apis/design/resource_names. The resource name
/// here may either be a "full" resource name (e.g.
/// "//library.googleapis.com/shelves/shelf1/books/book2") or a "relative"
/// resource name (e.g. "shelves/shelf1/books/book2") as described in the
/// resource name specification.
core.String requestedResourceName;
/// Properties related to the resource represented by requested_resource_name.
ResourceProperties requestedResourceProperties;
ApprovalRequest();
ApprovalRequest.fromJson(core.Map _json) {
if (_json.containsKey('approve')) {
approve = ApproveDecision.fromJson(
_json['approve'] as core.Map<core.String, core.dynamic>);
}
if (_json.containsKey('dismiss')) {
dismiss = DismissDecision.fromJson(
_json['dismiss'] as core.Map<core.String, core.dynamic>);
}
if (_json.containsKey('name')) {
name = _json['name'] as core.String;
}
if (_json.containsKey('requestTime')) {
requestTime = _json['requestTime'] as core.String;
}
if (_json.containsKey('requestedExpiration')) {
requestedExpiration = _json['requestedExpiration'] as core.String;
}
if (_json.containsKey('requestedLocations')) {
requestedLocations = AccessLocations.fromJson(
_json['requestedLocations'] as core.Map<core.String, core.dynamic>);
}
if (_json.containsKey('requestedReason')) {
requestedReason = AccessReason.fromJson(
_json['requestedReason'] as core.Map<core.String, core.dynamic>);
}
if (_json.containsKey('requestedResourceName')) {
requestedResourceName = _json['requestedResourceName'] as core.String;
}
if (_json.containsKey('requestedResourceProperties')) {
requestedResourceProperties = ResourceProperties.fromJson(
_json['requestedResourceProperties']
as core.Map<core.String, core.dynamic>);
}
}
core.Map<core.String, core.Object> toJson() {
final _json = <core.String, core.Object>{};
if (approve != null) {
_json['approve'] = approve.toJson();
}
if (dismiss != null) {
_json['dismiss'] = dismiss.toJson();
}
if (name != null) {
_json['name'] = name;
}
if (requestTime != null) {
_json['requestTime'] = requestTime;
}
if (requestedExpiration != null) {
_json['requestedExpiration'] = requestedExpiration;
}
if (requestedLocations != null) {
_json['requestedLocations'] = requestedLocations.toJson();
}
if (requestedReason != null) {
_json['requestedReason'] = requestedReason.toJson();
}
if (requestedResourceName != null) {
_json['requestedResourceName'] = requestedResourceName;
}
if (requestedResourceProperties != null) {
_json['requestedResourceProperties'] =
requestedResourceProperties.toJson();
}
return _json;
}
}
/// Request to approve an ApprovalRequest.
class ApproveApprovalRequestMessage {
/// The expiration time of this approval.
core.String expireTime;
ApproveApprovalRequestMessage();
ApproveApprovalRequestMessage.fromJson(core.Map _json) {
if (_json.containsKey('expireTime')) {
expireTime = _json['expireTime'] as core.String;
}
}
core.Map<core.String, core.Object> toJson() {
final _json = <core.String, core.Object>{};
if (expireTime != null) {
_json['expireTime'] = expireTime;
}
return _json;
}
}
/// A decision that has been made to approve access to a resource.
class ApproveDecision {
/// The time at which approval was granted.
core.String approveTime;
/// The time at which the approval expires.
core.String expireTime;
ApproveDecision();
ApproveDecision.fromJson(core.Map _json) {
if (_json.containsKey('approveTime')) {
approveTime = _json['approveTime'] as core.String;
}
if (_json.containsKey('expireTime')) {
expireTime = _json['expireTime'] as core.String;
}
}
core.Map<core.String, core.Object> toJson() {
final _json = <core.String, core.Object>{};
if (approveTime != null) {
_json['approveTime'] = approveTime;
}
if (expireTime != null) {
_json['expireTime'] = expireTime;
}
return _json;
}
}
/// Request to dismiss an approval request.
class DismissApprovalRequestMessage {
DismissApprovalRequestMessage();
DismissApprovalRequestMessage.fromJson(
// ignore: avoid_unused_constructor_parameters
core.Map _json);
core.Map<core.String, core.Object> toJson() {
final _json = <core.String, core.Object>{};
return _json;
}
}
/// A decision that has been made to dismiss an approval request.
class DismissDecision {
/// The time at which the approval request was dismissed.
core.String dismissTime;
/// This field will be true if the ApprovalRequest was implcitly dismissed due
/// to inaction by the access approval approvers (the request is not acted on
/// by the approvers before the exiration time).
core.bool implicit;
DismissDecision();
DismissDecision.fromJson(core.Map _json) {
if (_json.containsKey('dismissTime')) {
dismissTime = _json['dismissTime'] as core.String;
}
if (_json.containsKey('implicit')) {
implicit = _json['implicit'] as core.bool;
}
}
core.Map<core.String, core.Object> toJson() {
final _json = <core.String, core.Object>{};
if (dismissTime != null) {
_json['dismissTime'] = dismissTime;
}
if (implicit != null) {
_json['implicit'] = implicit;
}
return _json;
}
}
/// 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 request
/// or the response type of an API method. For instance: service Foo { rpc
/// Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON
/// representation for `Empty` is empty JSON object `{}`.
class Empty {
Empty();
Empty.fromJson(
// ignore: avoid_unused_constructor_parameters
core.Map _json);
core.Map<core.String, core.Object> toJson() {
final _json = <core.String, core.Object>{};
return _json;
}
}
/// Represents the enrollment of a cloud resource into a specific service.
class EnrolledService {
/// The product for which Access Approval will be enrolled. Allowed values are
/// listed below (case-sensitive): * all * GA * App Engine * BigQuery * Cloud
/// Bigtable * Cloud Key Management Service * Compute Engine * Cloud Dataflow
/// * Cloud Identity and Access Management * Cloud Pub/Sub * Cloud Storage *
/// Persistent Disk Note: These values are supported as input for legacy
/// purposes, but will not be returned from the API. * all * ga-only *
/// appengine.googleapis.com * bigquery.googleapis.com *
/// bigtable.googleapis.com * cloudkms.googleapis.com * compute.googleapis.com
/// * dataflow.googleapis.com * iam.googleapis.com * pubsub.googleapis.com *
/// storage.googleapis.com Calls to UpdateAccessApprovalSettings using 'all',
/// 'ga-only', or any of the XXX.googleapis.com will be translated to the
/// associated product name ('all', 'GA', 'App Engine', etc.). Note: 'all'
/// will enroll the resource in all products supported at both 'GA' and
/// 'Preview' levels. 'ga-only'/'GA' will only enroll the resource in products
/// supported at 'GA' level. More information about levels of support is
/// available at
/// https://cloud.google.com/access-approval/docs/supported-services
core.String cloudProduct;
/// The enrollment level of the service.
/// Possible string values are:
/// - "ENROLLMENT_LEVEL_UNSPECIFIED" : Default value for proto, shouldn't be
/// used.
/// - "BLOCK_ALL" : Service is enrolled in Access Approval for all requests
core.String enrollmentLevel;
EnrolledService();
EnrolledService.fromJson(core.Map _json) {
if (_json.containsKey('cloudProduct')) {
cloudProduct = _json['cloudProduct'] as core.String;
}
if (_json.containsKey('enrollmentLevel')) {
enrollmentLevel = _json['enrollmentLevel'] as core.String;
}
}
core.Map<core.String, core.Object> toJson() {
final _json = <core.String, core.Object>{};
if (cloudProduct != null) {
_json['cloudProduct'] = cloudProduct;
}
if (enrollmentLevel != null) {
_json['enrollmentLevel'] = enrollmentLevel;
}
return _json;
}
}
/// Response to listing of ApprovalRequest objects.
class ListApprovalRequestsResponse {
/// Approval request details.
core.List<ApprovalRequest> approvalRequests;
/// Token to retrieve the next page of results, or empty if there are no more.
core.String nextPageToken;
ListApprovalRequestsResponse();
ListApprovalRequestsResponse.fromJson(core.Map _json) {
if (_json.containsKey('approvalRequests')) {
approvalRequests = (_json['approvalRequests'] as core.List)
.map<ApprovalRequest>((value) => ApprovalRequest.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList();
}
if (_json.containsKey('nextPageToken')) {
nextPageToken = _json['nextPageToken'] as core.String;
}
}
core.Map<core.String, core.Object> toJson() {
final _json = <core.String, core.Object>{};
if (approvalRequests != null) {
_json['approvalRequests'] =
approvalRequests.map((value) => value.toJson()).toList();
}
if (nextPageToken != null) {
_json['nextPageToken'] = nextPageToken;
}
return _json;
}
}
/// The properties associated with the resource of the request.
class ResourceProperties {
/// Whether an approval will exclude the descendants of the resource being
/// requested.
core.bool excludesDescendants;
ResourceProperties();
ResourceProperties.fromJson(core.Map _json) {
if (_json.containsKey('excludesDescendants')) {
excludesDescendants = _json['excludesDescendants'] as core.bool;
}
}
core.Map<core.String, core.Object> toJson() {
final _json = <core.String, core.Object>{};
if (excludesDescendants != null) {
_json['excludesDescendants'] = excludesDescendants;
}
return _json;
}
}