sigs.k8s.io/cluster-api-provider-azure@v1.14.3/azure/services/scalesetvms/mock_scalesetvms/scalesetvms_mock.go (about)

     1  /*
     2  Copyright The Kubernetes Authors.
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  // Code generated by MockGen. DO NOT EDIT.
    18  // Source: ../scalesetvms.go
    19  //
    20  // Generated by this command:
    21  //
    22  //	mockgen -destination scalesetvms_mock.go -package mock_scalesetvms -source ../scalesetvms.go ScaleSetVMScope
    23  //
    24  
    25  // Package mock_scalesetvms is a generated GoMock package.
    26  package mock_scalesetvms
    27  
    28  import (
    29  	reflect "reflect"
    30  	time "time"
    31  
    32  	azcore "github.com/Azure/azure-sdk-for-go/sdk/azcore"
    33  	gomock "go.uber.org/mock/gomock"
    34  	v1beta1 "sigs.k8s.io/cluster-api-provider-azure/api/v1beta1"
    35  	azure "sigs.k8s.io/cluster-api-provider-azure/azure"
    36  	v1beta10 "sigs.k8s.io/cluster-api/api/v1beta1"
    37  )
    38  
    39  // MockScaleSetVMScope is a mock of ScaleSetVMScope interface.
    40  type MockScaleSetVMScope struct {
    41  	ctrl     *gomock.Controller
    42  	recorder *MockScaleSetVMScopeMockRecorder
    43  }
    44  
    45  // MockScaleSetVMScopeMockRecorder is the mock recorder for MockScaleSetVMScope.
    46  type MockScaleSetVMScopeMockRecorder struct {
    47  	mock *MockScaleSetVMScope
    48  }
    49  
    50  // NewMockScaleSetVMScope creates a new mock instance.
    51  func NewMockScaleSetVMScope(ctrl *gomock.Controller) *MockScaleSetVMScope {
    52  	mock := &MockScaleSetVMScope{ctrl: ctrl}
    53  	mock.recorder = &MockScaleSetVMScopeMockRecorder{mock}
    54  	return mock
    55  }
    56  
    57  // EXPECT returns an object that allows the caller to indicate expected use.
    58  func (m *MockScaleSetVMScope) EXPECT() *MockScaleSetVMScopeMockRecorder {
    59  	return m.recorder
    60  }
    61  
    62  // AdditionalTags mocks base method.
    63  func (m *MockScaleSetVMScope) AdditionalTags() v1beta1.Tags {
    64  	m.ctrl.T.Helper()
    65  	ret := m.ctrl.Call(m, "AdditionalTags")
    66  	ret0, _ := ret[0].(v1beta1.Tags)
    67  	return ret0
    68  }
    69  
    70  // AdditionalTags indicates an expected call of AdditionalTags.
    71  func (mr *MockScaleSetVMScopeMockRecorder) AdditionalTags() *gomock.Call {
    72  	mr.mock.ctrl.T.Helper()
    73  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AdditionalTags", reflect.TypeOf((*MockScaleSetVMScope)(nil).AdditionalTags))
    74  }
    75  
    76  // AvailabilitySetEnabled mocks base method.
    77  func (m *MockScaleSetVMScope) AvailabilitySetEnabled() bool {
    78  	m.ctrl.T.Helper()
    79  	ret := m.ctrl.Call(m, "AvailabilitySetEnabled")
    80  	ret0, _ := ret[0].(bool)
    81  	return ret0
    82  }
    83  
    84  // AvailabilitySetEnabled indicates an expected call of AvailabilitySetEnabled.
    85  func (mr *MockScaleSetVMScopeMockRecorder) AvailabilitySetEnabled() *gomock.Call {
    86  	mr.mock.ctrl.T.Helper()
    87  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AvailabilitySetEnabled", reflect.TypeOf((*MockScaleSetVMScope)(nil).AvailabilitySetEnabled))
    88  }
    89  
    90  // BaseURI mocks base method.
    91  func (m *MockScaleSetVMScope) BaseURI() string {
    92  	m.ctrl.T.Helper()
    93  	ret := m.ctrl.Call(m, "BaseURI")
    94  	ret0, _ := ret[0].(string)
    95  	return ret0
    96  }
    97  
    98  // BaseURI indicates an expected call of BaseURI.
    99  func (mr *MockScaleSetVMScopeMockRecorder) BaseURI() *gomock.Call {
   100  	mr.mock.ctrl.T.Helper()
   101  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "BaseURI", reflect.TypeOf((*MockScaleSetVMScope)(nil).BaseURI))
   102  }
   103  
   104  // ClientID mocks base method.
   105  func (m *MockScaleSetVMScope) ClientID() string {
   106  	m.ctrl.T.Helper()
   107  	ret := m.ctrl.Call(m, "ClientID")
   108  	ret0, _ := ret[0].(string)
   109  	return ret0
   110  }
   111  
   112  // ClientID indicates an expected call of ClientID.
   113  func (mr *MockScaleSetVMScopeMockRecorder) ClientID() *gomock.Call {
   114  	mr.mock.ctrl.T.Helper()
   115  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ClientID", reflect.TypeOf((*MockScaleSetVMScope)(nil).ClientID))
   116  }
   117  
   118  // ClientSecret mocks base method.
   119  func (m *MockScaleSetVMScope) ClientSecret() string {
   120  	m.ctrl.T.Helper()
   121  	ret := m.ctrl.Call(m, "ClientSecret")
   122  	ret0, _ := ret[0].(string)
   123  	return ret0
   124  }
   125  
   126  // ClientSecret indicates an expected call of ClientSecret.
   127  func (mr *MockScaleSetVMScopeMockRecorder) ClientSecret() *gomock.Call {
   128  	mr.mock.ctrl.T.Helper()
   129  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ClientSecret", reflect.TypeOf((*MockScaleSetVMScope)(nil).ClientSecret))
   130  }
   131  
   132  // CloudEnvironment mocks base method.
   133  func (m *MockScaleSetVMScope) CloudEnvironment() string {
   134  	m.ctrl.T.Helper()
   135  	ret := m.ctrl.Call(m, "CloudEnvironment")
   136  	ret0, _ := ret[0].(string)
   137  	return ret0
   138  }
   139  
   140  // CloudEnvironment indicates an expected call of CloudEnvironment.
   141  func (mr *MockScaleSetVMScopeMockRecorder) CloudEnvironment() *gomock.Call {
   142  	mr.mock.ctrl.T.Helper()
   143  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CloudEnvironment", reflect.TypeOf((*MockScaleSetVMScope)(nil).CloudEnvironment))
   144  }
   145  
   146  // CloudProviderConfigOverrides mocks base method.
   147  func (m *MockScaleSetVMScope) CloudProviderConfigOverrides() *v1beta1.CloudProviderConfigOverrides {
   148  	m.ctrl.T.Helper()
   149  	ret := m.ctrl.Call(m, "CloudProviderConfigOverrides")
   150  	ret0, _ := ret[0].(*v1beta1.CloudProviderConfigOverrides)
   151  	return ret0
   152  }
   153  
   154  // CloudProviderConfigOverrides indicates an expected call of CloudProviderConfigOverrides.
   155  func (mr *MockScaleSetVMScopeMockRecorder) CloudProviderConfigOverrides() *gomock.Call {
   156  	mr.mock.ctrl.T.Helper()
   157  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CloudProviderConfigOverrides", reflect.TypeOf((*MockScaleSetVMScope)(nil).CloudProviderConfigOverrides))
   158  }
   159  
   160  // ClusterName mocks base method.
   161  func (m *MockScaleSetVMScope) ClusterName() string {
   162  	m.ctrl.T.Helper()
   163  	ret := m.ctrl.Call(m, "ClusterName")
   164  	ret0, _ := ret[0].(string)
   165  	return ret0
   166  }
   167  
   168  // ClusterName indicates an expected call of ClusterName.
   169  func (mr *MockScaleSetVMScopeMockRecorder) ClusterName() *gomock.Call {
   170  	mr.mock.ctrl.T.Helper()
   171  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ClusterName", reflect.TypeOf((*MockScaleSetVMScope)(nil).ClusterName))
   172  }
   173  
   174  // DefaultedAzureCallTimeout mocks base method.
   175  func (m *MockScaleSetVMScope) DefaultedAzureCallTimeout() time.Duration {
   176  	m.ctrl.T.Helper()
   177  	ret := m.ctrl.Call(m, "DefaultedAzureCallTimeout")
   178  	ret0, _ := ret[0].(time.Duration)
   179  	return ret0
   180  }
   181  
   182  // DefaultedAzureCallTimeout indicates an expected call of DefaultedAzureCallTimeout.
   183  func (mr *MockScaleSetVMScopeMockRecorder) DefaultedAzureCallTimeout() *gomock.Call {
   184  	mr.mock.ctrl.T.Helper()
   185  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DefaultedAzureCallTimeout", reflect.TypeOf((*MockScaleSetVMScope)(nil).DefaultedAzureCallTimeout))
   186  }
   187  
   188  // DefaultedAzureServiceReconcileTimeout mocks base method.
   189  func (m *MockScaleSetVMScope) DefaultedAzureServiceReconcileTimeout() time.Duration {
   190  	m.ctrl.T.Helper()
   191  	ret := m.ctrl.Call(m, "DefaultedAzureServiceReconcileTimeout")
   192  	ret0, _ := ret[0].(time.Duration)
   193  	return ret0
   194  }
   195  
   196  // DefaultedAzureServiceReconcileTimeout indicates an expected call of DefaultedAzureServiceReconcileTimeout.
   197  func (mr *MockScaleSetVMScopeMockRecorder) DefaultedAzureServiceReconcileTimeout() *gomock.Call {
   198  	mr.mock.ctrl.T.Helper()
   199  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DefaultedAzureServiceReconcileTimeout", reflect.TypeOf((*MockScaleSetVMScope)(nil).DefaultedAzureServiceReconcileTimeout))
   200  }
   201  
   202  // DefaultedReconcilerRequeue mocks base method.
   203  func (m *MockScaleSetVMScope) DefaultedReconcilerRequeue() time.Duration {
   204  	m.ctrl.T.Helper()
   205  	ret := m.ctrl.Call(m, "DefaultedReconcilerRequeue")
   206  	ret0, _ := ret[0].(time.Duration)
   207  	return ret0
   208  }
   209  
   210  // DefaultedReconcilerRequeue indicates an expected call of DefaultedReconcilerRequeue.
   211  func (mr *MockScaleSetVMScopeMockRecorder) DefaultedReconcilerRequeue() *gomock.Call {
   212  	mr.mock.ctrl.T.Helper()
   213  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DefaultedReconcilerRequeue", reflect.TypeOf((*MockScaleSetVMScope)(nil).DefaultedReconcilerRequeue))
   214  }
   215  
   216  // DeleteLongRunningOperationState mocks base method.
   217  func (m *MockScaleSetVMScope) DeleteLongRunningOperationState(arg0, arg1, arg2 string) {
   218  	m.ctrl.T.Helper()
   219  	m.ctrl.Call(m, "DeleteLongRunningOperationState", arg0, arg1, arg2)
   220  }
   221  
   222  // DeleteLongRunningOperationState indicates an expected call of DeleteLongRunningOperationState.
   223  func (mr *MockScaleSetVMScopeMockRecorder) DeleteLongRunningOperationState(arg0, arg1, arg2 any) *gomock.Call {
   224  	mr.mock.ctrl.T.Helper()
   225  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteLongRunningOperationState", reflect.TypeOf((*MockScaleSetVMScope)(nil).DeleteLongRunningOperationState), arg0, arg1, arg2)
   226  }
   227  
   228  // ExtendedLocation mocks base method.
   229  func (m *MockScaleSetVMScope) ExtendedLocation() *v1beta1.ExtendedLocationSpec {
   230  	m.ctrl.T.Helper()
   231  	ret := m.ctrl.Call(m, "ExtendedLocation")
   232  	ret0, _ := ret[0].(*v1beta1.ExtendedLocationSpec)
   233  	return ret0
   234  }
   235  
   236  // ExtendedLocation indicates an expected call of ExtendedLocation.
   237  func (mr *MockScaleSetVMScopeMockRecorder) ExtendedLocation() *gomock.Call {
   238  	mr.mock.ctrl.T.Helper()
   239  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ExtendedLocation", reflect.TypeOf((*MockScaleSetVMScope)(nil).ExtendedLocation))
   240  }
   241  
   242  // ExtendedLocationName mocks base method.
   243  func (m *MockScaleSetVMScope) ExtendedLocationName() string {
   244  	m.ctrl.T.Helper()
   245  	ret := m.ctrl.Call(m, "ExtendedLocationName")
   246  	ret0, _ := ret[0].(string)
   247  	return ret0
   248  }
   249  
   250  // ExtendedLocationName indicates an expected call of ExtendedLocationName.
   251  func (mr *MockScaleSetVMScopeMockRecorder) ExtendedLocationName() *gomock.Call {
   252  	mr.mock.ctrl.T.Helper()
   253  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ExtendedLocationName", reflect.TypeOf((*MockScaleSetVMScope)(nil).ExtendedLocationName))
   254  }
   255  
   256  // ExtendedLocationType mocks base method.
   257  func (m *MockScaleSetVMScope) ExtendedLocationType() string {
   258  	m.ctrl.T.Helper()
   259  	ret := m.ctrl.Call(m, "ExtendedLocationType")
   260  	ret0, _ := ret[0].(string)
   261  	return ret0
   262  }
   263  
   264  // ExtendedLocationType indicates an expected call of ExtendedLocationType.
   265  func (mr *MockScaleSetVMScopeMockRecorder) ExtendedLocationType() *gomock.Call {
   266  	mr.mock.ctrl.T.Helper()
   267  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ExtendedLocationType", reflect.TypeOf((*MockScaleSetVMScope)(nil).ExtendedLocationType))
   268  }
   269  
   270  // FailureDomains mocks base method.
   271  func (m *MockScaleSetVMScope) FailureDomains() []*string {
   272  	m.ctrl.T.Helper()
   273  	ret := m.ctrl.Call(m, "FailureDomains")
   274  	ret0, _ := ret[0].([]*string)
   275  	return ret0
   276  }
   277  
   278  // FailureDomains indicates an expected call of FailureDomains.
   279  func (mr *MockScaleSetVMScopeMockRecorder) FailureDomains() *gomock.Call {
   280  	mr.mock.ctrl.T.Helper()
   281  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "FailureDomains", reflect.TypeOf((*MockScaleSetVMScope)(nil).FailureDomains))
   282  }
   283  
   284  // GetLongRunningOperationState mocks base method.
   285  func (m *MockScaleSetVMScope) GetLongRunningOperationState(arg0, arg1, arg2 string) *v1beta1.Future {
   286  	m.ctrl.T.Helper()
   287  	ret := m.ctrl.Call(m, "GetLongRunningOperationState", arg0, arg1, arg2)
   288  	ret0, _ := ret[0].(*v1beta1.Future)
   289  	return ret0
   290  }
   291  
   292  // GetLongRunningOperationState indicates an expected call of GetLongRunningOperationState.
   293  func (mr *MockScaleSetVMScopeMockRecorder) GetLongRunningOperationState(arg0, arg1, arg2 any) *gomock.Call {
   294  	mr.mock.ctrl.T.Helper()
   295  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetLongRunningOperationState", reflect.TypeOf((*MockScaleSetVMScope)(nil).GetLongRunningOperationState), arg0, arg1, arg2)
   296  }
   297  
   298  // HashKey mocks base method.
   299  func (m *MockScaleSetVMScope) HashKey() string {
   300  	m.ctrl.T.Helper()
   301  	ret := m.ctrl.Call(m, "HashKey")
   302  	ret0, _ := ret[0].(string)
   303  	return ret0
   304  }
   305  
   306  // HashKey indicates an expected call of HashKey.
   307  func (mr *MockScaleSetVMScopeMockRecorder) HashKey() *gomock.Call {
   308  	mr.mock.ctrl.T.Helper()
   309  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "HashKey", reflect.TypeOf((*MockScaleSetVMScope)(nil).HashKey))
   310  }
   311  
   312  // Location mocks base method.
   313  func (m *MockScaleSetVMScope) Location() string {
   314  	m.ctrl.T.Helper()
   315  	ret := m.ctrl.Call(m, "Location")
   316  	ret0, _ := ret[0].(string)
   317  	return ret0
   318  }
   319  
   320  // Location indicates an expected call of Location.
   321  func (mr *MockScaleSetVMScopeMockRecorder) Location() *gomock.Call {
   322  	mr.mock.ctrl.T.Helper()
   323  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Location", reflect.TypeOf((*MockScaleSetVMScope)(nil).Location))
   324  }
   325  
   326  // NodeResourceGroup mocks base method.
   327  func (m *MockScaleSetVMScope) NodeResourceGroup() string {
   328  	m.ctrl.T.Helper()
   329  	ret := m.ctrl.Call(m, "NodeResourceGroup")
   330  	ret0, _ := ret[0].(string)
   331  	return ret0
   332  }
   333  
   334  // NodeResourceGroup indicates an expected call of NodeResourceGroup.
   335  func (mr *MockScaleSetVMScopeMockRecorder) NodeResourceGroup() *gomock.Call {
   336  	mr.mock.ctrl.T.Helper()
   337  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "NodeResourceGroup", reflect.TypeOf((*MockScaleSetVMScope)(nil).NodeResourceGroup))
   338  }
   339  
   340  // ResourceGroup mocks base method.
   341  func (m *MockScaleSetVMScope) ResourceGroup() string {
   342  	m.ctrl.T.Helper()
   343  	ret := m.ctrl.Call(m, "ResourceGroup")
   344  	ret0, _ := ret[0].(string)
   345  	return ret0
   346  }
   347  
   348  // ResourceGroup indicates an expected call of ResourceGroup.
   349  func (mr *MockScaleSetVMScopeMockRecorder) ResourceGroup() *gomock.Call {
   350  	mr.mock.ctrl.T.Helper()
   351  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ResourceGroup", reflect.TypeOf((*MockScaleSetVMScope)(nil).ResourceGroup))
   352  }
   353  
   354  // ScaleSetVMSpec mocks base method.
   355  func (m *MockScaleSetVMScope) ScaleSetVMSpec() azure.ResourceSpecGetter {
   356  	m.ctrl.T.Helper()
   357  	ret := m.ctrl.Call(m, "ScaleSetVMSpec")
   358  	ret0, _ := ret[0].(azure.ResourceSpecGetter)
   359  	return ret0
   360  }
   361  
   362  // ScaleSetVMSpec indicates an expected call of ScaleSetVMSpec.
   363  func (mr *MockScaleSetVMScopeMockRecorder) ScaleSetVMSpec() *gomock.Call {
   364  	mr.mock.ctrl.T.Helper()
   365  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ScaleSetVMSpec", reflect.TypeOf((*MockScaleSetVMScope)(nil).ScaleSetVMSpec))
   366  }
   367  
   368  // SetLongRunningOperationState mocks base method.
   369  func (m *MockScaleSetVMScope) SetLongRunningOperationState(arg0 *v1beta1.Future) {
   370  	m.ctrl.T.Helper()
   371  	m.ctrl.Call(m, "SetLongRunningOperationState", arg0)
   372  }
   373  
   374  // SetLongRunningOperationState indicates an expected call of SetLongRunningOperationState.
   375  func (mr *MockScaleSetVMScopeMockRecorder) SetLongRunningOperationState(arg0 any) *gomock.Call {
   376  	mr.mock.ctrl.T.Helper()
   377  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetLongRunningOperationState", reflect.TypeOf((*MockScaleSetVMScope)(nil).SetLongRunningOperationState), arg0)
   378  }
   379  
   380  // SetVMSSVM mocks base method.
   381  func (m *MockScaleSetVMScope) SetVMSSVM(vmssvm *azure.VMSSVM) {
   382  	m.ctrl.T.Helper()
   383  	m.ctrl.Call(m, "SetVMSSVM", vmssvm)
   384  }
   385  
   386  // SetVMSSVM indicates an expected call of SetVMSSVM.
   387  func (mr *MockScaleSetVMScopeMockRecorder) SetVMSSVM(vmssvm any) *gomock.Call {
   388  	mr.mock.ctrl.T.Helper()
   389  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetVMSSVM", reflect.TypeOf((*MockScaleSetVMScope)(nil).SetVMSSVM), vmssvm)
   390  }
   391  
   392  // SetVMSSVMState mocks base method.
   393  func (m *MockScaleSetVMScope) SetVMSSVMState(state v1beta1.ProvisioningState) {
   394  	m.ctrl.T.Helper()
   395  	m.ctrl.Call(m, "SetVMSSVMState", state)
   396  }
   397  
   398  // SetVMSSVMState indicates an expected call of SetVMSSVMState.
   399  func (mr *MockScaleSetVMScopeMockRecorder) SetVMSSVMState(state any) *gomock.Call {
   400  	mr.mock.ctrl.T.Helper()
   401  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetVMSSVMState", reflect.TypeOf((*MockScaleSetVMScope)(nil).SetVMSSVMState), state)
   402  }
   403  
   404  // SubscriptionID mocks base method.
   405  func (m *MockScaleSetVMScope) SubscriptionID() string {
   406  	m.ctrl.T.Helper()
   407  	ret := m.ctrl.Call(m, "SubscriptionID")
   408  	ret0, _ := ret[0].(string)
   409  	return ret0
   410  }
   411  
   412  // SubscriptionID indicates an expected call of SubscriptionID.
   413  func (mr *MockScaleSetVMScopeMockRecorder) SubscriptionID() *gomock.Call {
   414  	mr.mock.ctrl.T.Helper()
   415  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SubscriptionID", reflect.TypeOf((*MockScaleSetVMScope)(nil).SubscriptionID))
   416  }
   417  
   418  // TenantID mocks base method.
   419  func (m *MockScaleSetVMScope) TenantID() string {
   420  	m.ctrl.T.Helper()
   421  	ret := m.ctrl.Call(m, "TenantID")
   422  	ret0, _ := ret[0].(string)
   423  	return ret0
   424  }
   425  
   426  // TenantID indicates an expected call of TenantID.
   427  func (mr *MockScaleSetVMScopeMockRecorder) TenantID() *gomock.Call {
   428  	mr.mock.ctrl.T.Helper()
   429  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "TenantID", reflect.TypeOf((*MockScaleSetVMScope)(nil).TenantID))
   430  }
   431  
   432  // Token mocks base method.
   433  func (m *MockScaleSetVMScope) Token() azcore.TokenCredential {
   434  	m.ctrl.T.Helper()
   435  	ret := m.ctrl.Call(m, "Token")
   436  	ret0, _ := ret[0].(azcore.TokenCredential)
   437  	return ret0
   438  }
   439  
   440  // Token indicates an expected call of Token.
   441  func (mr *MockScaleSetVMScopeMockRecorder) Token() *gomock.Call {
   442  	mr.mock.ctrl.T.Helper()
   443  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Token", reflect.TypeOf((*MockScaleSetVMScope)(nil).Token))
   444  }
   445  
   446  // UpdateDeleteStatus mocks base method.
   447  func (m *MockScaleSetVMScope) UpdateDeleteStatus(arg0 v1beta10.ConditionType, arg1 string, arg2 error) {
   448  	m.ctrl.T.Helper()
   449  	m.ctrl.Call(m, "UpdateDeleteStatus", arg0, arg1, arg2)
   450  }
   451  
   452  // UpdateDeleteStatus indicates an expected call of UpdateDeleteStatus.
   453  func (mr *MockScaleSetVMScopeMockRecorder) UpdateDeleteStatus(arg0, arg1, arg2 any) *gomock.Call {
   454  	mr.mock.ctrl.T.Helper()
   455  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateDeleteStatus", reflect.TypeOf((*MockScaleSetVMScope)(nil).UpdateDeleteStatus), arg0, arg1, arg2)
   456  }
   457  
   458  // UpdatePatchStatus mocks base method.
   459  func (m *MockScaleSetVMScope) UpdatePatchStatus(arg0 v1beta10.ConditionType, arg1 string, arg2 error) {
   460  	m.ctrl.T.Helper()
   461  	m.ctrl.Call(m, "UpdatePatchStatus", arg0, arg1, arg2)
   462  }
   463  
   464  // UpdatePatchStatus indicates an expected call of UpdatePatchStatus.
   465  func (mr *MockScaleSetVMScopeMockRecorder) UpdatePatchStatus(arg0, arg1, arg2 any) *gomock.Call {
   466  	mr.mock.ctrl.T.Helper()
   467  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdatePatchStatus", reflect.TypeOf((*MockScaleSetVMScope)(nil).UpdatePatchStatus), arg0, arg1, arg2)
   468  }
   469  
   470  // UpdatePutStatus mocks base method.
   471  func (m *MockScaleSetVMScope) UpdatePutStatus(arg0 v1beta10.ConditionType, arg1 string, arg2 error) {
   472  	m.ctrl.T.Helper()
   473  	m.ctrl.Call(m, "UpdatePutStatus", arg0, arg1, arg2)
   474  }
   475  
   476  // UpdatePutStatus indicates an expected call of UpdatePutStatus.
   477  func (mr *MockScaleSetVMScopeMockRecorder) UpdatePutStatus(arg0, arg1, arg2 any) *gomock.Call {
   478  	mr.mock.ctrl.T.Helper()
   479  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdatePutStatus", reflect.TypeOf((*MockScaleSetVMScope)(nil).UpdatePutStatus), arg0, arg1, arg2)
   480  }