google-apis-dataform_v1beta1 0.30.0 → 0.32.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: bd32b8c4ea423223cbf2cd789a313fe131370058ce7f9781169def90c8b01dbb
4
- data.tar.gz: 5fccc7a7028267ba72406f92f6ea8b1a8899dbcc09b7559fa644ffaea0466e12
3
+ metadata.gz: bb40e378e9f61279bea776d1c7ce11e4ac40e3707ef5ef3c8dfc8bc96cebbe1b
4
+ data.tar.gz: 4c406beb10598119fe97f4ead5026e1bf92bd46211e0d53228caec2e6e84b781
5
5
  SHA512:
6
- metadata.gz: 2ace1dadcee9de80cf0c71b2c37ee1bad9efa1f1452f41547aa470942973193a0c441bf36a76ae53fa01d9d8d6279d1b3c3b2b9c1326220df43a2ce061c6ac53
7
- data.tar.gz: 92f2226ec6a307ebf504c3bf3419a9ac10398f5a2455fcaed907b8113b790c683114fedac55855aa993b7d889bfeeb134836011800d1b44ed8fa5be3ab2fb2db
6
+ metadata.gz: 57ee8515e4896f2456ba2509491a3223e54b6ef8a934af67bfad958ba83267eec5ef7eee6d2a15f2e5ecc57fbd5fa7f2d4655d5ab6c0b7327e5307d5189252be
7
+ data.tar.gz: a190668727f27130a95e9999bfb44fb610028825e5edc01410b54da6530d5078d3bda0e967a9298e6328c74e1ce9f2972d9b2b2979da7595d623149a01f7baa3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.31.0 (2024-06-16)
8
+
9
+ * Regenerated from discovery document revision 20240608
10
+
3
11
  ### v0.30.0 (2024-05-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20240504
@@ -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.30.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 = "20240504"
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
 
@@ -863,6 +863,88 @@ module Google
863
863
  execute_or_queue_command(command, &block)
864
864
  end
865
865
 
866
+ # Gets the access control policy for a resource. Returns an empty policy if the
867
+ # resource exists and does not have a policy set.
868
+ # @param [String] resource
869
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
870
+ # names](https://cloud.google.com/apis/design/resource_names) for the
871
+ # appropriate value for this field.
872
+ # @param [Fixnum] options_requested_policy_version
873
+ # Optional. The maximum policy version that will be used to format the policy.
874
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
875
+ # rejected. Requests for policies with any conditional role bindings must
876
+ # specify version 3. Policies with no conditional role bindings may specify any
877
+ # valid value or leave the field unset. The policy in the response might use the
878
+ # policy version that you specified, or it might use a lower policy version. For
879
+ # example, if you specify version 3, but the policy has no conditional role
880
+ # bindings, the response uses version 1. To learn which resources support
881
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
882
+ # google.com/iam/help/conditions/resource-policies).
883
+ # @param [String] fields
884
+ # Selector specifying which fields to include in a partial response.
885
+ # @param [String] quota_user
886
+ # Available to use for quota purposes for server-side applications. Can be any
887
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
888
+ # @param [Google::Apis::RequestOptions] options
889
+ # Request-specific options
890
+ #
891
+ # @yield [result, err] Result & error if block supplied
892
+ # @yieldparam result [Google::Apis::DataformV1beta1::Policy] parsed result object
893
+ # @yieldparam err [StandardError] error object if request failed
894
+ #
895
+ # @return [Google::Apis::DataformV1beta1::Policy]
896
+ #
897
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
898
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
899
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
900
+ def get_project_location_repository_comment_thread_comment_iam_policy(resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
901
+ command = make_simple_command(:get, 'v1beta1/{+resource}:getIamPolicy', options)
902
+ command.response_representation = Google::Apis::DataformV1beta1::Policy::Representation
903
+ command.response_class = Google::Apis::DataformV1beta1::Policy
904
+ command.params['resource'] = resource unless resource.nil?
905
+ command.query['options.requestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.nil?
906
+ command.query['fields'] = fields unless fields.nil?
907
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
908
+ execute_or_queue_command(command, &block)
909
+ end
910
+
911
+ # Sets the access control policy on the specified resource. Replaces any
912
+ # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
913
+ # PERMISSION_DENIED` errors.
914
+ # @param [String] resource
915
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
916
+ # names](https://cloud.google.com/apis/design/resource_names) for the
917
+ # appropriate value for this field.
918
+ # @param [Google::Apis::DataformV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
919
+ # @param [String] fields
920
+ # Selector specifying which fields to include in a partial response.
921
+ # @param [String] quota_user
922
+ # Available to use for quota purposes for server-side applications. Can be any
923
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
924
+ # @param [Google::Apis::RequestOptions] options
925
+ # Request-specific options
926
+ #
927
+ # @yield [result, err] Result & error if block supplied
928
+ # @yieldparam result [Google::Apis::DataformV1beta1::Policy] parsed result object
929
+ # @yieldparam err [StandardError] error object if request failed
930
+ #
931
+ # @return [Google::Apis::DataformV1beta1::Policy]
932
+ #
933
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
934
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
935
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
936
+ def set_comment_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
937
+ command = make_simple_command(:post, 'v1beta1/{+resource}:setIamPolicy', options)
938
+ command.request_representation = Google::Apis::DataformV1beta1::SetIamPolicyRequest::Representation
939
+ command.request_object = set_iam_policy_request_object
940
+ command.response_representation = Google::Apis::DataformV1beta1::Policy::Representation
941
+ command.response_class = Google::Apis::DataformV1beta1::Policy
942
+ command.params['resource'] = resource unless resource.nil?
943
+ command.query['fields'] = fields unless fields.nil?
944
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
945
+ execute_or_queue_command(command, &block)
946
+ end
947
+
866
948
  # Creates a new CompilationResult in a given project and location.
867
949
  # @param [String] parent
868
950
  # Required. The repository in which to create the compilation result. Must be in
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.30.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-05-26 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.30.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: []