google-apis-file_v1beta1 0.30.0 → 0.31.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: 25e65ae3c63ea373c8a9262ddd5ad28fe41c1409bc93ae122544b89a466c4953
4
- data.tar.gz: 3b3c4136963f3a6d90893cb672c7e9fb0b647c06968a0b24c0e27bc8f23f53f6
3
+ metadata.gz: e3aa0465af684629a163cf7b0ecd044f8c098aeba6702ce577755bc0ee1d7791
4
+ data.tar.gz: da94c80a598c70aa5a7364d6041f3382117788a4354879bedd2424c2588d7b6a
5
5
  SHA512:
6
- metadata.gz: 2c29c7bb49e3e838e1cbbe3092084b0f2642b4c89cad9cbd1d0b31ad3ab3c98ac431e2f7af2dc78e913effc0e751eb01a91ce03e1be817b063b8e6aa47f6de5a
7
- data.tar.gz: 5c5c81677193f11e433d528654b66906890f5b99eb3e176e1852a67292b6d533364c9581f92ab8863be49e7d3df90ad40c4420747f75e0d8cb0f593fb87bc8d6
6
+ metadata.gz: fcb20f359226081b9a89e1a978bff8c7f6601dee7fb69fd90f13dcbeefa6431785d2ac658d4ee7b9347597d893bfb29637f1a9ca2c69668d4f980b8ddaac3655
7
+ data.tar.gz: 288dc76b5b0b61b403066f66d201a0f78318e7eb3e8cae8b109b2fad0806f7ac2043a2826c1a2d2c14282fd2300b730beb2713bcbee625aff63dcbabffc60ca5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-file_v1beta1
2
2
 
3
+ ### v0.31.0 (2023-01-29)
4
+
5
+ * Regenerated from discovery document revision 20230118
6
+
3
7
  ### v0.30.0 (2023-01-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20230103
@@ -306,14 +306,30 @@ module Google
306
306
  end
307
307
  end
308
308
 
309
- #
309
+ # Instance represents the interface for SLM services to actuate the state of
310
+ # control plane resources. Example Instance in JSON, where consumer-project-
311
+ # number=123456, producer-project-id=cloud-sql: ```json Instance: ` "name": "
312
+ # projects/123456/locations/us-east1/instances/prod-instance", "create_time": ` "
313
+ # seconds": 1526406431, `, "labels": ` "env": "prod", "foo": "bar" `, "state":
314
+ # READY, "software_versions": ` "software_update": "cloud-sql-09-28-2018", `, "
315
+ # maintenance_policy_names": ` "UpdatePolicy": "projects/123456/locations/us-
316
+ # east1/maintenancePolicies/prod-update-policy", ` "tenant_project_id": "cloud-
317
+ # sql-test-tenant", "producer_metadata": ` "cloud-sql-tier": "basic", "cloud-sql-
318
+ # instance-size": "1G", `, "provisioned_resources": [ ` "resource-type": "
319
+ # compute-instance", "resource-url": "https://www.googleapis.com/compute/v1/
320
+ # projects/cloud-sql/zones/us-east1-b/instances/vm-1", ` ], "
321
+ # maintenance_schedules": ` "csa_rollout": ` "start_time": ` "seconds":
322
+ # 1526406431, `, "end_time": ` "seconds": 1535406431, `, `, "ncsa_rollout": ` "
323
+ # start_time": ` "seconds": 1526406431, `, "end_time": ` "seconds": 1535406431, `
324
+ # , ` `, "consumer_defined_name": "my-sql-instance1", ` ``` LINT.IfChange
310
325
  class GoogleCloudSaasacceleratorManagementProvidersV1Instance
311
326
  include Google::Apis::Core::Hashable
312
327
 
313
- # consumer_defined_name is the name that is set by the consumer. On the other
314
- # hand Name field represents system-assigned id of an instance so consumers are
315
- # not necessarily aware of it. consumer_defined_name is used for notification/UI
316
- # purposes for consumer to recognize their instances.
328
+ # consumer_defined_name is the name of the instance set by the service consumers.
329
+ # Generally this is different from the `name` field which reperesents the
330
+ # system-assigned id of the instance which the service consumers do not
331
+ # recognize. This is a required field for tenants onboarding to Maintenance
332
+ # Window notifications (go/slm-rollout-maintenance-policies#prerequisites).
317
333
  # Corresponds to the JSON property `consumerDefinedName`
318
334
  # @return [String]
319
335
  attr_accessor :consumer_defined_name
@@ -340,10 +356,11 @@ module Google
340
356
  # @return [Hash<String,String>]
341
357
  attr_accessor :labels
342
358
 
343
- # Optional. Deprecated. The MaintenancePolicies that have been attached to the
344
- # instance. The key must be of the type name of the oneof policy name defined in
359
+ # Optional. The MaintenancePolicies that have been attached to the instance. The
360
+ # key must be of the type name of the oneof policy name defined in
345
361
  # MaintenancePolicy, and the referenced policy must define the same policy type.
346
- # For complete details of MaintenancePolicy, please refer to go/cloud-saas-mw-ug.
362
+ # For details, please refer to go/cloud-saas-mw-ug. Should not be set if
363
+ # maintenance_settings.maintenance_policies is set.
347
364
  # Corresponds to the JSON property `maintenancePolicyNames`
348
365
  # @return [Hash<String,String>]
349
366
  attr_accessor :maintenance_policy_names
@@ -526,8 +543,9 @@ module Google
526
543
  # Optional. The MaintenancePolicies that have been attached to the instance. The
527
544
  # key must be of the type name of the oneof policy name defined in
528
545
  # MaintenancePolicy, and the embedded policy must define the same policy type.
529
- # For complete details of MaintenancePolicy, please refer to go/cloud-saas-mw-ug.
530
- # If only the name is needed, then only populate MaintenancePolicy.name.
546
+ # For details, please refer to go/cloud-saas-mw-ug. Should not be set if
547
+ # maintenance_policy_names is set. If only the name is needed, then only
548
+ # populate MaintenancePolicy.name.
531
549
  # Corresponds to the JSON property `maintenancePolicies`
532
550
  # @return [Hash<String,Google::Apis::FileV1beta1::MaintenancePolicy>]
533
551
  attr_accessor :maintenance_policies
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FileV1beta1
18
18
  # Version of the google-apis-file_v1beta1 gem
19
- GEM_VERSION = "0.30.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230103"
25
+ REVISION = "20230118"
26
26
  end
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-file_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.30.0
4
+ version: 0.31.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: 2023-01-08 00:00:00.000000000 Z
11
+ date: 2023-01-29 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-file_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1beta1/v0.30.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1beta1/v0.31.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-file_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []