google-apis-sqladmin_v1beta4 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2a7618ba666da7b2bff823247dcff3d59bd3e67818445dc41a7b2aadf0560f9a
4
- data.tar.gz: bb57b4e4bb41842bb5ff0885fbe3dd891b8df895b0712bf4566894fb3b72fcdc
3
+ metadata.gz: 810903e875c041eea9f227913a9ec508288e8e05a73233113e8b12a31e5594cc
4
+ data.tar.gz: f955e227eca6d11cc13f91362a9b826b6f35d0ec0f90644739a7e8611a803320
5
5
  SHA512:
6
- metadata.gz: bdbb3f41a553683d41da04101ff60c9de4ddbb420f26623a903379117425bae455ef5d29991eb33a89e7b6d9a55fc32870d8bd3026a7f4845c432ddd3540ee83
7
- data.tar.gz: 04447b0398a05e6797ca46b2d59c037d6d8ba58486daabb971cf52eac20fae7aa594562f6fc003bd8e741274ed8ca8d05a45a0944ace7093521bc35ff991f5e9
6
+ metadata.gz: 31b534694a84d83d4ceb0daeea92e18d367f460455c6c24c09aa92dccaa2088f64cf5d47bc0ae9b0dd566048b840aecf7f5fea93d465e9f9d2d26b993a7f5a9e
7
+ data.tar.gz: e6f18ae320d576a1a5b793a83001d19315a05a5400032320d64d9d3587a3b997854ccccdbef9618c683a01941ca4dff18f9823a76ee0827bbd28157f45e82500
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-sqladmin_v1beta4
2
2
 
3
+ ### v0.4.0 (2021-03-11)
4
+
5
+ * Regenerated from discovery document revision 20210310
6
+ * Regenerated using generator version 0.2.0
7
+
3
8
  ### v0.3.0 (2021-03-04)
4
9
 
5
10
  * Unspecified changes
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1beta4'
31
31
 
32
- # See, edit, configure, and delete your Google Cloud Platform data
32
+ # View and manage your data across Google Cloud Platform services
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
34
34
 
35
35
  # Manage your Google SQL Service instances
@@ -538,7 +538,7 @@ module Google
538
538
  end
539
539
  end
540
540
 
541
- # A Cloud SQL instance resource. Next field: 36
541
+ # A Cloud SQL instance resource.
542
542
  class DatabaseInstance
543
543
  include Google::Apis::Core::Hashable
544
544
 
@@ -673,8 +673,7 @@ module Google
673
673
  # @return [String]
674
674
  attr_accessor :root_password
675
675
 
676
- # The status indicating if instance satisfies physical zone separation. Reserved
677
- # for future use.
676
+ # The status indicating if instance satisfiesPzs. Reserved for future use.
678
677
  # Corresponds to the JSON property `satisfiesPzs`
679
678
  # @return [Boolean]
680
679
  attr_accessor :satisfies_pzs
@@ -1052,7 +1051,9 @@ module Google
1052
1051
  # by using this property or by using the *csvExportOptions.selectQuery* property,
1053
1052
  # which takes precedence over this property. *PostgreSQL instances:* You must
1054
1053
  # specify one database to be exported. If *fileType* is *CSV*, this database
1055
- # must match the one specified in the *csvExportOptions.selectQuery* property.
1054
+ # must match the one specified in the *csvExportOptions.selectQuery* property. *
1055
+ # SQL Server instances:* You must specify one database to be exported, and the *
1056
+ # fileType* must be *BAK*.
1056
1057
  # Corresponds to the JSON property `databases`
1057
1058
  # @return [Array<String>]
1058
1059
  attr_accessor :databases
@@ -2031,7 +2032,7 @@ module Google
2031
2032
 
2032
2033
  # An Operation resource. For successful operations that return an Operation
2033
2034
  # resource, only the fields relevant to the operation are populated in the
2034
- # resource. Next field: 18
2035
+ # resource.
2035
2036
  class Operation
2036
2037
  include Google::Apis::Core::Hashable
2037
2038
 
@@ -2577,7 +2578,7 @@ module Google
2577
2578
  end
2578
2579
  end
2579
2580
 
2580
- # External primary instance migration setting error.
2581
+ # External primary instance migration setting error/warning.
2581
2582
  class SqlExternalSyncSettingError
2582
2583
  include Google::Apis::Core::Hashable
2583
2584
 
@@ -2586,7 +2587,7 @@ module Google
2586
2587
  # @return [String]
2587
2588
  attr_accessor :detail
2588
2589
 
2589
- # This is always *sql#migrationSettingError*.
2590
+ # Can be *sql#externalSyncSettingError* or *sql#externalSyncSettingWarning*.
2590
2591
  # Corresponds to the JSON property `kind`
2591
2592
  # @return [String]
2592
2593
  attr_accessor :kind
@@ -2641,6 +2642,11 @@ module Google
2641
2642
  # @return [String]
2642
2643
  attr_accessor :kind
2643
2644
 
2645
+ # List of migration warnings.
2646
+ # Corresponds to the JSON property `warnings`
2647
+ # @return [Array<Google::Apis::SqladminV1beta4::SqlExternalSyncSettingError>]
2648
+ attr_accessor :warnings
2649
+
2644
2650
  def initialize(**args)
2645
2651
  update!(**args)
2646
2652
  end
@@ -2649,6 +2655,7 @@ module Google
2649
2655
  def update!(**args)
2650
2656
  @errors = args[:errors] if args.key?(:errors)
2651
2657
  @kind = args[:kind] if args.key?(:kind)
2658
+ @warnings = args[:warnings] if args.key?(:warnings)
2652
2659
  end
2653
2660
  end
2654
2661
 
@@ -2892,7 +2899,7 @@ module Google
2892
2899
 
2893
2900
  # An Operation resource. For successful operations that return an Operation
2894
2901
  # resource, only the fields relevant to the operation are populated in the
2895
- # resource. Next field: 18
2902
+ # resource.
2896
2903
  # Corresponds to the JSON property `operation`
2897
2904
  # @return [Google::Apis::SqladminV1beta4::Operation]
2898
2905
  attr_accessor :operation
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SqladminV1beta4
18
18
  # Version of the google-apis-sqladmin_v1beta4 gem
19
- GEM_VERSION = "0.3.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.2"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210119"
25
+ REVISION = "20210310"
26
26
  end
27
27
  end
28
28
  end
@@ -1161,6 +1161,8 @@ module Google
1161
1161
  collection :errors, as: 'errors', class: Google::Apis::SqladminV1beta4::SqlExternalSyncSettingError, decorator: Google::Apis::SqladminV1beta4::SqlExternalSyncSettingError::Representation
1162
1162
 
1163
1163
  property :kind, as: 'kind'
1164
+ collection :warnings, as: 'warnings', class: Google::Apis::SqladminV1beta4::SqlExternalSyncSettingError, decorator: Google::Apis::SqladminV1beta4::SqlExternalSyncSettingError::Representation
1165
+
1164
1166
  end
1165
1167
  end
1166
1168
 
@@ -1137,7 +1137,7 @@ module Google
1137
1137
  execute_or_queue_command(command, &block)
1138
1138
  end
1139
1139
 
1140
- # Truncate MySQL general and slow query log tables
1140
+ # Truncate MySQL general and slow query log tables MySQL only.
1141
1141
  # @param [String] project
1142
1142
  # Project ID of the Cloud SQL project.
1143
1143
  # @param [String] instance
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-sqladmin_v1beta4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.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: 2021-03-08 00:00:00.000000000 Z
11
+ date: 2021-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-sqladmin_v1beta4/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.3.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.4.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-sqladmin_v1beta4
57
57
  post_install_message:
58
58
  rdoc_options: []