google-apis-metastore_v1alpha 0.85.0 → 0.86.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3323b375c13275b4a39e57b08da6b74e02dfd3fa1ba32fca7412c54d6cd0cc34
|
|
4
|
+
data.tar.gz: 50c768daf1eb067c40016709e46ab2c32b5821087f3e9b16179f48f169dc6e64
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc2fb23194f98ce798a1c7f5baf63b35174a50ddeb7351661f7aa0881f6f2da6bff637e0d99613495f3500de86b5e165861fa90daee2a695d9e4a56be8288cee
|
|
7
|
+
data.tar.gz: ec9f8236525f7d879aa8ef559e3e2559dddc254395bf39613d2e69dfdcd70d6dacf61369fda14154b44ad654225e6da384b4e51970d9bf750eb1dbf99af3cba7
|
data/CHANGELOG.md
CHANGED
|
@@ -629,181 +629,6 @@ module Google
|
|
|
629
629
|
end
|
|
630
630
|
end
|
|
631
631
|
|
|
632
|
-
# Configuration information to start the Change Data Capture (CDC) streams from
|
|
633
|
-
# customer database to backend database of Dataproc Metastore.
|
|
634
|
-
class CdcConfig
|
|
635
|
-
include Google::Apis::Core::Hashable
|
|
636
|
-
|
|
637
|
-
# Optional. The bucket to write the intermediate stream event data in. The
|
|
638
|
-
# bucket name must be without any prefix like "gs://". See the bucket naming
|
|
639
|
-
# requirements (https://cloud.google.com/storage/docs/buckets#naming). This
|
|
640
|
-
# field is optional. If not set, the Artifacts Cloud Storage bucket will be used.
|
|
641
|
-
# Corresponds to the JSON property `bucket`
|
|
642
|
-
# @return [String]
|
|
643
|
-
attr_accessor :bucket
|
|
644
|
-
|
|
645
|
-
# Required. Input only. The password for the user that Datastream service should
|
|
646
|
-
# use for the MySQL connection. This field is not returned on request.
|
|
647
|
-
# Corresponds to the JSON property `password`
|
|
648
|
-
# @return [String]
|
|
649
|
-
attr_accessor :password
|
|
650
|
-
|
|
651
|
-
# Required. The URL of the subnetwork resource to create the VM instance hosting
|
|
652
|
-
# the reverse proxy in. More context in https://cloud.google.com/datastream/docs/
|
|
653
|
-
# private-connectivity#reverse-csql-proxy The subnetwork should reside in the
|
|
654
|
-
# network provided in the request that Datastream will peer to and should be in
|
|
655
|
-
# the same region as Datastream, in the following format. projects/`project_id`/
|
|
656
|
-
# regions/`region_id`/subnetworks/`subnetwork_id`
|
|
657
|
-
# Corresponds to the JSON property `reverseProxySubnet`
|
|
658
|
-
# @return [String]
|
|
659
|
-
attr_accessor :reverse_proxy_subnet
|
|
660
|
-
|
|
661
|
-
# Optional. The root path inside the Cloud Storage bucket. The stream event data
|
|
662
|
-
# will be written to this path. The default value is /migration.
|
|
663
|
-
# Corresponds to the JSON property `rootPath`
|
|
664
|
-
# @return [String]
|
|
665
|
-
attr_accessor :root_path
|
|
666
|
-
|
|
667
|
-
# Required. A /29 CIDR IP range for peering with datastream.
|
|
668
|
-
# Corresponds to the JSON property `subnetIpRange`
|
|
669
|
-
# @return [String]
|
|
670
|
-
attr_accessor :subnet_ip_range
|
|
671
|
-
|
|
672
|
-
# Required. The username that the Datastream service should use for the MySQL
|
|
673
|
-
# connection.
|
|
674
|
-
# Corresponds to the JSON property `username`
|
|
675
|
-
# @return [String]
|
|
676
|
-
attr_accessor :username
|
|
677
|
-
|
|
678
|
-
# Required. Fully qualified name of the Cloud SQL instance's VPC network or the
|
|
679
|
-
# shared VPC network that Datastream will peer to, in the following format:
|
|
680
|
-
# projects/`project_id`/locations/global/networks/`network_id`. More context in
|
|
681
|
-
# https://cloud.google.com/datastream/docs/network-connectivity-options#
|
|
682
|
-
# privateconnectivity
|
|
683
|
-
# Corresponds to the JSON property `vpcNetwork`
|
|
684
|
-
# @return [String]
|
|
685
|
-
attr_accessor :vpc_network
|
|
686
|
-
|
|
687
|
-
def initialize(**args)
|
|
688
|
-
update!(**args)
|
|
689
|
-
end
|
|
690
|
-
|
|
691
|
-
# Update properties of this object
|
|
692
|
-
def update!(**args)
|
|
693
|
-
@bucket = args[:bucket] if args.key?(:bucket)
|
|
694
|
-
@password = args[:password] if args.key?(:password)
|
|
695
|
-
@reverse_proxy_subnet = args[:reverse_proxy_subnet] if args.key?(:reverse_proxy_subnet)
|
|
696
|
-
@root_path = args[:root_path] if args.key?(:root_path)
|
|
697
|
-
@subnet_ip_range = args[:subnet_ip_range] if args.key?(:subnet_ip_range)
|
|
698
|
-
@username = args[:username] if args.key?(:username)
|
|
699
|
-
@vpc_network = args[:vpc_network] if args.key?(:vpc_network)
|
|
700
|
-
end
|
|
701
|
-
end
|
|
702
|
-
|
|
703
|
-
# Configuration information to establish customer database connection before the
|
|
704
|
-
# cutover phase of migration
|
|
705
|
-
class CloudSqlConnectionConfig
|
|
706
|
-
include Google::Apis::Core::Hashable
|
|
707
|
-
|
|
708
|
-
# Required. The hive database name.
|
|
709
|
-
# Corresponds to the JSON property `hiveDatabaseName`
|
|
710
|
-
# @return [String]
|
|
711
|
-
attr_accessor :hive_database_name
|
|
712
|
-
|
|
713
|
-
# Required. Cloud SQL database connection name (project_id:region:instance_name)
|
|
714
|
-
# Corresponds to the JSON property `instanceConnectionName`
|
|
715
|
-
# @return [String]
|
|
716
|
-
attr_accessor :instance_connection_name
|
|
717
|
-
|
|
718
|
-
# Required. The private IP address of the Cloud SQL instance.
|
|
719
|
-
# Corresponds to the JSON property `ipAddress`
|
|
720
|
-
# @return [String]
|
|
721
|
-
attr_accessor :ip_address
|
|
722
|
-
|
|
723
|
-
# Required. The relative resource name of the subnetwork to be used for Private
|
|
724
|
-
# Service Connect. Note that this cannot be a regular subnet and is used only
|
|
725
|
-
# for NAT. (https://cloud.google.com/vpc/docs/about-vpc-hosted-services#psc-
|
|
726
|
-
# subnets) This subnet is used to publish the SOCKS5 proxy service. The subnet
|
|
727
|
-
# size must be at least /29 and it should reside in a network through which the
|
|
728
|
-
# Cloud SQL instance is accessible. The resource name should be in the format,
|
|
729
|
-
# projects/`project_id`/regions/`region_id`/subnetworks/`subnetwork_id`
|
|
730
|
-
# Corresponds to the JSON property `natSubnet`
|
|
731
|
-
# @return [String]
|
|
732
|
-
attr_accessor :nat_subnet
|
|
733
|
-
|
|
734
|
-
# Required. Input only. The password for the user that Dataproc Metastore
|
|
735
|
-
# service will be using to connect to the database. This field is not returned
|
|
736
|
-
# on request.
|
|
737
|
-
# Corresponds to the JSON property `password`
|
|
738
|
-
# @return [String]
|
|
739
|
-
attr_accessor :password
|
|
740
|
-
|
|
741
|
-
# Required. The network port of the database.
|
|
742
|
-
# Corresponds to the JSON property `port`
|
|
743
|
-
# @return [Fixnum]
|
|
744
|
-
attr_accessor :port
|
|
745
|
-
|
|
746
|
-
# Required. The relative resource name of the subnetwork to deploy the SOCKS5
|
|
747
|
-
# proxy service in. The subnetwork should reside in a network through which the
|
|
748
|
-
# Cloud SQL instance is accessible. The resource name should be in the format,
|
|
749
|
-
# projects/`project_id`/regions/`region_id`/subnetworks/`subnetwork_id`
|
|
750
|
-
# Corresponds to the JSON property `proxySubnet`
|
|
751
|
-
# @return [String]
|
|
752
|
-
attr_accessor :proxy_subnet
|
|
753
|
-
|
|
754
|
-
# Required. The username that Dataproc Metastore service will use to connect to
|
|
755
|
-
# the database.
|
|
756
|
-
# Corresponds to the JSON property `username`
|
|
757
|
-
# @return [String]
|
|
758
|
-
attr_accessor :username
|
|
759
|
-
|
|
760
|
-
def initialize(**args)
|
|
761
|
-
update!(**args)
|
|
762
|
-
end
|
|
763
|
-
|
|
764
|
-
# Update properties of this object
|
|
765
|
-
def update!(**args)
|
|
766
|
-
@hive_database_name = args[:hive_database_name] if args.key?(:hive_database_name)
|
|
767
|
-
@instance_connection_name = args[:instance_connection_name] if args.key?(:instance_connection_name)
|
|
768
|
-
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
769
|
-
@nat_subnet = args[:nat_subnet] if args.key?(:nat_subnet)
|
|
770
|
-
@password = args[:password] if args.key?(:password)
|
|
771
|
-
@port = args[:port] if args.key?(:port)
|
|
772
|
-
@proxy_subnet = args[:proxy_subnet] if args.key?(:proxy_subnet)
|
|
773
|
-
@username = args[:username] if args.key?(:username)
|
|
774
|
-
end
|
|
775
|
-
end
|
|
776
|
-
|
|
777
|
-
# Deprecated: Migrations to Dataproc Metastore are no longer supported. Use
|
|
778
|
-
# BigLake Metastore migration instead. Configuration information for migrating
|
|
779
|
-
# from self-managed hive metastore on Google Cloud using Cloud SQL as the
|
|
780
|
-
# backend database to Dataproc Metastore.
|
|
781
|
-
class CloudSqlMigrationConfig
|
|
782
|
-
include Google::Apis::Core::Hashable
|
|
783
|
-
|
|
784
|
-
# Configuration information to start the Change Data Capture (CDC) streams from
|
|
785
|
-
# customer database to backend database of Dataproc Metastore.
|
|
786
|
-
# Corresponds to the JSON property `cdcConfig`
|
|
787
|
-
# @return [Google::Apis::MetastoreV1alpha::CdcConfig]
|
|
788
|
-
attr_accessor :cdc_config
|
|
789
|
-
|
|
790
|
-
# Configuration information to establish customer database connection before the
|
|
791
|
-
# cutover phase of migration
|
|
792
|
-
# Corresponds to the JSON property `cloudSqlConnectionConfig`
|
|
793
|
-
# @return [Google::Apis::MetastoreV1alpha::CloudSqlConnectionConfig]
|
|
794
|
-
attr_accessor :cloud_sql_connection_config
|
|
795
|
-
|
|
796
|
-
def initialize(**args)
|
|
797
|
-
update!(**args)
|
|
798
|
-
end
|
|
799
|
-
|
|
800
|
-
# Update properties of this object
|
|
801
|
-
def update!(**args)
|
|
802
|
-
@cdc_config = args[:cdc_config] if args.key?(:cdc_config)
|
|
803
|
-
@cloud_sql_connection_config = args[:cloud_sql_connection_config] if args.key?(:cloud_sql_connection_config)
|
|
804
|
-
end
|
|
805
|
-
end
|
|
806
|
-
|
|
807
632
|
# Request message for DataprocMetastore.CompleteMigration.
|
|
808
633
|
class CompleteMigrationRequest
|
|
809
634
|
include Google::Apis::Core::Hashable
|
|
@@ -2179,14 +2004,6 @@ module Google
|
|
|
2179
2004
|
# @return [Google::Apis::MetastoreV1alpha::BigLakeMetastoreMigrationConfig]
|
|
2180
2005
|
attr_accessor :biglake_metastore_migration_config
|
|
2181
2006
|
|
|
2182
|
-
# Deprecated: Migrations to Dataproc Metastore are no longer supported. Use
|
|
2183
|
-
# BigLake Metastore migration instead. Configuration information for migrating
|
|
2184
|
-
# from self-managed hive metastore on Google Cloud using Cloud SQL as the
|
|
2185
|
-
# backend database to Dataproc Metastore.
|
|
2186
|
-
# Corresponds to the JSON property `cloudSqlMigrationConfig`
|
|
2187
|
-
# @return [Google::Apis::MetastoreV1alpha::CloudSqlMigrationConfig]
|
|
2188
|
-
attr_accessor :cloud_sql_migration_config
|
|
2189
|
-
|
|
2190
2007
|
# Output only. The time when the migration execution was started.
|
|
2191
2008
|
# Corresponds to the JSON property `createTime`
|
|
2192
2009
|
# @return [String]
|
|
@@ -2229,7 +2046,6 @@ module Google
|
|
|
2229
2046
|
# Update properties of this object
|
|
2230
2047
|
def update!(**args)
|
|
2231
2048
|
@biglake_metastore_migration_config = args[:biglake_metastore_migration_config] if args.key?(:biglake_metastore_migration_config)
|
|
2232
|
-
@cloud_sql_migration_config = args[:cloud_sql_migration_config] if args.key?(:cloud_sql_migration_config)
|
|
2233
2049
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
2234
2050
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
2235
2051
|
@name = args[:name] if args.key?(:name)
|
|
@@ -3264,6 +3080,15 @@ module Google
|
|
|
3264
3080
|
# @return [Google::Apis::MetastoreV1alpha::MigrationExecution]
|
|
3265
3081
|
attr_accessor :migration_execution
|
|
3266
3082
|
|
|
3083
|
+
# Optional. The ID to use for the migration execution, which will become the
|
|
3084
|
+
# final component of the migration execution's resource name. If not specified,
|
|
3085
|
+
# a UUID will be generated.This value must be between 2 and 63 characters long
|
|
3086
|
+
# inclusive, begin with a letter, end with a letter or number, and valid
|
|
3087
|
+
# characters are a-z0-9-.
|
|
3088
|
+
# Corresponds to the JSON property `migrationExecutionId`
|
|
3089
|
+
# @return [String]
|
|
3090
|
+
attr_accessor :migration_execution_id
|
|
3091
|
+
|
|
3267
3092
|
# Optional. A request ID. Specify a unique request ID to allow the server to
|
|
3268
3093
|
# ignore the request if it has completed. The server will ignore subsequent
|
|
3269
3094
|
# requests that provide a duplicate request ID for at least 60 minutes after the
|
|
@@ -3283,6 +3108,7 @@ module Google
|
|
|
3283
3108
|
# Update properties of this object
|
|
3284
3109
|
def update!(**args)
|
|
3285
3110
|
@migration_execution = args[:migration_execution] if args.key?(:migration_execution)
|
|
3111
|
+
@migration_execution_id = args[:migration_execution_id] if args.key?(:migration_execution_id)
|
|
3286
3112
|
@request_id = args[:request_id] if args.key?(:request_id)
|
|
3287
3113
|
end
|
|
3288
3114
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module MetastoreV1alpha
|
|
18
18
|
# Version of the google-apis-metastore_v1alpha gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.86.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260825"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -124,24 +124,6 @@ module Google
|
|
|
124
124
|
include Google::Apis::Core::JsonObjectSupport
|
|
125
125
|
end
|
|
126
126
|
|
|
127
|
-
class CdcConfig
|
|
128
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
129
|
-
|
|
130
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
131
|
-
end
|
|
132
|
-
|
|
133
|
-
class CloudSqlConnectionConfig
|
|
134
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
135
|
-
|
|
136
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
137
|
-
end
|
|
138
|
-
|
|
139
|
-
class CloudSqlMigrationConfig
|
|
140
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
141
|
-
|
|
142
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
143
|
-
end
|
|
144
|
-
|
|
145
127
|
class CompleteMigrationRequest
|
|
146
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
147
129
|
|
|
@@ -743,43 +725,6 @@ module Google
|
|
|
743
725
|
end
|
|
744
726
|
end
|
|
745
727
|
|
|
746
|
-
class CdcConfig
|
|
747
|
-
# @private
|
|
748
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
749
|
-
property :bucket, as: 'bucket'
|
|
750
|
-
property :password, as: 'password'
|
|
751
|
-
property :reverse_proxy_subnet, as: 'reverseProxySubnet'
|
|
752
|
-
property :root_path, as: 'rootPath'
|
|
753
|
-
property :subnet_ip_range, as: 'subnetIpRange'
|
|
754
|
-
property :username, as: 'username'
|
|
755
|
-
property :vpc_network, as: 'vpcNetwork'
|
|
756
|
-
end
|
|
757
|
-
end
|
|
758
|
-
|
|
759
|
-
class CloudSqlConnectionConfig
|
|
760
|
-
# @private
|
|
761
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
762
|
-
property :hive_database_name, as: 'hiveDatabaseName'
|
|
763
|
-
property :instance_connection_name, as: 'instanceConnectionName'
|
|
764
|
-
property :ip_address, as: 'ipAddress'
|
|
765
|
-
property :nat_subnet, as: 'natSubnet'
|
|
766
|
-
property :password, as: 'password'
|
|
767
|
-
property :port, as: 'port'
|
|
768
|
-
property :proxy_subnet, as: 'proxySubnet'
|
|
769
|
-
property :username, as: 'username'
|
|
770
|
-
end
|
|
771
|
-
end
|
|
772
|
-
|
|
773
|
-
class CloudSqlMigrationConfig
|
|
774
|
-
# @private
|
|
775
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
776
|
-
property :cdc_config, as: 'cdcConfig', class: Google::Apis::MetastoreV1alpha::CdcConfig, decorator: Google::Apis::MetastoreV1alpha::CdcConfig::Representation
|
|
777
|
-
|
|
778
|
-
property :cloud_sql_connection_config, as: 'cloudSqlConnectionConfig', class: Google::Apis::MetastoreV1alpha::CloudSqlConnectionConfig, decorator: Google::Apis::MetastoreV1alpha::CloudSqlConnectionConfig::Representation
|
|
779
|
-
|
|
780
|
-
end
|
|
781
|
-
end
|
|
782
|
-
|
|
783
728
|
class CompleteMigrationRequest
|
|
784
729
|
# @private
|
|
785
730
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1173,8 +1118,6 @@ module Google
|
|
|
1173
1118
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1174
1119
|
property :biglake_metastore_migration_config, as: 'biglakeMetastoreMigrationConfig', class: Google::Apis::MetastoreV1alpha::BigLakeMetastoreMigrationConfig, decorator: Google::Apis::MetastoreV1alpha::BigLakeMetastoreMigrationConfig::Representation
|
|
1175
1120
|
|
|
1176
|
-
property :cloud_sql_migration_config, as: 'cloudSqlMigrationConfig', class: Google::Apis::MetastoreV1alpha::CloudSqlMigrationConfig, decorator: Google::Apis::MetastoreV1alpha::CloudSqlMigrationConfig::Representation
|
|
1177
|
-
|
|
1178
1121
|
property :create_time, as: 'createTime'
|
|
1179
1122
|
property :end_time, as: 'endTime'
|
|
1180
1123
|
property :name, as: 'name'
|
|
@@ -1439,6 +1382,7 @@ module Google
|
|
|
1439
1382
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1440
1383
|
property :migration_execution, as: 'migrationExecution', class: Google::Apis::MetastoreV1alpha::MigrationExecution, decorator: Google::Apis::MetastoreV1alpha::MigrationExecution::Representation
|
|
1441
1384
|
|
|
1385
|
+
property :migration_execution_id, as: 'migrationExecutionId'
|
|
1442
1386
|
property :request_id, as: 'requestId'
|
|
1443
1387
|
end
|
|
1444
1388
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-metastore_v1alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.86.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1alpha/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.86.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1alpha
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|