Class: Google::Apis::ComposerV1::ListUserWorkloadsSecretsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ComposerV1::ListUserWorkloadsSecretsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/composer_v1/classes.rb,
lib/google/apis/composer_v1/representations.rb,
lib/google/apis/composer_v1/representations.rb
Overview
The user workloads Secrets for a given environment.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The page token used to query for the next page if one exists.
-
#user_workloads_secrets ⇒ Array<Google::Apis::ComposerV1::UserWorkloadsSecret>
The list of Secrets returned by a ListUserWorkloadsSecretsRequest.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListUserWorkloadsSecretsResponse
constructor
A new instance of ListUserWorkloadsSecretsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListUserWorkloadsSecretsResponse
Returns a new instance of ListUserWorkloadsSecretsResponse.
1112 1113 1114 |
# File 'lib/google/apis/composer_v1/classes.rb', line 1112 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
The page token used to query for the next page if one exists.
Corresponds to the JSON property nextPageToken
1105 1106 1107 |
# File 'lib/google/apis/composer_v1/classes.rb', line 1105 def next_page_token @next_page_token end |
#user_workloads_secrets ⇒ Array<Google::Apis::ComposerV1::UserWorkloadsSecret>
The list of Secrets returned by a ListUserWorkloadsSecretsRequest.
Corresponds to the JSON property userWorkloadsSecrets
1110 1111 1112 |
# File 'lib/google/apis/composer_v1/classes.rb', line 1110 def user_workloads_secrets @user_workloads_secrets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1117 1118 1119 1120 |
# File 'lib/google/apis/composer_v1/classes.rb', line 1117 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @user_workloads_secrets = args[:user_workloads_secrets] if args.key?(:user_workloads_secrets) end |