google-cloud-dataplex-v1 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/dataplex/v1/bindings_override.rb +327 -0
- data/lib/google/cloud/dataplex/v1/content_service/client.rb +4 -6
- data/lib/google/cloud/dataplex/v1/content_service/rest/client.rb +969 -0
- data/lib/google/cloud/dataplex/v1/content_service/rest/service_stub.rb +584 -0
- data/lib/google/cloud/dataplex/v1/content_service/rest.rb +53 -0
- data/lib/google/cloud/dataplex/v1/content_service.rb +6 -0
- data/lib/google/cloud/dataplex/v1/data_scan_service/client.rb +55 -53
- data/lib/google/cloud/dataplex/v1/data_scan_service/operations.rb +12 -14
- data/lib/google/cloud/dataplex/v1/data_scan_service/rest/client.rb +948 -0
- data/lib/google/cloud/dataplex/v1/data_scan_service/rest/operations.rb +793 -0
- data/lib/google/cloud/dataplex/v1/data_scan_service/rest/service_stub.rb +523 -0
- data/lib/google/cloud/dataplex/v1/data_scan_service/rest.rb +56 -0
- data/lib/google/cloud/dataplex/v1/data_scan_service.rb +10 -0
- data/lib/google/cloud/dataplex/v1/dataplex_service/client.rb +100 -120
- data/lib/google/cloud/dataplex/v1/dataplex_service/operations.rb +12 -14
- data/lib/google/cloud/dataplex/v1/dataplex_service/rest/client.rb +2910 -0
- data/lib/google/cloud/dataplex/v1/dataplex_service/rest/operations.rb +793 -0
- data/lib/google/cloud/dataplex/v1/dataplex_service/rest/service_stub.rb +1947 -0
- data/lib/google/cloud/dataplex/v1/dataplex_service/rest.rb +58 -0
- data/lib/google/cloud/dataplex/v1/dataplex_service.rb +6 -0
- data/lib/google/cloud/dataplex/v1/datascans_services_pb.rb +11 -8
- data/lib/google/cloud/dataplex/v1/metadata_service/client.rb +8 -12
- data/lib/google/cloud/dataplex/v1/metadata_service/rest/client.rb +1051 -0
- data/lib/google/cloud/dataplex/v1/metadata_service/rest/service_stub.rb +582 -0
- data/lib/google/cloud/dataplex/v1/metadata_service/rest.rb +54 -0
- data/lib/google/cloud/dataplex/v1/metadata_service.rb +6 -0
- data/lib/google/cloud/dataplex/v1/rest.rb +41 -0
- data/lib/google/cloud/dataplex/v1/version.rb +1 -1
- data/lib/google/cloud/dataplex/v1.rb +5 -0
- data/proto_docs/google/cloud/dataplex/v1/datascans.rb +49 -41
- metadata +28 -12
| @@ -0,0 +1,41 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            # Copyright 2023 Google LLC
         | 
| 4 | 
            +
            #
         | 
| 5 | 
            +
            # Licensed under the Apache License, Version 2.0 (the "License");
         | 
| 6 | 
            +
            # you may not use this file except in compliance with the License.
         | 
| 7 | 
            +
            # You may obtain a copy of the License at
         | 
| 8 | 
            +
            #
         | 
| 9 | 
            +
            #     https://www.apache.org/licenses/LICENSE-2.0
         | 
| 10 | 
            +
            #
         | 
| 11 | 
            +
            # Unless required by applicable law or agreed to in writing, software
         | 
| 12 | 
            +
            # distributed under the License is distributed on an "AS IS" BASIS,
         | 
| 13 | 
            +
            # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
         | 
| 14 | 
            +
            # See the License for the specific language governing permissions and
         | 
| 15 | 
            +
            # limitations under the License.
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            require "google/cloud/dataplex/v1/content_service/rest"
         | 
| 20 | 
            +
            require "google/cloud/dataplex/v1/data_scan_service/rest"
         | 
| 21 | 
            +
            require "google/cloud/dataplex/v1/metadata_service/rest"
         | 
| 22 | 
            +
            require "google/cloud/dataplex/v1/dataplex_service/rest"
         | 
| 23 | 
            +
            require "google/cloud/dataplex/v1/bindings_override"
         | 
| 24 | 
            +
            require "google/cloud/dataplex/v1/version"
         | 
| 25 | 
            +
             | 
| 26 | 
            +
            module Google
         | 
| 27 | 
            +
              module Cloud
         | 
| 28 | 
            +
                module Dataplex
         | 
| 29 | 
            +
                  ##
         | 
| 30 | 
            +
                  # To load just the REST part of this package, including all its services, and instantiate a REST client:
         | 
| 31 | 
            +
                  #
         | 
| 32 | 
            +
                  # @example
         | 
| 33 | 
            +
                  #
         | 
| 34 | 
            +
                  #     require "google/cloud/dataplex/v1/rest"
         | 
| 35 | 
            +
                  #     client = ::Google::Cloud::Dataplex::V1::ContentService::Rest::Client.new
         | 
| 36 | 
            +
                  #
         | 
| 37 | 
            +
                  module V1
         | 
| 38 | 
            +
                  end
         | 
| 39 | 
            +
                end
         | 
| 40 | 
            +
              end
         | 
| 41 | 
            +
            end
         | 
| @@ -33,6 +33,11 @@ module Google | |
| 33 33 | 
             
                  #     require "google/cloud/dataplex/v1"
         | 
| 34 34 | 
             
                  #     client = ::Google::Cloud::Dataplex::V1::ContentService::Client.new
         | 
| 35 35 | 
             
                  #
         | 
| 36 | 
            +
                  # @example Load this package, including all its services, and instantiate a REST client
         | 
| 37 | 
            +
                  #
         | 
| 38 | 
            +
                  #     require "google/cloud/dataplex/v1"
         | 
| 39 | 
            +
                  #     client = ::Google::Cloud::Dataplex::V1::ContentService::Rest::Client.new
         | 
| 40 | 
            +
                  #
         | 
| 36 41 | 
             
                  module V1
         | 
| 37 42 | 
             
                  end
         | 
| 38 43 | 
             
                end
         | 
| @@ -25,8 +25,8 @@ module Google | |
| 25 25 | 
             
                    # @!attribute [rw] parent
         | 
| 26 26 | 
             
                    #   @return [::String]
         | 
| 27 27 | 
             
                    #     Required. The resource name of the parent location:
         | 
| 28 | 
            -
                    #     projects | 
| 29 | 
            -
                    #     where ` | 
| 28 | 
            +
                    #     `projects/{project}/locations/{location_id}`
         | 
| 29 | 
            +
                    #     where `project` refers to a *project_id* or *project_number* and
         | 
| 30 30 | 
             
                    #     `location_id` refers to a GCP region.
         | 
| 31 31 | 
             
                    # @!attribute [rw] data_scan
         | 
| 32 32 | 
             
                    #   @return [::Google::Cloud::Dataplex::V1::DataScan]
         | 
| @@ -34,6 +34,7 @@ module Google | |
| 34 34 | 
             
                    # @!attribute [rw] data_scan_id
         | 
| 35 35 | 
             
                    #   @return [::String]
         | 
| 36 36 | 
             
                    #     Required. DataScan identifier.
         | 
| 37 | 
            +
                    #
         | 
| 37 38 | 
             
                    #     * Must contain only lowercase letters, numbers and hyphens.
         | 
| 38 39 | 
             
                    #     * Must start with a letter.
         | 
| 39 40 | 
             
                    #     * Must end with a number or a letter.
         | 
| @@ -47,7 +48,8 @@ module Google | |
| 47 48 | 
             
                    # Update dataScan request.
         | 
| 48 49 | 
             
                    # @!attribute [rw] data_scan
         | 
| 49 50 | 
             
                    #   @return [::Google::Cloud::Dataplex::V1::DataScan]
         | 
| 50 | 
            -
                    #     Required.  | 
| 51 | 
            +
                    #     Required. DataScan resource to be updated.
         | 
| 52 | 
            +
                    #
         | 
| 51 53 | 
             
                    #     Only fields specified in `update_mask` are updated.
         | 
| 52 54 | 
             
                    # @!attribute [rw] update_mask
         | 
| 53 55 | 
             
                    #   @return [::Google::Protobuf::FieldMask]
         | 
| @@ -61,8 +63,8 @@ module Google | |
| 61 63 | 
             
                    # @!attribute [rw] name
         | 
| 62 64 | 
             
                    #   @return [::String]
         | 
| 63 65 | 
             
                    #     Required. The resource name of the dataScan:
         | 
| 64 | 
            -
                    #     projects | 
| 65 | 
            -
                    #     where ` | 
| 66 | 
            +
                    #     `projects/{project}/locations/{location_id}/dataScans/{data_scan_id}`
         | 
| 67 | 
            +
                    #     where `project` refers to a *project_id* or *project_number* and
         | 
| 66 68 | 
             
                    #     `location_id` refers to a GCP region.
         | 
| 67 69 | 
             
                    class DeleteDataScanRequest
         | 
| 68 70 | 
             
                      include ::Google::Protobuf::MessageExts
         | 
| @@ -73,23 +75,22 @@ module Google | |
| 73 75 | 
             
                    # @!attribute [rw] name
         | 
| 74 76 | 
             
                    #   @return [::String]
         | 
| 75 77 | 
             
                    #     Required. The resource name of the dataScan:
         | 
| 76 | 
            -
                    #     projects | 
| 77 | 
            -
                    #     where ` | 
| 78 | 
            +
                    #     `projects/{project}/locations/{location_id}/dataScans/{data_scan_id}`
         | 
| 79 | 
            +
                    #     where `project` refers to a *project_id* or *project_number* and
         | 
| 78 80 | 
             
                    #     `location_id` refers to a GCP region.
         | 
| 79 81 | 
             
                    # @!attribute [rw] view
         | 
| 80 82 | 
             
                    #   @return [::Google::Cloud::Dataplex::V1::GetDataScanRequest::DataScanView]
         | 
| 81 | 
            -
                    #     Optional.  | 
| 82 | 
            -
                    #     Defaults to `BASIC`.
         | 
| 83 | 
            +
                    #     Optional. Select the DataScan view to return. Defaults to `BASIC`.
         | 
| 83 84 | 
             
                    class GetDataScanRequest
         | 
| 84 85 | 
             
                      include ::Google::Protobuf::MessageExts
         | 
| 85 86 | 
             
                      extend ::Google::Protobuf::MessageExts::ClassMethods
         | 
| 86 87 |  | 
| 87 | 
            -
                      # DataScan  | 
| 88 | 
            +
                      # DataScan view options.
         | 
| 88 89 | 
             
                      module DataScanView
         | 
| 89 90 | 
             
                        # The API will default to the `BASIC` view.
         | 
| 90 91 | 
             
                        DATA_SCAN_VIEW_UNSPECIFIED = 0
         | 
| 91 92 |  | 
| 92 | 
            -
                        # Basic view that does not include spec and result | 
| 93 | 
            +
                        # Basic view that does not include *spec* and *result*.
         | 
| 93 94 | 
             
                        BASIC = 1
         | 
| 94 95 |  | 
| 95 96 | 
             
                        # Include everything.
         | 
| @@ -100,8 +101,9 @@ module Google | |
| 100 101 | 
             
                    # List dataScans request.
         | 
| 101 102 | 
             
                    # @!attribute [rw] parent
         | 
| 102 103 | 
             
                    #   @return [::String]
         | 
| 103 | 
            -
                    #     Required.  | 
| 104 | 
            -
                    #      | 
| 104 | 
            +
                    #     Required. The resource name of the parent location:
         | 
| 105 | 
            +
                    #     `projects/{project}/locations/{location_id}`
         | 
| 106 | 
            +
                    #     where `project` refers to a *project_id* or *project_number* and
         | 
| 105 107 | 
             
                    #     `location_id` refers to a GCP region.
         | 
| 106 108 | 
             
                    # @!attribute [rw] page_size
         | 
| 107 109 | 
             
                    #   @return [::Integer]
         | 
| @@ -119,7 +121,7 @@ module Google | |
| 119 121 | 
             
                    #     Optional. Filter request.
         | 
| 120 122 | 
             
                    # @!attribute [rw] order_by
         | 
| 121 123 | 
             
                    #   @return [::String]
         | 
| 122 | 
            -
                    #     Optional. Order by fields (name or create_time) for the result.
         | 
| 124 | 
            +
                    #     Optional. Order by fields (`name` or `create_time`) for the result.
         | 
| 123 125 | 
             
                    #     If not specified, the ordering is undefined.
         | 
| 124 126 | 
             
                    class ListDataScansRequest
         | 
| 125 127 | 
             
                      include ::Google::Protobuf::MessageExts
         | 
| @@ -129,7 +131,7 @@ module Google | |
| 129 131 | 
             
                    # List dataScans response.
         | 
| 130 132 | 
             
                    # @!attribute [rw] data_scans
         | 
| 131 133 | 
             
                    #   @return [::Array<::Google::Cloud::Dataplex::V1::DataScan>]
         | 
| 132 | 
            -
                    #     DataScans ( | 
| 134 | 
            +
                    #     DataScans (`BASIC` view only) under the given parent location.
         | 
| 133 135 | 
             
                    # @!attribute [rw] next_page_token
         | 
| 134 136 | 
             
                    #   @return [::String]
         | 
| 135 137 | 
             
                    #     Token to retrieve the next page of results, or empty if there are no more
         | 
| @@ -146,10 +148,11 @@ module Google | |
| 146 148 | 
             
                    # @!attribute [rw] name
         | 
| 147 149 | 
             
                    #   @return [::String]
         | 
| 148 150 | 
             
                    #     Required. The resource name of the DataScan:
         | 
| 149 | 
            -
                    #     projects | 
| 150 | 
            -
                    #     where ` | 
| 151 | 
            +
                    #     `projects/{project}/locations/{location_id}/dataScans/{data_scan_id}`.
         | 
| 152 | 
            +
                    #     where `project` refers to a *project_id* or *project_number* and
         | 
| 151 153 | 
             
                    #     `location_id` refers to a GCP region.
         | 
| 152 | 
            -
                    # | 
| 154 | 
            +
                    #
         | 
| 155 | 
            +
                    #     Only **OnDemand** data scans are allowed.
         | 
| 153 156 | 
             
                    class RunDataScanRequest
         | 
| 154 157 | 
             
                      include ::Google::Protobuf::MessageExts
         | 
| 155 158 | 
             
                      extend ::Google::Protobuf::MessageExts::ClassMethods
         | 
| @@ -158,7 +161,7 @@ module Google | |
| 158 161 | 
             
                    # Run DataScan Response.
         | 
| 159 162 | 
             
                    # @!attribute [rw] job
         | 
| 160 163 | 
             
                    #   @return [::Google::Cloud::Dataplex::V1::DataScanJob]
         | 
| 161 | 
            -
                    #     DataScanJob created by RunDataScan  | 
| 164 | 
            +
                    #     DataScanJob created by RunDataScan request.
         | 
| 162 165 | 
             
                    class RunDataScanResponse
         | 
| 163 166 | 
             
                      include ::Google::Protobuf::MessageExts
         | 
| 164 167 | 
             
                      extend ::Google::Protobuf::MessageExts::ClassMethods
         | 
| @@ -168,23 +171,22 @@ module Google | |
| 168 171 | 
             
                    # @!attribute [rw] name
         | 
| 169 172 | 
             
                    #   @return [::String]
         | 
| 170 173 | 
             
                    #     Required. The resource name of the DataScanJob:
         | 
| 171 | 
            -
                    #     projects | 
| 172 | 
            -
                    #     where ` | 
| 174 | 
            +
                    #     `projects/{project}/locations/{location_id}/dataScans/{data_scan_id}/dataScanJobs/{data_scan_job_id}`
         | 
| 175 | 
            +
                    #     where `project` refers to a *project_id* or *project_number* and
         | 
| 173 176 | 
             
                    #     `location_id` refers to a GCP region.
         | 
| 174 177 | 
             
                    # @!attribute [rw] view
         | 
| 175 178 | 
             
                    #   @return [::Google::Cloud::Dataplex::V1::GetDataScanJobRequest::DataScanJobView]
         | 
| 176 | 
            -
                    #     Optional.  | 
| 177 | 
            -
                    #     Defaults to `BASIC`.
         | 
| 179 | 
            +
                    #     Optional. Select the DataScanJob view to return. Defaults to `BASIC`.
         | 
| 178 180 | 
             
                    class GetDataScanJobRequest
         | 
| 179 181 | 
             
                      include ::Google::Protobuf::MessageExts
         | 
| 180 182 | 
             
                      extend ::Google::Protobuf::MessageExts::ClassMethods
         | 
| 181 183 |  | 
| 182 | 
            -
                      # DataScanJob  | 
| 184 | 
            +
                      # DataScanJob view options.
         | 
| 183 185 | 
             
                      module DataScanJobView
         | 
| 184 186 | 
             
                        # The API will default to the `BASIC` view.
         | 
| 185 187 | 
             
                        DATA_SCAN_JOB_VIEW_UNSPECIFIED = 0
         | 
| 186 188 |  | 
| 187 | 
            -
                        # Basic view that does not include spec and result | 
| 189 | 
            +
                        # Basic view that does not include *spec* and *result*.
         | 
| 188 190 | 
             
                        BASIC = 1
         | 
| 189 191 |  | 
| 190 192 | 
             
                        # Include everything.
         | 
| @@ -196,8 +198,8 @@ module Google | |
| 196 198 | 
             
                    # @!attribute [rw] parent
         | 
| 197 199 | 
             
                    #   @return [::String]
         | 
| 198 200 | 
             
                    #     Required. The resource name of the parent environment:
         | 
| 199 | 
            -
                    #     projects | 
| 200 | 
            -
                    #     where ` | 
| 201 | 
            +
                    #     `projects/{project}/locations/{location_id}/dataScans/{data_scan_id}`
         | 
| 202 | 
            +
                    #     where `project` refers to a *project_id* or *project_number* and
         | 
| 201 203 | 
             
                    #     `location_id` refers to a GCP region.
         | 
| 202 204 | 
             
                    # @!attribute [rw] page_size
         | 
| 203 205 | 
             
                    #   @return [::Integer]
         | 
| @@ -219,7 +221,7 @@ module Google | |
| 219 221 | 
             
                    # List DataScanJobs response.
         | 
| 220 222 | 
             
                    # @!attribute [rw] data_scan_jobs
         | 
| 221 223 | 
             
                    #   @return [::Array<::Google::Cloud::Dataplex::V1::DataScanJob>]
         | 
| 222 | 
            -
                    #     DataScanJobs ( | 
| 224 | 
            +
                    #     DataScanJobs (`BASIC` view only) under a given dataScan.
         | 
| 223 225 | 
             
                    # @!attribute [rw] next_page_token
         | 
| 224 226 | 
             
                    #   @return [::String]
         | 
| 225 227 | 
             
                    #     Token to retrieve the next page of results, or empty if there are no more
         | 
| @@ -242,8 +244,8 @@ module Google | |
| 242 244 | 
             
                    # @!attribute [r] name
         | 
| 243 245 | 
             
                    #   @return [::String]
         | 
| 244 246 | 
             
                    #     Output only. The relative resource name of the scan, of the form:
         | 
| 245 | 
            -
                    #     projects | 
| 246 | 
            -
                    #     where ` | 
| 247 | 
            +
                    #     `projects/{project}/locations/{location_id}/dataScans/{datascan_id}`,
         | 
| 248 | 
            +
                    #     where `project` refers to a *project_id* or *project_number* and
         | 
| 247 249 | 
             
                    #     `location_id` refers to a GCP region.
         | 
| 248 250 | 
             
                    # @!attribute [r] uid
         | 
| 249 251 | 
             
                    #   @return [::String]
         | 
| @@ -252,10 +254,12 @@ module Google | |
| 252 254 | 
             
                    # @!attribute [rw] description
         | 
| 253 255 | 
             
                    #   @return [::String]
         | 
| 254 256 | 
             
                    #     Optional. Description of the scan.
         | 
| 257 | 
            +
                    #
         | 
| 255 258 | 
             
                    #     * Must be between 1-1024 characters.
         | 
| 256 259 | 
             
                    # @!attribute [rw] display_name
         | 
| 257 260 | 
             
                    #   @return [::String]
         | 
| 258 261 | 
             
                    #     Optional. User friendly display name.
         | 
| 262 | 
            +
                    #
         | 
| 259 263 | 
             
                    #     * Must be between 1-256 characters.
         | 
| 260 264 | 
             
                    # @!attribute [rw] labels
         | 
| 261 265 | 
             
                    #   @return [::Google::Protobuf::Map{::String => ::String}]
         | 
| @@ -275,7 +279,8 @@ module Google | |
| 275 279 | 
             
                    # @!attribute [rw] execution_spec
         | 
| 276 280 | 
             
                    #   @return [::Google::Cloud::Dataplex::V1::DataScan::ExecutionSpec]
         | 
| 277 281 | 
             
                    #     Optional. DataScan execution settings.
         | 
| 278 | 
            -
                    # | 
| 282 | 
            +
                    #
         | 
| 283 | 
            +
                    #     If not specified, the fields in it will use their default values.
         | 
| 279 284 | 
             
                    # @!attribute [r] execution_status
         | 
| 280 285 | 
             
                    #   @return [::Google::Cloud::Dataplex::V1::DataScan::ExecutionStatus]
         | 
| 281 286 | 
             
                    #     Output only. Status of the data scan execution.
         | 
| @@ -302,12 +307,15 @@ module Google | |
| 302 307 | 
             
                      # @!attribute [rw] trigger
         | 
| 303 308 | 
             
                      #   @return [::Google::Cloud::Dataplex::V1::Trigger]
         | 
| 304 309 | 
             
                      #     Optional. Spec related to how often and when a scan should be triggered.
         | 
| 305 | 
            -
                      # | 
| 306 | 
            -
                      #      | 
| 310 | 
            +
                      #
         | 
| 311 | 
            +
                      #     If not specified, the default is `OnDemand`, which means the scan will
         | 
| 312 | 
            +
                      #     not run until the user calls `RunDataScan` API.
         | 
| 307 313 | 
             
                      # @!attribute [rw] field
         | 
| 308 314 | 
             
                      #   @return [::String]
         | 
| 309 | 
            -
                      #     Immutable. The unnested field (Date or Timestamp) that | 
| 310 | 
            -
                      #      | 
| 315 | 
            +
                      #     Immutable. The unnested field (of type *Date* or *Timestamp*) that
         | 
| 316 | 
            +
                      #     contains values which monotonically increase over time.
         | 
| 317 | 
            +
                      #
         | 
| 318 | 
            +
                      #     If not specified, a data scan will run for all data in the table.
         | 
| 311 319 | 
             
                      class ExecutionSpec
         | 
| 312 320 | 
             
                        include ::Google::Protobuf::MessageExts
         | 
| 313 321 | 
             
                        extend ::Google::Protobuf::MessageExts::ClassMethods
         | 
| @@ -335,12 +343,12 @@ module Google | |
| 335 343 | 
             
                      end
         | 
| 336 344 | 
             
                    end
         | 
| 337 345 |  | 
| 338 | 
            -
                    # A DataScanJob represents an instance of  | 
| 346 | 
            +
                    # A DataScanJob represents an instance of DataScan execution.
         | 
| 339 347 | 
             
                    # @!attribute [r] name
         | 
| 340 348 | 
             
                    #   @return [::String]
         | 
| 341 349 | 
             
                    #     Output only. The relative resource name of the DataScanJob, of the form:
         | 
| 342 | 
            -
                    #     projects | 
| 343 | 
            -
                    #     where ` | 
| 350 | 
            +
                    #     `projects/{project}/locations/{location_id}/dataScans/{datascan_id}/jobs/{job_id}`,
         | 
| 351 | 
            +
                    #     where `project` refers to a *project_id* or *project_number* and
         | 
| 344 352 | 
             
                    #     `location_id` refers to a GCP region.
         | 
| 345 353 | 
             
                    # @!attribute [r] uid
         | 
| 346 354 | 
             
                    #   @return [::String]
         | 
| @@ -403,13 +411,13 @@ module Google | |
| 403 411 |  | 
| 404 412 | 
             
                    # The type of DataScan.
         | 
| 405 413 | 
             
                    module DataScanType
         | 
| 406 | 
            -
                      # The DataScan  | 
| 414 | 
            +
                      # The DataScan type is unspecified.
         | 
| 407 415 | 
             
                      DATA_SCAN_TYPE_UNSPECIFIED = 0
         | 
| 408 416 |  | 
| 409 | 
            -
                      # Data Quality  | 
| 417 | 
            +
                      # Data Quality scan.
         | 
| 410 418 | 
             
                      DATA_QUALITY = 1
         | 
| 411 419 |  | 
| 412 | 
            -
                      # Data Profile  | 
| 420 | 
            +
                      # Data Profile scan.
         | 
| 413 421 | 
             
                      DATA_PROFILE = 2
         | 
| 414 422 | 
             
                    end
         | 
| 415 423 | 
             
                  end
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: google-cloud-dataplex-v1
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0. | 
| 4 | 
            +
              version: 0.7.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Google LLC
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2023- | 
| 11 | 
            +
            date: 2023-03-08 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: gapic-common
         | 
| @@ -16,7 +16,7 @@ dependencies: | |
| 16 16 | 
             
                requirements:
         | 
| 17 17 | 
             
                - - ">="
         | 
| 18 18 | 
             
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            -
                    version: 0. | 
| 19 | 
            +
                    version: 0.18.0
         | 
| 20 20 | 
             
                - - "<"
         | 
| 21 21 | 
             
                  - !ruby/object:Gem::Version
         | 
| 22 22 | 
             
                    version: 2.a
         | 
| @@ -26,7 +26,7 @@ dependencies: | |
| 26 26 | 
             
                requirements:
         | 
| 27 27 | 
             
                - - ">="
         | 
| 28 28 | 
             
                  - !ruby/object:Gem::Version
         | 
| 29 | 
            -
                    version: 0. | 
| 29 | 
            +
                    version: 0.18.0
         | 
| 30 30 | 
             
                - - "<"
         | 
| 31 31 | 
             
                  - !ruby/object:Gem::Version
         | 
| 32 32 | 
             
                    version: 2.a
         | 
| @@ -50,7 +50,7 @@ dependencies: | |
| 50 50 | 
             
                requirements:
         | 
| 51 51 | 
             
                - - ">="
         | 
| 52 52 | 
             
                  - !ruby/object:Gem::Version
         | 
| 53 | 
            -
                    version: '0. | 
| 53 | 
            +
                    version: '0.4'
         | 
| 54 54 | 
             
                - - "<"
         | 
| 55 55 | 
             
                  - !ruby/object:Gem::Version
         | 
| 56 56 | 
             
                    version: 2.a
         | 
| @@ -60,7 +60,7 @@ dependencies: | |
| 60 60 | 
             
                requirements:
         | 
| 61 61 | 
             
                - - ">="
         | 
| 62 62 | 
             
                  - !ruby/object:Gem::Version
         | 
| 63 | 
            -
                    version: '0. | 
| 63 | 
            +
                    version: '0.4'
         | 
| 64 64 | 
             
                - - "<"
         | 
| 65 65 | 
             
                  - !ruby/object:Gem::Version
         | 
| 66 66 | 
             
                    version: 2.a
         | 
| @@ -70,7 +70,7 @@ dependencies: | |
| 70 70 | 
             
                requirements:
         | 
| 71 71 | 
             
                - - ">="
         | 
| 72 72 | 
             
                  - !ruby/object:Gem::Version
         | 
| 73 | 
            -
                    version: '0. | 
| 73 | 
            +
                    version: '0.4'
         | 
| 74 74 | 
             
                - - "<"
         | 
| 75 75 | 
             
                  - !ruby/object:Gem::Version
         | 
| 76 76 | 
             
                    version: 2.a
         | 
| @@ -80,7 +80,7 @@ dependencies: | |
| 80 80 | 
             
                requirements:
         | 
| 81 81 | 
             
                - - ">="
         | 
| 82 82 | 
             
                  - !ruby/object:Gem::Version
         | 
| 83 | 
            -
                    version: '0. | 
| 83 | 
            +
                    version: '0.4'
         | 
| 84 84 | 
             
                - - "<"
         | 
| 85 85 | 
             
                  - !ruby/object:Gem::Version
         | 
| 86 86 | 
             
                    version: 2.a
         | 
| @@ -90,14 +90,14 @@ dependencies: | |
| 90 90 | 
             
                requirements:
         | 
| 91 91 | 
             
                - - "~>"
         | 
| 92 92 | 
             
                  - !ruby/object:Gem::Version
         | 
| 93 | 
            -
                    version: 1.26. | 
| 93 | 
            +
                    version: 1.26.3
         | 
| 94 94 | 
             
              type: :development
         | 
| 95 95 | 
             
              prerelease: false
         | 
| 96 96 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 97 97 | 
             
                requirements:
         | 
| 98 98 | 
             
                - - "~>"
         | 
| 99 99 | 
             
                  - !ruby/object:Gem::Version
         | 
| 100 | 
            -
                    version: 1.26. | 
| 100 | 
            +
                    version: 1.26.3
         | 
| 101 101 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 102 102 | 
             
              name: minitest
         | 
| 103 103 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| @@ -214,11 +214,15 @@ files: | |
| 214 214 | 
             
            - lib/google-cloud-dataplex-v1.rb
         | 
| 215 215 | 
             
            - lib/google/cloud/dataplex/v1.rb
         | 
| 216 216 | 
             
            - lib/google/cloud/dataplex/v1/analyze_pb.rb
         | 
| 217 | 
            +
            - lib/google/cloud/dataplex/v1/bindings_override.rb
         | 
| 217 218 | 
             
            - lib/google/cloud/dataplex/v1/content_pb.rb
         | 
| 218 219 | 
             
            - lib/google/cloud/dataplex/v1/content_service.rb
         | 
| 219 220 | 
             
            - lib/google/cloud/dataplex/v1/content_service/client.rb
         | 
| 220 221 | 
             
            - lib/google/cloud/dataplex/v1/content_service/credentials.rb
         | 
| 221 222 | 
             
            - lib/google/cloud/dataplex/v1/content_service/paths.rb
         | 
| 223 | 
            +
            - lib/google/cloud/dataplex/v1/content_service/rest.rb
         | 
| 224 | 
            +
            - lib/google/cloud/dataplex/v1/content_service/rest/client.rb
         | 
| 225 | 
            +
            - lib/google/cloud/dataplex/v1/content_service/rest/service_stub.rb
         | 
| 222 226 | 
             
            - lib/google/cloud/dataplex/v1/content_services_pb.rb
         | 
| 223 227 | 
             
            - lib/google/cloud/dataplex/v1/data_profile_pb.rb
         | 
| 224 228 | 
             
            - lib/google/cloud/dataplex/v1/data_quality_pb.rb
         | 
| @@ -227,11 +231,19 @@ files: | |
| 227 231 | 
             
            - lib/google/cloud/dataplex/v1/data_scan_service/credentials.rb
         | 
| 228 232 | 
             
            - lib/google/cloud/dataplex/v1/data_scan_service/operations.rb
         | 
| 229 233 | 
             
            - lib/google/cloud/dataplex/v1/data_scan_service/paths.rb
         | 
| 234 | 
            +
            - lib/google/cloud/dataplex/v1/data_scan_service/rest.rb
         | 
| 235 | 
            +
            - lib/google/cloud/dataplex/v1/data_scan_service/rest/client.rb
         | 
| 236 | 
            +
            - lib/google/cloud/dataplex/v1/data_scan_service/rest/operations.rb
         | 
| 237 | 
            +
            - lib/google/cloud/dataplex/v1/data_scan_service/rest/service_stub.rb
         | 
| 230 238 | 
             
            - lib/google/cloud/dataplex/v1/dataplex_service.rb
         | 
| 231 239 | 
             
            - lib/google/cloud/dataplex/v1/dataplex_service/client.rb
         | 
| 232 240 | 
             
            - lib/google/cloud/dataplex/v1/dataplex_service/credentials.rb
         | 
| 233 241 | 
             
            - lib/google/cloud/dataplex/v1/dataplex_service/operations.rb
         | 
| 234 242 | 
             
            - lib/google/cloud/dataplex/v1/dataplex_service/paths.rb
         | 
| 243 | 
            +
            - lib/google/cloud/dataplex/v1/dataplex_service/rest.rb
         | 
| 244 | 
            +
            - lib/google/cloud/dataplex/v1/dataplex_service/rest/client.rb
         | 
| 245 | 
            +
            - lib/google/cloud/dataplex/v1/dataplex_service/rest/operations.rb
         | 
| 246 | 
            +
            - lib/google/cloud/dataplex/v1/dataplex_service/rest/service_stub.rb
         | 
| 235 247 | 
             
            - lib/google/cloud/dataplex/v1/datascans_pb.rb
         | 
| 236 248 | 
             
            - lib/google/cloud/dataplex/v1/datascans_services_pb.rb
         | 
| 237 249 | 
             
            - lib/google/cloud/dataplex/v1/logs_pb.rb
         | 
| @@ -240,9 +252,13 @@ files: | |
| 240 252 | 
             
            - lib/google/cloud/dataplex/v1/metadata_service/client.rb
         | 
| 241 253 | 
             
            - lib/google/cloud/dataplex/v1/metadata_service/credentials.rb
         | 
| 242 254 | 
             
            - lib/google/cloud/dataplex/v1/metadata_service/paths.rb
         | 
| 255 | 
            +
            - lib/google/cloud/dataplex/v1/metadata_service/rest.rb
         | 
| 256 | 
            +
            - lib/google/cloud/dataplex/v1/metadata_service/rest/client.rb
         | 
| 257 | 
            +
            - lib/google/cloud/dataplex/v1/metadata_service/rest/service_stub.rb
         | 
| 243 258 | 
             
            - lib/google/cloud/dataplex/v1/metadata_services_pb.rb
         | 
| 244 259 | 
             
            - lib/google/cloud/dataplex/v1/processing_pb.rb
         | 
| 245 260 | 
             
            - lib/google/cloud/dataplex/v1/resources_pb.rb
         | 
| 261 | 
            +
            - lib/google/cloud/dataplex/v1/rest.rb
         | 
| 246 262 | 
             
            - lib/google/cloud/dataplex/v1/service_pb.rb
         | 
| 247 263 | 
             
            - lib/google/cloud/dataplex/v1/service_services_pb.rb
         | 
| 248 264 | 
             
            - lib/google/cloud/dataplex/v1/tasks_pb.rb
         | 
| @@ -290,8 +306,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 290 306 | 
             
                - !ruby/object:Gem::Version
         | 
| 291 307 | 
             
                  version: '0'
         | 
| 292 308 | 
             
            requirements: []
         | 
| 293 | 
            -
            rubygems_version: 3. | 
| 309 | 
            +
            rubygems_version: 3.4.2
         | 
| 294 310 | 
             
            signing_key: 
         | 
| 295 311 | 
             
            specification_version: 4
         | 
| 296 | 
            -
            summary: API  | 
| 312 | 
            +
            summary: Dataplex API is used to manage the lifecycle of data lakes.
         | 
| 297 313 | 
             
            test_files: []
         |