| // 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_interpolation_to_compose_strings |
| // ignore_for_file: unnecessary_brace_in_string_interps |
| // ignore_for_file: unnecessary_lambdas |
| // ignore_for_file: unnecessary_string_interpolations |
| |
| /// Managed Service for Microsoft Active Directory API - v1 |
| /// |
| /// The Managed Service for Microsoft Active Directory API is used for managing |
| /// a highly available, hardened service running Microsoft Active Directory |
| /// (AD). |
| /// |
| /// For more information, see <https://cloud.google.com/managed-microsoft-ad/> |
| /// |
| /// Create an instance of [ManagedServiceForMicrosoftActiveDirectoryConsumerApi] |
| /// to access these resources: |
| /// |
| /// - [ProjectsResource] |
| /// - [ProjectsLocationsResource] |
| /// - [ProjectsLocationsGlobalResource] |
| /// - [ProjectsLocationsGlobalDomainsResource] |
| /// - [ProjectsLocationsGlobalOperationsResource] |
| library managedidentities.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; |
| |
| /// The Managed Service for Microsoft Active Directory API is used for managing |
| /// a highly available, hardened service running Microsoft Active Directory |
| /// (AD). |
| class ManagedServiceForMicrosoftActiveDirectoryConsumerApi { |
| /// View and manage your data across Google Cloud Platform services |
| static const cloudPlatformScope = |
| 'https://www.googleapis.com/auth/cloud-platform'; |
| |
| final commons.ApiRequester _requester; |
| |
| ProjectsResource get projects => ProjectsResource(_requester); |
| |
| ManagedServiceForMicrosoftActiveDirectoryConsumerApi(http.Client client, |
| {core.String rootUrl = 'https://managedidentities.googleapis.com/', |
| core.String servicePath = ''}) |
| : _requester = |
| commons.ApiRequester(client, rootUrl, servicePath, requestHeaders); |
| } |
| |
| class ProjectsResource { |
| final commons.ApiRequester _requester; |
| |
| ProjectsLocationsResource get locations => |
| ProjectsLocationsResource(_requester); |
| |
| ProjectsResource(commons.ApiRequester client) : _requester = client; |
| } |
| |
| class ProjectsLocationsResource { |
| final commons.ApiRequester _requester; |
| |
| ProjectsLocationsGlobalResource get global => |
| ProjectsLocationsGlobalResource(_requester); |
| |
| ProjectsLocationsResource(commons.ApiRequester client) : _requester = client; |
| |
| /// Gets information about a location. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Resource name for the location. |
| /// Value must have pattern `^projects/\[^/\]+/locations/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [Location]. |
| /// |
| /// 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<Location> get( |
| core.String name, { |
| core.String? $fields, |
| }) async { |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$name'); |
| |
| final _response = await _requester.request( |
| _url, |
| 'GET', |
| queryParams: _queryParams, |
| ); |
| return Location.fromJson(_response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Lists information about the supported locations for this service. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - The resource that owns the locations collection, if applicable. |
| /// Value must have pattern `^projects/\[^/\]+$`. |
| /// |
| /// [filter] - The standard list filter. |
| /// |
| /// [pageSize] - The standard list page size. |
| /// |
| /// [pageToken] - The standard list page token. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [ListLocationsResponse]. |
| /// |
| /// 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<ListLocationsResponse> list( |
| core.String name, { |
| core.String? filter, |
| core.int? pageSize, |
| core.String? pageToken, |
| core.String? $fields, |
| }) async { |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if (filter != null) 'filter': [filter], |
| if (pageSize != null) 'pageSize': ['${pageSize}'], |
| if (pageToken != null) 'pageToken': [pageToken], |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$name') + '/locations'; |
| |
| final _response = await _requester.request( |
| _url, |
| 'GET', |
| queryParams: _queryParams, |
| ); |
| return ListLocationsResponse.fromJson( |
| _response as core.Map<core.String, core.dynamic>); |
| } |
| } |
| |
| class ProjectsLocationsGlobalResource { |
| final commons.ApiRequester _requester; |
| |
| ProjectsLocationsGlobalDomainsResource get domains => |
| ProjectsLocationsGlobalDomainsResource(_requester); |
| ProjectsLocationsGlobalOperationsResource get operations => |
| ProjectsLocationsGlobalOperationsResource(_requester); |
| |
| ProjectsLocationsGlobalResource(commons.ApiRequester client) |
| : _requester = client; |
| } |
| |
| class ProjectsLocationsGlobalDomainsResource { |
| final commons.ApiRequester _requester; |
| |
| ProjectsLocationsGlobalDomainsResource(commons.ApiRequester client) |
| : _requester = client; |
| |
| /// Adds an AD trust to a domain. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The resource domain name, project name and location |
| /// using the form: |
| /// `projects/{project_id}/locations/global/domains/{domain_name}` |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/global/domains/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [Operation]. |
| /// |
| /// 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<Operation> attachTrust( |
| AttachTrustRequest request, |
| core.String name, { |
| core.String? $fields, |
| }) async { |
| final _body = convert.json.encode(request.toJson()); |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$name') + ':attachTrust'; |
| |
| final _response = await _requester.request( |
| _url, |
| 'POST', |
| body: _body, |
| queryParams: _queryParams, |
| ); |
| return Operation.fromJson(_response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Creates a Microsoft AD domain. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [parent] - Required. The resource project name and location using the |
| /// form: `projects/{project_id}/locations/global` |
| /// Value must have pattern `^projects/\[^/\]+/locations/global$`. |
| /// |
| /// [domainName] - Required. The fully qualified domain name. e.g. |
| /// mydomain.myorganization.com, with the following restrictions: * Must |
| /// contain only lowercase letters, numbers, periods and hyphens. * Must start |
| /// with a letter. * Must contain between 2-64 characters. * Must end with a |
| /// number or a letter. * Must not start with period. * First segement length |
| /// (mydomain form example above) shouldn't exceed 15 chars. * The last |
| /// segment cannot be fully numeric. * Must be unique within the customer |
| /// project. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [Operation]. |
| /// |
| /// 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<Operation> create( |
| Domain request, |
| core.String parent, { |
| core.String? domainName, |
| core.String? $fields, |
| }) async { |
| final _body = convert.json.encode(request.toJson()); |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if (domainName != null) 'domainName': [domainName], |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$parent') + '/domains'; |
| |
| final _response = await _requester.request( |
| _url, |
| 'POST', |
| body: _body, |
| queryParams: _queryParams, |
| ); |
| return Operation.fromJson(_response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Deletes a domain. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The domain resource name using the form: |
| /// `projects/{project_id}/locations/global/domains/{domain_name}` |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/global/domains/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [Operation]. |
| /// |
| /// 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<Operation> delete( |
| core.String name, { |
| core.String? $fields, |
| }) async { |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$name'); |
| |
| final _response = await _requester.request( |
| _url, |
| 'DELETE', |
| queryParams: _queryParams, |
| ); |
| return Operation.fromJson(_response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Removes an AD trust. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The resource domain name, project name, and location |
| /// using the form: |
| /// `projects/{project_id}/locations/global/domains/{domain_name}` |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/global/domains/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [Operation]. |
| /// |
| /// 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<Operation> detachTrust( |
| DetachTrustRequest request, |
| core.String name, { |
| core.String? $fields, |
| }) async { |
| final _body = convert.json.encode(request.toJson()); |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$name') + ':detachTrust'; |
| |
| final _response = await _requester.request( |
| _url, |
| 'POST', |
| body: _body, |
| queryParams: _queryParams, |
| ); |
| return Operation.fromJson(_response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Gets information about a domain. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The domain resource name using the form: |
| /// `projects/{project_id}/locations/global/domains/{domain_name}` |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/global/domains/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [Domain]. |
| /// |
| /// 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<Domain> get( |
| core.String name, { |
| core.String? $fields, |
| }) async { |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$name'); |
| |
| final _response = await _requester.request( |
| _url, |
| 'GET', |
| queryParams: _queryParams, |
| ); |
| return Domain.fromJson(_response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Gets the access control policy for a resource. |
| /// |
| /// Returns an empty policy if the resource exists and does not have a policy |
| /// set. |
| /// |
| /// Request parameters: |
| /// |
| /// [resource] - REQUIRED: The resource for which the policy is being |
| /// requested. See the operation documentation for the appropriate value for |
| /// this field. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/global/domains/\[^/\]+$`. |
| /// |
| /// [options_requestedPolicyVersion] - Optional. The policy format version to |
| /// be returned. Valid values are 0, 1, and 3. Requests specifying an invalid |
| /// value will be rejected. Requests for policies with any conditional |
| /// bindings must specify version 3. Policies without any conditional bindings |
| /// may specify any valid value or leave the field unset. To learn which |
| /// resources support conditions in their IAM policies, see the |
| /// [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [Policy]. |
| /// |
| /// 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<Policy> getIamPolicy( |
| core.String resource, { |
| core.int? options_requestedPolicyVersion, |
| core.String? $fields, |
| }) async { |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if (options_requestedPolicyVersion != null) |
| 'options.requestedPolicyVersion': ['${options_requestedPolicyVersion}'], |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$resource') + ':getIamPolicy'; |
| |
| final _response = await _requester.request( |
| _url, |
| 'GET', |
| queryParams: _queryParams, |
| ); |
| return Policy.fromJson(_response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Lists domains in a project. |
| /// |
| /// Request parameters: |
| /// |
| /// [parent] - Required. The resource name of the domain location using the |
| /// form: `projects/{project_id}/locations/global` |
| /// Value must have pattern `^projects/\[^/\]+/locations/global$`. |
| /// |
| /// [filter] - Optional. A filter specifying constraints of a list operation. |
| /// For example, `Domain.fqdn="mydomain.myorginization"`. |
| /// |
| /// [orderBy] - Optional. Specifies the ordering of results. See |
| /// [Sorting order](https://cloud.google.com/apis/design/design_patterns#sorting_order) |
| /// for more information. |
| /// |
| /// [pageSize] - Optional. The maximum number of items to return. If not |
| /// specified, a default value of 1000 will be used. Regardless of the |
| /// page_size value, the response may include a partial list. Callers should |
| /// rely on a response's next_page_token to determine if there are additional |
| /// results to list. |
| /// |
| /// [pageToken] - Optional. The `next_page_token` value returned from a |
| /// previous ListDomainsRequest request, if any. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [ListDomainsResponse]. |
| /// |
| /// 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<ListDomainsResponse> list( |
| core.String parent, { |
| core.String? filter, |
| core.String? orderBy, |
| core.int? pageSize, |
| core.String? pageToken, |
| core.String? $fields, |
| }) async { |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if (filter != null) 'filter': [filter], |
| if (orderBy != null) 'orderBy': [orderBy], |
| if (pageSize != null) 'pageSize': ['${pageSize}'], |
| if (pageToken != null) 'pageToken': [pageToken], |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$parent') + '/domains'; |
| |
| final _response = await _requester.request( |
| _url, |
| 'GET', |
| queryParams: _queryParams, |
| ); |
| return ListDomainsResponse.fromJson( |
| _response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Updates the metadata and configuration of a domain. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The unique name of the domain using the form: |
| /// `projects/{project_id}/locations/global/domains/{domain_name}`. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/global/domains/\[^/\]+$`. |
| /// |
| /// [updateMask] - Required. Mask of fields to update. At least one path must |
| /// be supplied in this field. The elements of the repeated paths field may |
| /// only include fields from Domain: * `labels` * `locations` * |
| /// `authorized_networks` |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [Operation]. |
| /// |
| /// 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<Operation> patch( |
| Domain request, |
| core.String name, { |
| core.String? updateMask, |
| core.String? $fields, |
| }) async { |
| final _body = convert.json.encode(request.toJson()); |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if (updateMask != null) 'updateMask': [updateMask], |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$name'); |
| |
| final _response = await _requester.request( |
| _url, |
| 'PATCH', |
| body: _body, |
| queryParams: _queryParams, |
| ); |
| return Operation.fromJson(_response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Updates the DNS conditional forwarder. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The resource domain name, project name and location |
| /// using the form: |
| /// `projects/{project_id}/locations/global/domains/{domain_name}` |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/global/domains/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [Operation]. |
| /// |
| /// 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<Operation> reconfigureTrust( |
| ReconfigureTrustRequest request, |
| core.String name, { |
| core.String? $fields, |
| }) async { |
| final _body = convert.json.encode(request.toJson()); |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$name') + ':reconfigureTrust'; |
| |
| final _response = await _requester.request( |
| _url, |
| 'POST', |
| body: _body, |
| queryParams: _queryParams, |
| ); |
| return Operation.fromJson(_response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Resets a domain's administrator password. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The domain resource name using the form: |
| /// `projects/{project_id}/locations/global/domains/{domain_name}` |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/global/domains/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [ResetAdminPasswordResponse]. |
| /// |
| /// 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<ResetAdminPasswordResponse> resetAdminPassword( |
| ResetAdminPasswordRequest request, |
| core.String name, { |
| core.String? $fields, |
| }) async { |
| final _body = convert.json.encode(request.toJson()); |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$name') + ':resetAdminPassword'; |
| |
| final _response = await _requester.request( |
| _url, |
| 'POST', |
| body: _body, |
| queryParams: _queryParams, |
| ); |
| return ResetAdminPasswordResponse.fromJson( |
| _response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Sets the access control policy on the specified resource. |
| /// |
| /// Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, |
| /// and `PERMISSION_DENIED` errors. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [resource] - REQUIRED: The resource for which the policy is being |
| /// specified. See the operation documentation for the appropriate value for |
| /// this field. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/global/domains/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [Policy]. |
| /// |
| /// 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<Policy> setIamPolicy( |
| SetIamPolicyRequest request, |
| core.String resource, { |
| core.String? $fields, |
| }) async { |
| final _body = convert.json.encode(request.toJson()); |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$resource') + ':setIamPolicy'; |
| |
| final _response = await _requester.request( |
| _url, |
| 'POST', |
| body: _body, |
| queryParams: _queryParams, |
| ); |
| return Policy.fromJson(_response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Returns permissions that a caller has on the specified resource. |
| /// |
| /// If the resource does not exist, this will return an empty set of |
| /// permissions, not a `NOT_FOUND` error. Note: This operation is designed to |
| /// be used for building permission-aware UIs and command-line tools, not for |
| /// authorization checking. This operation may "fail open" without warning. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [resource] - REQUIRED: The resource for which the policy detail is being |
| /// requested. See the operation documentation for the appropriate value for |
| /// this field. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/global/domains/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [TestIamPermissionsResponse]. |
| /// |
| /// 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<TestIamPermissionsResponse> testIamPermissions( |
| TestIamPermissionsRequest request, |
| core.String resource, { |
| core.String? $fields, |
| }) async { |
| final _body = convert.json.encode(request.toJson()); |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = |
| 'v1/' + core.Uri.encodeFull('$resource') + ':testIamPermissions'; |
| |
| final _response = await _requester.request( |
| _url, |
| 'POST', |
| body: _body, |
| queryParams: _queryParams, |
| ); |
| return TestIamPermissionsResponse.fromJson( |
| _response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Validates a trust state, that the target domain is reachable, and that the |
| /// target domain is able to accept incoming trust requests. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The resource domain name, project name, and location |
| /// using the form: |
| /// `projects/{project_id}/locations/global/domains/{domain_name}` |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/global/domains/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [Operation]. |
| /// |
| /// 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<Operation> validateTrust( |
| ValidateTrustRequest request, |
| core.String name, { |
| core.String? $fields, |
| }) async { |
| final _body = convert.json.encode(request.toJson()); |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$name') + ':validateTrust'; |
| |
| final _response = await _requester.request( |
| _url, |
| 'POST', |
| body: _body, |
| queryParams: _queryParams, |
| ); |
| return Operation.fromJson(_response as core.Map<core.String, core.dynamic>); |
| } |
| } |
| |
| class ProjectsLocationsGlobalOperationsResource { |
| final commons.ApiRequester _requester; |
| |
| ProjectsLocationsGlobalOperationsResource(commons.ApiRequester client) |
| : _requester = client; |
| |
| /// Starts asynchronous cancellation on a long-running operation. |
| /// |
| /// The server makes a best effort to cancel the operation, but success is not |
| /// guaranteed. If the server doesn't support this method, it returns |
| /// `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation |
| /// or other methods to check whether the cancellation succeeded or whether |
| /// the operation completed despite cancellation. On successful cancellation, |
| /// the operation is not deleted; instead, it becomes an operation with an |
| /// Operation.error value with a google.rpc.Status.code of 1, corresponding to |
| /// `Code.CANCELLED`. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - The name of the operation resource to be cancelled. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/global/operations/\[^/\]+$`. |
| /// |
| /// [$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> cancel( |
| CancelOperationRequest request, |
| core.String name, { |
| core.String? $fields, |
| }) async { |
| final _body = convert.json.encode(request.toJson()); |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$name') + ':cancel'; |
| |
| final _response = await _requester.request( |
| _url, |
| 'POST', |
| body: _body, |
| queryParams: _queryParams, |
| ); |
| return Empty.fromJson(_response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Deletes a long-running operation. |
| /// |
| /// This method indicates that the client is no longer interested in the |
| /// operation result. It does not cancel the operation. If the server doesn't |
| /// support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - The name of the operation resource to be deleted. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/global/operations/\[^/\]+$`. |
| /// |
| /// [$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> delete( |
| core.String name, { |
| core.String? $fields, |
| }) async { |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$name'); |
| |
| final _response = await _requester.request( |
| _url, |
| 'DELETE', |
| queryParams: _queryParams, |
| ); |
| return Empty.fromJson(_response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Gets the latest state of a long-running operation. |
| /// |
| /// Clients can use this method to poll the operation result at intervals as |
| /// recommended by the API service. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - The name of the operation resource. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/global/operations/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [Operation]. |
| /// |
| /// 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<Operation> get( |
| core.String name, { |
| core.String? $fields, |
| }) async { |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$name'); |
| |
| final _response = await _requester.request( |
| _url, |
| 'GET', |
| queryParams: _queryParams, |
| ); |
| return Operation.fromJson(_response as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Lists operations that match the specified filter in the request. |
| /// |
| /// If the server doesn't support this method, it returns `UNIMPLEMENTED`. |
| /// NOTE: the `name` binding allows API services to override the binding to |
| /// use different resource name schemes, such as `users / * /operations`. To |
| /// override the binding, API services can add a binding such as |
| /// `"/v1/{name=users / * }/operations"` to their service configuration. For |
| /// backwards compatibility, the default name includes the operations |
| /// collection id, however overriding users must ensure the name binding is |
| /// the parent resource, without the operations collection id. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - The name of the operation's parent resource. |
| /// Value must have pattern `^projects/\[^/\]+/locations/global/operations$`. |
| /// |
| /// [filter] - The standard list filter. |
| /// |
| /// [pageSize] - The standard list page size. |
| /// |
| /// [pageToken] - The standard list page token. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [ListOperationsResponse]. |
| /// |
| /// 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<ListOperationsResponse> list( |
| core.String name, { |
| core.String? filter, |
| core.int? pageSize, |
| core.String? pageToken, |
| core.String? $fields, |
| }) async { |
| final _queryParams = <core.String, core.List<core.String>>{ |
| if (filter != null) 'filter': [filter], |
| if (pageSize != null) 'pageSize': ['${pageSize}'], |
| if (pageToken != null) 'pageToken': [pageToken], |
| if ($fields != null) 'fields': [$fields], |
| }; |
| |
| final _url = 'v1/' + core.Uri.encodeFull('$name'); |
| |
| final _response = await _requester.request( |
| _url, |
| 'GET', |
| queryParams: _queryParams, |
| ); |
| return ListOperationsResponse.fromJson( |
| _response as core.Map<core.String, core.dynamic>); |
| } |
| } |
| |
| /// Request message for AttachTrust |
| class AttachTrustRequest { |
| /// The domain trust resource. |
| /// |
| /// Required. |
| Trust? trust; |
| |
| AttachTrustRequest(); |
| |
| AttachTrustRequest.fromJson(core.Map _json) { |
| if (_json.containsKey('trust')) { |
| trust = |
| Trust.fromJson(_json['trust'] as core.Map<core.String, core.dynamic>); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (trust != null) 'trust': trust!.toJson(), |
| }; |
| } |
| |
| /// Associates `members` with a `role`. |
| class Binding { |
| /// The condition that is associated with this binding. |
| /// |
| /// If the condition evaluates to `true`, then this binding applies to the |
| /// current request. If the condition evaluates to `false`, then this binding |
| /// does not apply to the current request. However, a different role binding |
| /// might grant the same role to one or more of the members in this binding. |
| /// To learn which resources support conditions in their IAM policies, see the |
| /// [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). |
| Expr? condition; |
| |
| /// Specifies the identities requesting access for a Cloud Platform resource. |
| /// |
| /// `members` can have the following values: * `allUsers`: A special |
| /// identifier that represents anyone who is on the internet; with or without |
| /// a Google account. * `allAuthenticatedUsers`: A special identifier that |
| /// represents anyone who is authenticated with a Google account or a service |
| /// account. * `user:{emailid}`: An email address that represents a specific |
| /// Google account. For example, `alice@example.com` . * |
| /// `serviceAccount:{emailid}`: An email address that represents a service |
| /// account. For example, `my-other-app@appspot.gserviceaccount.com`. * |
| /// `group:{emailid}`: An email address that represents a Google group. For |
| /// example, `admins@example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: |
| /// An email address (plus unique identifier) representing a user that has |
| /// been recently deleted. For example, |
| /// `alice@example.com?uid=123456789012345678901`. If the user is recovered, |
| /// this value reverts to `user:{emailid}` and the recovered user retains the |
| /// role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: |
| /// An email address (plus unique identifier) representing a service account |
| /// that has been recently deleted. For example, |
| /// `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If |
| /// the service account is undeleted, this value reverts to |
| /// `serviceAccount:{emailid}` and the undeleted service account retains the |
| /// role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email |
| /// address (plus unique identifier) representing a Google group that has been |
| /// recently deleted. For example, |
| /// `admins@example.com?uid=123456789012345678901`. If the group is recovered, |
| /// this value reverts to `group:{emailid}` and the recovered group retains |
| /// the role in the binding. * `domain:{domain}`: The G Suite domain (primary) |
| /// that represents all the users of that domain. For example, `google.com` or |
| /// `example.com`. |
| core.List<core.String>? members; |
| |
| /// Role that is assigned to `members`. |
| /// |
| /// For example, `roles/viewer`, `roles/editor`, or `roles/owner`. |
| core.String? role; |
| |
| Binding(); |
| |
| Binding.fromJson(core.Map _json) { |
| if (_json.containsKey('condition')) { |
| condition = Expr.fromJson( |
| _json['condition'] as core.Map<core.String, core.dynamic>); |
| } |
| if (_json.containsKey('members')) { |
| members = (_json['members'] as core.List) |
| .map<core.String>((value) => value as core.String) |
| .toList(); |
| } |
| if (_json.containsKey('role')) { |
| role = _json['role'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (condition != null) 'condition': condition!.toJson(), |
| if (members != null) 'members': members!, |
| if (role != null) 'role': role!, |
| }; |
| } |
| |
| /// The request message for Operations.CancelOperation. |
| class CancelOperationRequest { |
| CancelOperationRequest(); |
| |
| CancelOperationRequest.fromJson( |
| // ignore: avoid_unused_constructor_parameters |
| core.Map _json); |
| |
| core.Map<core.String, core.dynamic> toJson() => {}; |
| } |
| |
| /// Time window specified for daily operations. |
| class DailyCycle { |
| /// Duration of the time window, set by service producer. |
| /// |
| /// Output only. |
| core.String? duration; |
| |
| /// Time within the day to start the operations. |
| TimeOfDay? startTime; |
| |
| DailyCycle(); |
| |
| DailyCycle.fromJson(core.Map _json) { |
| if (_json.containsKey('duration')) { |
| duration = _json['duration'] as core.String; |
| } |
| if (_json.containsKey('startTime')) { |
| startTime = TimeOfDay.fromJson( |
| _json['startTime'] as core.Map<core.String, core.dynamic>); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (duration != null) 'duration': duration!, |
| if (startTime != null) 'startTime': startTime!.toJson(), |
| }; |
| } |
| |
| /// Represents a whole or partial calendar date, such as a birthday. |
| /// |
| /// The time of day and time zone are either specified elsewhere or are |
| /// insignificant. The date is relative to the Gregorian Calendar. This can |
| /// represent one of the following: * A full date, with non-zero year, month, |
| /// and day values * A month and day value, with a zero year, such as an |
| /// anniversary * A year on its own, with zero month and day values * A year and |
| /// month value, with a zero day, such as a credit card expiration date Related |
| /// types are google.type.TimeOfDay and `google.protobuf.Timestamp`. |
| class Date { |
| /// Day of a month. |
| /// |
| /// Must be from 1 to 31 and valid for the year and month, or 0 to specify a |
| /// year by itself or a year and month where the day isn't significant. |
| core.int? day; |
| |
| /// Month of a year. |
| /// |
| /// Must be from 1 to 12, or 0 to specify a year without a month and day. |
| core.int? month; |
| |
| /// Year of the date. |
| /// |
| /// Must be from 1 to 9999, or 0 to specify a date without a year. |
| core.int? year; |
| |
| Date(); |
| |
| Date.fromJson(core.Map _json) { |
| if (_json.containsKey('day')) { |
| day = _json['day'] as core.int; |
| } |
| if (_json.containsKey('month')) { |
| month = _json['month'] as core.int; |
| } |
| if (_json.containsKey('year')) { |
| year = _json['year'] as core.int; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (day != null) 'day': day!, |
| if (month != null) 'month': month!, |
| if (year != null) 'year': year!, |
| }; |
| } |
| |
| /// DenyMaintenancePeriod definition. |
| /// |
| /// Maintenance is forbidden within the deny period. The start_date must be less |
| /// than the end_date. |
| class DenyMaintenancePeriod { |
| /// Deny period end date. |
| /// |
| /// This can be: * A full date, with non-zero year, month and day values. * A |
| /// month and day value, with a zero year. Allows recurring deny periods each |
| /// year. Date matching this period will have to be before the end. |
| Date? endDate; |
| |
| /// Deny period start date. |
| /// |
| /// This can be: * A full date, with non-zero year, month and day values. * A |
| /// month and day value, with a zero year. Allows recurring deny periods each |
| /// year. Date matching this period will have to be the same or after the |
| /// start. |
| Date? startDate; |
| |
| /// Time in UTC when the Blackout period starts on start_date and ends on |
| /// end_date. |
| /// |
| /// This can be: * Full time. * All zeros for 00:00:00 UTC |
| TimeOfDay? time; |
| |
| DenyMaintenancePeriod(); |
| |
| DenyMaintenancePeriod.fromJson(core.Map _json) { |
| if (_json.containsKey('endDate')) { |
| endDate = Date.fromJson( |
| _json['endDate'] as core.Map<core.String, core.dynamic>); |
| } |
| if (_json.containsKey('startDate')) { |
| startDate = Date.fromJson( |
| _json['startDate'] as core.Map<core.String, core.dynamic>); |
| } |
| if (_json.containsKey('time')) { |
| time = TimeOfDay.fromJson( |
| _json['time'] as core.Map<core.String, core.dynamic>); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (endDate != null) 'endDate': endDate!.toJson(), |
| if (startDate != null) 'startDate': startDate!.toJson(), |
| if (time != null) 'time': time!.toJson(), |
| }; |
| } |
| |
| /// Request message for DetachTrust |
| class DetachTrustRequest { |
| /// The domain trust resource to removed. |
| /// |
| /// Required. |
| Trust? trust; |
| |
| DetachTrustRequest(); |
| |
| DetachTrustRequest.fromJson(core.Map _json) { |
| if (_json.containsKey('trust')) { |
| trust = |
| Trust.fromJson(_json['trust'] as core.Map<core.String, core.dynamic>); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (trust != null) 'trust': trust!.toJson(), |
| }; |
| } |
| |
| /// Represents a managed Microsoft Active Directory domain. |
| /// |
| /// If the domain is being changed, it will be placed into the UPDATING state, |
| /// which indicates that the resource is being reconciled. At this point, Get |
| /// will reflect an intermediate state. |
| class Domain { |
| /// The name of delegated administrator account used to perform Active |
| /// Directory operations. |
| /// |
| /// If not specified, `setupadmin` will be used. |
| /// |
| /// Optional. |
| core.String? admin; |
| |
| /// The full names of the Google Compute Engine |
| /// \[networks\](/compute/docs/networks-and-firewalls#networks) the domain |
| /// instance is connected to. |
| /// |
| /// Networks can be added using UpdateDomain. The domain is only available on |
| /// networks listed in `authorized_networks`. If CIDR subnets overlap between |
| /// networks, domain creation will fail. |
| /// |
| /// Optional. |
| core.List<core.String>? authorizedNetworks; |
| |
| /// The time the instance was created. |
| /// |
| /// Output only. |
| core.String? createTime; |
| |
| /// The fully-qualified domain name of the exposed domain used by clients to |
| /// connect to the service. |
| /// |
| /// Similar to what would be chosen for an Active Directory set up on an |
| /// internal network. |
| /// |
| /// Output only. |
| core.String? fqdn; |
| |
| /// Resource labels that can contain user-provided metadata. |
| /// |
| /// Optional. |
| core.Map<core.String, core.String>? labels; |
| |
| /// Locations where domain needs to be provisioned. |
| /// |
| /// regions e.g. us-west1 or us-east4 Service supports up to 4 locations at |
| /// once. Each location will use a /26 block. |
| /// |
| /// Required. |
| core.List<core.String>? locations; |
| |
| /// The unique name of the domain using the form: |
| /// `projects/{project_id}/locations/global/domains/{domain_name}`. |
| /// |
| /// Required. |
| core.String? name; |
| |
| /// The CIDR range of internal addresses that are reserved for this domain. |
| /// |
| /// Reserved networks must be /24 or larger. Ranges must be unique and |
| /// non-overlapping with existing subnets in |
| /// \[Domain\].\[authorized_networks\]. |
| /// |
| /// Required. |
| core.String? reservedIpRange; |
| |
| /// The current state of this domain. |
| /// |
| /// Output only. |
| /// Possible string values are: |
| /// - "STATE_UNSPECIFIED" : Not set. |
| /// - "CREATING" : The domain is being created. |
| /// - "READY" : The domain has been created and is fully usable. |
| /// - "UPDATING" : The domain's configuration is being updated. |
| /// - "DELETING" : The domain is being deleted. |
| /// - "REPAIRING" : The domain is being repaired and may be unusable. Details |
| /// can be found in the `status_message` field. |
| /// - "PERFORMING_MAINTENANCE" : The domain is undergoing maintenance. |
| /// - "UNAVAILABLE" : The domain is not serving requests. |
| core.String? state; |
| |
| /// Additional information about the current status of this domain, if |
| /// available. |
| /// |
| /// Output only. |
| core.String? statusMessage; |
| |
| /// The current trusts associated with the domain. |
| /// |
| /// Output only. |
| core.List<Trust>? trusts; |
| |
| /// The last update time. |
| /// |
| /// Output only. |
| core.String? updateTime; |
| |
| Domain(); |
| |
| Domain.fromJson(core.Map _json) { |
| if (_json.containsKey('admin')) { |
| admin = _json['admin'] as core.String; |
| } |
| if (_json.containsKey('authorizedNetworks')) { |
| authorizedNetworks = (_json['authorizedNetworks'] as core.List) |
| .map<core.String>((value) => value as core.String) |
| .toList(); |
| } |
| if (_json.containsKey('createTime')) { |
| createTime = _json['createTime'] as core.String; |
| } |
| if (_json.containsKey('fqdn')) { |
| fqdn = _json['fqdn'] as core.String; |
| } |
| if (_json.containsKey('labels')) { |
| labels = (_json['labels'] as core.Map<core.String, core.dynamic>).map( |
| (key, item) => core.MapEntry( |
| key, |
| item as core.String, |
| ), |
| ); |
| } |
| if (_json.containsKey('locations')) { |
| locations = (_json['locations'] as core.List) |
| .map<core.String>((value) => value as core.String) |
| .toList(); |
| } |
| if (_json.containsKey('name')) { |
| name = _json['name'] as core.String; |
| } |
| if (_json.containsKey('reservedIpRange')) { |
| reservedIpRange = _json['reservedIpRange'] as core.String; |
| } |
| if (_json.containsKey('state')) { |
| state = _json['state'] as core.String; |
| } |
| if (_json.containsKey('statusMessage')) { |
| statusMessage = _json['statusMessage'] as core.String; |
| } |
| if (_json.containsKey('trusts')) { |
| trusts = (_json['trusts'] as core.List) |
| .map<Trust>((value) => |
| Trust.fromJson(value as core.Map<core.String, core.dynamic>)) |
| .toList(); |
| } |
| if (_json.containsKey('updateTime')) { |
| updateTime = _json['updateTime'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (admin != null) 'admin': admin!, |
| if (authorizedNetworks != null) |
| 'authorizedNetworks': authorizedNetworks!, |
| if (createTime != null) 'createTime': createTime!, |
| if (fqdn != null) 'fqdn': fqdn!, |
| if (labels != null) 'labels': labels!, |
| if (locations != null) 'locations': locations!, |
| if (name != null) 'name': name!, |
| if (reservedIpRange != null) 'reservedIpRange': reservedIpRange!, |
| if (state != null) 'state': state!, |
| if (statusMessage != null) 'statusMessage': statusMessage!, |
| if (trusts != null) |
| 'trusts': trusts!.map((value) => value.toJson()).toList(), |
| if (updateTime != null) 'updateTime': updateTime!, |
| }; |
| } |
| |
| /// 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.dynamic> toJson() => {}; |
| } |
| |
| /// Represents a textual expression in the Common Expression Language (CEL) |
| /// syntax. |
| /// |
| /// CEL is a C-like expression language. The syntax and semantics of CEL are |
| /// documented at https://github.com/google/cel-spec. Example (Comparison): |
| /// title: "Summary size limit" description: "Determines if a summary is less |
| /// than 100 chars" expression: "document.summary.size() < 100" Example |
| /// (Equality): title: "Requestor is owner" description: "Determines if |
| /// requestor is the document owner" expression: "document.owner == |
| /// request.auth.claims.email" Example (Logic): title: "Public documents" |
| /// description: "Determine whether the document should be publicly visible" |
| /// expression: "document.type != 'private' && document.type != 'internal'" |
| /// Example (Data Manipulation): title: "Notification string" description: |
| /// "Create a notification string with a timestamp." expression: "'New message |
| /// received at ' + string(document.create_time)" The exact variables and |
| /// functions that may be referenced within an expression are determined by the |
| /// service that evaluates it. See the service documentation for additional |
| /// information. |
| class Expr { |
| /// Description of the expression. |
| /// |
| /// This is a longer text which describes the expression, e.g. when hovered |
| /// over it in a UI. |
| /// |
| /// Optional. |
| core.String? description; |
| |
| /// Textual representation of an expression in Common Expression Language |
| /// syntax. |
| core.String? expression; |
| |
| /// String indicating the location of the expression for error reporting, e.g. |
| /// a file name and a position in the file. |
| /// |
| /// Optional. |
| core.String? location; |
| |
| /// 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. |
| /// |
| /// Optional. |
| core.String? title; |
| |
| Expr(); |
| |
| Expr.fromJson(core.Map _json) { |
| if (_json.containsKey('description')) { |
| description = _json['description'] as core.String; |
| } |
| if (_json.containsKey('expression')) { |
| expression = _json['expression'] as core.String; |
| } |
| if (_json.containsKey('location')) { |
| location = _json['location'] as core.String; |
| } |
| if (_json.containsKey('title')) { |
| title = _json['title'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (description != null) 'description': description!, |
| if (expression != null) 'expression': expression!, |
| if (location != null) 'location': location!, |
| if (title != null) 'title': title!, |
| }; |
| } |
| |
| /// Represents the metadata of the long-running operation. |
| class GoogleCloudManagedidentitiesV1OpMetadata { |
| /// API version used to start the operation. |
| /// |
| /// Output only. |
| core.String? apiVersion; |
| |
| /// The time the operation was created. |
| /// |
| /// Output only. |
| core.String? createTime; |
| |
| /// The time the operation finished running. |
| /// |
| /// Output only. |
| core.String? endTime; |
| |
| /// Identifies whether the user has requested cancellation of the operation. |
| /// |
| /// Operations that have successfully been cancelled have Operation.error |
| /// value with a google.rpc.Status.code of 1, corresponding to |
| /// `Code.CANCELLED`. |
| /// |
| /// Output only. |
| core.bool? requestedCancellation; |
| |
| /// Server-defined resource path for the target of the operation. |
| /// |
| /// Output only. |
| core.String? target; |
| |
| /// Name of the verb executed by the operation. |
| /// |
| /// Output only. |
| core.String? verb; |
| |
| GoogleCloudManagedidentitiesV1OpMetadata(); |
| |
| GoogleCloudManagedidentitiesV1OpMetadata.fromJson(core.Map _json) { |
| if (_json.containsKey('apiVersion')) { |
| apiVersion = _json['apiVersion'] as core.String; |
| } |
| if (_json.containsKey('createTime')) { |
| createTime = _json['createTime'] as core.String; |
| } |
| if (_json.containsKey('endTime')) { |
| endTime = _json['endTime'] as core.String; |
| } |
| if (_json.containsKey('requestedCancellation')) { |
| requestedCancellation = _json['requestedCancellation'] as core.bool; |
| } |
| if (_json.containsKey('target')) { |
| target = _json['target'] as core.String; |
| } |
| if (_json.containsKey('verb')) { |
| verb = _json['verb'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (apiVersion != null) 'apiVersion': apiVersion!, |
| if (createTime != null) 'createTime': createTime!, |
| if (endTime != null) 'endTime': endTime!, |
| if (requestedCancellation != null) |
| 'requestedCancellation': requestedCancellation!, |
| if (target != null) 'target': target!, |
| if (verb != null) 'verb': verb!, |
| }; |
| } |
| |
| /// Represents the metadata of the long-running operation. |
| class GoogleCloudManagedidentitiesV1alpha1OpMetadata { |
| /// API version used to start the operation. |
| /// |
| /// Output only. |
| core.String? apiVersion; |
| |
| /// The time the operation was created. |
| /// |
| /// Output only. |
| core.String? createTime; |
| |
| /// The time the operation finished running. |
| /// |
| /// Output only. |
| core.String? endTime; |
| |
| /// Identifies whether the user has requested cancellation of the operation. |
| /// |
| /// Operations that have successfully been cancelled have Operation.error |
| /// value with a google.rpc.Status.code of 1, corresponding to |
| /// `Code.CANCELLED`. |
| /// |
| /// Output only. |
| core.bool? requestedCancellation; |
| |
| /// Server-defined resource path for the target of the operation. |
| /// |
| /// Output only. |
| core.String? target; |
| |
| /// Name of the verb executed by the operation. |
| /// |
| /// Output only. |
| core.String? verb; |
| |
| GoogleCloudManagedidentitiesV1alpha1OpMetadata(); |
| |
| GoogleCloudManagedidentitiesV1alpha1OpMetadata.fromJson(core.Map _json) { |
| if (_json.containsKey('apiVersion')) { |
| apiVersion = _json['apiVersion'] as core.String; |
| } |
| if (_json.containsKey('createTime')) { |
| createTime = _json['createTime'] as core.String; |
| } |
| if (_json.containsKey('endTime')) { |
| endTime = _json['endTime'] as core.String; |
| } |
| if (_json.containsKey('requestedCancellation')) { |
| requestedCancellation = _json['requestedCancellation'] as core.bool; |
| } |
| if (_json.containsKey('target')) { |
| target = _json['target'] as core.String; |
| } |
| if (_json.containsKey('verb')) { |
| verb = _json['verb'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (apiVersion != null) 'apiVersion': apiVersion!, |
| if (createTime != null) 'createTime': createTime!, |
| if (endTime != null) 'endTime': endTime!, |
| if (requestedCancellation != null) |
| 'requestedCancellation': requestedCancellation!, |
| if (target != null) 'target': target!, |
| if (verb != null) 'verb': verb!, |
| }; |
| } |
| |
| /// Represents the metadata of the long-running operation. |
| class GoogleCloudManagedidentitiesV1beta1OpMetadata { |
| /// API version used to start the operation. |
| /// |
| /// Output only. |
| core.String? apiVersion; |
| |
| /// The time the operation was created. |
| /// |
| /// Output only. |
| core.String? createTime; |
| |
| /// The time the operation finished running. |
| /// |
| /// Output only. |
| core.String? endTime; |
| |
| /// Identifies whether the user has requested cancellation of the operation. |
| /// |
| /// Operations that have successfully been cancelled have Operation.error |
| /// value with a google.rpc.Status.code of 1, corresponding to |
| /// `Code.CANCELLED`. |
| /// |
| /// Output only. |
| core.bool? requestedCancellation; |
| |
| /// Server-defined resource path for the target of the operation. |
| /// |
| /// Output only. |
| core.String? target; |
| |
| /// Name of the verb executed by the operation. |
| /// |
| /// Output only. |
| core.String? verb; |
| |
| GoogleCloudManagedidentitiesV1beta1OpMetadata(); |
| |
| GoogleCloudManagedidentitiesV1beta1OpMetadata.fromJson(core.Map _json) { |
| if (_json.containsKey('apiVersion')) { |
| apiVersion = _json['apiVersion'] as core.String; |
| } |
| if (_json.containsKey('createTime')) { |
| createTime = _json['createTime'] as core.String; |
| } |
| if (_json.containsKey('endTime')) { |
| endTime = _json['endTime'] as core.String; |
| } |
| if (_json.containsKey('requestedCancellation')) { |
| requestedCancellation = _json['requestedCancellation'] as core.bool; |
| } |
| if (_json.containsKey('target')) { |
| target = _json['target'] as core.String; |
| } |
| if (_json.containsKey('verb')) { |
| verb = _json['verb'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (apiVersion != null) 'apiVersion': apiVersion!, |
| if (createTime != null) 'createTime': createTime!, |
| if (endTime != null) 'endTime': endTime!, |
| if (requestedCancellation != null) |
| 'requestedCancellation': requestedCancellation!, |
| if (target != null) 'target': target!, |
| if (verb != null) 'verb': verb!, |
| }; |
| } |
| |
| class GoogleCloudSaasacceleratorManagementProvidersV1Instance { |
| /// consumer_defined_name is the name that is set by the consumer. |
| /// |
| /// On the other hand Name field represents system-assigned id of an instance |
| /// so consumers are not necessarily aware of it. consumer_defined_name is |
| /// used for notification/UI purposes for consumer to recognize their |
| /// instances. |
| core.String? consumerDefinedName; |
| |
| /// Timestamp when the resource was created. |
| /// |
| /// Output only. |
| core.String? createTime; |
| |
| /// Resource labels to represent user provided metadata. |
| /// |
| /// Each label is a key-value pair, where both the key and the value are |
| /// arbitrary strings provided by the user. |
| /// |
| /// Optional. |
| core.Map<core.String, core.String>? labels; |
| |
| /// The MaintenancePolicies that have been attached to the instance. |
| /// |
| /// The key must be of the type name of the oneof policy name defined in |
| /// MaintenancePolicy, and the referenced policy must define the same policy |
| /// type. For complete details of MaintenancePolicy, please refer to |
| /// go/cloud-saas-mw-ug. |
| /// |
| /// Deprecated. |
| core.Map<core.String, core.String>? maintenancePolicyNames; |
| |
| /// The MaintenanceSchedule contains the scheduling information of published |
| /// maintenance schedule with same key as software_versions. |
| core.Map<core.String, |
| GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule>? |
| maintenanceSchedules; |
| |
| /// The MaintenanceSettings associated with instance. |
| /// |
| /// Optional. |
| GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings? |
| maintenanceSettings; |
| |
| /// Unique name of the resource. |
| /// |
| /// It uses the form: |
| /// `projects/{project_id}/locations/{location_id}/instances/{instance_id}` |
| core.String? name; |
| |
| /// Custom string attributes used primarily to expose producer-specific |
| /// information in monitoring dashboards. |
| /// |
| /// See go/get-instance-metadata. |
| /// |
| /// Output only. |
| core.Map<core.String, core.String>? producerMetadata; |
| |
| /// The list of data plane resources provisioned for this instance, e.g. |
| /// compute VMs. |
| /// |
| /// See go/get-instance-metadata. |
| /// |
| /// Output only. |
| core.List<GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource>? |
| provisionedResources; |
| |
| /// Link to the SLM instance template. |
| /// |
| /// Only populated when updating SLM instances via SSA's Actuation service |
| /// adaptor. Service producers with custom control plane (e.g. Cloud SQL) |
| /// doesn't need to populate this field. Instead they should use |
| /// software_versions. |
| core.String? slmInstanceTemplate; |
| |
| /// SLO metadata for instance classification in the Standardized dataplane SLO |
| /// platform. |
| /// |
| /// See go/cloud-ssa-standard-slo for feature description. |
| /// |
| /// Output only. |
| GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata? sloMetadata; |
| |
| /// Software versions that are used to deploy this instance. |
| /// |
| /// This can be mutated by rollout services. |
| core.Map<core.String, core.String>? softwareVersions; |
| |
| /// Current lifecycle state of the resource (e.g. if it's being created or |
| /// ready to use). |
| /// |
| /// Output only. |
| /// Possible string values are: |
| /// - "STATE_UNSPECIFIED" : Unspecified state. |
| /// - "CREATING" : Instance is being created. |
| /// - "READY" : Instance has been created and is ready to use. |
| /// - "UPDATING" : Instance is being updated. |
| /// - "REPAIRING" : Instance is unheathy and under repair. |
| /// - "DELETING" : Instance is being deleted. |
| /// - "ERROR" : Instance encountered an error and is in indeterministic state. |
| core.String? state; |
| |
| /// ID of the associated GCP tenant project. |
| /// |
| /// See go/get-instance-metadata. |
| /// |
| /// Output only. |
| core.String? tenantProjectId; |
| |
| /// Timestamp when the resource was last modified. |
| /// |
| /// Output only. |
| core.String? updateTime; |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1Instance(); |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1Instance.fromJson( |
| core.Map _json) { |
| if (_json.containsKey('consumerDefinedName')) { |
| consumerDefinedName = _json['consumerDefinedName'] as core.String; |
| } |
| if (_json.containsKey('createTime')) { |
| createTime = _json['createTime'] as core.String; |
| } |
| if (_json.containsKey('labels')) { |
| labels = (_json['labels'] as core.Map<core.String, core.dynamic>).map( |
| (key, item) => core.MapEntry( |
| key, |
| item as core.String, |
| ), |
| ); |
| } |
| if (_json.containsKey('maintenancePolicyNames')) { |
| maintenancePolicyNames = (_json['maintenancePolicyNames'] |
| as core.Map<core.String, core.dynamic>) |
| .map( |
| (key, item) => core.MapEntry( |
| key, |
| item as core.String, |
| ), |
| ); |
| } |
| if (_json.containsKey('maintenanceSchedules')) { |
| maintenanceSchedules = |
| (_json['maintenanceSchedules'] as core.Map<core.String, core.dynamic>) |
| .map( |
| (key, item) => core.MapEntry( |
| key, |
| GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule |
| .fromJson(item as core.Map<core.String, core.dynamic>), |
| ), |
| ); |
| } |
| if (_json.containsKey('maintenanceSettings')) { |
| maintenanceSettings = |
| GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings |
| .fromJson(_json['maintenanceSettings'] |
| as core.Map<core.String, core.dynamic>); |
| } |
| if (_json.containsKey('name')) { |
| name = _json['name'] as core.String; |
| } |
| if (_json.containsKey('producerMetadata')) { |
| producerMetadata = |
| (_json['producerMetadata'] as core.Map<core.String, core.dynamic>) |
| .map( |
| (key, item) => core.MapEntry( |
| key, |
| item as core.String, |
| ), |
| ); |
| } |
| if (_json.containsKey('provisionedResources')) { |
| provisionedResources = (_json['provisionedResources'] as core.List) |
| .map<GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource>( |
| (value) => |
| GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource |
| .fromJson(value as core.Map<core.String, core.dynamic>)) |
| .toList(); |
| } |
| if (_json.containsKey('slmInstanceTemplate')) { |
| slmInstanceTemplate = _json['slmInstanceTemplate'] as core.String; |
| } |
| if (_json.containsKey('sloMetadata')) { |
| sloMetadata = |
| GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata.fromJson( |
| _json['sloMetadata'] as core.Map<core.String, core.dynamic>); |
| } |
| if (_json.containsKey('softwareVersions')) { |
| softwareVersions = |
| (_json['softwareVersions'] as core.Map<core.String, core.dynamic>) |
| .map( |
| (key, item) => core.MapEntry( |
| key, |
| item as core.String, |
| ), |
| ); |
| } |
| if (_json.containsKey('state')) { |
| state = _json['state'] as core.String; |
| } |
| if (_json.containsKey('tenantProjectId')) { |
| tenantProjectId = _json['tenantProjectId'] as core.String; |
| } |
| if (_json.containsKey('updateTime')) { |
| updateTime = _json['updateTime'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (consumerDefinedName != null) |
| 'consumerDefinedName': consumerDefinedName!, |
| if (createTime != null) 'createTime': createTime!, |
| if (labels != null) 'labels': labels!, |
| if (maintenancePolicyNames != null) |
| 'maintenancePolicyNames': maintenancePolicyNames!, |
| if (maintenanceSchedules != null) |
| 'maintenanceSchedules': maintenanceSchedules! |
| .map((key, item) => core.MapEntry(key, item.toJson())), |
| if (maintenanceSettings != null) |
| 'maintenanceSettings': maintenanceSettings!.toJson(), |
| if (name != null) 'name': name!, |
| if (producerMetadata != null) 'producerMetadata': producerMetadata!, |
| if (provisionedResources != null) |
| 'provisionedResources': |
| provisionedResources!.map((value) => value.toJson()).toList(), |
| if (slmInstanceTemplate != null) |
| 'slmInstanceTemplate': slmInstanceTemplate!, |
| if (sloMetadata != null) 'sloMetadata': sloMetadata!.toJson(), |
| if (softwareVersions != null) 'softwareVersions': softwareVersions!, |
| if (state != null) 'state': state!, |
| if (tenantProjectId != null) 'tenantProjectId': tenantProjectId!, |
| if (updateTime != null) 'updateTime': updateTime!, |
| }; |
| } |
| |
| /// Maintenance schedule which is exposed to customer and potentially end user, |
| /// indicating published upcoming future maintenance schedule |
| class GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule { |
| /// Can this scheduled update be rescheduled? By default, it's true and API |
| /// needs to do explicitly check whether it's set, if it's set as false |
| /// explicitly, it's false |
| core.bool? canReschedule; |
| |
| /// The scheduled end time for the maintenance. |
| core.String? endTime; |
| |
| /// The rollout management policy this maintenance schedule is associated |
| /// with. |
| /// |
| /// When doing reschedule update request, the reschedule should be against |
| /// this given policy. |
| core.String? rolloutManagementPolicy; |
| |
| /// schedule_deadline_time is the time deadline any schedule start time cannot |
| /// go beyond, including reschedule. |
| /// |
| /// It's normally the initial schedule start time plus maintenance window |
| /// length (1 day or 1 week). Maintenance cannot be scheduled to start beyond |
| /// this deadline. |
| core.String? scheduleDeadlineTime; |
| |
| /// The scheduled start time for the maintenance. |
| core.String? startTime; |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule(); |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule.fromJson( |
| core.Map _json) { |
| if (_json.containsKey('canReschedule')) { |
| canReschedule = _json['canReschedule'] as core.bool; |
| } |
| if (_json.containsKey('endTime')) { |
| endTime = _json['endTime'] as core.String; |
| } |
| if (_json.containsKey('rolloutManagementPolicy')) { |
| rolloutManagementPolicy = _json['rolloutManagementPolicy'] as core.String; |
| } |
| if (_json.containsKey('scheduleDeadlineTime')) { |
| scheduleDeadlineTime = _json['scheduleDeadlineTime'] as core.String; |
| } |
| if (_json.containsKey('startTime')) { |
| startTime = _json['startTime'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (canReschedule != null) 'canReschedule': canReschedule!, |
| if (endTime != null) 'endTime': endTime!, |
| if (rolloutManagementPolicy != null) |
| 'rolloutManagementPolicy': rolloutManagementPolicy!, |
| if (scheduleDeadlineTime != null) |
| 'scheduleDeadlineTime': scheduleDeadlineTime!, |
| if (startTime != null) 'startTime': startTime!, |
| }; |
| } |
| |
| /// Maintenance settings associated with instance. |
| /// |
| /// Allows service producers and end users to assign settings that controls |
| /// maintenance on this instance. |
| class GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings { |
| /// Exclude instance from maintenance. |
| /// |
| /// When true, rollout service will not attempt maintenance on the instance. |
| /// Rollout service will include the instance in reported rollout progress as |
| /// not attempted. |
| /// |
| /// Optional. |
| core.bool? exclude; |
| |
| /// If the update call is triggered from rollback, set the value as true. |
| /// |
| /// Optional. |
| core.bool? isRollback; |
| |
| /// The MaintenancePolicies that have been attached to the instance. |
| /// |
| /// The key must be of the type name of the oneof policy name defined in |
| /// MaintenancePolicy, and the embedded policy must define the same policy |
| /// type. For complete details of MaintenancePolicy, please refer to |
| /// go/cloud-saas-mw-ug. If only the name is needed (like in the deprecated |
| /// Instance.maintenance_policy_names field) then only populate |
| /// MaintenancePolicy.name. |
| /// |
| /// Optional. |
| core.Map<core.String, MaintenancePolicy>? maintenancePolicies; |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings(); |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings.fromJson( |
| core.Map _json) { |
| if (_json.containsKey('exclude')) { |
| exclude = _json['exclude'] as core.bool; |
| } |
| if (_json.containsKey('isRollback')) { |
| isRollback = _json['isRollback'] as core.bool; |
| } |
| if (_json.containsKey('maintenancePolicies')) { |
| maintenancePolicies = |
| (_json['maintenancePolicies'] as core.Map<core.String, core.dynamic>) |
| .map( |
| (key, item) => core.MapEntry( |
| key, |
| MaintenancePolicy.fromJson( |
| item as core.Map<core.String, core.dynamic>), |
| ), |
| ); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (exclude != null) 'exclude': exclude!, |
| if (isRollback != null) 'isRollback': isRollback!, |
| if (maintenancePolicies != null) |
| 'maintenancePolicies': maintenancePolicies! |
| .map((key, item) => core.MapEntry(key, item.toJson())), |
| }; |
| } |
| |
| /// Node information for custom per-node SLO implementations. |
| /// |
| /// SSA does not support per-node SLO, but producers can populate per-node |
| /// information in SloMetadata for custom precomputations. SSA Eligibility |
| /// Exporter will emit per-node metric based on this information. |
| class GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata { |
| /// By default node is eligible if instance is eligible. |
| /// |
| /// But individual node might be excluded from SLO by adding entry here. For |
| /// semantic see SloMetadata.exclusions. If both instance and node level |
| /// exclusions are present for time period, the node level's reason will be |
| /// reported by Eligibility Exporter. |
| core.List<GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>? |
| exclusions; |
| |
| /// The location of the node, if different from instance location. |
| core.String? location; |
| |
| /// The id of the node. |
| /// |
| /// This should be equal to SaasInstanceNode.node_id. |
| core.String? nodeId; |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata(); |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata.fromJson( |
| core.Map _json) { |
| if (_json.containsKey('exclusions')) { |
| exclusions = (_json['exclusions'] as core.List) |
| .map<GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>( |
| (value) => |
| GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion |
| .fromJson(value as core.Map<core.String, core.dynamic>)) |
| .toList(); |
| } |
| if (_json.containsKey('location')) { |
| location = _json['location'] as core.String; |
| } |
| if (_json.containsKey('nodeId')) { |
| nodeId = _json['nodeId'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (exclusions != null) |
| 'exclusions': exclusions!.map((value) => value.toJson()).toList(), |
| if (location != null) 'location': location!, |
| if (nodeId != null) 'nodeId': nodeId!, |
| }; |
| } |
| |
| /// PerSliSloEligibility is a mapping from an SLI name to eligibility. |
| class GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility { |
| /// An entry in the eligibilities map specifies an eligibility for a |
| /// particular SLI for the given instance. |
| /// |
| /// The SLI key in the name must be a valid SLI name specified in the |
| /// Eligibility Exporter binary flags otherwise an error will be emitted by |
| /// Eligibility Exporter and the oncaller will be alerted. If an SLI has been |
| /// defined in the binary flags but the eligibilities map does not contain it, |
| /// the corresponding SLI time series will not be emitted by the Eligibility |
| /// Exporter. This ensures a smooth rollout and compatibility between the data |
| /// produced by different versions of the Eligibility Exporters. If |
| /// eligibilities map contains a key for an SLI which has not been declared in |
| /// the binary flags, there will be an error message emitted in the |
| /// Eligibility Exporter log and the metric for the SLI in question will not |
| /// be emitted. |
| core.Map<core.String, |
| GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility>? |
| eligibilities; |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility(); |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility.fromJson( |
| core.Map _json) { |
| if (_json.containsKey('eligibilities')) { |
| eligibilities = |
| (_json['eligibilities'] as core.Map<core.String, core.dynamic>).map( |
| (key, item) => core.MapEntry( |
| key, |
| GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility |
| .fromJson(item as core.Map<core.String, core.dynamic>), |
| ), |
| ); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (eligibilities != null) |
| 'eligibilities': eligibilities! |
| .map((key, item) => core.MapEntry(key, item.toJson())), |
| }; |
| } |
| |
| /// Describes provisioned dataplane resources. |
| class GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource { |
| /// Type of the resource. |
| /// |
| /// This can be either a GCP resource or a custom one (e.g. another cloud |
| /// provider's VM). For GCP compute resources use singular form of the names |
| /// listed in GCP compute API documentation |
| /// (https://cloud.google.com/compute/docs/reference/rest/v1/), prefixed with |
| /// 'compute-', for example: 'compute-instance', 'compute-disk', |
| /// 'compute-autoscaler'. |
| core.String? resourceType; |
| |
| /// URL identifying the resource, e.g. |
| /// "https://www.googleapis.com/compute/v1/projects/...)". |
| core.String? resourceUrl; |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource(); |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource.fromJson( |
| core.Map _json) { |
| if (_json.containsKey('resourceType')) { |
| resourceType = _json['resourceType'] as core.String; |
| } |
| if (_json.containsKey('resourceUrl')) { |
| resourceUrl = _json['resourceUrl'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (resourceType != null) 'resourceType': resourceType!, |
| if (resourceUrl != null) 'resourceUrl': resourceUrl!, |
| }; |
| } |
| |
| /// SloEligibility is a tuple containing eligibility value: true if an instance |
| /// is eligible for SLO calculation or false if it should be excluded from all |
| /// SLO-related calculations along with a user-defined reason. |
| class GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility { |
| /// Whether an instance is eligible or ineligible. |
| core.bool? eligible; |
| |
| /// User-defined reason for the current value of instance eligibility. |
| /// |
| /// Usually, this can be directly mapped to the internal state. An empty |
| /// reason is allowed. |
| core.String? reason; |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility(); |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility.fromJson( |
| core.Map _json) { |
| if (_json.containsKey('eligible')) { |
| eligible = _json['eligible'] as core.bool; |
| } |
| if (_json.containsKey('reason')) { |
| reason = _json['reason'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (eligible != null) 'eligible': eligible!, |
| if (reason != null) 'reason': reason!, |
| }; |
| } |
| |
| /// SloExclusion represents an exclusion in SLI calculation applies to all SLOs. |
| class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion { |
| /// Exclusion duration. |
| /// |
| /// No restrictions on the possible values. When an ongoing operation is |
| /// taking longer than initially expected, an existing entry in the exclusion |
| /// list can be updated by extending the duration. This is supported by the |
| /// subsystem exporting eligibility data as long as such extension is |
| /// committed at least 10 minutes before the original exclusion expiration - |
| /// otherwise it is possible that there will be "gaps" in the exclusion |
| /// application in the exported timeseries. |
| core.String? duration; |
| |
| /// Human-readable reason for the exclusion. |
| /// |
| /// This should be a static string (e.g. "Disruptive update in progress") and |
| /// should not contain dynamically generated data (e.g. instance name). Can be |
| /// left empty. |
| core.String? reason; |
| |
| /// Name of an SLI that this exclusion applies to. |
| /// |
| /// Can be left empty, signaling that the instance should be excluded from all |
| /// SLIs. |
| core.String? sliName; |
| |
| /// Start time of the exclusion. |
| /// |
| /// No alignment (e.g. to a full minute) needed. |
| core.String? startTime; |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion(); |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion.fromJson( |
| core.Map _json) { |
| if (_json.containsKey('duration')) { |
| duration = _json['duration'] as core.String; |
| } |
| if (_json.containsKey('reason')) { |
| reason = _json['reason'] as core.String; |
| } |
| if (_json.containsKey('sliName')) { |
| sliName = _json['sliName'] as core.String; |
| } |
| if (_json.containsKey('startTime')) { |
| startTime = _json['startTime'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (duration != null) 'duration': duration!, |
| if (reason != null) 'reason': reason!, |
| if (sliName != null) 'sliName': sliName!, |
| if (startTime != null) 'startTime': startTime!, |
| }; |
| } |
| |
| /// SloMetadata contains resources required for proper SLO classification of the |
| /// instance. |
| class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata { |
| /// Global per-instance SLI eligibility which applies to all defined SLIs. |
| /// |
| /// Exactly one of 'eligibility' and 'per_sli_eligibility' fields must be |
| /// used. |
| /// |
| /// Optional. |
| GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility? eligibility; |
| |
| /// List of SLO exclusion windows. |
| /// |
| /// When multiple entries in the list match (matching the exclusion |
| /// time-window against current time point) the exclusion reason used in the |
| /// first matching entry will be published. It is not needed to include |
| /// expired exclusion in this list, as only the currently applicable |
| /// exclusions are taken into account by the eligibility exporting subsystem |
| /// (the historical state of exclusions will be reflected in the historically |
| /// produced timeseries regardless of the current state). This field can be |
| /// used to mark the instance as temporary ineligible for the purpose of SLO |
| /// calculation. For permanent instance SLO exclusion, use of custom instance |
| /// eligibility is recommended. See 'eligibility' field below. |
| core.List<GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>? |
| exclusions; |
| |
| /// List of nodes. |
| /// |
| /// Some producers need to use per-node metadata to calculate SLO. This field |
| /// allows such producers to publish per-node SLO meta data, which will be |
| /// consumed by SSA Eligibility Exporter and published in the form of per node |
| /// metric to Monarch. |
| /// |
| /// Optional. |
| core.List<GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata>? |
| nodes; |
| |
| /// Multiple per-instance SLI eligibilities which apply for individual SLIs. |
| /// |
| /// Exactly one of 'eligibility' and 'per_sli_eligibility' fields must be |
| /// used. |
| /// |
| /// Optional. |
| GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility? |
| perSliEligibility; |
| |
| /// Name of the SLO tier the Instance belongs to. |
| /// |
| /// This name will be expected to match the tiers specified in the service SLO |
| /// configuration. Field is mandatory and must not be empty. |
| core.String? tier; |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata(); |
| |
| GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata.fromJson( |
| core.Map _json) { |
| if (_json.containsKey('eligibility')) { |
| eligibility = |
| GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility |
| .fromJson( |
| _json['eligibility'] as core.Map<core.String, core.dynamic>); |
| } |
| if (_json.containsKey('exclusions')) { |
| exclusions = (_json['exclusions'] as core.List) |
| .map<GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>( |
| (value) => |
| GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion |
| .fromJson(value as core.Map<core.String, core.dynamic>)) |
| .toList(); |
| } |
| if (_json.containsKey('nodes')) { |
| nodes = (_json['nodes'] as core.List) |
| .map<GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata>( |
| (value) => |
| GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata |
| .fromJson(value as core.Map<core.String, core.dynamic>)) |
| .toList(); |
| } |
| if (_json.containsKey('perSliEligibility')) { |
| perSliEligibility = |
| GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility |
| .fromJson(_json['perSliEligibility'] |
| as core.Map<core.String, core.dynamic>); |
| } |
| if (_json.containsKey('tier')) { |
| tier = _json['tier'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (eligibility != null) 'eligibility': eligibility!.toJson(), |
| if (exclusions != null) |
| 'exclusions': exclusions!.map((value) => value.toJson()).toList(), |
| if (nodes != null) |
| 'nodes': nodes!.map((value) => value.toJson()).toList(), |
| if (perSliEligibility != null) |
| 'perSliEligibility': perSliEligibility!.toJson(), |
| if (tier != null) 'tier': tier!, |
| }; |
| } |
| |
| /// Response message for ListDomains |
| class ListDomainsResponse { |
| /// A list of Managed Identities Service domains in the project. |
| core.List<Domain>? domains; |
| |
| /// A token to retrieve the next page of results, or empty if there are no |
| /// more results in the list. |
| core.String? nextPageToken; |
| |
| /// A list of locations that could not be reached. |
| core.List<core.String>? unreachable; |
| |
| ListDomainsResponse(); |
| |
| ListDomainsResponse.fromJson(core.Map _json) { |
| if (_json.containsKey('domains')) { |
| domains = (_json['domains'] as core.List) |
| .map<Domain>((value) => |
| Domain.fromJson(value as core.Map<core.String, core.dynamic>)) |
| .toList(); |
| } |
| if (_json.containsKey('nextPageToken')) { |
| nextPageToken = _json['nextPageToken'] as core.String; |
| } |
| if (_json.containsKey('unreachable')) { |
| unreachable = (_json['unreachable'] as core.List) |
| .map<core.String>((value) => value as core.String) |
| .toList(); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (domains != null) |
| 'domains': domains!.map((value) => value.toJson()).toList(), |
| if (nextPageToken != null) 'nextPageToken': nextPageToken!, |
| if (unreachable != null) 'unreachable': unreachable!, |
| }; |
| } |
| |
| /// The response message for Locations.ListLocations. |
| class ListLocationsResponse { |
| /// A list of locations that matches the specified filter in the request. |
| core.List<Location>? locations; |
| |
| /// The standard List next-page token. |
| core.String? nextPageToken; |
| |
| ListLocationsResponse(); |
| |
| ListLocationsResponse.fromJson(core.Map _json) { |
| if (_json.containsKey('locations')) { |
| locations = (_json['locations'] as core.List) |
| .map<Location>((value) => |
| Location.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.dynamic> toJson() => { |
| if (locations != null) |
| 'locations': locations!.map((value) => value.toJson()).toList(), |
| if (nextPageToken != null) 'nextPageToken': nextPageToken!, |
| }; |
| } |
| |
| /// The response message for Operations.ListOperations. |
| class ListOperationsResponse { |
| /// The standard List next-page token. |
| core.String? nextPageToken; |
| |
| /// A list of operations that matches the specified filter in the request. |
| core.List<Operation>? operations; |
| |
| ListOperationsResponse(); |
| |
| ListOperationsResponse.fromJson(core.Map _json) { |
| if (_json.containsKey('nextPageToken')) { |
| nextPageToken = _json['nextPageToken'] as core.String; |
| } |
| if (_json.containsKey('operations')) { |
| operations = (_json['operations'] as core.List) |
| .map<Operation>((value) => |
| Operation.fromJson(value as core.Map<core.String, core.dynamic>)) |
| .toList(); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (nextPageToken != null) 'nextPageToken': nextPageToken!, |
| if (operations != null) |
| 'operations': operations!.map((value) => value.toJson()).toList(), |
| }; |
| } |
| |
| /// A resource that represents Google Cloud Platform location. |
| class Location { |
| /// The friendly name for this location, typically a nearby city name. |
| /// |
| /// For example, "Tokyo". |
| core.String? displayName; |
| |
| /// Cross-service attributes for the location. |
| /// |
| /// For example {"cloud.googleapis.com/region": "us-east1"} |
| core.Map<core.String, core.String>? labels; |
| |
| /// The canonical id for this location. |
| /// |
| /// For example: `"us-east1"`. |
| core.String? locationId; |
| |
| /// Service-specific metadata. |
| /// |
| /// For example the available capacity at the given location. |
| /// |
| /// The values for Object must be JSON objects. It can consist of `num`, |
| /// `String`, `bool` and `null` as well as `Map` and `List` values. |
| core.Map<core.String, core.Object>? metadata; |
| |
| /// Resource name for the location, which may vary between implementations. |
| /// |
| /// For example: `"projects/example-project/locations/us-east1"` |
| core.String? name; |
| |
| Location(); |
| |
| Location.fromJson(core.Map _json) { |
| if (_json.containsKey('displayName')) { |
| displayName = _json['displayName'] as core.String; |
| } |
| if (_json.containsKey('labels')) { |
| labels = (_json['labels'] as core.Map<core.String, core.dynamic>).map( |
| (key, item) => core.MapEntry( |
| key, |
| item as core.String, |
| ), |
| ); |
| } |
| if (_json.containsKey('locationId')) { |
| locationId = _json['locationId'] as core.String; |
| } |
| if (_json.containsKey('metadata')) { |
| metadata = (_json['metadata'] as core.Map<core.String, core.dynamic>).map( |
| (key, item) => core.MapEntry( |
| key, |
| item as core.Object, |
| ), |
| ); |
| } |
| if (_json.containsKey('name')) { |
| name = _json['name'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (displayName != null) 'displayName': displayName!, |
| if (labels != null) 'labels': labels!, |
| if (locationId != null) 'locationId': locationId!, |
| if (metadata != null) 'metadata': metadata!, |
| if (name != null) 'name': name!, |
| }; |
| } |
| |
| /// Defines policies to service maintenance events. |
| class MaintenancePolicy { |
| /// The time when the resource was created. |
| /// |
| /// Output only. |
| core.String? createTime; |
| |
| /// Description of what this policy is for. |
| /// |
| /// Create/Update methods return INVALID_ARGUMENT if the length is greater |
| /// than 512. |
| /// |
| /// Optional. |
| core.String? description; |
| |
| /// Resource labels to represent user provided metadata. |
| /// |
| /// Each label is a key-value pair, where both the key and the value are |
| /// arbitrary strings provided by the user. |
| /// |
| /// Optional. |
| core.Map<core.String, core.String>? labels; |
| |
| /// MaintenancePolicy name using the form: |
| /// `projects/{project_id}/locations/{location_id}/maintenancePolicies/{maintenance_policy_id}` |
| /// where {project_id} refers to a GCP consumer project ID, {location_id} |
| /// refers to a GCP region/zone, {maintenance_policy_id} must be 1-63 |
| /// characters long and match the regular expression |
| /// `[a-z0-9]([-a-z0-9]*[a-z0-9])?`. |
| /// |
| /// Required. |
| core.String? name; |
| |
| /// The state of the policy. |
| /// |
| /// Optional. |
| /// Possible string values are: |
| /// - "STATE_UNSPECIFIED" : Unspecified state. |
| /// - "READY" : Resource is ready to be used. |
| /// - "DELETING" : Resource is being deleted. It can no longer be attached to |
| /// instances. |
| core.String? state; |
| |
| /// Maintenance policy applicable to instance update. |
| UpdatePolicy? updatePolicy; |
| |
| /// The time when the resource was updated. |
| /// |
| /// Output only. |
| core.String? updateTime; |
| |
| MaintenancePolicy(); |
| |
| MaintenancePolicy.fromJson(core.Map _json) { |
| if (_json.containsKey('createTime')) { |
| createTime = _json['createTime'] as core.String; |
| } |
| if (_json.containsKey('description')) { |
| description = _json['description'] as core.String; |
| } |
| if (_json.containsKey('labels')) { |
| labels = (_json['labels'] as core.Map<core.String, core.dynamic>).map( |
| (key, item) => core.MapEntry( |
| key, |
| item as core.String, |
| ), |
| ); |
| } |
| if (_json.containsKey('name')) { |
| name = _json['name'] as core.String; |
| } |
| if (_json.containsKey('state')) { |
| state = _json['state'] as core.String; |
| } |
| if (_json.containsKey('updatePolicy')) { |
| updatePolicy = UpdatePolicy.fromJson( |
| _json['updatePolicy'] as core.Map<core.String, core.dynamic>); |
| } |
| if (_json.containsKey('updateTime')) { |
| updateTime = _json['updateTime'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (createTime != null) 'createTime': createTime!, |
| if (description != null) 'description': description!, |
| if (labels != null) 'labels': labels!, |
| if (name != null) 'name': name!, |
| if (state != null) 'state': state!, |
| if (updatePolicy != null) 'updatePolicy': updatePolicy!.toJson(), |
| if (updateTime != null) 'updateTime': updateTime!, |
| }; |
| } |
| |
| /// MaintenanceWindow definition. |
| class MaintenanceWindow { |
| /// Daily cycle. |
| DailyCycle? dailyCycle; |
| |
| /// Weekly cycle. |
| WeeklyCycle? weeklyCycle; |
| |
| MaintenanceWindow(); |
| |
| MaintenanceWindow.fromJson(core.Map _json) { |
| if (_json.containsKey('dailyCycle')) { |
| dailyCycle = DailyCycle.fromJson( |
| _json['dailyCycle'] as core.Map<core.String, core.dynamic>); |
| } |
| if (_json.containsKey('weeklyCycle')) { |
| weeklyCycle = WeeklyCycle.fromJson( |
| _json['weeklyCycle'] as core.Map<core.String, core.dynamic>); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (dailyCycle != null) 'dailyCycle': dailyCycle!.toJson(), |
| if (weeklyCycle != null) 'weeklyCycle': weeklyCycle!.toJson(), |
| }; |
| } |
| |
| /// This resource represents a long-running operation that is the result of a |
| /// network API call. |
| class Operation { |
| /// If the value is `false`, it means the operation is still in progress. |
| /// |
| /// If `true`, the operation is completed, and either `error` or `response` is |
| /// available. |
| core.bool? done; |
| |
| /// The error result of the operation in case of failure or cancellation. |
| Status? error; |
| |
| /// Service-specific metadata associated with the operation. |
| /// |
| /// It typically contains progress information and common metadata such as |
| /// create time. Some services might not provide such metadata. Any method |
| /// that returns a long-running operation should document the metadata type, |
| /// if any. |
| /// |
| /// The values for Object must be JSON objects. It can consist of `num`, |
| /// `String`, `bool` and `null` as well as `Map` and `List` values. |
| core.Map<core.String, core.Object>? metadata; |
| |
| /// The server-assigned name, which is only unique within the same service |
| /// that originally returns it. |
| /// |
| /// If you use the default HTTP mapping, the `name` should be a resource name |
| /// ending with `operations/{unique_id}`. |
| core.String? name; |
| |
| /// The normal response of the operation in case of success. |
| /// |
| /// If the original method returns no data on success, such as `Delete`, the |
| /// response is `google.protobuf.Empty`. If the original method is standard |
| /// `Get`/`Create`/`Update`, the response should be the resource. For other |
| /// methods, the response should have the type `XxxResponse`, where `Xxx` is |
| /// the original method name. For example, if the original method name is |
| /// `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`. |
| /// |
| /// The values for Object must be JSON objects. It can consist of `num`, |
| /// `String`, `bool` and `null` as well as `Map` and `List` values. |
| core.Map<core.String, core.Object>? response; |
| |
| Operation(); |
| |
| Operation.fromJson(core.Map _json) { |
| if (_json.containsKey('done')) { |
| done = _json['done'] as core.bool; |
| } |
| if (_json.containsKey('error')) { |
| error = Status.fromJson( |
| _json['error'] as core.Map<core.String, core.dynamic>); |
| } |
| if (_json.containsKey('metadata')) { |
| metadata = (_json['metadata'] as core.Map<core.String, core.dynamic>).map( |
| (key, item) => core.MapEntry( |
| key, |
| item as core.Object, |
| ), |
| ); |
| } |
| if (_json.containsKey('name')) { |
| name = _json['name'] as core.String; |
| } |
| if (_json.containsKey('response')) { |
| response = (_json['response'] as core.Map<core.String, core.dynamic>).map( |
| (key, item) => core.MapEntry( |
| key, |
| item as core.Object, |
| ), |
| ); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (done != null) 'done': done!, |
| if (error != null) 'error': error!.toJson(), |
| if (metadata != null) 'metadata': metadata!, |
| if (name != null) 'name': name!, |
| if (response != null) 'response': response!, |
| }; |
| } |
| |
| /// Represents the metadata of the long-running operation. |
| class OperationMetadata { |
| /// API version used to start the operation. |
| /// |
| /// Output only. |
| core.String? apiVersion; |
| |
| /// Identifies whether the user has requested cancellation of the operation. |
| /// |
| /// Operations that have successfully been cancelled have Operation.error |
| /// value with a google.rpc.Status.code of 1, corresponding to |
| /// `Code.CANCELLED`. |
| /// |
| /// Output only. |
| core.bool? cancelRequested; |
| |
| /// The time the operation was created. |
| /// |
| /// Output only. |
| core.String? createTime; |
| |
| /// The time the operation finished running. |
| /// |
| /// Output only. |
| core.String? endTime; |
| |
| /// Human-readable status of the operation, if any. |
| /// |
| /// Output only. |
| core.String? statusDetail; |
| |
| /// Server-defined resource path for the target of the operation. |
| /// |
| /// Output only. |
| core.String? target; |
| |
| /// Name of the verb executed by the operation. |
| /// |
| /// Output only. |
| core.String? verb; |
| |
| OperationMetadata(); |
| |
| OperationMetadata.fromJson(core.Map _json) { |
| if (_json.containsKey('apiVersion')) { |
| apiVersion = _json['apiVersion'] as core.String; |
| } |
| if (_json.containsKey('cancelRequested')) { |
| cancelRequested = _json['cancelRequested'] as core.bool; |
| } |
| if (_json.containsKey('createTime')) { |
| createTime = _json['createTime'] as core.String; |
| } |
| if (_json.containsKey('endTime')) { |
| endTime = _json['endTime'] as core.String; |
| } |
| if (_json.containsKey('statusDetail')) { |
| statusDetail = _json['statusDetail'] as core.String; |
| } |
| if (_json.containsKey('target')) { |
| target = _json['target'] as core.String; |
| } |
| if (_json.containsKey('verb')) { |
| verb = _json['verb'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (apiVersion != null) 'apiVersion': apiVersion!, |
| if (cancelRequested != null) 'cancelRequested': cancelRequested!, |
| if (createTime != null) 'createTime': createTime!, |
| if (endTime != null) 'endTime': endTime!, |
| if (statusDetail != null) 'statusDetail': statusDetail!, |
| if (target != null) 'target': target!, |
| if (verb != null) 'verb': verb!, |
| }; |
| } |
| |
| /// An Identity and Access Management (IAM) policy, which specifies access |
| /// controls for Google Cloud resources. |
| /// |
| /// A `Policy` is a collection of `bindings`. A `binding` binds one or more |
| /// `members` to a single `role`. Members can be user accounts, service |
| /// accounts, Google groups, and domains (such as G Suite). A `role` is a named |
| /// list of permissions; each `role` can be an IAM predefined role or a |
| /// user-created custom role. For some types of Google Cloud resources, a |
| /// `binding` can also specify a `condition`, which is a logical expression that |
| /// allows access to a resource only if the expression evaluates to `true`. A |
| /// condition can add constraints based on attributes of the request, the |
| /// resource, or both. To learn which resources support conditions in their IAM |
| /// policies, see the |
| /// [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). |
| /// **JSON example:** { "bindings": \[ { "role": |
| /// "roles/resourcemanager.organizationAdmin", "members": \[ |
| /// "user:mike@example.com", "group:admins@example.com", "domain:google.com", |
| /// "serviceAccount:my-project-id@appspot.gserviceaccount.com" \] }, { "role": |
| /// "roles/resourcemanager.organizationViewer", "members": \[ |
| /// "user:eve@example.com" \], "condition": { "title": "expirable access", |
| /// "description": "Does not grant access after Sep 2020", "expression": |
| /// "request.time < timestamp('2020-10-01T00:00:00.000Z')", } } \], "etag": |
| /// "BwWWja0YfJA=", "version": 3 } **YAML example:** bindings: - members: - |
| /// user:mike@example.com - group:admins@example.com - domain:google.com - |
| /// serviceAccount:my-project-id@appspot.gserviceaccount.com role: |
| /// roles/resourcemanager.organizationAdmin - members: - user:eve@example.com |
| /// role: roles/resourcemanager.organizationViewer condition: title: expirable |
| /// access description: Does not grant access after Sep 2020 expression: |
| /// request.time < timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - |
| /// version: 3 For a description of IAM and its features, see the |
| /// [IAM documentation](https://cloud.google.com/iam/docs/). |
| class Policy { |
| /// Associates a list of `members` to a `role`. |
| /// |
| /// Optionally, may specify a `condition` that determines how and when the |
| /// `bindings` are applied. Each of the `bindings` must contain at least one |
| /// member. |
| core.List<Binding>? bindings; |
| |
| /// `etag` is used for optimistic concurrency control as a way to help prevent |
| /// simultaneous updates of a policy from overwriting each other. |
| /// |
| /// It is strongly suggested that systems make use of the `etag` in the |
| /// read-modify-write cycle to perform policy updates in order to avoid race |
| /// conditions: An `etag` is returned in the response to `getIamPolicy`, and |
| /// systems are expected to put that etag in the request to `setIamPolicy` to |
| /// ensure that their change will be applied to the same version of the |
| /// policy. **Important:** If you use IAM Conditions, you must include the |
| /// `etag` field whenever you call `setIamPolicy`. If you omit this field, |
| /// then IAM allows you to overwrite a version `3` policy with a version `1` |
| /// policy, and all of the conditions in the version `3` policy are lost. |
| core.String? etag; |
| core.List<core.int> get etagAsBytes => convert.base64.decode(etag!); |
| |
| set etagAsBytes(core.List<core.int> _bytes) { |
| etag = |
| convert.base64.encode(_bytes).replaceAll('/', '_').replaceAll('+', '-'); |
| } |
| |
| /// Specifies the format of the policy. |
| /// |
| /// Valid values are `0`, `1`, and `3`. Requests that specify an invalid value |
| /// are rejected. Any operation that affects conditional role bindings must |
| /// specify version `3`. This requirement applies to the following operations: |
| /// * Getting a policy that includes a conditional role binding * Adding a |
| /// conditional role binding to a policy * Changing a conditional role binding |
| /// in a policy * Removing any role binding, with or without a condition, from |
| /// a policy that includes conditions **Important:** If you use IAM |
| /// Conditions, you must include the `etag` field whenever you call |
| /// `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a |
| /// version `3` policy with a version `1` policy, and all of the conditions in |
| /// the version `3` policy are lost. If a policy does not include any |
| /// conditions, operations on that policy may specify any valid version or |
| /// leave the field unset. To learn which resources support conditions in |
| /// their IAM policies, see the |
| /// [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). |
| core.int? version; |
| |
| Policy(); |
| |
| Policy.fromJson(core.Map _json) { |
| if (_json.containsKey('bindings')) { |
| bindings = (_json['bindings'] as core.List) |
| .map<Binding>((value) => |
| Binding.fromJson(value as core.Map<core.String, core.dynamic>)) |
| .toList(); |
| } |
| if (_json.containsKey('etag')) { |
| etag = _json['etag'] as core.String; |
| } |
| if (_json.containsKey('version')) { |
| version = _json['version'] as core.int; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (bindings != null) |
| 'bindings': bindings!.map((value) => value.toJson()).toList(), |
| if (etag != null) 'etag': etag!, |
| if (version != null) 'version': version!, |
| }; |
| } |
| |
| /// Request message for ReconfigureTrust |
| class ReconfigureTrustRequest { |
| /// The target DNS server IP addresses to resolve the remote domain involved |
| /// in the trust. |
| /// |
| /// Required. |
| core.List<core.String>? targetDnsIpAddresses; |
| |
| /// The fully-qualified target domain name which will be in trust with current |
| /// domain. |
| /// |
| /// Required. |
| core.String? targetDomainName; |
| |
| ReconfigureTrustRequest(); |
| |
| ReconfigureTrustRequest.fromJson(core.Map _json) { |
| if (_json.containsKey('targetDnsIpAddresses')) { |
| targetDnsIpAddresses = (_json['targetDnsIpAddresses'] as core.List) |
| .map<core.String>((value) => value as core.String) |
| .toList(); |
| } |
| if (_json.containsKey('targetDomainName')) { |
| targetDomainName = _json['targetDomainName'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (targetDnsIpAddresses != null) |
| 'targetDnsIpAddresses': targetDnsIpAddresses!, |
| if (targetDomainName != null) 'targetDomainName': targetDomainName!, |
| }; |
| } |
| |
| /// Request message for ResetAdminPassword |
| class ResetAdminPasswordRequest { |
| ResetAdminPasswordRequest(); |
| |
| ResetAdminPasswordRequest.fromJson( |
| // ignore: avoid_unused_constructor_parameters |
| core.Map _json); |
| |
| core.Map<core.String, core.dynamic> toJson() => {}; |
| } |
| |
| /// Response message for ResetAdminPassword |
| class ResetAdminPasswordResponse { |
| /// A random password. |
| /// |
| /// See admin for more information. |
| core.String? password; |
| |
| ResetAdminPasswordResponse(); |
| |
| ResetAdminPasswordResponse.fromJson(core.Map _json) { |
| if (_json.containsKey('password')) { |
| password = _json['password'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (password != null) 'password': password!, |
| }; |
| } |
| |
| /// Configure the schedule. |
| class Schedule { |
| /// Allows to define schedule that runs specified day of the week. |
| /// Possible string values are: |
| /// - "DAY_OF_WEEK_UNSPECIFIED" : The day of the week is unspecified. |
| /// - "MONDAY" : Monday |
| /// - "TUESDAY" : Tuesday |
| /// - "WEDNESDAY" : Wednesday |
| /// - "THURSDAY" : Thursday |
| /// - "FRIDAY" : Friday |
| /// - "SATURDAY" : Saturday |
| /// - "SUNDAY" : Sunday |
| core.String? day; |
| |
| /// Duration of the time window, set by service producer. |
| /// |
| /// Output only. |
| core.String? duration; |
| |
| /// Time within the window to start the operations. |
| TimeOfDay? startTime; |
| |
| Schedule(); |
| |
| Schedule.fromJson(core.Map _json) { |
| if (_json.containsKey('day')) { |
| day = _json['day'] as core.String; |
| } |
| if (_json.containsKey('duration')) { |
| duration = _json['duration'] as core.String; |
| } |
| if (_json.containsKey('startTime')) { |
| startTime = TimeOfDay.fromJson( |
| _json['startTime'] as core.Map<core.String, core.dynamic>); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (day != null) 'day': day!, |
| if (duration != null) 'duration': duration!, |
| if (startTime != null) 'startTime': startTime!.toJson(), |
| }; |
| } |
| |
| /// Request message for `SetIamPolicy` method. |
| class SetIamPolicyRequest { |
| /// REQUIRED: The complete policy to be applied to the `resource`. |
| /// |
| /// The size of the policy is limited to a few 10s of KB. An empty policy is a |
| /// valid policy but certain Cloud Platform services (such as Projects) might |
| /// reject them. |
| Policy? policy; |
| |
| SetIamPolicyRequest(); |
| |
| SetIamPolicyRequest.fromJson(core.Map _json) { |
| if (_json.containsKey('policy')) { |
| policy = Policy.fromJson( |
| _json['policy'] as core.Map<core.String, core.dynamic>); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (policy != null) 'policy': policy!.toJson(), |
| }; |
| } |
| |
| /// The `Status` type defines a logical error model that is suitable for |
| /// different programming environments, including REST APIs and RPC APIs. |
| /// |
| /// It is used by [gRPC](https://github.com/grpc). Each `Status` message |
| /// contains three pieces of data: error code, error message, and error details. |
| /// You can find out more about this error model and how to work with it in the |
| /// [API Design Guide](https://cloud.google.com/apis/design/errors). |
| class Status { |
| /// The status code, which should be an enum value of google.rpc.Code. |
| core.int? code; |
| |
| /// A list of messages that carry the error details. |
| /// |
| /// There is a common set of message types for APIs to use. |
| /// |
| /// The values for Object must be JSON objects. It can consist of `num`, |
| /// `String`, `bool` and `null` as well as `Map` and `List` values. |
| core.List<core.Map<core.String, core.Object>>? details; |
| |
| /// A developer-facing error message, which should be in English. |
| /// |
| /// Any user-facing error message should be localized and sent in the |
| /// google.rpc.Status.details field, or localized by the client. |
| core.String? message; |
| |
| Status(); |
| |
| Status.fromJson(core.Map _json) { |
| if (_json.containsKey('code')) { |
| code = _json['code'] as core.int; |
| } |
| if (_json.containsKey('details')) { |
| details = (_json['details'] as core.List) |
| .map<core.Map<core.String, core.Object>>( |
| (value) => (value as core.Map<core.String, core.dynamic>).map( |
| (key, item) => core.MapEntry( |
| key, |
| item as core.Object, |
| ), |
| )) |
| .toList(); |
| } |
| if (_json.containsKey('message')) { |
| message = _json['message'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (code != null) 'code': code!, |
| if (details != null) 'details': details!, |
| if (message != null) 'message': message!, |
| }; |
| } |
| |
| /// Request message for `TestIamPermissions` method. |
| class TestIamPermissionsRequest { |
| /// The set of permissions to check for the `resource`. |
| /// |
| /// Permissions with wildcards (such as '*' or 'storage.*') are not allowed. |
| /// For more information see |
| /// [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions). |
| core.List<core.String>? permissions; |
| |
| TestIamPermissionsRequest(); |
| |
| TestIamPermissionsRequest.fromJson(core.Map _json) { |
| if (_json.containsKey('permissions')) { |
| permissions = (_json['permissions'] as core.List) |
| .map<core.String>((value) => value as core.String) |
| .toList(); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (permissions != null) 'permissions': permissions!, |
| }; |
| } |
| |
| /// Response message for `TestIamPermissions` method. |
| class TestIamPermissionsResponse { |
| /// A subset of `TestPermissionsRequest.permissions` that the caller is |
| /// allowed. |
| core.List<core.String>? permissions; |
| |
| TestIamPermissionsResponse(); |
| |
| TestIamPermissionsResponse.fromJson(core.Map _json) { |
| if (_json.containsKey('permissions')) { |
| permissions = (_json['permissions'] as core.List) |
| .map<core.String>((value) => value as core.String) |
| .toList(); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (permissions != null) 'permissions': permissions!, |
| }; |
| } |
| |
| /// Represents a time of day. |
| /// |
| /// The date and time zone are either not significant or are specified |
| /// elsewhere. An API may choose to allow leap seconds. Related types are |
| /// google.type.Date and `google.protobuf.Timestamp`. |
| class TimeOfDay { |
| /// Hours of day in 24 hour format. |
| /// |
| /// Should be from 0 to 23. An API may choose to allow the value "24:00:00" |
| /// for scenarios like business closing time. |
| core.int? hours; |
| |
| /// Minutes of hour of day. |
| /// |
| /// Must be from 0 to 59. |
| core.int? minutes; |
| |
| /// Fractions of seconds in nanoseconds. |
| /// |
| /// Must be from 0 to 999,999,999. |
| core.int? nanos; |
| |
| /// Seconds of minutes of the time. |
| /// |
| /// Must normally be from 0 to 59. An API may allow the value 60 if it allows |
| /// leap-seconds. |
| core.int? seconds; |
| |
| TimeOfDay(); |
| |
| TimeOfDay.fromJson(core.Map _json) { |
| if (_json.containsKey('hours')) { |
| hours = _json['hours'] as core.int; |
| } |
| if (_json.containsKey('minutes')) { |
| minutes = _json['minutes'] as core.int; |
| } |
| if (_json.containsKey('nanos')) { |
| nanos = _json['nanos'] as core.int; |
| } |
| if (_json.containsKey('seconds')) { |
| seconds = _json['seconds'] as core.int; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (hours != null) 'hours': hours!, |
| if (minutes != null) 'minutes': minutes!, |
| if (nanos != null) 'nanos': nanos!, |
| if (seconds != null) 'seconds': seconds!, |
| }; |
| } |
| |
| /// Represents a relationship between two domains. |
| /// |
| /// This allows a controller in one domain to authenticate a user in another |
| /// domain. If the trust is being changed, it will be placed into the UPDATING |
| /// state, which indicates that the resource is being reconciled. At this point, |
| /// Get will reflect an intermediate state. |
| class Trust { |
| /// The time the instance was created. |
| /// |
| /// Output only. |
| core.String? createTime; |
| |
| /// The last heartbeat time when the trust was known to be connected. |
| /// |
| /// Output only. |
| core.String? lastTrustHeartbeatTime; |
| |
| /// The trust authentication type, which decides whether the trusted side has |
| /// forest/domain wide access or selective access to an approved set of |
| /// resources. |
| /// |
| /// Optional. |
| core.bool? selectiveAuthentication; |
| |
| /// The current state of the trust. |
| /// |
| /// Output only. |
| /// Possible string values are: |
| /// - "STATE_UNSPECIFIED" : Not set. |
| /// - "CREATING" : The domain trust is being created. |
| /// - "UPDATING" : The domain trust is being updated. |
| /// - "DELETING" : The domain trust is being deleted. |
| /// - "CONNECTED" : The domain trust is connected. |
| /// - "DISCONNECTED" : The domain trust is disconnected. |
| core.String? state; |
| |
| /// Additional information about the current state of the trust, if available. |
| /// |
| /// Output only. |
| core.String? stateDescription; |
| |
| /// The target DNS server IP addresses which can resolve the remote domain |
| /// involved in the trust. |
| /// |
| /// Required. |
| core.List<core.String>? targetDnsIpAddresses; |
| |
| /// The fully qualified target domain name which will be in trust with the |
| /// current domain. |
| /// |
| /// Required. |
| core.String? targetDomainName; |
| |
| /// The trust direction, which decides if the current domain is trusted, |
| /// trusting, or both. |
| /// |
| /// Required. |
| /// Possible string values are: |
| /// - "TRUST_DIRECTION_UNSPECIFIED" : Not set. |
| /// - "INBOUND" : The inbound direction represents the trusting side. |
| /// - "OUTBOUND" : The outboud direction represents the trusted side. |
| /// - "BIDIRECTIONAL" : The bidirectional direction represents the trusted / |
| /// trusting side. |
| core.String? trustDirection; |
| |
| /// The trust secret used for the handshake with the target domain. |
| /// |
| /// This will not be stored. |
| /// |
| /// Required. |
| core.String? trustHandshakeSecret; |
| |
| /// The type of trust represented by the trust resource. |
| /// |
| /// Required. |
| /// Possible string values are: |
| /// - "TRUST_TYPE_UNSPECIFIED" : Not set. |
| /// - "FOREST" : The forest trust. |
| /// - "EXTERNAL" : The external domain trust. |
| core.String? trustType; |
| |
| /// The last update time. |
| /// |
| /// Output only. |
| core.String? updateTime; |
| |
| Trust(); |
| |
| Trust.fromJson(core.Map _json) { |
| if (_json.containsKey('createTime')) { |
| createTime = _json['createTime'] as core.String; |
| } |
| if (_json.containsKey('lastTrustHeartbeatTime')) { |
| lastTrustHeartbeatTime = _json['lastTrustHeartbeatTime'] as core.String; |
| } |
| if (_json.containsKey('selectiveAuthentication')) { |
| selectiveAuthentication = _json['selectiveAuthentication'] as core.bool; |
| } |
| if (_json.containsKey('state')) { |
| state = _json['state'] as core.String; |
| } |
| if (_json.containsKey('stateDescription')) { |
| stateDescription = _json['stateDescription'] as core.String; |
| } |
| if (_json.containsKey('targetDnsIpAddresses')) { |
| targetDnsIpAddresses = (_json['targetDnsIpAddresses'] as core.List) |
| .map<core.String>((value) => value as core.String) |
| .toList(); |
| } |
| if (_json.containsKey('targetDomainName')) { |
| targetDomainName = _json['targetDomainName'] as core.String; |
| } |
| if (_json.containsKey('trustDirection')) { |
| trustDirection = _json['trustDirection'] as core.String; |
| } |
| if (_json.containsKey('trustHandshakeSecret')) { |
| trustHandshakeSecret = _json['trustHandshakeSecret'] as core.String; |
| } |
| if (_json.containsKey('trustType')) { |
| trustType = _json['trustType'] as core.String; |
| } |
| if (_json.containsKey('updateTime')) { |
| updateTime = _json['updateTime'] as core.String; |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (createTime != null) 'createTime': createTime!, |
| if (lastTrustHeartbeatTime != null) |
| 'lastTrustHeartbeatTime': lastTrustHeartbeatTime!, |
| if (selectiveAuthentication != null) |
| 'selectiveAuthentication': selectiveAuthentication!, |
| if (state != null) 'state': state!, |
| if (stateDescription != null) 'stateDescription': stateDescription!, |
| if (targetDnsIpAddresses != null) |
| 'targetDnsIpAddresses': targetDnsIpAddresses!, |
| if (targetDomainName != null) 'targetDomainName': targetDomainName!, |
| if (trustDirection != null) 'trustDirection': trustDirection!, |
| if (trustHandshakeSecret != null) |
| 'trustHandshakeSecret': trustHandshakeSecret!, |
| if (trustType != null) 'trustType': trustType!, |
| if (updateTime != null) 'updateTime': updateTime!, |
| }; |
| } |
| |
| /// Maintenance policy applicable to instance updates. |
| class UpdatePolicy { |
| /// Relative scheduling channel applied to resource. |
| /// |
| /// Optional. |
| /// Possible string values are: |
| /// - "UPDATE_CHANNEL_UNSPECIFIED" : Unspecified channel. |
| /// - "EARLIER" : Early channel within a customer project. |
| /// - "LATER" : Later channel within a customer project. |
| core.String? channel; |
| |
| /// Deny Maintenance Period that is applied to resource to indicate when |
| /// maintenance is forbidden. |
| /// |
| /// User can specify zero or more non-overlapping deny periods. For V1, |
| /// Maximum number of deny_maintenance_periods is expected to be one. |
| core.List<DenyMaintenancePeriod>? denyMaintenancePeriods; |
| |
| /// Maintenance window that is applied to resources covered by this policy. |
| /// |
| /// Optional. |
| MaintenanceWindow? window; |
| |
| UpdatePolicy(); |
| |
| UpdatePolicy.fromJson(core.Map _json) { |
| if (_json.containsKey('channel')) { |
| channel = _json['channel'] as core.String; |
| } |
| if (_json.containsKey('denyMaintenancePeriods')) { |
| denyMaintenancePeriods = (_json['denyMaintenancePeriods'] as core.List) |
| .map<DenyMaintenancePeriod>((value) => DenyMaintenancePeriod.fromJson( |
| value as core.Map<core.String, core.dynamic>)) |
| .toList(); |
| } |
| if (_json.containsKey('window')) { |
| window = MaintenanceWindow.fromJson( |
| _json['window'] as core.Map<core.String, core.dynamic>); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (channel != null) 'channel': channel!, |
| if (denyMaintenancePeriods != null) |
| 'denyMaintenancePeriods': |
| denyMaintenancePeriods!.map((value) => value.toJson()).toList(), |
| if (window != null) 'window': window!.toJson(), |
| }; |
| } |
| |
| /// Request message for ValidateTrust |
| class ValidateTrustRequest { |
| /// The domain trust to validate trust state for. |
| /// |
| /// Required. |
| Trust? trust; |
| |
| ValidateTrustRequest(); |
| |
| ValidateTrustRequest.fromJson(core.Map _json) { |
| if (_json.containsKey('trust')) { |
| trust = |
| Trust.fromJson(_json['trust'] as core.Map<core.String, core.dynamic>); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (trust != null) 'trust': trust!.toJson(), |
| }; |
| } |
| |
| /// Time window specified for weekly operations. |
| class WeeklyCycle { |
| /// User can specify multiple windows in a week. |
| /// |
| /// Minimum of 1 window. |
| core.List<Schedule>? schedule; |
| |
| WeeklyCycle(); |
| |
| WeeklyCycle.fromJson(core.Map _json) { |
| if (_json.containsKey('schedule')) { |
| schedule = (_json['schedule'] as core.List) |
| .map<Schedule>((value) => |
| Schedule.fromJson(value as core.Map<core.String, core.dynamic>)) |
| .toList(); |
| } |
| } |
| |
| core.Map<core.String, core.dynamic> toJson() => { |
| if (schedule != null) |
| 'schedule': schedule!.map((value) => value.toJson()).toList(), |
| }; |
| } |