google-apis-dataform_v1beta1 0.31.0 → 0.32.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: c3f652e72ed752e991591050d2b363cbd83aaf12039d1e77a332d7ad4cd39af9
4
- data.tar.gz: 702d3f04e378b523cf28479c25f9a2bce17393c18440e0a0131bf841f827baf3
3
+ metadata.gz: bb40e378e9f61279bea776d1c7ce11e4ac40e3707ef5ef3c8dfc8bc96cebbe1b
4
+ data.tar.gz: 4c406beb10598119fe97f4ead5026e1bf92bd46211e0d53228caec2e6e84b781
5
5
  SHA512:
6
- metadata.gz: a1cdd5d97d42886ba6ea8d151ba3e5656fd51f3c11485e5f3ce709be91bc9eedb043a4066ef8665c4f01023e5cf9f668a95a590ad4ee30d080cf52d24a26b7e8
7
- data.tar.gz: 272af198e27bff232e3b6eb98515c750691f11e86ff0aa95d9e07e20e6f8b5b2ceb6a683aca2387f7af6475119430fe0e1d17d7185b35a53fcd7b3d8c0e3c209
6
+ metadata.gz: 57ee8515e4896f2456ba2509491a3223e54b6ef8a934af67bfad958ba83267eec5ef7eee6d2a15f2e5ecc57fbd5fa7f2d4655d5ab6c0b7327e5307d5189252be
7
+ data.tar.gz: a190668727f27130a95e9999bfb44fb610028825e5edc01410b54da6530d5078d3bda0e967a9298e6328c74e1ce9f2972d9b2b2979da7595d623149a01f7baa3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.32.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240629
6
+
3
7
  ### v0.31.0 (2024-06-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20240608
@@ -543,6 +543,11 @@ module Google
543
543
  # @return [Array<Google::Apis::DataformV1beta1::CompilationError>]
544
544
  attr_accessor :compilation_errors
545
545
 
546
+ # Output only. The timestamp of when the compilation result was created.
547
+ # Corresponds to the JSON property `createTime`
548
+ # @return [String]
549
+ attr_accessor :create_time
550
+
546
551
  # Describes encryption state of a resource.
547
552
  # Corresponds to the JSON property `dataEncryptionState`
548
553
  # @return [Google::Apis::DataformV1beta1::DataEncryptionState]
@@ -591,6 +596,7 @@ module Google
591
596
  def update!(**args)
592
597
  @code_compilation_config = args[:code_compilation_config] if args.key?(:code_compilation_config)
593
598
  @compilation_errors = args[:compilation_errors] if args.key?(:compilation_errors)
599
+ @create_time = args[:create_time] if args.key?(:create_time)
594
600
  @data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
595
601
  @dataform_core_version = args[:dataform_core_version] if args.key?(:dataform_core_version)
596
602
  @git_commitish = args[:git_commitish] if args.key?(:git_commitish)
@@ -2781,6 +2787,11 @@ module Google
2781
2787
  class WorkflowConfig
2782
2788
  include Google::Apis::Core::Hashable
2783
2789
 
2790
+ # Output only. The timestamp of when the WorkflowConfig was created.
2791
+ # Corresponds to the JSON property `createTime`
2792
+ # @return [String]
2793
+ attr_accessor :create_time
2794
+
2784
2795
  # Optional. Optional schedule (in cron format) for automatic execution of this
2785
2796
  # workflow config.
2786
2797
  # Corresponds to the JSON property `cronSchedule`
@@ -2819,18 +2830,25 @@ module Google
2819
2830
  # @return [String]
2820
2831
  attr_accessor :time_zone
2821
2832
 
2833
+ # Output only. The timestamp of when the WorkflowConfig was last updated.
2834
+ # Corresponds to the JSON property `updateTime`
2835
+ # @return [String]
2836
+ attr_accessor :update_time
2837
+
2822
2838
  def initialize(**args)
2823
2839
  update!(**args)
2824
2840
  end
2825
2841
 
2826
2842
  # Update properties of this object
2827
2843
  def update!(**args)
2844
+ @create_time = args[:create_time] if args.key?(:create_time)
2828
2845
  @cron_schedule = args[:cron_schedule] if args.key?(:cron_schedule)
2829
2846
  @invocation_config = args[:invocation_config] if args.key?(:invocation_config)
2830
2847
  @name = args[:name] if args.key?(:name)
2831
2848
  @recent_scheduled_execution_records = args[:recent_scheduled_execution_records] if args.key?(:recent_scheduled_execution_records)
2832
2849
  @release_config = args[:release_config] if args.key?(:release_config)
2833
2850
  @time_zone = args[:time_zone] if args.key?(:time_zone)
2851
+ @update_time = args[:update_time] if args.key?(:update_time)
2834
2852
  end
2835
2853
  end
2836
2854
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataformV1beta1
18
18
  # Version of the google-apis-dataform_v1beta1 gem
19
- GEM_VERSION = "0.31.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240608"
25
+ REVISION = "20240629"
26
26
  end
27
27
  end
28
28
  end
@@ -700,6 +700,7 @@ module Google
700
700
 
701
701
  collection :compilation_errors, as: 'compilationErrors', class: Google::Apis::DataformV1beta1::CompilationError, decorator: Google::Apis::DataformV1beta1::CompilationError::Representation
702
702
 
703
+ property :create_time, as: 'createTime'
703
704
  property :data_encryption_state, as: 'dataEncryptionState', class: Google::Apis::DataformV1beta1::DataEncryptionState, decorator: Google::Apis::DataformV1beta1::DataEncryptionState::Representation
704
705
 
705
706
  property :dataform_core_version, as: 'dataformCoreVersion'
@@ -1343,6 +1344,7 @@ module Google
1343
1344
  class WorkflowConfig
1344
1345
  # @private
1345
1346
  class Representation < Google::Apis::Core::JsonRepresentation
1347
+ property :create_time, as: 'createTime'
1346
1348
  property :cron_schedule, as: 'cronSchedule'
1347
1349
  property :invocation_config, as: 'invocationConfig', class: Google::Apis::DataformV1beta1::InvocationConfig, decorator: Google::Apis::DataformV1beta1::InvocationConfig::Representation
1348
1350
 
@@ -1351,6 +1353,7 @@ module Google
1351
1353
 
1352
1354
  property :release_config, as: 'releaseConfig'
1353
1355
  property :time_zone, as: 'timeZone'
1356
+ property :update_time, as: 'updateTime'
1354
1357
  end
1355
1358
  end
1356
1359
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataform_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.0
4
+ version: 0.32.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-06-16 00:00:00.000000000 Z
11
+ date: 2024-07-25 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-dataform_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.32.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []