google-apis-alloydb_v1alpha 0.7.0 → 0.8.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: b7c840b0a439c01d487b0d9a98365a3e8852d6c754580f5a98b57587eaaa3d7c
4
- data.tar.gz: d868214ff84b04cae2b083771ce5ae5fc9ba7209c444bc7f538c5105840024cc
3
+ metadata.gz: 123b1577ded1a7561868a2b3270b0ed7d2425c81c8846bf494d1c486f2ee023c
4
+ data.tar.gz: e2d535558f990bfd29890743e5b8a78c9f585b4c2d8242f632ccfdb15a606ba4
5
5
  SHA512:
6
- metadata.gz: 9cb754cb8a714952e855e92e02baced6ff7a71245121843dfd1440631409baf0ffd088f62e801b250eaee47790cff74215863627c5e1e2fd32c697516dcecd6c
7
- data.tar.gz: 529b33dfd6e0f86e91cb5a029f08546650e113b77b3c41bcb3e3f9cb7649ed07a12b55425b2a0c53cb280e955c952c482e218061b6eecb97fd5991ee7e1448d0
6
+ metadata.gz: 9e3c4009a04c8b6021b10580bfc654da34df9f1002e4b88bf58eda842f9d6019c700aab5ba1f5faca143790566f91674f14f36d32463c839ecc871e522fef69c
7
+ data.tar.gz: f30c909812518b50acadc59862207668f812b1120ac29c9b8fac0f2c5d1c51b05861812baf0335a9ec959c23189e91d1b43ba7c9014ea9cf8c61ed13845d3eec
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-alloydb_v1alpha
2
2
 
3
+ ### v0.8.0 (2024-03-03)
4
+
5
+ * Regenerated from discovery document revision 20240223
6
+
3
7
  ### v0.7.0 (2024-02-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20240216
@@ -499,8 +499,8 @@ module Google
499
499
 
500
500
  # Required. The resource link for the VPC network in which cluster resources are
501
501
  # created and from which they are accessible via Private IP. The network must
502
- # belong to the same project as the cluster. It is specified in the form: "
503
- # projects/`project`/global/networks/`network_id`". This is required to create a
502
+ # belong to the same project as the cluster. It is specified in the form: `
503
+ # projects/`project`/global/networks/`network_id``. This is required to create a
504
504
  # cluster. Deprecated, use network_config.network instead.
505
505
  # Corresponds to the JSON property `network`
506
506
  # @return [String]
@@ -1629,8 +1629,8 @@ module Google
1629
1629
 
1630
1630
  # Optional. The resource link for the VPC network in which cluster resources are
1631
1631
  # created and from which they are accessible via Private IP. The network must
1632
- # belong to the same project as the cluster. It is specified in the form: "
1633
- # projects/`project_number`/global/networks/`network_id`". This is required to
1632
+ # belong to the same project as the cluster. It is specified in the form: `
1633
+ # projects/`project_number`/global/networks/`network_id``. This is required to
1634
1634
  # create a cluster.
1635
1635
  # Corresponds to the JSON property `network`
1636
1636
  # @return [String]
@@ -1936,7 +1936,7 @@ module Google
1936
1936
 
1937
1937
  # Output only. The service attachment created when Private Service Connect (PSC)
1938
1938
  # is enabled for the instance. The name of the resource will be in the format of
1939
- # projects//regions//serviceAttachments/
1939
+ # `projects//regions//serviceAttachments/`
1940
1940
  # Corresponds to the JSON property `serviceAttachmentLink`
1941
1941
  # @return [String]
1942
1942
  attr_accessor :service_attachment_link
@@ -1970,8 +1970,8 @@ module Google
1970
1970
  attr_accessor :consumer_endpoint_ips
1971
1971
 
1972
1972
  # The NetworkAttachment resource created in the consumer VPC to which the PSC
1973
- # interface will be linked, in the form of: "projects/$`CONSUMER_PROJECT`/
1974
- # regions/$`REGION`/networkAttachments/$`NETWORK_ATTACHMENT_NAME`".
1973
+ # interface will be linked, in the form of: `projects/$`CONSUMER_PROJECT`/
1974
+ # regions/$`REGION`/networkAttachments/$`NETWORK_ATTACHMENT_NAME``.
1975
1975
  # NetworkAttachment has to be provided when the PSC interface is created.
1976
1976
  # Corresponds to the JSON property `networkAttachment`
1977
1977
  # @return [String]
@@ -2816,7 +2816,7 @@ module Google
2816
2816
  class StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData
2817
2817
  include Google::Apis::Core::Hashable
2818
2818
 
2819
- # Required. Any other additional metadata specific to recommendation
2819
+ # Optional. Any other additional metadata specific to recommendation
2820
2820
  # Corresponds to the JSON property `additionalMetadata`
2821
2821
  # @return [Hash<String,Object>]
2822
2822
  attr_accessor :additional_metadata
@@ -2920,6 +2920,11 @@ module Google
2920
2920
  # @return [String]
2921
2921
  attr_accessor :code
2922
2922
 
2923
+ #
2924
+ # Corresponds to the JSON property `errorType`
2925
+ # @return [String]
2926
+ attr_accessor :error_type
2927
+
2923
2928
  # Additional information about the error encountered. REQUIRED
2924
2929
  # Corresponds to the JSON property `message`
2925
2930
  # @return [String]
@@ -2932,6 +2937,7 @@ module Google
2932
2937
  # Update properties of this object
2933
2938
  def update!(**args)
2934
2939
  @code = args[:code] if args.key?(:code)
2940
+ @error_type = args[:error_type] if args.key?(:error_type)
2935
2941
  @message = args[:message] if args.key?(:message)
2936
2942
  end
2937
2943
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AlloydbV1alpha
18
18
  # Version of the google-apis-alloydb_v1alpha gem
19
- GEM_VERSION = "0.7.0"
19
+ GEM_VERSION = "0.8.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240216"
25
+ REVISION = "20240223"
26
26
  end
27
27
  end
28
28
  end
@@ -1189,6 +1189,7 @@ module Google
1189
1189
  # @private
1190
1190
  class Representation < Google::Apis::Core::JsonRepresentation
1191
1191
  property :code, as: 'code'
1192
+ property :error_type, as: 'errorType'
1192
1193
  property :message, as: 'message'
1193
1194
  end
1194
1195
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.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: 2024-02-25 00:00:00.000000000 Z
11
+ date: 2024-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.7.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.8.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []