google-apis-file_v1 0.28.0 → 0.30.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: a7d21568226529d4522281fa0fadca327e505cec5af5a80ec595e18d9a55e3fe
4
- data.tar.gz: 855900bf0f911f4598fe7cada7acc3bc0ee1866891462b08bddb0eb33954bf8b
3
+ metadata.gz: cd1060d3446c21455a444d3e0e94e89cbdc2d124a0c17c8833d80033b9995759
4
+ data.tar.gz: 709969085ab90c1ab9e5dfa6777b9a98e94c45b1b0c81b5e1cf2a2f765c75f7b
5
5
  SHA512:
6
- metadata.gz: b3c81d3ccd8f23870ea3a9cd531ee24f828b1fe6b664f3d8402ed9c2144b1ca39c15ba6a9a377aa31d92f7fde3638ff3000ccbcf12612a608b804d7d89b10278
7
- data.tar.gz: 4de7042dcc62476882c9027e8bf43c2e4ebe72a74b767a7917c7eab222170aa69066025b6a9d6989bf6474b9b1e8ce825413e24b381f43cda3eaf3957da611cc
6
+ metadata.gz: 11ebf05958d03e68922bfa8f43ccc4e1f22b0fdffeda2790f83bdc4916c438c5291b303dc40c5d8bdaf5f3012240bbe29a5e9b8ef1cb45becdb8b863af9aea3f
7
+ data.tar.gz: 354e315a6f072d8cd1183dd886faf5da3a13193c789467880a391e3790961d258595a59a8811db6420a57e03adbf42f7dbc946d153c974664b2de14752860704
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-file_v1
2
2
 
3
+ ### v0.30.0 (2023-02-15)
4
+
5
+ * Regenerated using generator version 0.12.0
6
+
7
+ ### v0.29.0 (2023-01-29)
8
+
9
+ * Regenerated from discovery document revision 20230118
10
+ * Regenerated using generator version 0.11.1
11
+
3
12
  ### v0.28.0 (2022-12-13)
4
13
 
5
14
  * Regenerated from discovery document revision 20221207
@@ -49,6 +49,11 @@ module Google
49
49
  # @return [Fixnum]
50
50
  attr_accessor :download_bytes
51
51
 
52
+ # Immutable. KMS key name used for data encryption.
53
+ # Corresponds to the JSON property `kmsKey`
54
+ # @return [String]
55
+ attr_accessor :kms_key
56
+
52
57
  # Resource labels to represent user provided metadata.
53
58
  # Corresponds to the JSON property `labels`
54
59
  # @return [Hash<String,String>]
@@ -106,6 +111,7 @@ module Google
106
111
  @create_time = args[:create_time] if args.key?(:create_time)
107
112
  @description = args[:description] if args.key?(:description)
108
113
  @download_bytes = args[:download_bytes] if args.key?(:download_bytes)
114
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
109
115
  @labels = args[:labels] if args.key?(:labels)
110
116
  @name = args[:name] if args.key?(:name)
111
117
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
@@ -301,14 +307,30 @@ module Google
301
307
  end
302
308
  end
303
309
 
304
- #
310
+ # Instance represents the interface for SLM services to actuate the state of
311
+ # control plane resources. Example Instance in JSON, where consumer-project-
312
+ # number=123456, producer-project-id=cloud-sql: ```json Instance: ` "name": "
313
+ # projects/123456/locations/us-east1/instances/prod-instance", "create_time": ` "
314
+ # seconds": 1526406431, `, "labels": ` "env": "prod", "foo": "bar" `, "state":
315
+ # READY, "software_versions": ` "software_update": "cloud-sql-09-28-2018", `, "
316
+ # maintenance_policy_names": ` "UpdatePolicy": "projects/123456/locations/us-
317
+ # east1/maintenancePolicies/prod-update-policy", ` "tenant_project_id": "cloud-
318
+ # sql-test-tenant", "producer_metadata": ` "cloud-sql-tier": "basic", "cloud-sql-
319
+ # instance-size": "1G", `, "provisioned_resources": [ ` "resource-type": "
320
+ # compute-instance", "resource-url": "https://www.googleapis.com/compute/v1/
321
+ # projects/cloud-sql/zones/us-east1-b/instances/vm-1", ` ], "
322
+ # maintenance_schedules": ` "csa_rollout": ` "start_time": ` "seconds":
323
+ # 1526406431, `, "end_time": ` "seconds": 1535406431, `, `, "ncsa_rollout": ` "
324
+ # start_time": ` "seconds": 1526406431, `, "end_time": ` "seconds": 1535406431, `
325
+ # , ` `, "consumer_defined_name": "my-sql-instance1", ` ``` LINT.IfChange
305
326
  class GoogleCloudSaasacceleratorManagementProvidersV1Instance
306
327
  include Google::Apis::Core::Hashable
307
328
 
308
- # consumer_defined_name is the name that is set by the consumer. On the other
309
- # hand Name field represents system-assigned id of an instance so consumers are
310
- # not necessarily aware of it. consumer_defined_name is used for notification/UI
311
- # purposes for consumer to recognize their instances.
329
+ # consumer_defined_name is the name of the instance set by the service consumers.
330
+ # Generally this is different from the `name` field which reperesents the
331
+ # system-assigned id of the instance which the service consumers do not
332
+ # recognize. This is a required field for tenants onboarding to Maintenance
333
+ # Window notifications (go/slm-rollout-maintenance-policies#prerequisites).
312
334
  # Corresponds to the JSON property `consumerDefinedName`
313
335
  # @return [String]
314
336
  attr_accessor :consumer_defined_name
@@ -335,10 +357,11 @@ module Google
335
357
  # @return [Hash<String,String>]
336
358
  attr_accessor :labels
337
359
 
338
- # Optional. Deprecated. The MaintenancePolicies that have been attached to the
339
- # instance. The key must be of the type name of the oneof policy name defined in
360
+ # Optional. The MaintenancePolicies that have been attached to the instance. The
361
+ # key must be of the type name of the oneof policy name defined in
340
362
  # MaintenancePolicy, and the referenced policy must define the same policy type.
341
- # For complete details of MaintenancePolicy, please refer to go/cloud-saas-mw-ug.
363
+ # For details, please refer to go/cloud-saas-mw-ug. Should not be set if
364
+ # maintenance_settings.maintenance_policies is set.
342
365
  # Corresponds to the JSON property `maintenancePolicyNames`
343
366
  # @return [Hash<String,String>]
344
367
  attr_accessor :maintenance_policy_names
@@ -521,8 +544,9 @@ module Google
521
544
  # Optional. The MaintenancePolicies that have been attached to the instance. The
522
545
  # key must be of the type name of the oneof policy name defined in
523
546
  # MaintenancePolicy, and the embedded policy must define the same policy type.
524
- # For complete details of MaintenancePolicy, please refer to go/cloud-saas-mw-ug.
525
- # If only the name is needed, then only populate MaintenancePolicy.name.
547
+ # For details, please refer to go/cloud-saas-mw-ug. Should not be set if
548
+ # maintenance_policy_names is set. If only the name is needed, then only
549
+ # populate MaintenancePolicy.name.
526
550
  # Corresponds to the JSON property `maintenancePolicies`
527
551
  # @return [Hash<String,Google::Apis::FileV1::MaintenancePolicy>]
528
552
  attr_accessor :maintenance_policies
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FileV1
18
18
  # Version of the google-apis-file_v1 gem
19
- GEM_VERSION = "0.28.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221207"
25
+ REVISION = "20230118"
26
26
  end
27
27
  end
28
28
  end
@@ -245,6 +245,7 @@ module Google
245
245
  property :create_time, as: 'createTime'
246
246
  property :description, as: 'description'
247
247
  property :download_bytes, :numeric_string => true, as: 'downloadBytes'
248
+ property :kms_key, as: 'kmsKey'
248
249
  hash :labels, as: 'labels'
249
250
  property :name, as: 'name'
250
251
  property :satisfies_pzs, as: 'satisfiesPzs'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-file_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.30.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-04 00:00:00.000000000 Z
11
+ date: 2023-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.1
19
+ version: 0.11.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.1
29
+ version: 0.11.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.30.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-file_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Filestore API V1