google-apis-alloydb_v1 0.48.0 → 0.49.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: cb5ccb7593bcdc63f0b8cc0aeecc4164de3638e9186781d2ca0564c13742fafc
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: a46f058c64b41b38eb9d8c78be8cd000583a74cf1c37fa7de28f3aa3e2a27329
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 7198923369770c020c46887fbef5f5a98ce340e3fc3b482009b4b69a56d4c656b08436329bf4888ed55e44c31fc0ce72e1d791eb58d5a1421de5fbb9f9ac9430
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: a570fd20e697bc0cda6240dfb712cc10cd4134377eeb6c0cfe8c095ab953f88e717073faa96e80d330d9ef99a06c3accaffa2f467337b60d48ea8b5d03f2f8e4
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    
| 
         @@ -652,6 +652,11 @@ module Google 
     | 
|
| 
       652 
652 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
       653 
653 
     | 
    
         
             
                    attr_accessor :database_version
         
     | 
| 
       654 
654 
     | 
    
         | 
| 
      
 655 
     | 
    
         
            +
                    # Configuration for Dataplex integration.
         
     | 
| 
      
 656 
     | 
    
         
            +
                    # Corresponds to the JSON property `dataplexConfig`
         
     | 
| 
      
 657 
     | 
    
         
            +
                    # @return [Google::Apis::AlloydbV1::DataplexConfig]
         
     | 
| 
      
 658 
     | 
    
         
            +
                    attr_accessor :dataplex_config
         
     | 
| 
      
 659 
     | 
    
         
            +
                  
         
     | 
| 
       655 
660 
     | 
    
         
             
                    # Output only. Delete time stamp
         
     | 
| 
       656 
661 
     | 
    
         
             
                    # Corresponds to the JSON property `deleteTime`
         
     | 
| 
       657 
662 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
         @@ -821,6 +826,7 @@ module Google 
     | 
|
| 
       821 
826 
     | 
    
         
             
                      @continuous_backup_info = args[:continuous_backup_info] if args.key?(:continuous_backup_info)
         
     | 
| 
       822 
827 
     | 
    
         
             
                      @create_time = args[:create_time] if args.key?(:create_time)
         
     | 
| 
       823 
828 
     | 
    
         
             
                      @database_version = args[:database_version] if args.key?(:database_version)
         
     | 
| 
      
 829 
     | 
    
         
            +
                      @dataplex_config = args[:dataplex_config] if args.key?(:dataplex_config)
         
     | 
| 
       824 
830 
     | 
    
         
             
                      @delete_time = args[:delete_time] if args.key?(:delete_time)
         
     | 
| 
       825 
831 
     | 
    
         
             
                      @display_name = args[:display_name] if args.key?(:display_name)
         
     | 
| 
       826 
832 
     | 
    
         
             
                      @encryption_config = args[:encryption_config] if args.key?(:encryption_config)
         
     | 
| 
         @@ -1178,6 +1184,28 @@ module Google 
     | 
|
| 
       1178 
1184 
     | 
    
         
             
                    end
         
     | 
| 
       1179 
1185 
     | 
    
         
             
                  end
         
     | 
| 
       1180 
1186 
     | 
    
         | 
| 
      
 1187 
     | 
    
         
            +
                  # Configuration for Dataplex integration.
         
     | 
| 
      
 1188 
     | 
    
         
            +
                  class DataplexConfig
         
     | 
| 
      
 1189 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 1190 
     | 
    
         
            +
                  
         
     | 
| 
      
 1191 
     | 
    
         
            +
                    # Dataplex is enabled by default for resources such as clusters and instances.
         
     | 
| 
      
 1192 
     | 
    
         
            +
                    # This flag controls the integration of AlloyDB PG resources (like databases,
         
     | 
| 
      
 1193 
     | 
    
         
            +
                    # schemas, and tables) with Dataplex."
         
     | 
| 
      
 1194 
     | 
    
         
            +
                    # Corresponds to the JSON property `enabled`
         
     | 
| 
      
 1195 
     | 
    
         
            +
                    # @return [Boolean]
         
     | 
| 
      
 1196 
     | 
    
         
            +
                    attr_accessor :enabled
         
     | 
| 
      
 1197 
     | 
    
         
            +
                    alias_method :enabled?, :enabled
         
     | 
| 
      
 1198 
     | 
    
         
            +
                  
         
     | 
| 
      
 1199 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 1200 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 1201 
     | 
    
         
            +
                    end
         
     | 
| 
      
 1202 
     | 
    
         
            +
                  
         
     | 
| 
      
 1203 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 1204 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 1205 
     | 
    
         
            +
                      @enabled = args[:enabled] if args.key?(:enabled)
         
     | 
| 
      
 1206 
     | 
    
         
            +
                    end
         
     | 
| 
      
 1207 
     | 
    
         
            +
                  end
         
     | 
| 
      
 1208 
     | 
    
         
            +
                  
         
     | 
| 
       1181 
1209 
     | 
    
         
             
                  # DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not
         
     | 
| 
       1182 
1210 
     | 
    
         
             
                  # be scheduled to start within this deny period. The start_date must be less
         
     | 
| 
       1183 
1211 
     | 
    
         
             
                  # than the end_date.
         
     | 
| 
         @@ -16,13 +16,13 @@ module Google 
     | 
|
| 
       16 
16 
     | 
    
         
             
              module Apis
         
     | 
| 
       17 
17 
     | 
    
         
             
                module AlloydbV1
         
     | 
| 
       18 
18 
     | 
    
         
             
                  # Version of the google-apis-alloydb_v1 gem
         
     | 
| 
       19 
     | 
    
         
            -
                  GEM_VERSION = "0. 
     | 
| 
      
 19 
     | 
    
         
            +
                  GEM_VERSION = "0.49.0"
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         
             
                  # Version of the code generator used to generate this client
         
     | 
| 
       22 
22 
     | 
    
         
             
                  GENERATOR_VERSION = "0.18.0"
         
     | 
| 
       23 
23 
     | 
    
         | 
| 
       24 
24 
     | 
    
         
             
                  # Revision of the discovery document this client was generated from
         
     | 
| 
       25 
     | 
    
         
            -
                  REVISION = " 
     | 
| 
      
 25 
     | 
    
         
            +
                  REVISION = "20251023"
         
     | 
| 
       26 
26 
     | 
    
         
             
                end
         
     | 
| 
       27 
27 
     | 
    
         
             
              end
         
     | 
| 
       28 
28 
     | 
    
         
             
            end
         
     | 
| 
         @@ -148,6 +148,12 @@ module Google 
     | 
|
| 
       148 
148 
     | 
    
         
             
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
       149 
149 
     | 
    
         
             
                  end
         
     | 
| 
       150 
150 
     | 
    
         | 
| 
      
 151 
     | 
    
         
            +
                  class DataplexConfig
         
     | 
| 
      
 152 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 153 
     | 
    
         
            +
                  
         
     | 
| 
      
 154 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 155 
     | 
    
         
            +
                  end
         
     | 
| 
      
 156 
     | 
    
         
            +
                  
         
     | 
| 
       151 
157 
     | 
    
         
             
                  class DenyMaintenancePeriod
         
     | 
| 
       152 
158 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
       153 
159 
     | 
    
         | 
| 
         @@ -883,6 +889,8 @@ module Google 
     | 
|
| 
       883 
889 
     | 
    
         | 
| 
       884 
890 
     | 
    
         
             
                      property :create_time, as: 'createTime'
         
     | 
| 
       885 
891 
     | 
    
         
             
                      property :database_version, as: 'databaseVersion'
         
     | 
| 
      
 892 
     | 
    
         
            +
                      property :dataplex_config, as: 'dataplexConfig', class: Google::Apis::AlloydbV1::DataplexConfig, decorator: Google::Apis::AlloydbV1::DataplexConfig::Representation
         
     | 
| 
      
 893 
     | 
    
         
            +
                  
         
     | 
| 
       886 
894 
     | 
    
         
             
                      property :delete_time, as: 'deleteTime'
         
     | 
| 
       887 
895 
     | 
    
         
             
                      property :display_name, as: 'displayName'
         
     | 
| 
       888 
896 
     | 
    
         
             
                      property :encryption_config, as: 'encryptionConfig', class: Google::Apis::AlloydbV1::EncryptionConfig, decorator: Google::Apis::AlloydbV1::EncryptionConfig::Representation
         
     | 
| 
         @@ -1006,6 +1014,13 @@ module Google 
     | 
|
| 
       1006 
1014 
     | 
    
         
             
                    end
         
     | 
| 
       1007 
1015 
     | 
    
         
             
                  end
         
     | 
| 
       1008 
1016 
     | 
    
         | 
| 
      
 1017 
     | 
    
         
            +
                  class DataplexConfig
         
     | 
| 
      
 1018 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 1019 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 1020 
     | 
    
         
            +
                      property :enabled, as: 'enabled'
         
     | 
| 
      
 1021 
     | 
    
         
            +
                    end
         
     | 
| 
      
 1022 
     | 
    
         
            +
                  end
         
     | 
| 
      
 1023 
     | 
    
         
            +
                  
         
     | 
| 
       1009 
1024 
     | 
    
         
             
                  class DenyMaintenancePeriod
         
     | 
| 
       1010 
1025 
     | 
    
         
             
                    # @private
         
     | 
| 
       1011 
1026 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
         @@ -95,8 +95,8 @@ module Google 
     | 
|
| 
       95 
95 
     | 
    
         
             
                    # @param [String] name
         
     | 
| 
       96 
96 
     | 
    
         
             
                    #   The resource that owns the locations collection, if applicable.
         
     | 
| 
       97 
97 
     | 
    
         
             
                    # @param [Array<String>, String] extra_location_types
         
     | 
| 
       98 
     | 
    
         
            -
                    #   Optional.  
     | 
| 
       99 
     | 
    
         
            -
                    #    
     | 
| 
      
 98 
     | 
    
         
            +
                    #   Optional. Do not use this field. It is unsupported and is ignored unless
         
     | 
| 
      
 99 
     | 
    
         
            +
                    #   explicitly documented otherwise. This is primarily for internal usage.
         
     | 
| 
       100 
100 
     | 
    
         
             
                    # @param [String] filter
         
     | 
| 
       101 
101 
     | 
    
         
             
                    #   A filter to narrow down results to a preferred subset. The filtering language
         
     | 
| 
       102 
102 
     | 
    
         
             
                    #   accepts strings like `"displayName=tokyo"`, and is documented in more detail
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: google-apis-alloydb_v1
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.49.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-alloydb_v1/CHANGELOG.md
         
     | 
| 
       60 
     | 
    
         
            -
              documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0. 
     | 
| 
      
 60 
     | 
    
         
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.49.0
         
     | 
| 
       61 
61 
     | 
    
         
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1
         
     | 
| 
       62 
62 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       63 
63 
     | 
    
         
             
            require_paths:
         
     |