| // Copyright 2021 Google LLC |
| // |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file or at |
| // https://developers.google.com/open-source/licenses/bsd |
| |
| // This is a generated file (see the discoveryapis_generator project). |
| |
| // ignore_for_file: camel_case_types |
| // ignore_for_file: comment_references |
| // ignore_for_file: deprecated_member_use_from_same_package |
| // ignore_for_file: doc_directive_unknown |
| // ignore_for_file: lines_longer_than_80_chars |
| // ignore_for_file: non_constant_identifier_names |
| // ignore_for_file: prefer_interpolation_to_compose_strings |
| // ignore_for_file: unintended_html_in_doc_comment |
| // ignore_for_file: unnecessary_brace_in_string_interps |
| // ignore_for_file: unnecessary_lambdas |
| // ignore_for_file: unnecessary_string_interpolations |
| |
| /// Datastream API - v1alpha1 |
| /// |
| /// For more information, see <https://cloud.google.com/datastream/> |
| /// |
| /// Create an instance of [DatastreamApi] to access these resources: |
| /// |
| /// - [ProjectsResource] |
| /// - [ProjectsLocationsResource] |
| /// - [ProjectsLocationsConnectionProfilesResource] |
| /// - [ProjectsLocationsOperationsResource] |
| /// - [ProjectsLocationsPrivateConnectionsResource] |
| /// - [ProjectsLocationsPrivateConnectionsRoutesResource] |
| /// - [ProjectsLocationsStreamsResource] |
| /// - [ProjectsLocationsStreamsObjectsResource] |
| library; |
| |
| 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 '../shared.dart'; |
| import '../src/user_agent.dart'; |
| |
| export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' |
| show ApiRequestError, DetailedApiRequestError; |
| |
| class DatastreamApi { |
| /// See, edit, configure, and delete your Google Cloud data and see the email |
| /// address for your Google Account. |
| static const cloudPlatformScope = |
| 'https://www.googleapis.com/auth/cloud-platform'; |
| |
| final commons.ApiRequester _requester; |
| |
| ProjectsResource get projects => ProjectsResource(_requester); |
| |
| DatastreamApi( |
| http.Client client, { |
| core.String rootUrl = 'https://datastream.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; |
| |
| ProjectsLocationsConnectionProfilesResource get connectionProfiles => |
| ProjectsLocationsConnectionProfilesResource(_requester); |
| ProjectsLocationsOperationsResource get operations => |
| ProjectsLocationsOperationsResource(_requester); |
| ProjectsLocationsPrivateConnectionsResource get privateConnections => |
| ProjectsLocationsPrivateConnectionsResource(_requester); |
| ProjectsLocationsStreamsResource get streams => |
| ProjectsLocationsStreamsResource(_requester); |
| |
| ProjectsLocationsResource(commons.ApiRequester client) : _requester = client; |
| |
| /// The FetchStaticIps API call exposes the static IP addresses used by |
| /// Datastream. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The name resource of the Response type. Must be in the |
| /// format `projects / * /locations / * `. |
| /// Value must have pattern `^projects/\[^/\]+/locations/\[^/\]+$`. |
| /// |
| /// [pageSize] - Maximum number of Ips to return, will likely not be |
| /// specified. |
| /// |
| /// [pageToken] - A page token, received from a previous `ListStaticIps` call. |
| /// will likely not be specified. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [FetchStaticIpsResponse]. |
| /// |
| /// 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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<FetchStaticIpsResponse> fetchStaticIps( |
| core.String name, { |
| core.int? pageSize, |
| core.String? pageToken, |
| core.String? $fields, |
| }) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'pageSize': ?pageSize == null ? null : ['${pageSize}'], |
| 'pageToken': ?pageToken == null ? null : [pageToken], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$name') + ':fetchStaticIps'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'GET', |
| queryParams: queryParams_, |
| ); |
| return FetchStaticIpsResponse.fromJson( |
| response_ as core.Map<core.String, core.dynamic>, |
| ); |
| } |
| |
| /// 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>>{ |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + 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. |
| /// |
| /// This method lists locations based on the resource scope provided in the |
| /// \[ListLocationsRequest.name\] field: * **Global locations**: If `name` is |
| /// empty, the method lists the public locations available to all projects. * |
| /// **Project-specific locations**: If `name` follows the format |
| /// `projects/{project}`, the method lists locations visible to that specific |
| /// project. This includes public, private, or other project-specific |
| /// locations enabled for the project. For gRPC and client library |
| /// implementations, the resource name is passed as the `name` field. For |
| /// direct service calls, the resource name is incorporated into the request |
| /// path based on the specific service implementation and version. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - The resource that owns the locations collection, if applicable. |
| /// Value must have pattern `^projects/\[^/\]+$`. |
| /// |
| /// [extraLocationTypes] - Optional. Do not use this field. It is unsupported |
| /// and is ignored unless explicitly documented otherwise. This is primarily |
| /// for internal usage. |
| /// |
| /// [filter] - A filter to narrow down results to a preferred subset. The |
| /// filtering language accepts strings like `"displayName=tokyo"`, and is |
| /// documented in more detail in \[AIP-160\](https://google.aip.dev/160). |
| /// |
| /// [pageSize] - The maximum number of results to return. If not set, the |
| /// service selects a default. |
| /// |
| /// [pageToken] - A page token received from the `next_page_token` field in |
| /// the response. Send that page token to receive the subsequent page. |
| /// |
| /// [$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.List<core.String>? extraLocationTypes, |
| core.String? filter, |
| core.int? pageSize, |
| core.String? pageToken, |
| core.String? $fields, |
| }) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'extraLocationTypes': ?extraLocationTypes, |
| 'filter': ?filter == null ? null : [filter], |
| 'pageSize': ?pageSize == null ? null : ['${pageSize}'], |
| 'pageToken': ?pageToken == null ? null : [pageToken], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + 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>, |
| ); |
| } |
| } |
| |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| class ProjectsLocationsConnectionProfilesResource { |
| final commons.ApiRequester _requester; |
| |
| ProjectsLocationsConnectionProfilesResource(commons.ApiRequester client) |
| : _requester = client; |
| |
| /// Use this method to create a connection profile in a project and location. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [parent] - Required. The parent that owns the collection of |
| /// ConnectionProfiles. |
| /// Value must have pattern `^projects/\[^/\]+/locations/\[^/\]+$`. |
| /// |
| /// [connectionProfileId] - Required. The connection profile identifier. |
| /// |
| /// [requestId] - Optional. A request ID to identify requests. Specify a |
| /// unique request ID so that if you must retry your request, the server will |
| /// know to ignore the request if it has already been completed. The server |
| /// will guarantee that for at least 60 minutes since the first request. For |
| /// example, consider a situation where you make an initial request and the |
| /// request times out. If you make the request again with the same request ID, |
| /// the server can check if original operation with the same request ID was |
| /// received, and if so, will ignore the second request. This prevents clients |
| /// from accidentally creating duplicate commitments. The request ID must be a |
| /// valid UUID with the exception that zero UUID is not supported |
| /// (00000000-0000-0000-0000-000000000000). |
| /// |
| /// [$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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<Operation> create( |
| ConnectionProfile request, |
| core.String parent, { |
| core.String? connectionProfileId, |
| core.String? requestId, |
| core.String? $fields, |
| }) async { |
| final body_ = convert.json.encode(request); |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'connectionProfileId': ?connectionProfileId == null |
| ? null |
| : [connectionProfileId], |
| 'requestId': ?requestId == null ? null : [requestId], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = |
| 'v1alpha1/' + core.Uri.encodeFull('$parent') + '/connectionProfiles'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'POST', |
| body: body_, |
| queryParams: queryParams_, |
| ); |
| return Operation.fromJson(response_ as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Use this method to delete a connection profile.. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The name of the connection profile resource to delete. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/connectionProfiles/\[^/\]+$`. |
| /// |
| /// [requestId] - Optional. A request ID to identify requests. Specify a |
| /// unique request ID so that if you must retry your request, the server will |
| /// know to ignore the request if it has already been completed. The server |
| /// will guarantee that for at least 60 minutes after the first request. For |
| /// example, consider a situation where you make an initial request and the |
| /// request times out. If you make the request again with the same request ID, |
| /// the server can check if original operation with the same request ID was |
| /// received, and if so, will ignore the second request. This prevents clients |
| /// from accidentally creating duplicate commitments. The request ID must be a |
| /// valid UUID with the exception that zero UUID is not supported |
| /// (00000000-0000-0000-0000-000000000000). |
| /// |
| /// [$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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<Operation> delete( |
| core.String name, { |
| core.String? requestId, |
| core.String? $fields, |
| }) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'requestId': ?requestId == null ? null : [requestId], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$name'); |
| |
| final response_ = await _requester.request( |
| url_, |
| 'DELETE', |
| queryParams: queryParams_, |
| ); |
| return Operation.fromJson(response_ as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Use this method to discover a connection profile. |
| /// |
| /// The discover API call exposes the data objects and metadata belonging to |
| /// the profile. Typically, a request returns children data objects under a |
| /// parent data object that's optionally supplied in the request. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [parent] - Required. The parent resource of the ConnectionProfile type. |
| /// Must be in the format `projects / * /locations / * `. |
| /// Value must have pattern `^projects/\[^/\]+/locations/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [DiscoverConnectionProfileResponse]. |
| /// |
| /// 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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<DiscoverConnectionProfileResponse> discover( |
| DiscoverConnectionProfileRequest request, |
| core.String parent, { |
| core.String? $fields, |
| }) async { |
| final body_ = convert.json.encode(request); |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = |
| 'v1alpha1/' + |
| core.Uri.encodeFull('$parent') + |
| '/connectionProfiles:discover'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'POST', |
| body: body_, |
| queryParams: queryParams_, |
| ); |
| return DiscoverConnectionProfileResponse.fromJson( |
| response_ as core.Map<core.String, core.dynamic>, |
| ); |
| } |
| |
| /// Use this method to get details about a connection profile. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The name of the connection profile resource to get. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/connectionProfiles/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [ConnectionProfile]. |
| /// |
| /// 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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<ConnectionProfile> get( |
| core.String name, { |
| core.String? $fields, |
| }) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$name'); |
| |
| final response_ = await _requester.request( |
| url_, |
| 'GET', |
| queryParams: queryParams_, |
| ); |
| return ConnectionProfile.fromJson( |
| response_ as core.Map<core.String, core.dynamic>, |
| ); |
| } |
| |
| /// Use this method to list connection profiles created in a project and |
| /// location. |
| /// |
| /// Request parameters: |
| /// |
| /// [parent] - Required. The parent that owns the collection of connection |
| /// profiles. |
| /// Value must have pattern `^projects/\[^/\]+/locations/\[^/\]+$`. |
| /// |
| /// [filter] - Filter request. |
| /// |
| /// [orderBy] - Order by fields for the result. |
| /// |
| /// [pageSize] - Maximum number of connection profiles to return. If |
| /// unspecified, at most 50 connection profiles will be returned. The maximum |
| /// value is 1000; values above 1000 will be coerced to 1000. |
| /// |
| /// [pageToken] - Page token received from a previous `ListConnectionProfiles` |
| /// call. Provide this to retrieve the subsequent page. When paginating, all |
| /// other parameters provided to `ListConnectionProfiles` must match the call |
| /// that provided the page token. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [ListConnectionProfilesResponse]. |
| /// |
| /// 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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<ListConnectionProfilesResponse> 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>>{ |
| 'filter': ?filter == null ? null : [filter], |
| 'orderBy': ?orderBy == null ? null : [orderBy], |
| 'pageSize': ?pageSize == null ? null : ['${pageSize}'], |
| 'pageToken': ?pageToken == null ? null : [pageToken], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = |
| 'v1alpha1/' + core.Uri.encodeFull('$parent') + '/connectionProfiles'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'GET', |
| queryParams: queryParams_, |
| ); |
| return ListConnectionProfilesResponse.fromJson( |
| response_ as core.Map<core.String, core.dynamic>, |
| ); |
| } |
| |
| /// Use this method to update the parameters of a connection profile. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Output only. The resource's name. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/connectionProfiles/\[^/\]+$`. |
| /// |
| /// [requestId] - Optional. A request ID to identify requests. Specify a |
| /// unique request ID so that if you must retry your request, the server will |
| /// know to ignore the request if it has already been completed. The server |
| /// will guarantee that for at least 60 minutes since the first request. For |
| /// example, consider a situation where you make an initial request and the |
| /// request times out. If you make the request again with the same request ID, |
| /// the server can check if original operation with the same request ID was |
| /// received, and if so, will ignore the second request. This prevents clients |
| /// from accidentally creating duplicate commitments. The request ID must be a |
| /// valid UUID with the exception that zero UUID is not supported |
| /// (00000000-0000-0000-0000-000000000000). |
| /// |
| /// [updateMask] - Optional. Field mask is used to specify the fields to be |
| /// overwritten in the ConnectionProfile resource by the update. The fields |
| /// specified in the update_mask are relative to the resource, not the full |
| /// request. A field will be overwritten if it is in the mask. If the user |
| /// does not provide a mask then all fields will be overwritten. |
| /// |
| /// [validateOnly] - Optional. Only validate the connection profile, but do |
| /// not update any resources. The default is false. |
| /// |
| /// [$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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<Operation> patch( |
| ConnectionProfile request, |
| core.String name, { |
| core.String? requestId, |
| core.String? updateMask, |
| core.bool? validateOnly, |
| core.String? $fields, |
| }) async { |
| final body_ = convert.json.encode(request); |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'requestId': ?requestId == null ? null : [requestId], |
| 'updateMask': ?updateMask == null ? null : [updateMask], |
| 'validateOnly': ?validateOnly == null ? null : ['${validateOnly}'], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + 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>); |
| } |
| } |
| |
| class ProjectsLocationsOperationsResource { |
| final commons.ApiRequester _requester; |
| |
| ProjectsLocationsOperationsResource(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/\[^/\]+/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); |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + 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/\[^/\]+/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>>{ |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + 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/\[^/\]+/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>>{ |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + 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`. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - The name of the operation's parent resource. |
| /// Value must have pattern `^projects/\[^/\]+/locations/\[^/\]+$`. |
| /// |
| /// [filter] - The standard list filter. |
| /// |
| /// [pageSize] - The standard list page size. |
| /// |
| /// [pageToken] - The standard list page token. |
| /// |
| /// [returnPartialSuccess] - When set to `true`, operations that are reachable |
| /// are returned as normal, and those that are unreachable are returned in the |
| /// ListOperationsResponse.unreachable field. This can only be `true` when |
| /// reading across collections. For example, when `parent` is set to |
| /// `"projects/example/locations/-"`. This field is not supported by default |
| /// and will result in an `UNIMPLEMENTED` error if set unless explicitly |
| /// documented otherwise in service or product specific documentation. |
| /// |
| /// [$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.bool? returnPartialSuccess, |
| core.String? $fields, |
| }) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'filter': ?filter == null ? null : [filter], |
| 'pageSize': ?pageSize == null ? null : ['${pageSize}'], |
| 'pageToken': ?pageToken == null ? null : [pageToken], |
| 'returnPartialSuccess': ?returnPartialSuccess == null |
| ? null |
| : ['${returnPartialSuccess}'], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$name') + '/operations'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'GET', |
| queryParams: queryParams_, |
| ); |
| return ListOperationsResponse.fromJson( |
| response_ as core.Map<core.String, core.dynamic>, |
| ); |
| } |
| } |
| |
| class ProjectsLocationsPrivateConnectionsResource { |
| final commons.ApiRequester _requester; |
| |
| ProjectsLocationsPrivateConnectionsRoutesResource get routes => |
| ProjectsLocationsPrivateConnectionsRoutesResource(_requester); |
| |
| ProjectsLocationsPrivateConnectionsResource(commons.ApiRequester client) |
| : _requester = client; |
| |
| /// Use this method to create a private connectivity configuration. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [parent] - Required. The parent that owns the collection of |
| /// PrivateConnections. |
| /// Value must have pattern `^projects/\[^/\]+/locations/\[^/\]+$`. |
| /// |
| /// [privateConnectionId] - Required. The private connectivity identifier. |
| /// |
| /// [requestId] - Optional. A request ID to identify requests. Specify a |
| /// unique request ID so that if you must retry your request, the server will |
| /// know to ignore the request if it has already been completed. The server |
| /// will guarantee that for at least 60 minutes since the first request. For |
| /// example, consider a situation where you make an initial request and the |
| /// request times out. If you make the request again with the same request ID, |
| /// the server can check if original operation with the same request ID was |
| /// received, and if so, will ignore the second request. This prevents clients |
| /// from accidentally creating duplicate commitments. The request ID must be a |
| /// valid UUID with the exception that zero UUID is not supported |
| /// (00000000-0000-0000-0000-000000000000). |
| /// |
| /// [$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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<Operation> create( |
| PrivateConnection request, |
| core.String parent, { |
| core.String? privateConnectionId, |
| core.String? requestId, |
| core.String? $fields, |
| }) async { |
| final body_ = convert.json.encode(request); |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'privateConnectionId': ?privateConnectionId == null |
| ? null |
| : [privateConnectionId], |
| 'requestId': ?requestId == null ? null : [requestId], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = |
| 'v1alpha1/' + core.Uri.encodeFull('$parent') + '/privateConnections'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'POST', |
| body: body_, |
| queryParams: queryParams_, |
| ); |
| return Operation.fromJson(response_ as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Use this method to delete a private connectivity configuration. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The name of the private connectivity configuration to |
| /// delete. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/privateConnections/\[^/\]+$`. |
| /// |
| /// [force] - Optional. If set to true, any child routes that belong to this |
| /// PrivateConnection will also be deleted. |
| /// |
| /// [requestId] - Optional. A request ID to identify requests. Specify a |
| /// unique request ID so that if you must retry your request, the server will |
| /// know to ignore the request if it has already been completed. The server |
| /// will guarantee that for at least 60 minutes after the first request. For |
| /// example, consider a situation where you make an initial request and the |
| /// request times out. If you make the request again with the same request ID, |
| /// the server can check if original operation with the same request ID was |
| /// received, and if so, will ignore the second request. This prevents clients |
| /// from accidentally creating duplicate commitments. The request ID must be a |
| /// valid UUID with the exception that zero UUID is not supported |
| /// (00000000-0000-0000-0000-000000000000). |
| /// |
| /// [$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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<Operation> delete( |
| core.String name, { |
| core.bool? force, |
| core.String? requestId, |
| core.String? $fields, |
| }) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'force': ?force == null ? null : ['${force}'], |
| 'requestId': ?requestId == null ? null : [requestId], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$name'); |
| |
| final response_ = await _requester.request( |
| url_, |
| 'DELETE', |
| queryParams: queryParams_, |
| ); |
| return Operation.fromJson(response_ as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Use this method to get details about a private connectivity configuration. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The name of the private connectivity configuration to |
| /// get. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/privateConnections/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [PrivateConnection]. |
| /// |
| /// 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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<PrivateConnection> get( |
| core.String name, { |
| core.String? $fields, |
| }) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$name'); |
| |
| final response_ = await _requester.request( |
| url_, |
| 'GET', |
| queryParams: queryParams_, |
| ); |
| return PrivateConnection.fromJson( |
| response_ as core.Map<core.String, core.dynamic>, |
| ); |
| } |
| |
| /// Use this method to list private connectivity configurations in a project |
| /// and location. |
| /// |
| /// Request parameters: |
| /// |
| /// [parent] - Required. The parent that owns the collection of private |
| /// connectivity configurations. |
| /// Value must have pattern `^projects/\[^/\]+/locations/\[^/\]+$`. |
| /// |
| /// [filter] - Filter request. |
| /// |
| /// [orderBy] - Order by fields for the result. |
| /// |
| /// [pageSize] - Maximum number of private connectivity configurations to |
| /// return. If unspecified, at most 50 private connectivity configurations |
| /// that will be returned. The maximum value is 1000; values above 1000 will |
| /// be coerced to 1000. |
| /// |
| /// [pageToken] - Page token received from a previous `ListPrivateConnections` |
| /// call. Provide this to retrieve the subsequent page. When paginating, all |
| /// other parameters provided to `ListPrivateConnections` must match the call |
| /// that provided the page token. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [ListPrivateConnectionsResponse]. |
| /// |
| /// 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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<ListPrivateConnectionsResponse> 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>>{ |
| 'filter': ?filter == null ? null : [filter], |
| 'orderBy': ?orderBy == null ? null : [orderBy], |
| 'pageSize': ?pageSize == null ? null : ['${pageSize}'], |
| 'pageToken': ?pageToken == null ? null : [pageToken], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = |
| 'v1alpha1/' + core.Uri.encodeFull('$parent') + '/privateConnections'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'GET', |
| queryParams: queryParams_, |
| ); |
| return ListPrivateConnectionsResponse.fromJson( |
| response_ as core.Map<core.String, core.dynamic>, |
| ); |
| } |
| } |
| |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| class ProjectsLocationsPrivateConnectionsRoutesResource { |
| final commons.ApiRequester _requester; |
| |
| ProjectsLocationsPrivateConnectionsRoutesResource(commons.ApiRequester client) |
| : _requester = client; |
| |
| /// Use this method to create a route for a private connectivity in a project |
| /// and location. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [parent] - Required. The parent that owns the collection of Routes. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/privateConnections/\[^/\]+$`. |
| /// |
| /// [requestId] - Optional. A request ID to identify requests. Specify a |
| /// unique request ID so that if you must retry your request, the server will |
| /// know to ignore the request if it has already been completed. The server |
| /// will guarantee that for at least 60 minutes since the first request. For |
| /// example, consider a situation where you make an initial request and the |
| /// request times out. If you make the request again with the same request ID, |
| /// the server can check if original operation with the same request ID was |
| /// received, and if so, will ignore the second request. This prevents clients |
| /// from accidentally creating duplicate commitments. The request ID must be a |
| /// valid UUID with the exception that zero UUID is not supported |
| /// (00000000-0000-0000-0000-000000000000). |
| /// |
| /// [routeId] - Required. The Route identifier. |
| /// |
| /// [$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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<Operation> create( |
| Route request, |
| core.String parent, { |
| core.String? requestId, |
| core.String? routeId, |
| core.String? $fields, |
| }) async { |
| final body_ = convert.json.encode(request); |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'requestId': ?requestId == null ? null : [requestId], |
| 'routeId': ?routeId == null ? null : [routeId], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$parent') + '/routes'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'POST', |
| body: body_, |
| queryParams: queryParams_, |
| ); |
| return Operation.fromJson(response_ as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Use this method to delete a route. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The name of the Route resource to delete. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/privateConnections/\[^/\]+/routes/\[^/\]+$`. |
| /// |
| /// [requestId] - Optional. A request ID to identify requests. Specify a |
| /// unique request ID so that if you must retry your request, the server will |
| /// know to ignore the request if it has already been completed. The server |
| /// will guarantee that for at least 60 minutes after the first request. For |
| /// example, consider a situation where you make an initial request and the |
| /// request times out. If you make the request again with the same request ID, |
| /// the server can check if original operation with the same request ID was |
| /// received, and if so, will ignore the second request. This prevents clients |
| /// from accidentally creating duplicate commitments. The request ID must be a |
| /// valid UUID with the exception that zero UUID is not supported |
| /// (00000000-0000-0000-0000-000000000000). |
| /// |
| /// [$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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<Operation> delete( |
| core.String name, { |
| core.String? requestId, |
| core.String? $fields, |
| }) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'requestId': ?requestId == null ? null : [requestId], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$name'); |
| |
| final response_ = await _requester.request( |
| url_, |
| 'DELETE', |
| queryParams: queryParams_, |
| ); |
| return Operation.fromJson(response_ as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Use this method to get details about a route. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The name of the Route resource to get. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/privateConnections/\[^/\]+/routes/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [Route]. |
| /// |
| /// 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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<Route> get(core.String name, {core.String? $fields}) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$name'); |
| |
| final response_ = await _requester.request( |
| url_, |
| 'GET', |
| queryParams: queryParams_, |
| ); |
| return Route.fromJson(response_ as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Use this method to list routes created for a private connectivity in a |
| /// project and location. |
| /// |
| /// Request parameters: |
| /// |
| /// [parent] - Required. The parent that owns the collection of Routess. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/privateConnections/\[^/\]+$`. |
| /// |
| /// [filter] - Filter request. |
| /// |
| /// [orderBy] - Order by fields for the result. |
| /// |
| /// [pageSize] - Maximum number of Routes to return. The service may return |
| /// fewer than this value. If unspecified, at most 50 Routes will be returned. |
| /// The maximum value is 1000; values above 1000 will be coerced to 1000. |
| /// |
| /// [pageToken] - Page token received from a previous `ListRoutes` call. |
| /// Provide this to retrieve the subsequent page. When paginating, all other |
| /// parameters provided to `ListRoutes` must match the call that provided the |
| /// page token. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [ListRoutesResponse]. |
| /// |
| /// 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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<ListRoutesResponse> 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>>{ |
| 'filter': ?filter == null ? null : [filter], |
| 'orderBy': ?orderBy == null ? null : [orderBy], |
| 'pageSize': ?pageSize == null ? null : ['${pageSize}'], |
| 'pageToken': ?pageToken == null ? null : [pageToken], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$parent') + '/routes'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'GET', |
| queryParams: queryParams_, |
| ); |
| return ListRoutesResponse.fromJson( |
| response_ as core.Map<core.String, core.dynamic>, |
| ); |
| } |
| } |
| |
| class ProjectsLocationsStreamsResource { |
| final commons.ApiRequester _requester; |
| |
| ProjectsLocationsStreamsObjectsResource get objects => |
| ProjectsLocationsStreamsObjectsResource(_requester); |
| |
| ProjectsLocationsStreamsResource(commons.ApiRequester client) |
| : _requester = client; |
| |
| /// Use this method to create a stream. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [parent] - Required. The parent that owns the collection of streams. |
| /// Value must have pattern `^projects/\[^/\]+/locations/\[^/\]+$`. |
| /// |
| /// [force] - Optional. Create the stream without validating it. |
| /// |
| /// [requestId] - Optional. A request ID to identify requests. Specify a |
| /// unique request ID so that if you must retry your request, the server will |
| /// know to ignore the request if it has already been completed. The server |
| /// will guarantee that for at least 60 minutes since the first request. For |
| /// example, consider a situation where you make an initial request and the |
| /// request times out. If you make the request again with the same request ID, |
| /// the server can check if original operation with the same request ID was |
| /// received, and if so, will ignore the second request. This prevents clients |
| /// from accidentally creating duplicate commitments. The request ID must be a |
| /// valid UUID with the exception that zero UUID is not supported |
| /// (00000000-0000-0000-0000-000000000000). |
| /// |
| /// [streamId] - Required. The stream identifier. |
| /// |
| /// [validateOnly] - Optional. Only validate the stream, but do not create any |
| /// resources. The default is false. |
| /// |
| /// [$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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<Operation> create( |
| Stream request, |
| core.String parent, { |
| core.bool? force, |
| core.String? requestId, |
| core.String? streamId, |
| core.bool? validateOnly, |
| core.String? $fields, |
| }) async { |
| final body_ = convert.json.encode(request); |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'force': ?force == null ? null : ['${force}'], |
| 'requestId': ?requestId == null ? null : [requestId], |
| 'streamId': ?streamId == null ? null : [streamId], |
| 'validateOnly': ?validateOnly == null ? null : ['${validateOnly}'], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$parent') + '/streams'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'POST', |
| body: body_, |
| queryParams: queryParams_, |
| ); |
| return Operation.fromJson(response_ as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Use this method to delete a stream. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The name of the stream resource to delete. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/streams/\[^/\]+$`. |
| /// |
| /// [requestId] - Optional. A request ID to identify requests. Specify a |
| /// unique request ID so that if you must retry your request, the server will |
| /// know to ignore the request if it has already been completed. The server |
| /// will guarantee that for at least 60 minutes after the first request. For |
| /// example, consider a situation where you make an initial request and the |
| /// request times out. If you make the request again with the same request ID, |
| /// the server can check if original operation with the same request ID was |
| /// received, and if so, will ignore the second request. This prevents clients |
| /// from accidentally creating duplicate commitments. The request ID must be a |
| /// valid UUID with the exception that zero UUID is not supported |
| /// (00000000-0000-0000-0000-000000000000). |
| /// |
| /// [$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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<Operation> delete( |
| core.String name, { |
| core.String? requestId, |
| core.String? $fields, |
| }) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'requestId': ?requestId == null ? null : [requestId], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$name'); |
| |
| final response_ = await _requester.request( |
| url_, |
| 'DELETE', |
| queryParams: queryParams_, |
| ); |
| return Operation.fromJson(response_ as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Use this method to fetch any errors associated with a stream. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [stream] - Name of the Stream resource for which to fetch any errors. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/streams/\[^/\]+$`. |
| /// |
| /// [$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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<Operation> fetchErrors( |
| FetchErrorsRequest request, |
| core.String stream, { |
| core.String? $fields, |
| }) async { |
| final body_ = convert.json.encode(request); |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$stream') + ':fetchErrors'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'POST', |
| body: body_, |
| queryParams: queryParams_, |
| ); |
| return Operation.fromJson(response_ as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Use this method to get details about a stream. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The name of the stream resource to get. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/streams/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [Stream]. |
| /// |
| /// 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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<Stream> get(core.String name, {core.String? $fields}) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$name'); |
| |
| final response_ = await _requester.request( |
| url_, |
| 'GET', |
| queryParams: queryParams_, |
| ); |
| return Stream.fromJson(response_ as core.Map<core.String, core.dynamic>); |
| } |
| |
| /// Use this method to list streams in a project and location. |
| /// |
| /// Request parameters: |
| /// |
| /// [parent] - Required. The parent that owns the collection of streams. |
| /// Value must have pattern `^projects/\[^/\]+/locations/\[^/\]+$`. |
| /// |
| /// [filter] - Filter request. |
| /// |
| /// [orderBy] - Order by fields for the result. |
| /// |
| /// [pageSize] - Maximum number of streams to return. If unspecified, at most |
| /// 50 streams will be returned. The maximum value is 1000; values above 1000 |
| /// will be coerced to 1000. |
| /// |
| /// [pageToken] - Page token received from a previous `ListStreams` call. |
| /// Provide this to retrieve the subsequent page. When paginating, all other |
| /// parameters provided to `ListStreams` must match the call that provided the |
| /// page token. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [ListStreamsResponse]. |
| /// |
| /// 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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<ListStreamsResponse> 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>>{ |
| 'filter': ?filter == null ? null : [filter], |
| 'orderBy': ?orderBy == null ? null : [orderBy], |
| 'pageSize': ?pageSize == null ? null : ['${pageSize}'], |
| 'pageToken': ?pageToken == null ? null : [pageToken], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$parent') + '/streams'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'GET', |
| queryParams: queryParams_, |
| ); |
| return ListStreamsResponse.fromJson( |
| response_ as core.Map<core.String, core.dynamic>, |
| ); |
| } |
| |
| /// Use this method to update the configuration of a stream. |
| /// |
| /// [request] - The metadata request object. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Output only. The stream's name. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/streams/\[^/\]+$`. |
| /// |
| /// [force] - Optional. Execute the update without validating it. |
| /// |
| /// [requestId] - Optional. A request ID to identify requests. Specify a |
| /// unique request ID so that if you must retry your request, the server will |
| /// know to ignore the request if it has already been completed. The server |
| /// will guarantee that for at least 60 minutes since the first request. For |
| /// example, consider a situation where you make an initial request and the |
| /// request times out. If you make the request again with the same request ID, |
| /// the server can check if original operation with the same request ID was |
| /// received, and if so, will ignore the second request. This prevents clients |
| /// from accidentally creating duplicate commitments. The request ID must be a |
| /// valid UUID with the exception that zero UUID is not supported |
| /// (00000000-0000-0000-0000-000000000000). |
| /// |
| /// [updateMask] - Optional. Field mask is used to specify the fields to be |
| /// overwritten in the stream resource by the update. The fields specified in |
| /// the update_mask are relative to the resource, not the full request. A |
| /// field will be overwritten if it is in the mask. If the user does not |
| /// provide a mask then all fields will be overwritten. |
| /// |
| /// [validateOnly] - Optional. Only validate the stream with the changes, |
| /// without actually updating it. The default is false. |
| /// |
| /// [$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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<Operation> patch( |
| Stream request, |
| core.String name, { |
| core.bool? force, |
| core.String? requestId, |
| core.String? updateMask, |
| core.bool? validateOnly, |
| core.String? $fields, |
| }) async { |
| final body_ = convert.json.encode(request); |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'force': ?force == null ? null : ['${force}'], |
| 'requestId': ?requestId == null ? null : [requestId], |
| 'updateMask': ?updateMask == null ? null : [updateMask], |
| 'validateOnly': ?validateOnly == null ? null : ['${validateOnly}'], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + 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>); |
| } |
| } |
| |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| class ProjectsLocationsStreamsObjectsResource { |
| final commons.ApiRequester _requester; |
| |
| ProjectsLocationsStreamsObjectsResource(commons.ApiRequester client) |
| : _requester = client; |
| |
| /// Use this method to get details about a stream object. |
| /// |
| /// Request parameters: |
| /// |
| /// [name] - Required. The name of the stream object resource to get. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/streams/\[^/\]+/objects/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [StreamObject]. |
| /// |
| /// 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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<StreamObject> get( |
| core.String name, { |
| core.String? $fields, |
| }) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$name'); |
| |
| final response_ = await _requester.request( |
| url_, |
| 'GET', |
| queryParams: queryParams_, |
| ); |
| return StreamObject.fromJson( |
| response_ as core.Map<core.String, core.dynamic>, |
| ); |
| } |
| |
| /// Use this method to list the objects of a specific stream. |
| /// |
| /// Request parameters: |
| /// |
| /// [parent] - Required. The parent stream that owns the collection of |
| /// objects. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/streams/\[^/\]+$`. |
| /// |
| /// [pageSize] - Maximum number of objects to return. Default is 50. The |
| /// maximum value is 1000; values above 1000 will be coerced to 1000. |
| /// |
| /// [pageToken] - Page token received from a previous |
| /// `ListStreamObjectsRequest` call. Provide this to retrieve the subsequent |
| /// page. When paginating, all other parameters provided to |
| /// `ListStreamObjectsRequest` must match the call that provided the page |
| /// token. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [ListStreamObjectsResponse]. |
| /// |
| /// 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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<ListStreamObjectsResponse> list( |
| core.String parent, { |
| core.int? pageSize, |
| core.String? pageToken, |
| core.String? $fields, |
| }) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'pageSize': ?pageSize == null ? null : ['${pageSize}'], |
| 'pageToken': ?pageToken == null ? null : [pageToken], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1alpha1/' + core.Uri.encodeFull('$parent') + '/objects'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'GET', |
| queryParams: queryParams_, |
| ); |
| return ListStreamObjectsResponse.fromJson( |
| response_ as core.Map<core.String, core.dynamic>, |
| ); |
| } |
| |
| /// Starts backfill job for the specified stream object. |
| /// |
| /// Request parameters: |
| /// |
| /// [object] - Required. The name of the stream object resource to start a |
| /// backfill job for. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/streams/\[^/\]+/objects/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [StartBackfillJobResponse]. |
| /// |
| /// 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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<StartBackfillJobResponse> startBackfillJob( |
| core.String object, { |
| core.String? $fields, |
| }) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = |
| 'v1alpha1/' + core.Uri.encodeFull('$object') + ':startBackfillJob'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'POST', |
| queryParams: queryParams_, |
| ); |
| return StartBackfillJobResponse.fromJson( |
| response_ as core.Map<core.String, core.dynamic>, |
| ); |
| } |
| |
| /// Stops the backfill job for the specified stream object. |
| /// |
| /// Request parameters: |
| /// |
| /// [object] - Required. The name of the stream object resource to stop the |
| /// backfill job for. |
| /// Value must have pattern |
| /// `^projects/\[^/\]+/locations/\[^/\]+/streams/\[^/\]+/objects/\[^/\]+$`. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a [StopBackfillJobResponse]. |
| /// |
| /// 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. |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| async.Future<StopBackfillJobResponse> stopBackfillJob( |
| core.String object, { |
| core.String? $fields, |
| }) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = |
| 'v1alpha1/' + core.Uri.encodeFull('$object') + ':stopBackfillJob'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'POST', |
| queryParams: queryParams_, |
| ); |
| return StopBackfillJobResponse.fromJson( |
| response_ as core.Map<core.String, core.dynamic>, |
| ); |
| } |
| } |
| |
| /// AVRO file format configuration. |
| typedef AvroFileFormat = $Empty; |
| |
| /// Backfill strategy to automatically backfill the Stream's objects. |
| /// |
| /// Specific objects can be excluded. |
| class BackfillAllStrategy { |
| /// MySQL data source objects to avoid backfilling. |
| MysqlRdbms? mysqlExcludedObjects; |
| |
| /// Oracle data source objects to avoid backfilling. |
| OracleRdbms? oracleExcludedObjects; |
| |
| BackfillAllStrategy({this.mysqlExcludedObjects, this.oracleExcludedObjects}); |
| |
| BackfillAllStrategy.fromJson(core.Map json_) |
| : this( |
| mysqlExcludedObjects: json_.containsKey('mysqlExcludedObjects') |
| ? MysqlRdbms.fromJson( |
| json_['mysqlExcludedObjects'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| oracleExcludedObjects: json_.containsKey('oracleExcludedObjects') |
| ? OracleRdbms.fromJson( |
| json_['oracleExcludedObjects'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final mysqlExcludedObjects = this.mysqlExcludedObjects; |
| final oracleExcludedObjects = this.oracleExcludedObjects; |
| return { |
| 'mysqlExcludedObjects': ?mysqlExcludedObjects, |
| 'oracleExcludedObjects': ?oracleExcludedObjects, |
| }; |
| } |
| } |
| |
| /// Represents a backfill job on a specific stream object. |
| class BackfillJob { |
| /// Errors which caused the backfill job to fail. |
| /// |
| /// Output only. |
| core.List<Error>? errors; |
| |
| /// Backfill job's end time. |
| /// |
| /// Output only. |
| core.String? lastEndTime; |
| |
| /// Backfill job's start time. |
| /// |
| /// Output only. |
| core.String? lastStartTime; |
| |
| /// Backfill job state. |
| /// Possible string values are: |
| /// - "STATE_UNSPECIFIED" : Default value. |
| /// - "NOT_STARTED" : Backfill job was never started for the stream object |
| /// (stream has backfill strategy defined as manual or object was explicitly |
| /// excluded from automatic backfill). |
| /// - "PENDING" : Backfill job will start pending available resources. |
| /// - "ACTIVE" : Backfill job is running. |
| /// - "STOPPED" : Backfill job stopped (next job run will start from |
| /// beginning). |
| /// - "FAILED" : Backfill job failed (due to an error). |
| /// - "COMPLETED" : Backfill completed successfully. |
| /// - "UNSUPPORTED" : Backfill job failed since the table structure is |
| /// currently unsupported for backfill. |
| core.String? state; |
| |
| /// Backfill job's triggering reason. |
| /// Possible string values are: |
| /// - "TRIGGER_UNSPECIFIED" : Default value. |
| /// - "AUTOMATIC" : Object backfill job was triggered automatically according |
| /// to the stream's backfill strategy. |
| /// - "MANUAL" : Object backfill job was triggered manually using the |
| /// dedicated API. |
| core.String? trigger; |
| |
| BackfillJob({ |
| this.errors, |
| this.lastEndTime, |
| this.lastStartTime, |
| this.state, |
| this.trigger, |
| }); |
| |
| BackfillJob.fromJson(core.Map json_) |
| : this( |
| errors: (json_['errors'] as core.List?) |
| ?.map( |
| (value) => |
| Error.fromJson(value as core.Map<core.String, core.dynamic>), |
| ) |
| .toList(), |
| lastEndTime: json_['lastEndTime'] as core.String?, |
| lastStartTime: json_['lastStartTime'] as core.String?, |
| state: json_['state'] as core.String?, |
| trigger: json_['trigger'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final errors = this.errors; |
| final lastEndTime = this.lastEndTime; |
| final lastStartTime = this.lastStartTime; |
| final state = this.state; |
| final trigger = this.trigger; |
| return { |
| 'errors': ?errors, |
| 'lastEndTime': ?lastEndTime, |
| 'lastStartTime': ?lastStartTime, |
| 'state': ?state, |
| 'trigger': ?trigger, |
| }; |
| } |
| } |
| |
| /// Backfill strategy to disable automatic backfill for the Stream's objects. |
| typedef BackfillNoneStrategy = $Empty; |
| |
| /// The request message for Operations.CancelOperation. |
| typedef CancelOperationRequest = $Empty; |
| |
| class ConnectionProfile { |
| /// The create time of the resource. |
| /// |
| /// Output only. |
| core.String? createTime; |
| |
| /// Display name. |
| /// |
| /// Required. |
| core.String? displayName; |
| |
| /// Forward SSH tunnel connectivity. |
| ForwardSshTunnelConnectivity? forwardSshConnectivity; |
| |
| /// Cloud Storage ConnectionProfile configuration. |
| GcsProfile? gcsProfile; |
| |
| /// Labels. |
| core.Map<core.String, core.String>? labels; |
| |
| /// MySQL ConnectionProfile configuration. |
| MysqlProfile? mysqlProfile; |
| |
| /// The resource's name. |
| /// |
| /// Output only. |
| core.String? name; |
| |
| /// No connectivity option chosen. |
| NoConnectivitySettings? noConnectivity; |
| |
| /// Oracle ConnectionProfile configuration. |
| OracleProfile? oracleProfile; |
| |
| /// Private connectivity. |
| PrivateConnectivity? privateConnectivity; |
| |
| /// Static Service IP connectivity. |
| StaticServiceIpConnectivity? staticServiceIpConnectivity; |
| |
| /// The update time of the resource. |
| /// |
| /// Output only. |
| core.String? updateTime; |
| |
| ConnectionProfile({ |
| this.createTime, |
| this.displayName, |
| this.forwardSshConnectivity, |
| this.gcsProfile, |
| this.labels, |
| this.mysqlProfile, |
| this.name, |
| this.noConnectivity, |
| this.oracleProfile, |
| this.privateConnectivity, |
| this.staticServiceIpConnectivity, |
| this.updateTime, |
| }); |
| |
| ConnectionProfile.fromJson(core.Map json_) |
| : this( |
| createTime: json_['createTime'] as core.String?, |
| displayName: json_['displayName'] as core.String?, |
| forwardSshConnectivity: json_.containsKey('forwardSshConnectivity') |
| ? ForwardSshTunnelConnectivity.fromJson( |
| json_['forwardSshConnectivity'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| gcsProfile: json_.containsKey('gcsProfile') |
| ? GcsProfile.fromJson( |
| json_['gcsProfile'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| labels: (json_['labels'] as core.Map<core.String, core.dynamic>?)?.map( |
| (key, value) => core.MapEntry(key, value as core.String), |
| ), |
| mysqlProfile: json_.containsKey('mysqlProfile') |
| ? MysqlProfile.fromJson( |
| json_['mysqlProfile'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| name: json_['name'] as core.String?, |
| noConnectivity: json_.containsKey('noConnectivity') |
| ? NoConnectivitySettings.fromJson( |
| json_['noConnectivity'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| oracleProfile: json_.containsKey('oracleProfile') |
| ? OracleProfile.fromJson( |
| json_['oracleProfile'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| privateConnectivity: json_.containsKey('privateConnectivity') |
| ? PrivateConnectivity.fromJson( |
| json_['privateConnectivity'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| staticServiceIpConnectivity: |
| json_.containsKey('staticServiceIpConnectivity') |
| ? StaticServiceIpConnectivity.fromJson( |
| json_['staticServiceIpConnectivity'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| updateTime: json_['updateTime'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final createTime = this.createTime; |
| final displayName = this.displayName; |
| final forwardSshConnectivity = this.forwardSshConnectivity; |
| final gcsProfile = this.gcsProfile; |
| final labels = this.labels; |
| final mysqlProfile = this.mysqlProfile; |
| final name = this.name; |
| final noConnectivity = this.noConnectivity; |
| final oracleProfile = this.oracleProfile; |
| final privateConnectivity = this.privateConnectivity; |
| final staticServiceIpConnectivity = this.staticServiceIpConnectivity; |
| final updateTime = this.updateTime; |
| return { |
| 'createTime': ?createTime, |
| 'displayName': ?displayName, |
| 'forwardSshConnectivity': ?forwardSshConnectivity, |
| 'gcsProfile': ?gcsProfile, |
| 'labels': ?labels, |
| 'mysqlProfile': ?mysqlProfile, |
| 'name': ?name, |
| 'noConnectivity': ?noConnectivity, |
| 'oracleProfile': ?oracleProfile, |
| 'privateConnectivity': ?privateConnectivity, |
| 'staticServiceIpConnectivity': ?staticServiceIpConnectivity, |
| 'updateTime': ?updateTime, |
| }; |
| } |
| } |
| |
| /// The configuration of the stream destination. |
| class DestinationConfig { |
| /// Destination connection profile identifier. |
| /// |
| /// Required. |
| core.String? destinationConnectionProfileName; |
| |
| /// GCS destination configuration. |
| GcsDestinationConfig? gcsDestinationConfig; |
| |
| DestinationConfig({ |
| this.destinationConnectionProfileName, |
| this.gcsDestinationConfig, |
| }); |
| |
| DestinationConfig.fromJson(core.Map json_) |
| : this( |
| destinationConnectionProfileName: |
| json_['destinationConnectionProfileName'] as core.String?, |
| gcsDestinationConfig: json_.containsKey('gcsDestinationConfig') |
| ? GcsDestinationConfig.fromJson( |
| json_['gcsDestinationConfig'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final destinationConnectionProfileName = |
| this.destinationConnectionProfileName; |
| final gcsDestinationConfig = this.gcsDestinationConfig; |
| return { |
| 'destinationConnectionProfileName': ?destinationConnectionProfileName, |
| 'gcsDestinationConfig': ?gcsDestinationConfig, |
| }; |
| } |
| } |
| |
| /// Request message for 'discover' ConnectionProfile request. |
| class DiscoverConnectionProfileRequest { |
| /// An ad-hoc ConnectionProfile configuration. |
| ConnectionProfile? connectionProfile; |
| |
| /// A reference to an existing ConnectionProfile. |
| core.String? connectionProfileName; |
| |
| /// MySQL RDBMS to enrich with child data objects and metadata. |
| MysqlRdbms? mysqlRdbms; |
| |
| /// Oracle RDBMS to enrich with child data objects and metadata. |
| OracleRdbms? oracleRdbms; |
| |
| /// The number of hierarchy levels below the current level to be retrieved. |
| core.int? recursionDepth; |
| |
| /// Whether to retrieve the full hierarchy of data objects (TRUE) or only the |
| /// current level (FALSE). |
| core.bool? recursive; |
| |
| DiscoverConnectionProfileRequest({ |
| this.connectionProfile, |
| this.connectionProfileName, |
| this.mysqlRdbms, |
| this.oracleRdbms, |
| this.recursionDepth, |
| this.recursive, |
| }); |
| |
| DiscoverConnectionProfileRequest.fromJson(core.Map json_) |
| : this( |
| connectionProfile: json_.containsKey('connectionProfile') |
| ? ConnectionProfile.fromJson( |
| json_['connectionProfile'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| connectionProfileName: json_['connectionProfileName'] as core.String?, |
| mysqlRdbms: json_.containsKey('mysqlRdbms') |
| ? MysqlRdbms.fromJson( |
| json_['mysqlRdbms'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| oracleRdbms: json_.containsKey('oracleRdbms') |
| ? OracleRdbms.fromJson( |
| json_['oracleRdbms'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| recursionDepth: json_['recursionDepth'] as core.int?, |
| recursive: json_['recursive'] as core.bool?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final connectionProfile = this.connectionProfile; |
| final connectionProfileName = this.connectionProfileName; |
| final mysqlRdbms = this.mysqlRdbms; |
| final oracleRdbms = this.oracleRdbms; |
| final recursionDepth = this.recursionDepth; |
| final recursive = this.recursive; |
| return { |
| 'connectionProfile': ?connectionProfile, |
| 'connectionProfileName': ?connectionProfileName, |
| 'mysqlRdbms': ?mysqlRdbms, |
| 'oracleRdbms': ?oracleRdbms, |
| 'recursionDepth': ?recursionDepth, |
| 'recursive': ?recursive, |
| }; |
| } |
| } |
| |
| class DiscoverConnectionProfileResponse { |
| /// Enriched MySQL RDBMS object. |
| MysqlRdbms? mysqlRdbms; |
| |
| /// Enriched Oracle RDBMS object. |
| OracleRdbms? oracleRdbms; |
| |
| DiscoverConnectionProfileResponse({this.mysqlRdbms, this.oracleRdbms}); |
| |
| DiscoverConnectionProfileResponse.fromJson(core.Map json_) |
| : this( |
| mysqlRdbms: json_.containsKey('mysqlRdbms') |
| ? MysqlRdbms.fromJson( |
| json_['mysqlRdbms'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| oracleRdbms: json_.containsKey('oracleRdbms') |
| ? OracleRdbms.fromJson( |
| json_['oracleRdbms'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final mysqlRdbms = this.mysqlRdbms; |
| final oracleRdbms = this.oracleRdbms; |
| return {'mysqlRdbms': ?mysqlRdbms, 'oracleRdbms': ?oracleRdbms}; |
| } |
| } |
| |
| /// Configuration to drop large object values. |
| typedef DropLargeObjects = $Empty; |
| |
| /// A generic empty message that you can re-use to avoid defining duplicated |
| /// empty messages in your APIs. |
| /// |
| /// A typical example is to use it as the request or the response type of an API |
| /// method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns |
| /// (google.protobuf.Empty); } |
| typedef Empty = $Empty; |
| |
| /// Represent a user-facing Error. |
| class Error { |
| /// Additional information about the error. |
| core.Map<core.String, core.String>? details; |
| |
| /// The time when the error occurred. |
| core.String? errorTime; |
| |
| /// A unique identifier for this specific error, allowing it to be traced |
| /// throughout the system in logs and API responses. |
| core.String? errorUuid; |
| |
| /// A message containing more information about the error that occurred. |
| core.String? message; |
| |
| /// A title that explains the reason for the error. |
| core.String? reason; |
| |
| Error({ |
| this.details, |
| this.errorTime, |
| this.errorUuid, |
| this.message, |
| this.reason, |
| }); |
| |
| Error.fromJson(core.Map json_) |
| : this( |
| details: (json_['details'] as core.Map<core.String, core.dynamic>?) |
| ?.map((key, value) => core.MapEntry(key, value as core.String)), |
| errorTime: json_['errorTime'] as core.String?, |
| errorUuid: json_['errorUuid'] as core.String?, |
| message: json_['message'] as core.String?, |
| reason: json_['reason'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final details = this.details; |
| final errorTime = this.errorTime; |
| final errorUuid = this.errorUuid; |
| final message = this.message; |
| final reason = this.reason; |
| return { |
| 'details': ?details, |
| 'errorTime': ?errorTime, |
| 'errorUuid': ?errorUuid, |
| 'message': ?message, |
| 'reason': ?reason, |
| }; |
| } |
| } |
| |
| /// Request message for 'FetchErrors' request. |
| typedef FetchErrorsRequest = $Empty; |
| |
| /// Response message for a 'FetchStaticIps' response. |
| class FetchStaticIpsResponse { |
| /// A token that can be sent as `page_token` to retrieve the next page. |
| /// |
| /// If this field is omitted, there are no subsequent pages. |
| core.String? nextPageToken; |
| |
| /// list of static ips by account |
| core.List<core.String>? staticIps; |
| |
| FetchStaticIpsResponse({this.nextPageToken, this.staticIps}); |
| |
| FetchStaticIpsResponse.fromJson(core.Map json_) |
| : this( |
| nextPageToken: json_['nextPageToken'] as core.String?, |
| staticIps: (json_['staticIps'] as core.List?) |
| ?.map((value) => value as core.String) |
| .toList(), |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final nextPageToken = this.nextPageToken; |
| final staticIps = this.staticIps; |
| return {'nextPageToken': ?nextPageToken, 'staticIps': ?staticIps}; |
| } |
| } |
| |
| /// Forward SSH Tunnel connectivity. |
| class ForwardSshTunnelConnectivity { |
| /// Hostname for the SSH tunnel. |
| /// |
| /// Required. |
| core.String? hostname; |
| |
| /// Input only. |
| /// |
| /// SSH password. |
| core.String? password; |
| |
| /// Port for the SSH tunnel, default value is 22. |
| core.int? port; |
| |
| /// Input only. |
| /// |
| /// SSH private key. |
| core.String? privateKey; |
| |
| /// Username for the SSH tunnel. |
| /// |
| /// Required. |
| core.String? username; |
| |
| ForwardSshTunnelConnectivity({ |
| this.hostname, |
| this.password, |
| this.port, |
| this.privateKey, |
| this.username, |
| }); |
| |
| ForwardSshTunnelConnectivity.fromJson(core.Map json_) |
| : this( |
| hostname: json_['hostname'] as core.String?, |
| password: json_['password'] as core.String?, |
| port: json_['port'] as core.int?, |
| privateKey: json_['privateKey'] as core.String?, |
| username: json_['username'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final hostname = this.hostname; |
| final password = this.password; |
| final port = this.port; |
| final privateKey = this.privateKey; |
| final username = this.username; |
| return { |
| 'hostname': ?hostname, |
| 'password': ?password, |
| 'port': ?port, |
| 'privateKey': ?privateKey, |
| 'username': ?username, |
| }; |
| } |
| } |
| |
| /// Google Cloud Storage destination configuration |
| class GcsDestinationConfig { |
| /// AVRO file format configuration. |
| AvroFileFormat? avroFileFormat; |
| |
| /// The maximum duration for which new events are added before a file is |
| /// closed and a new file is created. |
| core.String? fileRotationInterval; |
| |
| /// The maximum file size to be saved in the bucket. |
| core.int? fileRotationMb; |
| |
| /// File format that data should be written in. |
| /// |
| /// Deprecated field (b/169501737) - use file_format instead. |
| /// Possible string values are: |
| /// - "GCS_FILE_FORMAT_UNSPECIFIED" : Unspecified Cloud Storage file format. |
| /// - "AVRO" : Avro file format |
| @core.Deprecated( |
| 'Not supported. Member documentation may have more information.', |
| ) |
| core.String? gcsFileFormat; |
| |
| /// JSON file format configuration. |
| JsonFileFormat? jsonFileFormat; |
| |
| /// Path inside the Cloud Storage bucket to write data to. |
| core.String? path; |
| |
| GcsDestinationConfig({ |
| this.avroFileFormat, |
| this.fileRotationInterval, |
| this.fileRotationMb, |
| this.gcsFileFormat, |
| this.jsonFileFormat, |
| this.path, |
| }); |
| |
| GcsDestinationConfig.fromJson(core.Map json_) |
| : this( |
| avroFileFormat: json_.containsKey('avroFileFormat') |
| ? AvroFileFormat.fromJson( |
| json_['avroFileFormat'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| fileRotationInterval: json_['fileRotationInterval'] as core.String?, |
| fileRotationMb: json_['fileRotationMb'] as core.int?, |
| gcsFileFormat: json_['gcsFileFormat'] as core.String?, |
| jsonFileFormat: json_.containsKey('jsonFileFormat') |
| ? JsonFileFormat.fromJson( |
| json_['jsonFileFormat'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| path: json_['path'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final avroFileFormat = this.avroFileFormat; |
| final fileRotationInterval = this.fileRotationInterval; |
| final fileRotationMb = this.fileRotationMb; |
| final gcsFileFormat = this.gcsFileFormat; |
| final jsonFileFormat = this.jsonFileFormat; |
| final path = this.path; |
| return { |
| 'avroFileFormat': ?avroFileFormat, |
| 'fileRotationInterval': ?fileRotationInterval, |
| 'fileRotationMb': ?fileRotationMb, |
| 'gcsFileFormat': ?gcsFileFormat, |
| 'jsonFileFormat': ?jsonFileFormat, |
| 'path': ?path, |
| }; |
| } |
| } |
| |
| /// Cloud Storage bucket profile. |
| class GcsProfile { |
| /// The full project and resource path for Cloud Storage bucket including the |
| /// name. |
| /// |
| /// Required. |
| core.String? bucketName; |
| |
| /// The root path inside the Cloud Storage bucket. |
| core.String? rootPath; |
| |
| GcsProfile({this.bucketName, this.rootPath}); |
| |
| GcsProfile.fromJson(core.Map json_) |
| : this( |
| bucketName: json_['bucketName'] as core.String?, |
| rootPath: json_['rootPath'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final bucketName = this.bucketName; |
| final rootPath = this.rootPath; |
| return {'bucketName': ?bucketName, 'rootPath': ?rootPath}; |
| } |
| } |
| |
| /// JSON file format configuration. |
| class JsonFileFormat { |
| /// Compression of the loaded JSON file. |
| /// Possible string values are: |
| /// - "JSON_COMPRESSION_UNSPECIFIED" : Unspecified json file compression. |
| /// - "NO_COMPRESSION" : Do not compress JSON file. |
| /// - "GZIP" : Gzip compression. |
| core.String? compression; |
| |
| /// The schema file format along JSON data files. |
| /// Possible string values are: |
| /// - "SCHEMA_FILE_FORMAT_UNSPECIFIED" : Unspecified schema file format. |
| /// - "NO_SCHEMA_FILE" : Do not attach schema file. |
| /// - "AVRO_SCHEMA_FILE" : Avro schema format. |
| core.String? schemaFileFormat; |
| |
| JsonFileFormat({this.compression, this.schemaFileFormat}); |
| |
| JsonFileFormat.fromJson(core.Map json_) |
| : this( |
| compression: json_['compression'] as core.String?, |
| schemaFileFormat: json_['schemaFileFormat'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final compression = this.compression; |
| final schemaFileFormat = this.schemaFileFormat; |
| return {'compression': ?compression, 'schemaFileFormat': ?schemaFileFormat}; |
| } |
| } |
| |
| class ListConnectionProfilesResponse { |
| /// List of connection profiles. |
| core.List<ConnectionProfile>? connectionProfiles; |
| |
| /// A token, which can be sent as `page_token` to retrieve the next page. |
| /// |
| /// If this field is omitted, there are no subsequent pages. |
| core.String? nextPageToken; |
| |
| /// Locations that could not be reached. |
| core.List<core.String>? unreachable; |
| |
| ListConnectionProfilesResponse({ |
| this.connectionProfiles, |
| this.nextPageToken, |
| this.unreachable, |
| }); |
| |
| ListConnectionProfilesResponse.fromJson(core.Map json_) |
| : this( |
| connectionProfiles: (json_['connectionProfiles'] as core.List?) |
| ?.map( |
| (value) => ConnectionProfile.fromJson( |
| value as core.Map<core.String, core.dynamic>, |
| ), |
| ) |
| .toList(), |
| nextPageToken: json_['nextPageToken'] as core.String?, |
| unreachable: (json_['unreachable'] as core.List?) |
| ?.map((value) => value as core.String) |
| .toList(), |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final connectionProfiles = this.connectionProfiles; |
| final nextPageToken = this.nextPageToken; |
| final unreachable = this.unreachable; |
| return { |
| 'connectionProfiles': ?connectionProfiles, |
| 'nextPageToken': ?nextPageToken, |
| '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({this.locations, this.nextPageToken}); |
| |
| ListLocationsResponse.fromJson(core.Map json_) |
| : this( |
| locations: (json_['locations'] as core.List?) |
| ?.map( |
| (value) => Location.fromJson( |
| value as core.Map<core.String, core.dynamic>, |
| ), |
| ) |
| .toList(), |
| nextPageToken: json_['nextPageToken'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final locations = this.locations; |
| final nextPageToken = this.nextPageToken; |
| return {'locations': ?locations, '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; |
| |
| /// Unordered list. |
| /// |
| /// Unreachable resources. Populated when the request sets |
| /// `ListOperationsRequest.return_partial_success` and reads across |
| /// collections. For example, when attempting to list all resources across all |
| /// supported locations. |
| core.List<core.String>? unreachable; |
| |
| ListOperationsResponse({ |
| this.nextPageToken, |
| this.operations, |
| this.unreachable, |
| }); |
| |
| ListOperationsResponse.fromJson(core.Map json_) |
| : this( |
| nextPageToken: json_['nextPageToken'] as core.String?, |
| operations: (json_['operations'] as core.List?) |
| ?.map( |
| (value) => Operation.fromJson( |
| value as core.Map<core.String, core.dynamic>, |
| ), |
| ) |
| .toList(), |
| unreachable: (json_['unreachable'] as core.List?) |
| ?.map((value) => value as core.String) |
| .toList(), |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final nextPageToken = this.nextPageToken; |
| final operations = this.operations; |
| final unreachable = this.unreachable; |
| return { |
| 'nextPageToken': ?nextPageToken, |
| 'operations': ?operations, |
| 'unreachable': ?unreachable, |
| }; |
| } |
| } |
| |
| class ListPrivateConnectionsResponse { |
| /// A token, which can be sent as `page_token` to retrieve the next page. |
| /// |
| /// If this field is omitted, there are no subsequent pages. |
| core.String? nextPageToken; |
| |
| /// List of private connectivity configurations. |
| core.List<PrivateConnection>? privateConnections; |
| |
| /// Locations that could not be reached. |
| core.List<core.String>? unreachable; |
| |
| ListPrivateConnectionsResponse({ |
| this.nextPageToken, |
| this.privateConnections, |
| this.unreachable, |
| }); |
| |
| ListPrivateConnectionsResponse.fromJson(core.Map json_) |
| : this( |
| nextPageToken: json_['nextPageToken'] as core.String?, |
| privateConnections: (json_['privateConnections'] as core.List?) |
| ?.map( |
| (value) => PrivateConnection.fromJson( |
| value as core.Map<core.String, core.dynamic>, |
| ), |
| ) |
| .toList(), |
| unreachable: (json_['unreachable'] as core.List?) |
| ?.map((value) => value as core.String) |
| .toList(), |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final nextPageToken = this.nextPageToken; |
| final privateConnections = this.privateConnections; |
| final unreachable = this.unreachable; |
| return { |
| 'nextPageToken': ?nextPageToken, |
| 'privateConnections': ?privateConnections, |
| 'unreachable': ?unreachable, |
| }; |
| } |
| } |
| |
| /// route list response |
| class ListRoutesResponse { |
| /// A token, which can be sent as `page_token` to retrieve the next page. |
| /// |
| /// If this field is omitted, there are no subsequent pages. |
| core.String? nextPageToken; |
| |
| /// List of Routes. |
| core.List<Route>? routes; |
| |
| /// Locations that could not be reached. |
| core.List<core.String>? unreachable; |
| |
| ListRoutesResponse({this.nextPageToken, this.routes, this.unreachable}); |
| |
| ListRoutesResponse.fromJson(core.Map json_) |
| : this( |
| nextPageToken: json_['nextPageToken'] as core.String?, |
| routes: (json_['routes'] as core.List?) |
| ?.map( |
| (value) => |
| Route.fromJson(value as core.Map<core.String, core.dynamic>), |
| ) |
| .toList(), |
| unreachable: (json_['unreachable'] as core.List?) |
| ?.map((value) => value as core.String) |
| .toList(), |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final nextPageToken = this.nextPageToken; |
| final routes = this.routes; |
| final unreachable = this.unreachable; |
| return { |
| 'nextPageToken': ?nextPageToken, |
| 'routes': ?routes, |
| 'unreachable': ?unreachable, |
| }; |
| } |
| } |
| |
| /// Response containing the objects for a stream. |
| class ListStreamObjectsResponse { |
| /// A token, which can be sent as `page_token` to retrieve the next page. |
| core.String? nextPageToken; |
| |
| /// List of stream objects. |
| core.List<StreamObject>? streamObjects; |
| |
| ListStreamObjectsResponse({this.nextPageToken, this.streamObjects}); |
| |
| ListStreamObjectsResponse.fromJson(core.Map json_) |
| : this( |
| nextPageToken: json_['nextPageToken'] as core.String?, |
| streamObjects: (json_['streamObjects'] as core.List?) |
| ?.map( |
| (value) => StreamObject.fromJson( |
| value as core.Map<core.String, core.dynamic>, |
| ), |
| ) |
| .toList(), |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final nextPageToken = this.nextPageToken; |
| final streamObjects = this.streamObjects; |
| return {'nextPageToken': ?nextPageToken, 'streamObjects': ?streamObjects}; |
| } |
| } |
| |
| class ListStreamsResponse { |
| /// A token, which can be sent as `page_token` to retrieve the next page. |
| /// |
| /// If this field is omitted, there are no subsequent pages. |
| core.String? nextPageToken; |
| |
| /// List of streams |
| core.List<Stream>? streams; |
| |
| /// Locations that could not be reached. |
| core.List<core.String>? unreachable; |
| |
| ListStreamsResponse({this.nextPageToken, this.streams, this.unreachable}); |
| |
| ListStreamsResponse.fromJson(core.Map json_) |
| : this( |
| nextPageToken: json_['nextPageToken'] as core.String?, |
| streams: (json_['streams'] as core.List?) |
| ?.map( |
| (value) => |
| Stream.fromJson(value as core.Map<core.String, core.dynamic>), |
| ) |
| .toList(), |
| unreachable: (json_['unreachable'] as core.List?) |
| ?.map((value) => value as core.String) |
| .toList(), |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final nextPageToken = this.nextPageToken; |
| final streams = this.streams; |
| final unreachable = this.unreachable; |
| return { |
| 'nextPageToken': ?nextPageToken, |
| 'streams': ?streams, |
| 'unreachable': ?unreachable, |
| }; |
| } |
| } |
| |
| /// A resource that represents a Google Cloud location. |
| typedef Location = $Location; |
| |
| /// MySQL Column. |
| class MysqlColumn { |
| /// Column collation. |
| core.String? collation; |
| |
| /// Column name. |
| core.String? columnName; |
| |
| /// The MySQL data type. |
| /// |
| /// Full data types list can be found here: |
| /// https://dev.mysql.com/doc/refman/8.0/en/data-types.html |
| core.String? dataType; |
| |
| /// Column length. |
| core.int? length; |
| |
| /// Whether or not the column can accept a null value. |
| core.bool? nullable; |
| |
| /// The ordinal position of the column in the table. |
| core.int? ordinalPosition; |
| |
| /// Whether or not the column represents a primary key. |
| core.bool? primaryKey; |
| |
| MysqlColumn({ |
| this.collation, |
| this.columnName, |
| this.dataType, |
| this.length, |
| this.nullable, |
| this.ordinalPosition, |
| this.primaryKey, |
| }); |
| |
| MysqlColumn.fromJson(core.Map json_) |
| : this( |
| collation: json_['collation'] as core.String?, |
| columnName: json_['columnName'] as core.String?, |
| dataType: json_['dataType'] as core.String?, |
| length: json_['length'] as core.int?, |
| nullable: json_['nullable'] as core.bool?, |
| ordinalPosition: json_['ordinalPosition'] as core.int?, |
| primaryKey: json_['primaryKey'] as core.bool?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final collation = this.collation; |
| final columnName = this.columnName; |
| final dataType = this.dataType; |
| final length = this.length; |
| final nullable = this.nullable; |
| final ordinalPosition = this.ordinalPosition; |
| final primaryKey = this.primaryKey; |
| return { |
| 'collation': ?collation, |
| 'columnName': ?columnName, |
| 'dataType': ?dataType, |
| 'length': ?length, |
| 'nullable': ?nullable, |
| 'ordinalPosition': ?ordinalPosition, |
| 'primaryKey': ?primaryKey, |
| }; |
| } |
| } |
| |
| /// MySQL database. |
| class MysqlDatabase { |
| /// Database name. |
| core.String? databaseName; |
| |
| /// Tables in the database. |
| core.List<MysqlTable>? mysqlTables; |
| |
| MysqlDatabase({this.databaseName, this.mysqlTables}); |
| |
| MysqlDatabase.fromJson(core.Map json_) |
| : this( |
| databaseName: json_['databaseName'] as core.String?, |
| mysqlTables: (json_['mysqlTables'] as core.List?) |
| ?.map( |
| (value) => MysqlTable.fromJson( |
| value as core.Map<core.String, core.dynamic>, |
| ), |
| ) |
| .toList(), |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final databaseName = this.databaseName; |
| final mysqlTables = this.mysqlTables; |
| return {'databaseName': ?databaseName, 'mysqlTables': ?mysqlTables}; |
| } |
| } |
| |
| /// Mysql data source object identifier. |
| class MysqlObjectIdentifier { |
| /// The database name. |
| /// |
| /// Required. |
| core.String? database; |
| |
| /// The table name. |
| /// |
| /// Required. |
| core.String? table; |
| |
| MysqlObjectIdentifier({this.database, this.table}); |
| |
| MysqlObjectIdentifier.fromJson(core.Map json_) |
| : this( |
| database: json_['database'] as core.String?, |
| table: json_['table'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final database = this.database; |
| final table = this.table; |
| return {'database': ?database, 'table': ?table}; |
| } |
| } |
| |
| /// MySQL database profile. |
| class MysqlProfile { |
| /// Hostname for the MySQL connection. |
| /// |
| /// Required. |
| core.String? hostname; |
| |
| /// Input only. |
| /// |
| /// Password for the MySQL connection. |
| /// |
| /// Required. |
| core.String? password; |
| |
| /// Port for the MySQL connection, default value is 3306. |
| core.int? port; |
| |
| /// SSL configuration for the MySQL connection. |
| MysqlSslConfig? sslConfig; |
| |
| /// Username for the MySQL connection. |
| /// |
| /// Required. |
| core.String? username; |
| |
| MysqlProfile({ |
| this.hostname, |
| this.password, |
| this.port, |
| this.sslConfig, |
| this.username, |
| }); |
| |
| MysqlProfile.fromJson(core.Map json_) |
| : this( |
| hostname: json_['hostname'] as core.String?, |
| password: json_['password'] as core.String?, |
| port: json_['port'] as core.int?, |
| sslConfig: json_.containsKey('sslConfig') |
| ? MysqlSslConfig.fromJson( |
| json_['sslConfig'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| username: json_['username'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final hostname = this.hostname; |
| final password = this.password; |
| final port = this.port; |
| final sslConfig = this.sslConfig; |
| final username = this.username; |
| return { |
| 'hostname': ?hostname, |
| 'password': ?password, |
| 'port': ?port, |
| 'sslConfig': ?sslConfig, |
| 'username': ?username, |
| }; |
| } |
| } |
| |
| /// MySQL database structure |
| class MysqlRdbms { |
| /// Mysql databases on the server |
| core.List<MysqlDatabase>? mysqlDatabases; |
| |
| MysqlRdbms({this.mysqlDatabases}); |
| |
| MysqlRdbms.fromJson(core.Map json_) |
| : this( |
| mysqlDatabases: (json_['mysqlDatabases'] as core.List?) |
| ?.map( |
| (value) => MysqlDatabase.fromJson( |
| value as core.Map<core.String, core.dynamic>, |
| ), |
| ) |
| .toList(), |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final mysqlDatabases = this.mysqlDatabases; |
| return {'mysqlDatabases': ?mysqlDatabases}; |
| } |
| } |
| |
| /// MySQL source configuration |
| class MysqlSourceConfig { |
| /// MySQL objects to retrieve from the source. |
| MysqlRdbms? allowlist; |
| |
| /// MySQL objects to exclude from the stream. |
| MysqlRdbms? rejectlist; |
| |
| MysqlSourceConfig({this.allowlist, this.rejectlist}); |
| |
| MysqlSourceConfig.fromJson(core.Map json_) |
| : this( |
| allowlist: json_.containsKey('allowlist') |
| ? MysqlRdbms.fromJson( |
| json_['allowlist'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| rejectlist: json_.containsKey('rejectlist') |
| ? MysqlRdbms.fromJson( |
| json_['rejectlist'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final allowlist = this.allowlist; |
| final rejectlist = this.rejectlist; |
| return {'allowlist': ?allowlist, 'rejectlist': ?rejectlist}; |
| } |
| } |
| |
| /// MySQL SSL configuration information. |
| class MysqlSslConfig { |
| /// Input only. |
| /// |
| /// PEM-encoded certificate of the CA that signed the source database server's |
| /// certificate. |
| core.String? caCertificate; |
| |
| /// Indicates whether the ca_certificate field is set. |
| /// |
| /// Output only. |
| core.bool? caCertificateSet; |
| |
| /// Input only. |
| /// |
| /// PEM-encoded certificate that will be used by the replica to authenticate |
| /// against the source database server. If this field is used then the |
| /// 'client_key' and the 'ca_certificate' fields are mandatory. |
| core.String? clientCertificate; |
| |
| /// Indicates whether the client_certificate field is set. |
| /// |
| /// Output only. |
| core.bool? clientCertificateSet; |
| |
| /// Input only. |
| /// |
| /// PEM-encoded private key associated with the Client Certificate. If this |
| /// field is used then the 'client_certificate' and the 'ca_certificate' |
| /// fields are mandatory. |
| core.String? clientKey; |
| |
| /// Indicates whether the client_key field is set. |
| /// |
| /// Output only. |
| core.bool? clientKeySet; |
| |
| MysqlSslConfig({ |
| this.caCertificate, |
| this.caCertificateSet, |
| this.clientCertificate, |
| this.clientCertificateSet, |
| this.clientKey, |
| this.clientKeySet, |
| }); |
| |
| MysqlSslConfig.fromJson(core.Map json_) |
| : this( |
| caCertificate: json_['caCertificate'] as core.String?, |
| caCertificateSet: json_['caCertificateSet'] as core.bool?, |
| clientCertificate: json_['clientCertificate'] as core.String?, |
| clientCertificateSet: json_['clientCertificateSet'] as core.bool?, |
| clientKey: json_['clientKey'] as core.String?, |
| clientKeySet: json_['clientKeySet'] as core.bool?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final caCertificate = this.caCertificate; |
| final caCertificateSet = this.caCertificateSet; |
| final clientCertificate = this.clientCertificate; |
| final clientCertificateSet = this.clientCertificateSet; |
| final clientKey = this.clientKey; |
| final clientKeySet = this.clientKeySet; |
| return { |
| 'caCertificate': ?caCertificate, |
| 'caCertificateSet': ?caCertificateSet, |
| 'clientCertificate': ?clientCertificate, |
| 'clientCertificateSet': ?clientCertificateSet, |
| 'clientKey': ?clientKey, |
| 'clientKeySet': ?clientKeySet, |
| }; |
| } |
| } |
| |
| /// MySQL table. |
| class MysqlTable { |
| /// MySQL columns in the database. |
| /// |
| /// When unspecified as part of include/exclude lists, includes/excludes |
| /// everything. |
| core.List<MysqlColumn>? mysqlColumns; |
| |
| /// Table name. |
| core.String? tableName; |
| |
| MysqlTable({this.mysqlColumns, this.tableName}); |
| |
| MysqlTable.fromJson(core.Map json_) |
| : this( |
| mysqlColumns: (json_['mysqlColumns'] as core.List?) |
| ?.map( |
| (value) => MysqlColumn.fromJson( |
| value as core.Map<core.String, core.dynamic>, |
| ), |
| ) |
| .toList(), |
| tableName: json_['tableName'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final mysqlColumns = this.mysqlColumns; |
| final tableName = this.tableName; |
| return {'mysqlColumns': ?mysqlColumns, 'tableName': ?tableName}; |
| } |
| } |
| |
| /// No connectivity settings. |
| typedef NoConnectivitySettings = $Empty; |
| |
| /// 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, successful response of the operation. |
| /// |
| /// 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({this.done, this.error, this.metadata, this.name, this.response}); |
| |
| Operation.fromJson(core.Map json_) |
| : this( |
| done: json_['done'] as core.bool?, |
| error: json_.containsKey('error') |
| ? Status.fromJson( |
| json_['error'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| metadata: json_.containsKey('metadata') |
| ? json_['metadata'] as core.Map<core.String, core.dynamic> |
| : null, |
| name: json_['name'] as core.String?, |
| response: json_.containsKey('response') |
| ? json_['response'] as core.Map<core.String, core.dynamic> |
| : null, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final done = this.done; |
| final error = this.error; |
| final metadata = this.metadata; |
| final name = this.name; |
| final response = this.response; |
| return { |
| 'done': ?done, |
| 'error': ?error, |
| 'metadata': ?metadata, |
| 'name': ?name, |
| 'response': ?response, |
| }; |
| } |
| } |
| |
| /// Oracle Column. |
| class OracleColumn { |
| /// Column name. |
| core.String? columnName; |
| |
| /// The Oracle data type. |
| core.String? dataType; |
| |
| /// Column encoding. |
| core.String? encoding; |
| |
| /// Column length. |
| core.int? length; |
| |
| /// Whether or not the column can accept a null value. |
| core.bool? nullable; |
| |
| /// The ordinal position of the column in the table. |
| core.int? ordinalPosition; |
| |
| /// Column precision. |
| core.int? precision; |
| |
| /// Whether or not the column represents a primary key. |
| core.bool? primaryKey; |
| |
| /// Column scale. |
| core.int? scale; |
| |
| OracleColumn({ |
| this.columnName, |
| this.dataType, |
| this.encoding, |
| this.length, |
| this.nullable, |
| this.ordinalPosition, |
| this.precision, |
| this.primaryKey, |
| this.scale, |
| }); |
| |
| OracleColumn.fromJson(core.Map json_) |
| : this( |
| columnName: json_['columnName'] as core.String?, |
| dataType: json_['dataType'] as core.String?, |
| encoding: json_['encoding'] as core.String?, |
| length: json_['length'] as core.int?, |
| nullable: json_['nullable'] as core.bool?, |
| ordinalPosition: json_['ordinalPosition'] as core.int?, |
| precision: json_['precision'] as core.int?, |
| primaryKey: json_['primaryKey'] as core.bool?, |
| scale: json_['scale'] as core.int?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final columnName = this.columnName; |
| final dataType = this.dataType; |
| final encoding = this.encoding; |
| final length = this.length; |
| final nullable = this.nullable; |
| final ordinalPosition = this.ordinalPosition; |
| final precision = this.precision; |
| final primaryKey = this.primaryKey; |
| final scale = this.scale; |
| return { |
| 'columnName': ?columnName, |
| 'dataType': ?dataType, |
| 'encoding': ?encoding, |
| 'length': ?length, |
| 'nullable': ?nullable, |
| 'ordinalPosition': ?ordinalPosition, |
| 'precision': ?precision, |
| 'primaryKey': ?primaryKey, |
| 'scale': ?scale, |
| }; |
| } |
| } |
| |
| /// Oracle data source object identifier. |
| class OracleObjectIdentifier { |
| /// The schema name. |
| /// |
| /// Required. |
| core.String? schema; |
| |
| /// The table name. |
| /// |
| /// Required. |
| core.String? table; |
| |
| OracleObjectIdentifier({this.schema, this.table}); |
| |
| OracleObjectIdentifier.fromJson(core.Map json_) |
| : this( |
| schema: json_['schema'] as core.String?, |
| table: json_['table'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final schema = this.schema; |
| final table = this.table; |
| return {'schema': ?schema, 'table': ?table}; |
| } |
| } |
| |
| /// Oracle database profile. |
| class OracleProfile { |
| /// Connection string attributes |
| core.Map<core.String, core.String>? connectionAttributes; |
| |
| /// Database for the Oracle connection. |
| /// |
| /// Required. |
| core.String? databaseService; |
| |
| /// Hostname for the Oracle connection. |
| /// |
| /// Required. |
| core.String? hostname; |
| |
| /// Password for the Oracle connection. |
| /// |
| /// Required. |
| core.String? password; |
| |
| /// Port for the Oracle connection, default value is 1521. |
| core.int? port; |
| |
| /// Username for the Oracle connection. |
| /// |
| /// Required. |
| core.String? username; |
| |
| OracleProfile({ |
| this.connectionAttributes, |
| this.databaseService, |
| this.hostname, |
| this.password, |
| this.port, |
| this.username, |
| }); |
| |
| OracleProfile.fromJson(core.Map json_) |
| : this( |
| connectionAttributes: |
| (json_['connectionAttributes'] |
| as core.Map<core.String, core.dynamic>?) |
| ?.map((key, value) => core.MapEntry(key, value as core.String)), |
| databaseService: json_['databaseService'] as core.String?, |
| hostname: json_['hostname'] as core.String?, |
| password: json_['password'] as core.String?, |
| port: json_['port'] as core.int?, |
| username: json_['username'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final connectionAttributes = this.connectionAttributes; |
| final databaseService = this.databaseService; |
| final hostname = this.hostname; |
| final password = this.password; |
| final port = this.port; |
| final username = this.username; |
| return { |
| 'connectionAttributes': ?connectionAttributes, |
| 'databaseService': ?databaseService, |
| 'hostname': ?hostname, |
| 'password': ?password, |
| 'port': ?port, |
| 'username': ?username, |
| }; |
| } |
| } |
| |
| /// Oracle database structure. |
| class OracleRdbms { |
| /// Oracle schemas/databases in the database server. |
| core.List<OracleSchema>? oracleSchemas; |
| |
| OracleRdbms({this.oracleSchemas}); |
| |
| OracleRdbms.fromJson(core.Map json_) |
| : this( |
| oracleSchemas: (json_['oracleSchemas'] as core.List?) |
| ?.map( |
| (value) => OracleSchema.fromJson( |
| value as core.Map<core.String, core.dynamic>, |
| ), |
| ) |
| .toList(), |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final oracleSchemas = this.oracleSchemas; |
| return {'oracleSchemas': ?oracleSchemas}; |
| } |
| } |
| |
| /// Oracle schema. |
| class OracleSchema { |
| /// Tables in the schema. |
| core.List<OracleTable>? oracleTables; |
| |
| /// Schema name. |
| core.String? schemaName; |
| |
| OracleSchema({this.oracleTables, this.schemaName}); |
| |
| OracleSchema.fromJson(core.Map json_) |
| : this( |
| oracleTables: (json_['oracleTables'] as core.List?) |
| ?.map( |
| (value) => OracleTable.fromJson( |
| value as core.Map<core.String, core.dynamic>, |
| ), |
| ) |
| .toList(), |
| schemaName: json_['schemaName'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final oracleTables = this.oracleTables; |
| final schemaName = this.schemaName; |
| return {'oracleTables': ?oracleTables, 'schemaName': ?schemaName}; |
| } |
| } |
| |
| /// Oracle data source configuration |
| class OracleSourceConfig { |
| /// Oracle objects to include in the stream. |
| OracleRdbms? allowlist; |
| |
| /// Drop large object values. |
| DropLargeObjects? dropLargeObjects; |
| |
| /// Oracle objects to exclude from the stream. |
| OracleRdbms? rejectlist; |
| |
| OracleSourceConfig({this.allowlist, this.dropLargeObjects, this.rejectlist}); |
| |
| OracleSourceConfig.fromJson(core.Map json_) |
| : this( |
| allowlist: json_.containsKey('allowlist') |
| ? OracleRdbms.fromJson( |
| json_['allowlist'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| dropLargeObjects: json_.containsKey('dropLargeObjects') |
| ? DropLargeObjects.fromJson( |
| json_['dropLargeObjects'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| rejectlist: json_.containsKey('rejectlist') |
| ? OracleRdbms.fromJson( |
| json_['rejectlist'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final allowlist = this.allowlist; |
| final dropLargeObjects = this.dropLargeObjects; |
| final rejectlist = this.rejectlist; |
| return { |
| 'allowlist': ?allowlist, |
| 'dropLargeObjects': ?dropLargeObjects, |
| 'rejectlist': ?rejectlist, |
| }; |
| } |
| } |
| |
| /// Oracle table. |
| class OracleTable { |
| /// Oracle columns in the schema. |
| /// |
| /// When unspecified as part of inclue/exclude lists, includes/excludes |
| /// everything. |
| core.List<OracleColumn>? oracleColumns; |
| |
| /// Table name. |
| core.String? tableName; |
| |
| OracleTable({this.oracleColumns, this.tableName}); |
| |
| OracleTable.fromJson(core.Map json_) |
| : this( |
| oracleColumns: (json_['oracleColumns'] as core.List?) |
| ?.map( |
| (value) => OracleColumn.fromJson( |
| value as core.Map<core.String, core.dynamic>, |
| ), |
| ) |
| .toList(), |
| tableName: json_['tableName'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final oracleColumns = this.oracleColumns; |
| final tableName = this.tableName; |
| return {'oracleColumns': ?oracleColumns, 'tableName': ?tableName}; |
| } |
| } |
| |
| /// The PrivateConnection resource is used to establish private connectivity |
| /// between Datastream and a customer's network. |
| class PrivateConnection { |
| /// The create time of the resource. |
| /// |
| /// Output only. |
| core.String? createTime; |
| |
| /// Display name. |
| /// |
| /// Required. |
| core.String? displayName; |
| |
| /// In case of error, the details of the error in a user-friendly format. |
| /// |
| /// Output only. |
| Error? error; |
| |
| /// Labels. |
| core.Map<core.String, core.String>? labels; |
| |
| /// The resource's name. |
| /// |
| /// Output only. |
| core.String? name; |
| |
| /// The state of the Private Connection. |
| /// |
| /// Output only. |
| /// Possible string values are: |
| /// - "STATE_UNSPECIFIED" |
| /// - "CREATING" : The private connection is in creation state - creating |
| /// resources. |
| /// - "CREATED" : The private connection has been created with all of its |
| /// resources. |
| /// - "FAILED" : The private connection creation has failed. |
| /// - "DELETING" : The private connection is being deleted. |
| /// - "FAILED_TO_DELETE" : Delete request has failed, resource is in invalid |
| /// state. |
| core.String? state; |
| |
| /// The update time of the resource. |
| /// |
| /// Output only. |
| core.String? updateTime; |
| |
| /// VPC Peering Config |
| VpcPeeringConfig? vpcPeeringConfig; |
| |
| PrivateConnection({ |
| this.createTime, |
| this.displayName, |
| this.error, |
| this.labels, |
| this.name, |
| this.state, |
| this.updateTime, |
| this.vpcPeeringConfig, |
| }); |
| |
| PrivateConnection.fromJson(core.Map json_) |
| : this( |
| createTime: json_['createTime'] as core.String?, |
| displayName: json_['displayName'] as core.String?, |
| error: json_.containsKey('error') |
| ? Error.fromJson( |
| json_['error'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| labels: (json_['labels'] as core.Map<core.String, core.dynamic>?)?.map( |
| (key, value) => core.MapEntry(key, value as core.String), |
| ), |
| name: json_['name'] as core.String?, |
| state: json_['state'] as core.String?, |
| updateTime: json_['updateTime'] as core.String?, |
| vpcPeeringConfig: json_.containsKey('vpcPeeringConfig') |
| ? VpcPeeringConfig.fromJson( |
| json_['vpcPeeringConfig'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final createTime = this.createTime; |
| final displayName = this.displayName; |
| final error = this.error; |
| final labels = this.labels; |
| final name = this.name; |
| final state = this.state; |
| final updateTime = this.updateTime; |
| final vpcPeeringConfig = this.vpcPeeringConfig; |
| return { |
| 'createTime': ?createTime, |
| 'displayName': ?displayName, |
| 'error': ?error, |
| 'labels': ?labels, |
| 'name': ?name, |
| 'state': ?state, |
| 'updateTime': ?updateTime, |
| 'vpcPeeringConfig': ?vpcPeeringConfig, |
| }; |
| } |
| } |
| |
| /// Private Connectivity |
| class PrivateConnectivity { |
| core.String? privateConnectionName; |
| |
| PrivateConnectivity({this.privateConnectionName}); |
| |
| PrivateConnectivity.fromJson(core.Map json_) |
| : this( |
| privateConnectionName: json_['privateConnectionName'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final privateConnectionName = this.privateConnectionName; |
| return {'privateConnectionName': ?privateConnectionName}; |
| } |
| } |
| |
| /// The Route resource is the child of the PrivateConnection resource. |
| /// |
| /// It used to define a route for a PrivateConnection setup. |
| class Route { |
| /// The create time of the resource. |
| /// |
| /// Output only. |
| core.String? createTime; |
| |
| /// Destination address for connection |
| /// |
| /// Required. |
| core.String? destinationAddress; |
| |
| /// Destination port for connection |
| core.int? destinationPort; |
| |
| /// Display name. |
| /// |
| /// Required. |
| core.String? displayName; |
| |
| /// Labels. |
| core.Map<core.String, core.String>? labels; |
| |
| /// The resource's name. |
| /// |
| /// Output only. |
| core.String? name; |
| |
| /// The update time of the resource. |
| /// |
| /// Output only. |
| core.String? updateTime; |
| |
| Route({ |
| this.createTime, |
| this.destinationAddress, |
| this.destinationPort, |
| this.displayName, |
| this.labels, |
| this.name, |
| this.updateTime, |
| }); |
| |
| Route.fromJson(core.Map json_) |
| : this( |
| createTime: json_['createTime'] as core.String?, |
| destinationAddress: json_['destinationAddress'] as core.String?, |
| destinationPort: json_['destinationPort'] as core.int?, |
| displayName: json_['displayName'] as core.String?, |
| labels: (json_['labels'] as core.Map<core.String, core.dynamic>?)?.map( |
| (key, value) => core.MapEntry(key, value as core.String), |
| ), |
| name: json_['name'] as core.String?, |
| updateTime: json_['updateTime'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final createTime = this.createTime; |
| final destinationAddress = this.destinationAddress; |
| final destinationPort = this.destinationPort; |
| final displayName = this.displayName; |
| final labels = this.labels; |
| final name = this.name; |
| final updateTime = this.updateTime; |
| return { |
| 'createTime': ?createTime, |
| 'destinationAddress': ?destinationAddress, |
| 'destinationPort': ?destinationPort, |
| 'displayName': ?displayName, |
| 'labels': ?labels, |
| 'name': ?name, |
| 'updateTime': ?updateTime, |
| }; |
| } |
| } |
| |
| /// The configuration of the stream source. |
| class SourceConfig { |
| /// MySQL data source configuration |
| MysqlSourceConfig? mysqlSourceConfig; |
| |
| /// Oracle data source configuration |
| OracleSourceConfig? oracleSourceConfig; |
| |
| /// Source connection profile identifier. |
| /// |
| /// Required. |
| core.String? sourceConnectionProfileName; |
| |
| SourceConfig({ |
| this.mysqlSourceConfig, |
| this.oracleSourceConfig, |
| this.sourceConnectionProfileName, |
| }); |
| |
| SourceConfig.fromJson(core.Map json_) |
| : this( |
| mysqlSourceConfig: json_.containsKey('mysqlSourceConfig') |
| ? MysqlSourceConfig.fromJson( |
| json_['mysqlSourceConfig'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| oracleSourceConfig: json_.containsKey('oracleSourceConfig') |
| ? OracleSourceConfig.fromJson( |
| json_['oracleSourceConfig'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| sourceConnectionProfileName: |
| json_['sourceConnectionProfileName'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final mysqlSourceConfig = this.mysqlSourceConfig; |
| final oracleSourceConfig = this.oracleSourceConfig; |
| final sourceConnectionProfileName = this.sourceConnectionProfileName; |
| return { |
| 'mysqlSourceConfig': ?mysqlSourceConfig, |
| 'oracleSourceConfig': ?oracleSourceConfig, |
| 'sourceConnectionProfileName': ?sourceConnectionProfileName, |
| }; |
| } |
| } |
| |
| /// Represents an identifier of an object in the data source. |
| class SourceObjectIdentifier { |
| /// Mysql data source object identifier. |
| MysqlObjectIdentifier? mysqlIdentifier; |
| |
| /// Oracle data source object identifier. |
| OracleObjectIdentifier? oracleIdentifier; |
| |
| SourceObjectIdentifier({this.mysqlIdentifier, this.oracleIdentifier}); |
| |
| SourceObjectIdentifier.fromJson(core.Map json_) |
| : this( |
| mysqlIdentifier: json_.containsKey('mysqlIdentifier') |
| ? MysqlObjectIdentifier.fromJson( |
| json_['mysqlIdentifier'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| oracleIdentifier: json_.containsKey('oracleIdentifier') |
| ? OracleObjectIdentifier.fromJson( |
| json_['oracleIdentifier'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final mysqlIdentifier = this.mysqlIdentifier; |
| final oracleIdentifier = this.oracleIdentifier; |
| return { |
| 'mysqlIdentifier': ?mysqlIdentifier, |
| 'oracleIdentifier': ?oracleIdentifier, |
| }; |
| } |
| } |
| |
| /// Response for manually initiating a backfill job for a specific stream |
| /// object. |
| class StartBackfillJobResponse { |
| /// The stream object resource a backfill job was started for. |
| StreamObject? object; |
| |
| StartBackfillJobResponse({this.object}); |
| |
| StartBackfillJobResponse.fromJson(core.Map json_) |
| : this( |
| object: json_.containsKey('object') |
| ? StreamObject.fromJson( |
| json_['object'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final object = this.object; |
| return {'object': ?object}; |
| } |
| } |
| |
| /// Static IP address connectivity. |
| typedef StaticServiceIpConnectivity = $Empty; |
| |
| /// 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). |
| typedef Status = $Status; |
| |
| /// Response for manually stop a backfill job for a specific stream object. |
| class StopBackfillJobResponse { |
| /// The stream object resource the backfill job was stopped for. |
| StreamObject? object; |
| |
| StopBackfillJobResponse({this.object}); |
| |
| StopBackfillJobResponse.fromJson(core.Map json_) |
| : this( |
| object: json_.containsKey('object') |
| ? StreamObject.fromJson( |
| json_['object'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final object = this.object; |
| return {'object': ?object}; |
| } |
| } |
| |
| class Stream { |
| /// Automatically backfill objects included in the stream source |
| /// configuration. |
| /// |
| /// Specific objects can be excluded. |
| BackfillAllStrategy? backfillAll; |
| |
| /// Do not automatically backfill any objects. |
| BackfillNoneStrategy? backfillNone; |
| |
| /// The creation time of the stream. |
| /// |
| /// Output only. |
| core.String? createTime; |
| |
| /// A reference to a KMS encryption key. |
| /// |
| /// If provided, it will be used to encrypt the data. If left blank, data will |
| /// be encrypted using an internal Stream-specific encryption key provisioned |
| /// through KMS. |
| /// |
| /// Immutable. |
| core.String? customerManagedEncryptionKey; |
| |
| /// Destination connection profile configuration. |
| /// |
| /// Required. |
| DestinationConfig? destinationConfig; |
| |
| /// Display name. |
| /// |
| /// Required. |
| core.String? displayName; |
| |
| /// Errors on the Stream. |
| /// |
| /// Output only. |
| core.List<Error>? errors; |
| |
| /// Labels. |
| core.Map<core.String, core.String>? labels; |
| |
| /// The stream's name. |
| /// |
| /// Output only. |
| core.String? name; |
| |
| /// Source connection profile configuration. |
| /// |
| /// Required. |
| SourceConfig? sourceConfig; |
| |
| /// The state of the stream. |
| /// Possible string values are: |
| /// - "STATE_UNSPECIFIED" : Unspecified stream state. |
| /// - "CREATED" : The stream has been created. |
| /// - "RUNNING" : The stream is running. |
| /// - "PAUSED" : The stream is paused. |
| /// - "MAINTENANCE" : The stream is in maintenance mode. Updates are rejected |
| /// on the resource in this state. |
| /// - "FAILED" : The stream is experiencing an error that is preventing data |
| /// from being streamed. |
| /// - "FAILED_PERMANENTLY" : The stream has experienced a terminal failure. |
| /// - "STARTING" : The stream is starting, but not yet running. |
| /// - "DRAINING" : The Stream is no longer reading new events, but still |
| /// writing events in the buffer. |
| core.String? state; |
| |
| /// The last update time of the stream. |
| /// |
| /// Output only. |
| core.String? updateTime; |
| |
| Stream({ |
| this.backfillAll, |
| this.backfillNone, |
| this.createTime, |
| this.customerManagedEncryptionKey, |
| this.destinationConfig, |
| this.displayName, |
| this.errors, |
| this.labels, |
| this.name, |
| this.sourceConfig, |
| this.state, |
| this.updateTime, |
| }); |
| |
| Stream.fromJson(core.Map json_) |
| : this( |
| backfillAll: json_.containsKey('backfillAll') |
| ? BackfillAllStrategy.fromJson( |
| json_['backfillAll'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| backfillNone: json_.containsKey('backfillNone') |
| ? BackfillNoneStrategy.fromJson( |
| json_['backfillNone'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| createTime: json_['createTime'] as core.String?, |
| customerManagedEncryptionKey: |
| json_['customerManagedEncryptionKey'] as core.String?, |
| destinationConfig: json_.containsKey('destinationConfig') |
| ? DestinationConfig.fromJson( |
| json_['destinationConfig'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| displayName: json_['displayName'] as core.String?, |
| errors: (json_['errors'] as core.List?) |
| ?.map( |
| (value) => |
| Error.fromJson(value as core.Map<core.String, core.dynamic>), |
| ) |
| .toList(), |
| labels: (json_['labels'] as core.Map<core.String, core.dynamic>?)?.map( |
| (key, value) => core.MapEntry(key, value as core.String), |
| ), |
| name: json_['name'] as core.String?, |
| sourceConfig: json_.containsKey('sourceConfig') |
| ? SourceConfig.fromJson( |
| json_['sourceConfig'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| state: json_['state'] as core.String?, |
| updateTime: json_['updateTime'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final backfillAll = this.backfillAll; |
| final backfillNone = this.backfillNone; |
| final createTime = this.createTime; |
| final customerManagedEncryptionKey = this.customerManagedEncryptionKey; |
| final destinationConfig = this.destinationConfig; |
| final displayName = this.displayName; |
| final errors = this.errors; |
| final labels = this.labels; |
| final name = this.name; |
| final sourceConfig = this.sourceConfig; |
| final state = this.state; |
| final updateTime = this.updateTime; |
| return { |
| 'backfillAll': ?backfillAll, |
| 'backfillNone': ?backfillNone, |
| 'createTime': ?createTime, |
| 'customerManagedEncryptionKey': ?customerManagedEncryptionKey, |
| 'destinationConfig': ?destinationConfig, |
| 'displayName': ?displayName, |
| 'errors': ?errors, |
| 'labels': ?labels, |
| 'name': ?name, |
| 'sourceConfig': ?sourceConfig, |
| 'state': ?state, |
| 'updateTime': ?updateTime, |
| }; |
| } |
| } |
| |
| /// A specific stream object (e.g a specific DB table). |
| class StreamObject { |
| /// The latest backfill job that was initiated for the stream object. |
| BackfillJob? backfillJob; |
| |
| /// The creation time of the object. |
| /// |
| /// Output only. |
| core.String? createTime; |
| |
| /// Display name. |
| /// |
| /// Required. |
| core.String? displayName; |
| |
| /// Active errors on the object. |
| /// |
| /// Output only. |
| core.List<Error>? errors; |
| |
| /// The object's name. |
| /// |
| /// Output only. |
| core.String? name; |
| |
| /// The object identifier in the data source. |
| SourceObjectIdentifier? sourceObject; |
| |
| /// The last update time of the object. |
| /// |
| /// Output only. |
| core.String? updateTime; |
| |
| StreamObject({ |
| this.backfillJob, |
| this.createTime, |
| this.displayName, |
| this.errors, |
| this.name, |
| this.sourceObject, |
| this.updateTime, |
| }); |
| |
| StreamObject.fromJson(core.Map json_) |
| : this( |
| backfillJob: json_.containsKey('backfillJob') |
| ? BackfillJob.fromJson( |
| json_['backfillJob'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| createTime: json_['createTime'] as core.String?, |
| displayName: json_['displayName'] as core.String?, |
| errors: (json_['errors'] as core.List?) |
| ?.map( |
| (value) => |
| Error.fromJson(value as core.Map<core.String, core.dynamic>), |
| ) |
| .toList(), |
| name: json_['name'] as core.String?, |
| sourceObject: json_.containsKey('sourceObject') |
| ? SourceObjectIdentifier.fromJson( |
| json_['sourceObject'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| updateTime: json_['updateTime'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final backfillJob = this.backfillJob; |
| final createTime = this.createTime; |
| final displayName = this.displayName; |
| final errors = this.errors; |
| final name = this.name; |
| final sourceObject = this.sourceObject; |
| final updateTime = this.updateTime; |
| return { |
| 'backfillJob': ?backfillJob, |
| 'createTime': ?createTime, |
| 'displayName': ?displayName, |
| 'errors': ?errors, |
| 'name': ?name, |
| 'sourceObject': ?sourceObject, |
| 'updateTime': ?updateTime, |
| }; |
| } |
| } |
| |
| /// The VPC Peering configuration is used to create VPC peering between |
| /// Datastream and the consumer's VPC. |
| class VpcPeeringConfig { |
| /// A free subnet for peering. |
| /// |
| /// (CIDR of /29) |
| /// |
| /// Required. |
| core.String? subnet; |
| |
| /// fully qualified name of the VPC Datastream will peer to. |
| /// |
| /// Required. |
| core.String? vpcName; |
| |
| VpcPeeringConfig({this.subnet, this.vpcName}); |
| |
| VpcPeeringConfig.fromJson(core.Map json_) |
| : this( |
| subnet: json_['subnet'] as core.String?, |
| vpcName: json_['vpcName'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final subnet = this.subnet; |
| final vpcName = this.vpcName; |
| return {'subnet': ?subnet, 'vpcName': ?vpcName}; |
| } |
| } |