google-apis-sqladmin_v1beta4 0.5.0 → 0.10.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: 26d275ed47bb0b417bd2c10c06416cd4d66193ac1e6d05d25791ea5a71ccb0cf
4
- data.tar.gz: 47b7eb8eb65e6d658f721d35cb381aa62aa0b37790639f3ad641da1ec02134f1
3
+ metadata.gz: 4d588aead159c4a2574fda0611b29f10299b40fa1686f50a0fb7fac5fe7051a7
4
+ data.tar.gz: 4e6038e6bf6262c83c76f7b07d3d4d57f1c9b0561c255e898a5c641e8ee507e5
5
5
  SHA512:
6
- metadata.gz: b13c615370c6a03d77afc70ec54628736b3c2941bc4c2bc00682f95404fcc5ce4c1f864a417f7b05eaf49b4b4fe55fe4b83101ea0c543f6a71a21b1ffc6f5a77
7
- data.tar.gz: 34752afed51dbe057298edfcfada016178620cc3e0f7eccb878d5ab8bd56814906b303a5ae3abc750cec808d5dc2bba3d1bf1d594d6c080f981086d7b184d230
6
+ metadata.gz: a12a83b874a46529d9a321ffb78a83875ab2bbdbf650931109c8315af76caadea9cd8ee2a603d8efb86ad486cd67f60b6c3bb7a9aca31b55c4db15d609a848a5
7
+ data.tar.gz: bd2d18341da7e3a0706d3d94ddc570c93896153862e6ea8bcc94a1f33705b196522549f0085a88835083f6accfb2e90e9420cb9247072dd9edd098cd471a452b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-sqladmin_v1beta4
2
2
 
3
+ ### v0.10.0 (2021-06-18)
4
+
5
+ * Regenerated from discovery document revision 20210608
6
+
7
+ ### v0.9.0 (2021-06-04)
8
+
9
+ * Regenerated from discovery document revision 20210521
10
+ * Regenerated using generator version 0.3.0
11
+
12
+ ### v0.8.0 (2021-05-20)
13
+
14
+ * Unspecified changes
15
+
16
+ ### v0.7.0 (2021-04-29)
17
+
18
+ * Regenerated from discovery document revision 20210420
19
+
20
+ ### v0.6.0 (2021-03-31)
21
+
22
+ * Regenerated from discovery document revision 20210321
23
+
3
24
  ### v0.5.0 (2021-03-19)
4
25
 
5
26
  * Unspecified changes
@@ -564,8 +564,8 @@ module Google
564
564
  # The database engine type and version. The *databaseVersion* field cannot be
565
565
  # changed after instance creation. MySQL instances: *MYSQL_8_0*, *MYSQL_5_7* (
566
566
  # default), or *MYSQL_5_6*. PostgreSQL instances: *POSTGRES_9_6*, *POSTGRES_10*,
567
- # *POSTGRES_11* or *POSTGRES_12* (default). SQL Server instances: *
568
- # SQLSERVER_2017_STANDARD* (default), *SQLSERVER_2017_ENTERPRISE*, *
567
+ # *POSTGRES_11*, *POSTGRES_12*, or *POSTGRES_13* (default). SQL Server instances:
568
+ # *SQLSERVER_2017_STANDARD* (default), *SQLSERVER_2017_ENTERPRISE*, *
569
569
  # SQLSERVER_2017_EXPRESS*, or *SQLSERVER_2017_WEB*.
570
570
  # Corresponds to the JSON property `databaseVersion`
571
571
  # @return [String]
@@ -644,6 +644,11 @@ module Google
644
644
  # @return [Google::Apis::SqladminV1beta4::OnPremisesConfiguration]
645
645
  attr_accessor :on_premises_configuration
646
646
 
647
+ # This message wraps up the information written by out-of-disk detection job.
648
+ # Corresponds to the JSON property `outOfDiskReport`
649
+ # @return [Google::Apis::SqladminV1beta4::SqlOutOfDiskReport]
650
+ attr_accessor :out_of_disk_report
651
+
647
652
  # The project ID of the project containing the Cloud SQL instance. The Google
648
653
  # apps domain is prefixed if applicable.
649
654
  # Corresponds to the JSON property `project`
@@ -703,7 +708,7 @@ module Google
703
708
  attr_accessor :server_ca_cert
704
709
 
705
710
  # The service account email address assigned to the instance. This property is
706
- # applicable only to Second Generation instances.
711
+ # read-only.
707
712
  # Corresponds to the JSON property `serviceAccountEmailAddress`
708
713
  # @return [String]
709
714
  attr_accessor :service_account_email_address
@@ -752,6 +757,7 @@ module Google
752
757
  @max_disk_size = args[:max_disk_size] if args.key?(:max_disk_size)
753
758
  @name = args[:name] if args.key?(:name)
754
759
  @on_premises_configuration = args[:on_premises_configuration] if args.key?(:on_premises_configuration)
760
+ @out_of_disk_report = args[:out_of_disk_report] if args.key?(:out_of_disk_report)
755
761
  @project = args[:project] if args.key?(:project)
756
762
  @region = args[:region] if args.key?(:region)
757
763
  @replica_configuration = args[:replica_configuration] if args.key?(:replica_configuration)
@@ -1465,6 +1471,12 @@ module Google
1465
1471
  attr_accessor :query_insights_enabled
1466
1472
  alias_method :query_insights_enabled?, :query_insights_enabled
1467
1473
 
1474
+ # Number of query plans generated by Insights per minute. Default is 5. Changing
1475
+ # this will restart the database.
1476
+ # Corresponds to the JSON property `queryPlansPerMinute`
1477
+ # @return [Fixnum]
1478
+ attr_accessor :query_plans_per_minute
1479
+
1468
1480
  # Maximum query length stored in bytes. Default value: 1024 bytes. Range: 256-
1469
1481
  # 4500 bytes. Query length more than this field value will be truncated to this
1470
1482
  # value. When unset, query length will be the default value. Changing query
@@ -1492,6 +1504,7 @@ module Google
1492
1504
  # Update properties of this object
1493
1505
  def update!(**args)
1494
1506
  @query_insights_enabled = args[:query_insights_enabled] if args.key?(:query_insights_enabled)
1507
+ @query_plans_per_minute = args[:query_plans_per_minute] if args.key?(:query_plans_per_minute)
1495
1508
  @query_string_length = args[:query_string_length] if args.key?(:query_string_length)
1496
1509
  @record_application_tags = args[:record_application_tags] if args.key?(:record_application_tags)
1497
1510
  @record_client_address = args[:record_client_address] if args.key?(:record_client_address)
@@ -2508,8 +2521,7 @@ module Google
2508
2521
  # @return [Fixnum]
2509
2522
  attr_accessor :storage_auto_resize_limit
2510
2523
 
2511
- # The tier (or machine type) for this instance, for example *db-n1-standard-1* (
2512
- # MySQL instances) or *db-custom-1-3840* (PostgreSQL instances).
2524
+ # The tier (or machine type) for this instance, for example *db-custom-1-3840* .
2513
2525
  # Corresponds to the JSON property `tier`
2514
2526
  # @return [String]
2515
2527
  attr_accessor :tier
@@ -2659,6 +2671,34 @@ module Google
2659
2671
  end
2660
2672
  end
2661
2673
 
2674
+ # This message wraps up the information written by out-of-disk detection job.
2675
+ class SqlOutOfDiskReport
2676
+ include Google::Apis::Core::Hashable
2677
+
2678
+ # The minimum recommended increase size in GigaBytes This field is consumed by
2679
+ # the frontend Writers: -- the proactive database wellness job for OOD.
2680
+ # Corresponds to the JSON property `sqlMinRecommendedIncreaseSizeGb`
2681
+ # @return [Fixnum]
2682
+ attr_accessor :sql_min_recommended_increase_size_gb
2683
+
2684
+ # This field represents the state generated by the proactive database wellness
2685
+ # job for OutOfDisk issues. Writers: -- the proactive database wellness job for
2686
+ # OOD. Readers: -- the proactive database wellness job
2687
+ # Corresponds to the JSON property `sqlOutOfDiskState`
2688
+ # @return [String]
2689
+ attr_accessor :sql_out_of_disk_state
2690
+
2691
+ def initialize(**args)
2692
+ update!(**args)
2693
+ end
2694
+
2695
+ # Update properties of this object
2696
+ def update!(**args)
2697
+ @sql_min_recommended_increase_size_gb = args[:sql_min_recommended_increase_size_gb] if args.key?(:sql_min_recommended_increase_size_gb)
2698
+ @sql_out_of_disk_state = args[:sql_out_of_disk_state] if args.key?(:sql_out_of_disk_state)
2699
+ end
2700
+ end
2701
+
2662
2702
  # Any scheduled maintenancce for this instance.
2663
2703
  class SqlScheduledMaintenance
2664
2704
  include Google::Apis::Core::Hashable
@@ -2971,7 +3011,7 @@ module Google
2971
3011
  # @return [Array<String>]
2972
3012
  attr_accessor :region
2973
3013
 
2974
- # An identifier for the machine type, for example, db-n1-standard-1. For related
3014
+ # An identifier for the machine type, for example, db-custom-1-3840. For related
2975
3015
  # information, see Pricing.
2976
3016
  # Corresponds to the JSON property `tier`
2977
3017
  # @return [String]
@@ -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.5.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.2.0"
22
+ GENERATOR_VERSION = "0.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210310"
25
+ REVISION = "20210608"
26
26
  end
27
27
  end
28
28
  end
@@ -388,6 +388,12 @@ module Google
388
388
  include Google::Apis::Core::JsonObjectSupport
389
389
  end
390
390
 
391
+ class SqlOutOfDiskReport
392
+ class Representation < Google::Apis::Core::JsonRepresentation; end
393
+
394
+ include Google::Apis::Core::JsonObjectSupport
395
+ end
396
+
391
397
  class SqlScheduledMaintenance
392
398
  class Representation < Google::Apis::Core::JsonRepresentation; end
393
399
 
@@ -628,6 +634,8 @@ module Google
628
634
  property :name, as: 'name'
629
635
  property :on_premises_configuration, as: 'onPremisesConfiguration', class: Google::Apis::SqladminV1beta4::OnPremisesConfiguration, decorator: Google::Apis::SqladminV1beta4::OnPremisesConfiguration::Representation
630
636
 
637
+ property :out_of_disk_report, as: 'outOfDiskReport', class: Google::Apis::SqladminV1beta4::SqlOutOfDiskReport, decorator: Google::Apis::SqladminV1beta4::SqlOutOfDiskReport::Representation
638
+
631
639
  property :project, as: 'project'
632
640
  property :region, as: 'region'
633
641
  property :replica_configuration, as: 'replicaConfiguration', class: Google::Apis::SqladminV1beta4::ReplicaConfiguration, decorator: Google::Apis::SqladminV1beta4::ReplicaConfiguration::Representation
@@ -839,6 +847,7 @@ module Google
839
847
  # @private
840
848
  class Representation < Google::Apis::Core::JsonRepresentation
841
849
  property :query_insights_enabled, as: 'queryInsightsEnabled'
850
+ property :query_plans_per_minute, as: 'queryPlansPerMinute'
842
851
  property :query_string_length, as: 'queryStringLength'
843
852
  property :record_application_tags, as: 'recordApplicationTags'
844
853
  property :record_client_address, as: 'recordClientAddress'
@@ -1166,6 +1175,14 @@ module Google
1166
1175
  end
1167
1176
  end
1168
1177
 
1178
+ class SqlOutOfDiskReport
1179
+ # @private
1180
+ class Representation < Google::Apis::Core::JsonRepresentation
1181
+ property :sql_min_recommended_increase_size_gb, as: 'sqlMinRecommendedIncreaseSizeGb'
1182
+ property :sql_out_of_disk_state, as: 'sqlOutOfDiskState'
1183
+ end
1184
+ end
1185
+
1169
1186
  class SqlScheduledMaintenance
1170
1187
  # @private
1171
1188
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1582,8 +1582,8 @@ module Google
1582
1582
  execute_or_queue_command(command, &block)
1583
1583
  end
1584
1584
 
1585
- # Lists all available machine types (tiers) for Cloud SQL, for example, db-n1-
1586
- # standard-1. For related information, see Pricing.
1585
+ # Lists all available machine types (tiers) for Cloud SQL, for example, db-
1586
+ # custom-1-3840. For related information, see Pricing.
1587
1587
  # @param [String] project
1588
1588
  # Project ID of the project for which to list tiers.
1589
1589
  # @param [String] fields
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.5.0
4
+ version: 0.10.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-22 00:00:00.000000000 Z
11
+ date: 2021-06-21 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.5.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.10.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: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.13
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Cloud SQL Admin API V1beta4