google-apis-dataform_v1beta1 0.8.0 → 0.9.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: ca9eba13b1058a52acda0bfcf81a1011b4abb90bf771ed244c53ed14bce20309
4
- data.tar.gz: 58539554cf3f98a9d09c15fb85d3c5e1b310beb716e2f16745d018d43e8c726b
3
+ metadata.gz: 3bcbfbd08c9d2a1b1467372f544968f5d0d5f98dc3da54ede0eb6f04f0490d2e
4
+ data.tar.gz: f372aefd2645e69c5c66eb56763f2244dc042a02a81a099535670c7f3cdea494
5
5
  SHA512:
6
- metadata.gz: 26318a83fa31e32f78d1c463d344173d414283a1cb17645c93a4bdee8960d213d0a96e0449a0b77f5678dc0e1b2715797a80ea39b1f4ea5b3c6deadc95b697f2
7
- data.tar.gz: 3826e3cfa07d59dfbca4dba4b86f842d6c13c9da61414fe40f302746a93d3bb73a511f9fc68da42afe506a5833faff81c3bc6074cae4594cafa29f05651cc767
6
+ metadata.gz: 10f924fc5851043ed9a11d957ed36188ecfb793202e5273c5717dc482d184de2ea2f5249c8659dd5ae7df02f21d784afc57e1a4bc71f753cb570b86d7d0762e3
7
+ data.tar.gz: 1f3b4ac16f1a6533f9df68182218dc1d51bceb1dee7bd25d58b08ec27985a496cbbf06024dcd5c38a7b2ccd68d63c97a9cbdaa11752e7a52395522acd53043fd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.9.0 (2023-05-21)
4
+
5
+ * Regenerated from discovery document revision 20230512
6
+
3
7
  ### v0.8.0 (2023-04-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20230408
@@ -502,6 +502,25 @@ module Google
502
502
  end
503
503
  end
504
504
 
505
+ # `ComputeRepositoryAccessTokenStatus` response message.
506
+ class ComputeRepositoryAccessTokenStatusResponse
507
+ include Google::Apis::Core::Hashable
508
+
509
+ # Indicates the status of the Git access token.
510
+ # Corresponds to the JSON property `tokenStatus`
511
+ # @return [String]
512
+ attr_accessor :token_status
513
+
514
+ def initialize(**args)
515
+ update!(**args)
516
+ end
517
+
518
+ # Update properties of this object
519
+ def update!(**args)
520
+ @token_status = args[:token_status] if args.key?(:token_status)
521
+ end
522
+ end
523
+
505
524
  # Represents a relation which is not managed by Dataform but which may be
506
525
  # referenced by Dataform actions.
507
526
  class Declaration
@@ -1116,7 +1135,7 @@ module Google
1116
1135
  end
1117
1136
  end
1118
1137
 
1119
- # A resource that represents Google Cloud Platform location.
1138
+ # A resource that represents a Google Cloud location.
1120
1139
  class Location
1121
1140
  include Google::Apis::Core::Hashable
1122
1141
 
@@ -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.8.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230408"
25
+ REVISION = "20230512"
26
26
  end
27
27
  end
28
28
  end
@@ -88,6 +88,12 @@ module Google
88
88
  include Google::Apis::Core::JsonObjectSupport
89
89
  end
90
90
 
91
+ class ComputeRepositoryAccessTokenStatusResponse
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
91
97
  class Declaration
92
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
99
 
@@ -567,6 +573,13 @@ module Google
567
573
  end
568
574
  end
569
575
 
576
+ class ComputeRepositoryAccessTokenStatusResponse
577
+ # @private
578
+ class Representation < Google::Apis::Core::JsonRepresentation
579
+ property :token_status, as: 'tokenStatus'
580
+ end
581
+ end
582
+
570
583
  class Declaration
571
584
  # @private
572
585
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -122,6 +122,36 @@ module Google
122
122
  execute_or_queue_command(command, &block)
123
123
  end
124
124
 
125
+ # Computes a Repository's Git access token status.
126
+ # @param [String] name
127
+ # Required. The repository's name.
128
+ # @param [String] fields
129
+ # Selector specifying which fields to include in a partial response.
130
+ # @param [String] quota_user
131
+ # Available to use for quota purposes for server-side applications. Can be any
132
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
133
+ # @param [Google::Apis::RequestOptions] options
134
+ # Request-specific options
135
+ #
136
+ # @yield [result, err] Result & error if block supplied
137
+ # @yieldparam result [Google::Apis::DataformV1beta1::ComputeRepositoryAccessTokenStatusResponse] parsed result object
138
+ # @yieldparam err [StandardError] error object if request failed
139
+ #
140
+ # @return [Google::Apis::DataformV1beta1::ComputeRepositoryAccessTokenStatusResponse]
141
+ #
142
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
143
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
144
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
145
+ def compute_project_location_repository_access_token_status(name, fields: nil, quota_user: nil, options: nil, &block)
146
+ command = make_simple_command(:get, 'v1beta1/{+name}:computeAccessTokenStatus', options)
147
+ command.response_representation = Google::Apis::DataformV1beta1::ComputeRepositoryAccessTokenStatusResponse::Representation
148
+ command.response_class = Google::Apis::DataformV1beta1::ComputeRepositoryAccessTokenStatusResponse
149
+ command.params['name'] = name unless name.nil?
150
+ command.query['fields'] = fields unless fields.nil?
151
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
152
+ execute_or_queue_command(command, &block)
153
+ end
154
+
125
155
  # Creates a new Repository in a given project and location.
126
156
  # @param [String] parent
127
157
  # Required. The location in which to create the repository. Must be in the
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.8.0
4
+ version: 0.9.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-04-16 00:00:00.000000000 Z
11
+ date: 2023-05-21 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.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.9.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: []