Class: Google::Cloud::Dataplex::V1::DiscoveryEvent

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/dataplex/v1/logs.rb

Overview

The payload associated with Discovery data processing.

Defined Under Namespace

Modules: EntityType, EventType, TableType Classes: ActionDetails, ConfigDetails, EntityDetails, PartitionDetails, TableDetails

Instance Attribute Summary collapse

Instance Attribute Details

#action::Google::Cloud::Dataplex::V1::DiscoveryEvent::ActionDetails

Returns Details about the action associated with the event.

Returns:



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'proto_docs/google/cloud/dataplex/v1/logs.rb', line 61

class DiscoveryEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Details about configuration events.
  # @!attribute [rw] parameters
  #   @return [::Google::Protobuf::Map{::String => ::String}]
  #     A list of discovery configuration parameters in effect.
  #     The keys are the field paths within DiscoverySpec.
  #     Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference,
  #     etc.
  class ConfigDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::String]
    class ParametersEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Details about the entity.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name of the entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the entity resource.
  class EntityDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the published table.
  # @!attribute [rw] table
  #   @return [::String]
  #     The fully-qualified resource name of the table resource.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::TableType]
  #     The type of the table resource.
  class TableDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the partition.
  # @!attribute [rw] partition
  #   @return [::String]
  #     The name to the partition resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name to the containing entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the containing entity resource.
  # @!attribute [rw] sampled_data_locations
  #   @return [::Array<::String>]
  #     The locations of the data items (e.g., a Cloud Storage objects) sampled
  #     for metadata inference.
  class PartitionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the action.
  # @!attribute [rw] type
  #   @return [::String]
  #     The type of action.
  #     Eg. IncompatibleDataSchema, InvalidDataFormat
  # @!attribute [rw] issue
  #   @return [::String]
  #     The human readable issue associated with the action.
  class ActionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The type of the event.
  module EventType
    # An unspecified event type.
    EVENT_TYPE_UNSPECIFIED = 0

    # An event representing discovery configuration in effect.
    CONFIG = 1

    # An event representing a metadata entity being created.
    ENTITY_CREATED = 2

    # An event representing a metadata entity being updated.
    ENTITY_UPDATED = 3

    # An event representing a metadata entity being deleted.
    ENTITY_DELETED = 4

    # An event representing a partition being created.
    PARTITION_CREATED = 5

    # An event representing a partition being updated.
    PARTITION_UPDATED = 6

    # An event representing a partition being deleted.
    PARTITION_DELETED = 7

    # An event representing a table being published.
    TABLE_PUBLISHED = 10

    # An event representing a table being updated.
    TABLE_UPDATED = 11

    # An event representing a table being skipped in publishing.
    TABLE_IGNORED = 12

    # An event representing a table being deleted.
    TABLE_DELETED = 13
  end

  # The type of the entity.
  module EntityType
    # An unspecified event type.
    ENTITY_TYPE_UNSPECIFIED = 0

    # Entities representing structured data.
    TABLE = 1

    # Entities representing unstructured data.
    FILESET = 2
  end

  # The type of the published table.
  module TableType
    # An unspecified table type.
    TABLE_TYPE_UNSPECIFIED = 0

    # External table type.
    EXTERNAL_TABLE = 1

    # BigLake table type.
    BIGLAKE_TABLE = 2

    # Object table type for unstructured data.
    OBJECT_TABLE = 3
  end
end

#asset_id::String

Returns The id of the associated asset.

Returns:

  • (::String)

    The id of the associated asset.



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'proto_docs/google/cloud/dataplex/v1/logs.rb', line 61

class DiscoveryEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Details about configuration events.
  # @!attribute [rw] parameters
  #   @return [::Google::Protobuf::Map{::String => ::String}]
  #     A list of discovery configuration parameters in effect.
  #     The keys are the field paths within DiscoverySpec.
  #     Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference,
  #     etc.
  class ConfigDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::String]
    class ParametersEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Details about the entity.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name of the entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the entity resource.
  class EntityDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the published table.
  # @!attribute [rw] table
  #   @return [::String]
  #     The fully-qualified resource name of the table resource.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::TableType]
  #     The type of the table resource.
  class TableDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the partition.
  # @!attribute [rw] partition
  #   @return [::String]
  #     The name to the partition resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name to the containing entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the containing entity resource.
  # @!attribute [rw] sampled_data_locations
  #   @return [::Array<::String>]
  #     The locations of the data items (e.g., a Cloud Storage objects) sampled
  #     for metadata inference.
  class PartitionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the action.
  # @!attribute [rw] type
  #   @return [::String]
  #     The type of action.
  #     Eg. IncompatibleDataSchema, InvalidDataFormat
  # @!attribute [rw] issue
  #   @return [::String]
  #     The human readable issue associated with the action.
  class ActionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The type of the event.
  module EventType
    # An unspecified event type.
    EVENT_TYPE_UNSPECIFIED = 0

    # An event representing discovery configuration in effect.
    CONFIG = 1

    # An event representing a metadata entity being created.
    ENTITY_CREATED = 2

    # An event representing a metadata entity being updated.
    ENTITY_UPDATED = 3

    # An event representing a metadata entity being deleted.
    ENTITY_DELETED = 4

    # An event representing a partition being created.
    PARTITION_CREATED = 5

    # An event representing a partition being updated.
    PARTITION_UPDATED = 6

    # An event representing a partition being deleted.
    PARTITION_DELETED = 7

    # An event representing a table being published.
    TABLE_PUBLISHED = 10

    # An event representing a table being updated.
    TABLE_UPDATED = 11

    # An event representing a table being skipped in publishing.
    TABLE_IGNORED = 12

    # An event representing a table being deleted.
    TABLE_DELETED = 13
  end

  # The type of the entity.
  module EntityType
    # An unspecified event type.
    ENTITY_TYPE_UNSPECIFIED = 0

    # Entities representing structured data.
    TABLE = 1

    # Entities representing unstructured data.
    FILESET = 2
  end

  # The type of the published table.
  module TableType
    # An unspecified table type.
    TABLE_TYPE_UNSPECIFIED = 0

    # External table type.
    EXTERNAL_TABLE = 1

    # BigLake table type.
    BIGLAKE_TABLE = 2

    # Object table type for unstructured data.
    OBJECT_TABLE = 3
  end
end

#config::Google::Cloud::Dataplex::V1::DiscoveryEvent::ConfigDetails

Returns Details about discovery configuration in effect.

Returns:



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'proto_docs/google/cloud/dataplex/v1/logs.rb', line 61

class DiscoveryEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Details about configuration events.
  # @!attribute [rw] parameters
  #   @return [::Google::Protobuf::Map{::String => ::String}]
  #     A list of discovery configuration parameters in effect.
  #     The keys are the field paths within DiscoverySpec.
  #     Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference,
  #     etc.
  class ConfigDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::String]
    class ParametersEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Details about the entity.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name of the entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the entity resource.
  class EntityDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the published table.
  # @!attribute [rw] table
  #   @return [::String]
  #     The fully-qualified resource name of the table resource.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::TableType]
  #     The type of the table resource.
  class TableDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the partition.
  # @!attribute [rw] partition
  #   @return [::String]
  #     The name to the partition resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name to the containing entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the containing entity resource.
  # @!attribute [rw] sampled_data_locations
  #   @return [::Array<::String>]
  #     The locations of the data items (e.g., a Cloud Storage objects) sampled
  #     for metadata inference.
  class PartitionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the action.
  # @!attribute [rw] type
  #   @return [::String]
  #     The type of action.
  #     Eg. IncompatibleDataSchema, InvalidDataFormat
  # @!attribute [rw] issue
  #   @return [::String]
  #     The human readable issue associated with the action.
  class ActionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The type of the event.
  module EventType
    # An unspecified event type.
    EVENT_TYPE_UNSPECIFIED = 0

    # An event representing discovery configuration in effect.
    CONFIG = 1

    # An event representing a metadata entity being created.
    ENTITY_CREATED = 2

    # An event representing a metadata entity being updated.
    ENTITY_UPDATED = 3

    # An event representing a metadata entity being deleted.
    ENTITY_DELETED = 4

    # An event representing a partition being created.
    PARTITION_CREATED = 5

    # An event representing a partition being updated.
    PARTITION_UPDATED = 6

    # An event representing a partition being deleted.
    PARTITION_DELETED = 7

    # An event representing a table being published.
    TABLE_PUBLISHED = 10

    # An event representing a table being updated.
    TABLE_UPDATED = 11

    # An event representing a table being skipped in publishing.
    TABLE_IGNORED = 12

    # An event representing a table being deleted.
    TABLE_DELETED = 13
  end

  # The type of the entity.
  module EntityType
    # An unspecified event type.
    ENTITY_TYPE_UNSPECIFIED = 0

    # Entities representing structured data.
    TABLE = 1

    # Entities representing unstructured data.
    FILESET = 2
  end

  # The type of the published table.
  module TableType
    # An unspecified table type.
    TABLE_TYPE_UNSPECIFIED = 0

    # External table type.
    EXTERNAL_TABLE = 1

    # BigLake table type.
    BIGLAKE_TABLE = 2

    # Object table type for unstructured data.
    OBJECT_TABLE = 3
  end
end

#data_location::String

Returns The data location associated with the event.

Returns:

  • (::String)

    The data location associated with the event.



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'proto_docs/google/cloud/dataplex/v1/logs.rb', line 61

class DiscoveryEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Details about configuration events.
  # @!attribute [rw] parameters
  #   @return [::Google::Protobuf::Map{::String => ::String}]
  #     A list of discovery configuration parameters in effect.
  #     The keys are the field paths within DiscoverySpec.
  #     Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference,
  #     etc.
  class ConfigDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::String]
    class ParametersEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Details about the entity.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name of the entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the entity resource.
  class EntityDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the published table.
  # @!attribute [rw] table
  #   @return [::String]
  #     The fully-qualified resource name of the table resource.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::TableType]
  #     The type of the table resource.
  class TableDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the partition.
  # @!attribute [rw] partition
  #   @return [::String]
  #     The name to the partition resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name to the containing entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the containing entity resource.
  # @!attribute [rw] sampled_data_locations
  #   @return [::Array<::String>]
  #     The locations of the data items (e.g., a Cloud Storage objects) sampled
  #     for metadata inference.
  class PartitionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the action.
  # @!attribute [rw] type
  #   @return [::String]
  #     The type of action.
  #     Eg. IncompatibleDataSchema, InvalidDataFormat
  # @!attribute [rw] issue
  #   @return [::String]
  #     The human readable issue associated with the action.
  class ActionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The type of the event.
  module EventType
    # An unspecified event type.
    EVENT_TYPE_UNSPECIFIED = 0

    # An event representing discovery configuration in effect.
    CONFIG = 1

    # An event representing a metadata entity being created.
    ENTITY_CREATED = 2

    # An event representing a metadata entity being updated.
    ENTITY_UPDATED = 3

    # An event representing a metadata entity being deleted.
    ENTITY_DELETED = 4

    # An event representing a partition being created.
    PARTITION_CREATED = 5

    # An event representing a partition being updated.
    PARTITION_UPDATED = 6

    # An event representing a partition being deleted.
    PARTITION_DELETED = 7

    # An event representing a table being published.
    TABLE_PUBLISHED = 10

    # An event representing a table being updated.
    TABLE_UPDATED = 11

    # An event representing a table being skipped in publishing.
    TABLE_IGNORED = 12

    # An event representing a table being deleted.
    TABLE_DELETED = 13
  end

  # The type of the entity.
  module EntityType
    # An unspecified event type.
    ENTITY_TYPE_UNSPECIFIED = 0

    # Entities representing structured data.
    TABLE = 1

    # Entities representing unstructured data.
    FILESET = 2
  end

  # The type of the published table.
  module TableType
    # An unspecified table type.
    TABLE_TYPE_UNSPECIFIED = 0

    # External table type.
    EXTERNAL_TABLE = 1

    # BigLake table type.
    BIGLAKE_TABLE = 2

    # Object table type for unstructured data.
    OBJECT_TABLE = 3
  end
end

#datascan_id::String

Returns The id of the associated datascan for standalone discovery.

Returns:

  • (::String)

    The id of the associated datascan for standalone discovery.



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'proto_docs/google/cloud/dataplex/v1/logs.rb', line 61

class DiscoveryEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Details about configuration events.
  # @!attribute [rw] parameters
  #   @return [::Google::Protobuf::Map{::String => ::String}]
  #     A list of discovery configuration parameters in effect.
  #     The keys are the field paths within DiscoverySpec.
  #     Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference,
  #     etc.
  class ConfigDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::String]
    class ParametersEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Details about the entity.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name of the entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the entity resource.
  class EntityDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the published table.
  # @!attribute [rw] table
  #   @return [::String]
  #     The fully-qualified resource name of the table resource.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::TableType]
  #     The type of the table resource.
  class TableDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the partition.
  # @!attribute [rw] partition
  #   @return [::String]
  #     The name to the partition resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name to the containing entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the containing entity resource.
  # @!attribute [rw] sampled_data_locations
  #   @return [::Array<::String>]
  #     The locations of the data items (e.g., a Cloud Storage objects) sampled
  #     for metadata inference.
  class PartitionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the action.
  # @!attribute [rw] type
  #   @return [::String]
  #     The type of action.
  #     Eg. IncompatibleDataSchema, InvalidDataFormat
  # @!attribute [rw] issue
  #   @return [::String]
  #     The human readable issue associated with the action.
  class ActionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The type of the event.
  module EventType
    # An unspecified event type.
    EVENT_TYPE_UNSPECIFIED = 0

    # An event representing discovery configuration in effect.
    CONFIG = 1

    # An event representing a metadata entity being created.
    ENTITY_CREATED = 2

    # An event representing a metadata entity being updated.
    ENTITY_UPDATED = 3

    # An event representing a metadata entity being deleted.
    ENTITY_DELETED = 4

    # An event representing a partition being created.
    PARTITION_CREATED = 5

    # An event representing a partition being updated.
    PARTITION_UPDATED = 6

    # An event representing a partition being deleted.
    PARTITION_DELETED = 7

    # An event representing a table being published.
    TABLE_PUBLISHED = 10

    # An event representing a table being updated.
    TABLE_UPDATED = 11

    # An event representing a table being skipped in publishing.
    TABLE_IGNORED = 12

    # An event representing a table being deleted.
    TABLE_DELETED = 13
  end

  # The type of the entity.
  module EntityType
    # An unspecified event type.
    ENTITY_TYPE_UNSPECIFIED = 0

    # Entities representing structured data.
    TABLE = 1

    # Entities representing unstructured data.
    FILESET = 2
  end

  # The type of the published table.
  module TableType
    # An unspecified table type.
    TABLE_TYPE_UNSPECIFIED = 0

    # External table type.
    EXTERNAL_TABLE = 1

    # BigLake table type.
    BIGLAKE_TABLE = 2

    # Object table type for unstructured data.
    OBJECT_TABLE = 3
  end
end

#entity::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityDetails

Returns Details about the entity associated with the event.

Returns:



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'proto_docs/google/cloud/dataplex/v1/logs.rb', line 61

class DiscoveryEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Details about configuration events.
  # @!attribute [rw] parameters
  #   @return [::Google::Protobuf::Map{::String => ::String}]
  #     A list of discovery configuration parameters in effect.
  #     The keys are the field paths within DiscoverySpec.
  #     Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference,
  #     etc.
  class ConfigDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::String]
    class ParametersEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Details about the entity.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name of the entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the entity resource.
  class EntityDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the published table.
  # @!attribute [rw] table
  #   @return [::String]
  #     The fully-qualified resource name of the table resource.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::TableType]
  #     The type of the table resource.
  class TableDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the partition.
  # @!attribute [rw] partition
  #   @return [::String]
  #     The name to the partition resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name to the containing entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the containing entity resource.
  # @!attribute [rw] sampled_data_locations
  #   @return [::Array<::String>]
  #     The locations of the data items (e.g., a Cloud Storage objects) sampled
  #     for metadata inference.
  class PartitionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the action.
  # @!attribute [rw] type
  #   @return [::String]
  #     The type of action.
  #     Eg. IncompatibleDataSchema, InvalidDataFormat
  # @!attribute [rw] issue
  #   @return [::String]
  #     The human readable issue associated with the action.
  class ActionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The type of the event.
  module EventType
    # An unspecified event type.
    EVENT_TYPE_UNSPECIFIED = 0

    # An event representing discovery configuration in effect.
    CONFIG = 1

    # An event representing a metadata entity being created.
    ENTITY_CREATED = 2

    # An event representing a metadata entity being updated.
    ENTITY_UPDATED = 3

    # An event representing a metadata entity being deleted.
    ENTITY_DELETED = 4

    # An event representing a partition being created.
    PARTITION_CREATED = 5

    # An event representing a partition being updated.
    PARTITION_UPDATED = 6

    # An event representing a partition being deleted.
    PARTITION_DELETED = 7

    # An event representing a table being published.
    TABLE_PUBLISHED = 10

    # An event representing a table being updated.
    TABLE_UPDATED = 11

    # An event representing a table being skipped in publishing.
    TABLE_IGNORED = 12

    # An event representing a table being deleted.
    TABLE_DELETED = 13
  end

  # The type of the entity.
  module EntityType
    # An unspecified event type.
    ENTITY_TYPE_UNSPECIFIED = 0

    # Entities representing structured data.
    TABLE = 1

    # Entities representing unstructured data.
    FILESET = 2
  end

  # The type of the published table.
  module TableType
    # An unspecified table type.
    TABLE_TYPE_UNSPECIFIED = 0

    # External table type.
    EXTERNAL_TABLE = 1

    # BigLake table type.
    BIGLAKE_TABLE = 2

    # Object table type for unstructured data.
    OBJECT_TABLE = 3
  end
end

#lake_id::String

Returns The id of the associated lake.

Returns:

  • (::String)

    The id of the associated lake.



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'proto_docs/google/cloud/dataplex/v1/logs.rb', line 61

class DiscoveryEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Details about configuration events.
  # @!attribute [rw] parameters
  #   @return [::Google::Protobuf::Map{::String => ::String}]
  #     A list of discovery configuration parameters in effect.
  #     The keys are the field paths within DiscoverySpec.
  #     Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference,
  #     etc.
  class ConfigDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::String]
    class ParametersEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Details about the entity.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name of the entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the entity resource.
  class EntityDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the published table.
  # @!attribute [rw] table
  #   @return [::String]
  #     The fully-qualified resource name of the table resource.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::TableType]
  #     The type of the table resource.
  class TableDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the partition.
  # @!attribute [rw] partition
  #   @return [::String]
  #     The name to the partition resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name to the containing entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the containing entity resource.
  # @!attribute [rw] sampled_data_locations
  #   @return [::Array<::String>]
  #     The locations of the data items (e.g., a Cloud Storage objects) sampled
  #     for metadata inference.
  class PartitionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the action.
  # @!attribute [rw] type
  #   @return [::String]
  #     The type of action.
  #     Eg. IncompatibleDataSchema, InvalidDataFormat
  # @!attribute [rw] issue
  #   @return [::String]
  #     The human readable issue associated with the action.
  class ActionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The type of the event.
  module EventType
    # An unspecified event type.
    EVENT_TYPE_UNSPECIFIED = 0

    # An event representing discovery configuration in effect.
    CONFIG = 1

    # An event representing a metadata entity being created.
    ENTITY_CREATED = 2

    # An event representing a metadata entity being updated.
    ENTITY_UPDATED = 3

    # An event representing a metadata entity being deleted.
    ENTITY_DELETED = 4

    # An event representing a partition being created.
    PARTITION_CREATED = 5

    # An event representing a partition being updated.
    PARTITION_UPDATED = 6

    # An event representing a partition being deleted.
    PARTITION_DELETED = 7

    # An event representing a table being published.
    TABLE_PUBLISHED = 10

    # An event representing a table being updated.
    TABLE_UPDATED = 11

    # An event representing a table being skipped in publishing.
    TABLE_IGNORED = 12

    # An event representing a table being deleted.
    TABLE_DELETED = 13
  end

  # The type of the entity.
  module EntityType
    # An unspecified event type.
    ENTITY_TYPE_UNSPECIFIED = 0

    # Entities representing structured data.
    TABLE = 1

    # Entities representing unstructured data.
    FILESET = 2
  end

  # The type of the published table.
  module TableType
    # An unspecified table type.
    TABLE_TYPE_UNSPECIFIED = 0

    # External table type.
    EXTERNAL_TABLE = 1

    # BigLake table type.
    BIGLAKE_TABLE = 2

    # Object table type for unstructured data.
    OBJECT_TABLE = 3
  end
end

#message::String

Returns The log message.

Returns:

  • (::String)

    The log message.



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'proto_docs/google/cloud/dataplex/v1/logs.rb', line 61

class DiscoveryEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Details about configuration events.
  # @!attribute [rw] parameters
  #   @return [::Google::Protobuf::Map{::String => ::String}]
  #     A list of discovery configuration parameters in effect.
  #     The keys are the field paths within DiscoverySpec.
  #     Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference,
  #     etc.
  class ConfigDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::String]
    class ParametersEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Details about the entity.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name of the entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the entity resource.
  class EntityDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the published table.
  # @!attribute [rw] table
  #   @return [::String]
  #     The fully-qualified resource name of the table resource.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::TableType]
  #     The type of the table resource.
  class TableDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the partition.
  # @!attribute [rw] partition
  #   @return [::String]
  #     The name to the partition resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name to the containing entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the containing entity resource.
  # @!attribute [rw] sampled_data_locations
  #   @return [::Array<::String>]
  #     The locations of the data items (e.g., a Cloud Storage objects) sampled
  #     for metadata inference.
  class PartitionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the action.
  # @!attribute [rw] type
  #   @return [::String]
  #     The type of action.
  #     Eg. IncompatibleDataSchema, InvalidDataFormat
  # @!attribute [rw] issue
  #   @return [::String]
  #     The human readable issue associated with the action.
  class ActionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The type of the event.
  module EventType
    # An unspecified event type.
    EVENT_TYPE_UNSPECIFIED = 0

    # An event representing discovery configuration in effect.
    CONFIG = 1

    # An event representing a metadata entity being created.
    ENTITY_CREATED = 2

    # An event representing a metadata entity being updated.
    ENTITY_UPDATED = 3

    # An event representing a metadata entity being deleted.
    ENTITY_DELETED = 4

    # An event representing a partition being created.
    PARTITION_CREATED = 5

    # An event representing a partition being updated.
    PARTITION_UPDATED = 6

    # An event representing a partition being deleted.
    PARTITION_DELETED = 7

    # An event representing a table being published.
    TABLE_PUBLISHED = 10

    # An event representing a table being updated.
    TABLE_UPDATED = 11

    # An event representing a table being skipped in publishing.
    TABLE_IGNORED = 12

    # An event representing a table being deleted.
    TABLE_DELETED = 13
  end

  # The type of the entity.
  module EntityType
    # An unspecified event type.
    ENTITY_TYPE_UNSPECIFIED = 0

    # Entities representing structured data.
    TABLE = 1

    # Entities representing unstructured data.
    FILESET = 2
  end

  # The type of the published table.
  module TableType
    # An unspecified table type.
    TABLE_TYPE_UNSPECIFIED = 0

    # External table type.
    EXTERNAL_TABLE = 1

    # BigLake table type.
    BIGLAKE_TABLE = 2

    # Object table type for unstructured data.
    OBJECT_TABLE = 3
  end
end

#partition::Google::Cloud::Dataplex::V1::DiscoveryEvent::PartitionDetails

Returns Details about the partition associated with the event.

Returns:



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'proto_docs/google/cloud/dataplex/v1/logs.rb', line 61

class DiscoveryEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Details about configuration events.
  # @!attribute [rw] parameters
  #   @return [::Google::Protobuf::Map{::String => ::String}]
  #     A list of discovery configuration parameters in effect.
  #     The keys are the field paths within DiscoverySpec.
  #     Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference,
  #     etc.
  class ConfigDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::String]
    class ParametersEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Details about the entity.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name of the entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the entity resource.
  class EntityDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the published table.
  # @!attribute [rw] table
  #   @return [::String]
  #     The fully-qualified resource name of the table resource.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::TableType]
  #     The type of the table resource.
  class TableDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the partition.
  # @!attribute [rw] partition
  #   @return [::String]
  #     The name to the partition resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name to the containing entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the containing entity resource.
  # @!attribute [rw] sampled_data_locations
  #   @return [::Array<::String>]
  #     The locations of the data items (e.g., a Cloud Storage objects) sampled
  #     for metadata inference.
  class PartitionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the action.
  # @!attribute [rw] type
  #   @return [::String]
  #     The type of action.
  #     Eg. IncompatibleDataSchema, InvalidDataFormat
  # @!attribute [rw] issue
  #   @return [::String]
  #     The human readable issue associated with the action.
  class ActionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The type of the event.
  module EventType
    # An unspecified event type.
    EVENT_TYPE_UNSPECIFIED = 0

    # An event representing discovery configuration in effect.
    CONFIG = 1

    # An event representing a metadata entity being created.
    ENTITY_CREATED = 2

    # An event representing a metadata entity being updated.
    ENTITY_UPDATED = 3

    # An event representing a metadata entity being deleted.
    ENTITY_DELETED = 4

    # An event representing a partition being created.
    PARTITION_CREATED = 5

    # An event representing a partition being updated.
    PARTITION_UPDATED = 6

    # An event representing a partition being deleted.
    PARTITION_DELETED = 7

    # An event representing a table being published.
    TABLE_PUBLISHED = 10

    # An event representing a table being updated.
    TABLE_UPDATED = 11

    # An event representing a table being skipped in publishing.
    TABLE_IGNORED = 12

    # An event representing a table being deleted.
    TABLE_DELETED = 13
  end

  # The type of the entity.
  module EntityType
    # An unspecified event type.
    ENTITY_TYPE_UNSPECIFIED = 0

    # Entities representing structured data.
    TABLE = 1

    # Entities representing unstructured data.
    FILESET = 2
  end

  # The type of the published table.
  module TableType
    # An unspecified table type.
    TABLE_TYPE_UNSPECIFIED = 0

    # External table type.
    EXTERNAL_TABLE = 1

    # BigLake table type.
    BIGLAKE_TABLE = 2

    # Object table type for unstructured data.
    OBJECT_TABLE = 3
  end
end

#table::Google::Cloud::Dataplex::V1::DiscoveryEvent::TableDetails

Returns Details about the BigQuery table publishing associated with the event.

Returns:



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'proto_docs/google/cloud/dataplex/v1/logs.rb', line 61

class DiscoveryEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Details about configuration events.
  # @!attribute [rw] parameters
  #   @return [::Google::Protobuf::Map{::String => ::String}]
  #     A list of discovery configuration parameters in effect.
  #     The keys are the field paths within DiscoverySpec.
  #     Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference,
  #     etc.
  class ConfigDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::String]
    class ParametersEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Details about the entity.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name of the entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the entity resource.
  class EntityDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the published table.
  # @!attribute [rw] table
  #   @return [::String]
  #     The fully-qualified resource name of the table resource.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::TableType]
  #     The type of the table resource.
  class TableDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the partition.
  # @!attribute [rw] partition
  #   @return [::String]
  #     The name to the partition resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name to the containing entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the containing entity resource.
  # @!attribute [rw] sampled_data_locations
  #   @return [::Array<::String>]
  #     The locations of the data items (e.g., a Cloud Storage objects) sampled
  #     for metadata inference.
  class PartitionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the action.
  # @!attribute [rw] type
  #   @return [::String]
  #     The type of action.
  #     Eg. IncompatibleDataSchema, InvalidDataFormat
  # @!attribute [rw] issue
  #   @return [::String]
  #     The human readable issue associated with the action.
  class ActionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The type of the event.
  module EventType
    # An unspecified event type.
    EVENT_TYPE_UNSPECIFIED = 0

    # An event representing discovery configuration in effect.
    CONFIG = 1

    # An event representing a metadata entity being created.
    ENTITY_CREATED = 2

    # An event representing a metadata entity being updated.
    ENTITY_UPDATED = 3

    # An event representing a metadata entity being deleted.
    ENTITY_DELETED = 4

    # An event representing a partition being created.
    PARTITION_CREATED = 5

    # An event representing a partition being updated.
    PARTITION_UPDATED = 6

    # An event representing a partition being deleted.
    PARTITION_DELETED = 7

    # An event representing a table being published.
    TABLE_PUBLISHED = 10

    # An event representing a table being updated.
    TABLE_UPDATED = 11

    # An event representing a table being skipped in publishing.
    TABLE_IGNORED = 12

    # An event representing a table being deleted.
    TABLE_DELETED = 13
  end

  # The type of the entity.
  module EntityType
    # An unspecified event type.
    ENTITY_TYPE_UNSPECIFIED = 0

    # Entities representing structured data.
    TABLE = 1

    # Entities representing unstructured data.
    FILESET = 2
  end

  # The type of the published table.
  module TableType
    # An unspecified table type.
    TABLE_TYPE_UNSPECIFIED = 0

    # External table type.
    EXTERNAL_TABLE = 1

    # BigLake table type.
    BIGLAKE_TABLE = 2

    # Object table type for unstructured data.
    OBJECT_TABLE = 3
  end
end

#type::Google::Cloud::Dataplex::V1::DiscoveryEvent::EventType

Returns The type of the event being logged.

Returns:



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'proto_docs/google/cloud/dataplex/v1/logs.rb', line 61

class DiscoveryEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Details about configuration events.
  # @!attribute [rw] parameters
  #   @return [::Google::Protobuf::Map{::String => ::String}]
  #     A list of discovery configuration parameters in effect.
  #     The keys are the field paths within DiscoverySpec.
  #     Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference,
  #     etc.
  class ConfigDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::String]
    class ParametersEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Details about the entity.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name of the entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the entity resource.
  class EntityDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the published table.
  # @!attribute [rw] table
  #   @return [::String]
  #     The fully-qualified resource name of the table resource.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::TableType]
  #     The type of the table resource.
  class TableDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the partition.
  # @!attribute [rw] partition
  #   @return [::String]
  #     The name to the partition resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name to the containing entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the containing entity resource.
  # @!attribute [rw] sampled_data_locations
  #   @return [::Array<::String>]
  #     The locations of the data items (e.g., a Cloud Storage objects) sampled
  #     for metadata inference.
  class PartitionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the action.
  # @!attribute [rw] type
  #   @return [::String]
  #     The type of action.
  #     Eg. IncompatibleDataSchema, InvalidDataFormat
  # @!attribute [rw] issue
  #   @return [::String]
  #     The human readable issue associated with the action.
  class ActionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The type of the event.
  module EventType
    # An unspecified event type.
    EVENT_TYPE_UNSPECIFIED = 0

    # An event representing discovery configuration in effect.
    CONFIG = 1

    # An event representing a metadata entity being created.
    ENTITY_CREATED = 2

    # An event representing a metadata entity being updated.
    ENTITY_UPDATED = 3

    # An event representing a metadata entity being deleted.
    ENTITY_DELETED = 4

    # An event representing a partition being created.
    PARTITION_CREATED = 5

    # An event representing a partition being updated.
    PARTITION_UPDATED = 6

    # An event representing a partition being deleted.
    PARTITION_DELETED = 7

    # An event representing a table being published.
    TABLE_PUBLISHED = 10

    # An event representing a table being updated.
    TABLE_UPDATED = 11

    # An event representing a table being skipped in publishing.
    TABLE_IGNORED = 12

    # An event representing a table being deleted.
    TABLE_DELETED = 13
  end

  # The type of the entity.
  module EntityType
    # An unspecified event type.
    ENTITY_TYPE_UNSPECIFIED = 0

    # Entities representing structured data.
    TABLE = 1

    # Entities representing unstructured data.
    FILESET = 2
  end

  # The type of the published table.
  module TableType
    # An unspecified table type.
    TABLE_TYPE_UNSPECIFIED = 0

    # External table type.
    EXTERNAL_TABLE = 1

    # BigLake table type.
    BIGLAKE_TABLE = 2

    # Object table type for unstructured data.
    OBJECT_TABLE = 3
  end
end

#zone_id::String

Returns The id of the associated zone.

Returns:

  • (::String)

    The id of the associated zone.



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'proto_docs/google/cloud/dataplex/v1/logs.rb', line 61

class DiscoveryEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Details about configuration events.
  # @!attribute [rw] parameters
  #   @return [::Google::Protobuf::Map{::String => ::String}]
  #     A list of discovery configuration parameters in effect.
  #     The keys are the field paths within DiscoverySpec.
  #     Eg. includePatterns, excludePatterns, csvOptions.disableTypeInference,
  #     etc.
  class ConfigDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # @!attribute [rw] key
    #   @return [::String]
    # @!attribute [rw] value
    #   @return [::String]
    class ParametersEntry
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Details about the entity.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name of the entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the entity resource.
  class EntityDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the published table.
  # @!attribute [rw] table
  #   @return [::String]
  #     The fully-qualified resource name of the table resource.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::TableType]
  #     The type of the table resource.
  class TableDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the partition.
  # @!attribute [rw] partition
  #   @return [::String]
  #     The name to the partition resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] entity
  #   @return [::String]
  #     The name to the containing entity resource.
  #     The name is the fully-qualified resource name.
  # @!attribute [rw] type
  #   @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EntityType]
  #     The type of the containing entity resource.
  # @!attribute [rw] sampled_data_locations
  #   @return [::Array<::String>]
  #     The locations of the data items (e.g., a Cloud Storage objects) sampled
  #     for metadata inference.
  class PartitionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Details about the action.
  # @!attribute [rw] type
  #   @return [::String]
  #     The type of action.
  #     Eg. IncompatibleDataSchema, InvalidDataFormat
  # @!attribute [rw] issue
  #   @return [::String]
  #     The human readable issue associated with the action.
  class ActionDetails
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The type of the event.
  module EventType
    # An unspecified event type.
    EVENT_TYPE_UNSPECIFIED = 0

    # An event representing discovery configuration in effect.
    CONFIG = 1

    # An event representing a metadata entity being created.
    ENTITY_CREATED = 2

    # An event representing a metadata entity being updated.
    ENTITY_UPDATED = 3

    # An event representing a metadata entity being deleted.
    ENTITY_DELETED = 4

    # An event representing a partition being created.
    PARTITION_CREATED = 5

    # An event representing a partition being updated.
    PARTITION_UPDATED = 6

    # An event representing a partition being deleted.
    PARTITION_DELETED = 7

    # An event representing a table being published.
    TABLE_PUBLISHED = 10

    # An event representing a table being updated.
    TABLE_UPDATED = 11

    # An event representing a table being skipped in publishing.
    TABLE_IGNORED = 12

    # An event representing a table being deleted.
    TABLE_DELETED = 13
  end

  # The type of the entity.
  module EntityType
    # An unspecified event type.
    ENTITY_TYPE_UNSPECIFIED = 0

    # Entities representing structured data.
    TABLE = 1

    # Entities representing unstructured data.
    FILESET = 2
  end

  # The type of the published table.
  module TableType
    # An unspecified table type.
    TABLE_TYPE_UNSPECIFIED = 0

    # External table type.
    EXTERNAL_TABLE = 1

    # BigLake table type.
    BIGLAKE_TABLE = 2

    # Object table type for unstructured data.
    OBJECT_TABLE = 3
  end
end